/* ============================================================
   SAMPO CHART Press Page
   Scoped to .sampo-press-page / .spress-
   ============================================================ */

.sampo-press-page {
	--spress-navy: #08285a;
	--spress-blue: #005bac;
	--spress-teal: #0f8b8d;
	--spress-pale: #eef8fc;
	--spress-line: #d9e7f0;
	--spress-text: #122640;
	--spress-muted: #5b6b7d;
	margin: 0;
	background: #fff;
	color: var(--spress-text);
	font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", Meiryo, sans-serif;
	line-height: 1.75;
}

.spress-container {
	width: min(calc(100% - 64px), 1120px);
	margin: 0 auto;
}

.spress-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(255, 255, 255, .94);
	border-bottom: 1px solid var(--spress-line);
	backdrop-filter: blur(14px);
}

.spress-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(calc(100% - 64px), 1120px);
	min-height: 78px;
	margin: 0 auto;
	gap: 24px;
}

.spress-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--spress-navy);
	text-decoration: none;
}

.spress-brand img {
	width: 42px;
	height: 42px;
	object-fit: contain;
}

.spress-brand strong,
.spress-brand small {
	display: block;
	line-height: 1.25;
}

.spress-brand strong {
	font-size: 22px;
	font-weight: 900;
	letter-spacing: .02em;
}

.spress-brand small {
	font-size: 11px;
	font-weight: 800;
	color: #31506b;
}

.spress-nav {
	display: flex;
	align-items: center;
	gap: 18px;
	font-size: 13px;
	font-weight: 800;
}

.spress-nav a,
.spress-mobile-nav a,
.spress-footer a {
	color: var(--spress-navy);
	text-decoration: none;
}

.spress-nav a:hover,
.spress-footer a:hover {
	color: var(--spress-blue);
}

.spress-nav-toggle {
	display: none;
	width: 46px;
	height: 46px;
	border: 1px solid var(--spress-line);
	border-radius: 8px;
	background: #fff;
}

.spress-nav-toggle span:not(.screen-reader-text) {
	display: block;
	width: 22px;
	height: 2px;
	margin: 5px auto;
	background: var(--spress-teal);
}

.spress-mobile-nav {
	display: none;
	border-top: 1px solid var(--spress-line);
	background: #fff;
}

.spress-mobile-nav.is-open {
	display: grid;
	gap: 0;
	padding: 8px 24px 18px;
}

.spress-mobile-nav a {
	padding: 12px 4px;
	border-bottom: 1px solid #edf3f6;
	font-weight: 800;
}

.spress-hero {
	overflow: hidden;
	background:
		radial-gradient(circle at 72% 12%, rgba(211, 236, 250, .78), rgba(211, 236, 250, 0) 32%),
		linear-gradient(135deg, #eef8ff 0%, #fff 46%, #e5f5fb 100%);
}

.spress-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
	align-items: center;
	min-height: 310px;
	gap: 40px;
	padding: 52px 0 40px;
}

.spress-hero h1 {
	margin: 0 0 18px;
	color: var(--spress-navy);
	font-size: clamp(34px, 4.6vw, 52px);
	font-weight: 900;
	line-height: 1.22;
	letter-spacing: .02em;
}

.spress-hero p {
	max-width: 660px;
	margin: 0 0 8px;
	color: #183957;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.85;
}

.spress-hero__visual svg {
	display: block;
	width: 100%;
	height: auto;
	filter: drop-shadow(0 18px 30px rgba(8, 40, 90, .12));
}

.spress-section {
	padding: 38px 0;
}

.spress-section--compact {
	padding-top: 16px;
}

.spress-title {
	position: relative;
	margin: 0 0 26px;
	color: var(--spress-navy);
	font-size: 28px;
	font-weight: 900;
	line-height: 1.4;
	text-align: center;
}

.spress-title::after {
	display: block;
	width: 34px;
	height: 3px;
	margin: 8px auto 0;
	border-radius: 999px;
	background: var(--spress-blue);
	content: "";
}

.spress-topic-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.spress-topic-card,
.spress-work-card {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	align-items: center;
	gap: 14px;
	min-height: 96px;
	padding: 18px 20px;
	border-radius: 8px;
	background: linear-gradient(135deg, #f4fbff, #fff);
	box-shadow: 0 10px 30px rgba(24, 64, 110, .07);
}

.spress-topic-card {
	grid-template-columns: minmax(0, 1fr);
	align-content: center;
	padding: 20px 22px;
}

.spress-topic-card strong {
	color: var(--spress-navy);
	font-size: 15px;
	font-weight: 900;
	line-height: 1.55;
}

.spress-work-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.spress-work-card {
	min-height: 118px;
	border: 1px solid var(--spress-line);
	background: #fff;
}

.spress-work-card strong,
.spress-work-card span {
	display: block;
}

.spress-work-card strong {
	color: var(--spress-navy);
	font-size: 14px;
	font-weight: 900;
	line-height: 1.55;
}

.spress-work-card span {
	margin-top: 2px;
	color: var(--spress-muted);
	font-size: 12px;
	font-weight: 800;
}

.spress-icon {
	display: block;
	width: 48px;
	height: 48px;
	overflow: visible;
	object-fit: contain;
}

.spress-icon g {
	fill: none;
	stroke: var(--spress-blue);
	stroke-width: 3.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.spress-icon--bulb,
.spress-icon--clipboard {
	border-radius: 999px;
}

.spress-caution {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 390px;
	gap: 28px;
	padding: 26px 30px;
	border: 1px solid #ead4b8;
	border-radius: 10px;
	background: linear-gradient(135deg, #fffaf2, #fff);
}

.spress-caution h2 {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 14px;
	color: #8a5b1d;
	font-size: 24px;
	font-weight: 900;
}

.spress-caution h2 .spress-icon {
	width: 34px;
	height: 34px;
}

.spress-caution h2 .spress-icon g {
	stroke: #b7791f;
}

.spress-caution p {
	margin: 0 0 14px;
	color: #8a5b1d;
	font-size: 16px;
	font-weight: 900;
}

.spress-caution ul,
.spress-side-card ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.spress-caution li {
	position: relative;
	margin: 0 0 10px;
	padding-left: 30px;
	color: var(--spress-text);
	font-size: 14px;
	font-weight: 800;
}

.spress-caution li::before {
	position: absolute;
	top: .28em;
	left: 0;
	display: grid;
	place-items: center;
	width: 18px;
	height: 18px;
	border-radius: 999px;
	background: #fff;
	border: 2px solid #d6a261;
	color: #b66b20;
	font-size: 12px;
	line-height: 1;
	content: "×";
}

.spress-caution__ok {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	align-items: center;
	gap: 16px;
	padding: 22px;
	border: 1px solid #8fd4c5;
	border-radius: 8px;
	background: #f1fffb;
}

.spress-caution__ok .spress-icon g {
	stroke: #12a46f;
}

.spress-caution__ok p {
	margin: 0;
	color: #12815d;
	font-size: 15px;
	line-height: 1.8;
}

.spress-profile {
	display: grid;
	grid-template-columns: 190px minmax(0, 1fr);
	gap: 34px;
	align-items: center;
	padding: 28px 44px;
	border: 1px solid var(--spress-line);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 12px 36px rgba(24, 64, 110, .08);
}

.spress-profile img {
	width: 170px;
	height: 170px;
	border-radius: 999px;
	object-fit: cover;
	object-position: center top;
}

.spress-profile h3 {
	margin: 0 0 6px;
	color: var(--spress-navy);
	font-size: 26px;
	font-weight: 900;
}

.spress-profile h3 span {
	font-size: 18px;
}

.spress-profile__role {
	margin: 0 0 16px;
	color: var(--spress-blue);
	font-weight: 900;
}

.spress-profile dl {
	display: grid;
	gap: 10px;
	margin: 0;
}

.spress-profile dl div {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 14px;
}

.spress-profile dt {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	height: 30px;
	border-radius: 6px;
	background: #eaf4fb;
	color: var(--spress-blue);
	font-size: 13px;
	font-weight: 900;
}

.spress-profile dd {
	margin: 0;
	color: #263f56;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.7;
}

.spress-form-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 30px;
	align-items: stretch;
}

.spress-form-panel,
.spress-side-card {
	border: 1px solid var(--spress-line);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 14px 36px rgba(24, 64, 110, .07);
}

.spress-form-panel {
	padding: 26px;
}

.spress-form__row,
.spress-form .spress-cf7-row {
	display: grid;
	grid-template-columns: 172px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
	margin-bottom: 16px;
}

.spress-form label,
.spress-cf7-label {
	color: var(--spress-text);
	font-size: 14px;
	font-weight: 900;
}

.spress-form label span,
.spress-cf7-label span,
.spress-consent b {
	display: inline-block;
	margin-left: 6px;
	padding: 1px 6px;
	border-radius: 4px;
	background: #f8e8e8;
	color: #9d3636;
	font-size: 11px;
	font-weight: 900;
	vertical-align: middle;
}

.spress-form label small,
.spress-cf7-label .is-optional {
	display: inline-block;
	margin-left: 6px;
	padding: 1px 6px;
	border-radius: 4px;
	background: #eef2f4;
	color: #526173;
	font-size: 11px;
	font-weight: 900;
}

.spress-form input,
.spress-form select,
.spress-form textarea,
.spress-form-panel .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-checkbox):not(.wpcf7-radio) {
	width: 100%;
	min-height: 44px;
	padding: 10px 14px;
	border: 1.5px solid #d7e0e8;
	border-radius: 6px;
	background: #fff;
	color: var(--spress-text);
	font: inherit;
}

.spress-form textarea,
.spress-form-panel textarea.wpcf7-form-control {
	min-height: 104px;
	resize: vertical;
}

.spress-form input:focus,
.spress-form select:focus,
.spress-form textarea:focus {
	outline: 0;
	border-color: var(--spress-blue);
	box-shadow: 0 0 0 3px rgba(0, 91, 172, .1);
}

.spress-consent {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 20px 0 18px;
	font-size: 14px;
	font-weight: 800;
}

.spress-consent input {
	width: auto;
	min-height: auto;
	accent-color: var(--spress-blue);
}

.spress-consent a {
	color: var(--spress-blue);
}

.spress-submit,
.spress-form-panel .wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	width: 100%;
	min-height: 58px;
	border: 0;
	border-radius: 6px;
	background: linear-gradient(135deg, #005bac, #004795);
	color: #fff;
	font-size: 17px;
	font-weight: 900;
	letter-spacing: .03em;
	cursor: pointer;
	box-shadow: 0 10px 20px rgba(0, 91, 172, .18);
}

.spress-form-setup {
	display: grid;
	gap: 12px;
	padding: 22px;
	border: 1px dashed #b9cfdd;
	border-radius: 10px;
	background: #f7fbff;
}

.spress-form-setup h3 {
	margin: 0;
	color: var(--spress-navy);
	font-size: 18px;
	line-height: 1.5;
}

.spress-form-setup p {
	margin: 0;
	color: var(--spress-muted);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.7;
}

.spress-form-setup__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 4px;
}

.spress-form-setup__actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 9px 16px;
	border: 1px solid var(--spress-blue);
	border-radius: 6px;
	color: var(--spress-blue);
	font-size: 14px;
	font-weight: 900;
	text-decoration: none;
}

.spress-side-card {
	padding: 36px 30px;
	background: linear-gradient(135deg, #f7fbff, #fff);
}

.spress-side-card > .spress-icon {
	width: 58px;
	height: 58px;
	margin: 0 auto 20px;
}

.spress-side-card h3 {
	margin: 0 0 22px;
	color: var(--spress-navy);
	font-size: 20px;
	font-weight: 900;
	text-align: center;
}

.spress-side-card li {
	position: relative;
	margin: 0 0 18px;
	padding-left: 32px;
	color: #273f56;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.8;
}

.spress-side-card li::before {
	position: absolute;
	top: .35em;
	left: 0;
	width: 18px;
	height: 18px;
	border-radius: 999px;
	background: var(--spress-blue);
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	line-height: 18px;
	text-align: center;
	content: "✓";
}

.spress-phone {
	margin-top: 28px;
	padding: 20px;
	border: 1px solid #cfe1ef;
	border-radius: 8px;
	text-align: center;
}

.spress-phone p {
	margin: 0 0 10px;
	color: #4a5f72;
	font-size: 13px;
	font-weight: 800;
}

.spress-phone a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: var(--spress-blue);
	font-size: 27px;
	font-weight: 900;
	text-decoration: none;
	line-height: 1.2;
}

.spress-phone .spress-icon {
	width: 36px;
	height: 36px;
	padding: 0;
	border-radius: 0;
	background: transparent;
}

.spress-phone .spress-icon g {
	stroke: #fff;
	stroke-width: 5;
}

.spress-phone small {
	display: block;
	margin-top: 8px;
	color: #526173;
	font-size: 12px;
	font-weight: 800;
}

.spress-privacy-note {
	margin: 18px 0 0;
	color: #6b7785;
	font-size: 12px;
}

.spress-footer {
	border-top: 1px solid var(--spress-line);
	background: #f7fbfd;
}

.spress-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 92px;
	gap: 24px;
}

.spress-footer nav {
	display: flex;
	gap: 18px;
	font-size: 13px;
	font-weight: 800;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

@media (max-width: 980px) {
	.spress-nav {
		display: none;
	}

	.spress-nav-toggle {
		display: block;
	}

	.spress-hero__grid,
	.spress-caution,
	.spress-form-layout {
		grid-template-columns: 1fr;
	}

	.spress-hero__visual {
		max-width: 520px;
		margin-inline: auto;
	}

	.spress-topic-grid,
	.spress-work-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.spress-container,
	.spress-header__inner {
		width: min(calc(100% - 32px), 1120px);
	}

	.spress-header__inner {
		min-height: 70px;
	}

	.spress-brand strong {
		font-size: 18px;
	}

	.spress-brand small {
		font-size: 9px;
	}

	.spress-brand img {
		width: 38px;
		height: 38px;
	}

	.spress-hero__grid {
		min-height: 0;
		padding: 38px 0 24px;
	}

	.spress-hero h1 {
		font-size: 34px;
	}

	.spress-hero p {
		font-size: 14px;
	}

	.spress-section {
		padding: 30px 0;
	}

	.spress-title {
		font-size: 24px;
	}

	.spress-topic-grid,
	.spress-work-grid,
	.spress-profile,
	.spress-form__row,
	.spress-form .spress-cf7-row {
		grid-template-columns: 1fr;
	}

	.spress-topic-card,
	.spress-work-card {
		min-height: 0;
	}

	.spress-caution,
	.spress-profile,
	.spress-form-panel,
	.spress-side-card {
		padding: 22px 18px;
	}

	.spress-profile img {
		margin-inline: auto;
	}

	.spress-profile h3,
	.spress-profile__role {
		text-align: center;
	}

	.spress-profile dl div {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.spress-footer__inner,
	.spress-footer nav {
		flex-direction: column;
		align-items: flex-start;
	}

	.spress-footer__inner {
		padding: 22px 0;
	}
}
