:root {
	--sk-navy: #0d2148;
	--sk-text: #243853;
	--sk-muted: #63748a;
	--sk-teal: #078a91;
	--sk-teal-dark: #006d76;
	--sk-line: #d8e9ed;
	--sk-soft: #eef9fa;
	--sk-bg: #f8fdff;
	--sk-shadow: 0 22px 54px rgba(18, 74, 100, .12);
}

.sampo-karte-page,
.sampo-karte-page * {
	box-sizing: border-box;
}

.sampo-karte-page {
	margin: 0;
	color: var(--sk-text);
	background: #fff;
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, system-ui, sans-serif;
	line-height: 1.8;
	letter-spacing: 0;
	overflow-x: hidden;
}

.sampo-karte-page .sk-page {
	width: 100%;
	overflow-x: hidden;
}

.sampo-karte-page a {
	color: inherit;
	text-decoration: none;
}

.sampo-karte-page img {
	display: block;
	max-width: 100%;
	height: auto;
}

.sk-container {
	width: min(1180px, calc(100% - 48px));
	margin-inline: auto;
}

.sk-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, .94);
	border-bottom: 1px solid rgba(216, 233, 237, .78);
	backdrop-filter: blur(16px);
}

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

.sk-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 84px;
}

.sk-brand,
.sk-footer__brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--sk-navy);
}

.sk-brand img,
.sk-footer__brand img {
	flex: 0 0 auto;
	border-radius: 50%;
}

.sk-brand strong,
.sk-brand small,
.sk-footer__brand strong,
.sk-footer__brand small {
	display: block;
	line-height: 1.35;
}

.sk-brand strong {
	color: var(--sk-teal-dark);
	font-size: 25px;
	font-weight: 900;
	letter-spacing: .02em;
}

.sk-brand small {
	color: var(--sk-navy);
	font-size: 13px;
	font-weight: 800;
}

.sk-nav {
	display: flex;
	align-items: center;
	gap: 24px;
	color: #2f425c;
	font-size: 13px;
	font-weight: 800;
	white-space: nowrap;
}

.sk-nav a:hover {
	color: var(--sk-teal-dark);
}

.sk-hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 95% 7%, rgba(4, 127, 140, .16), transparent 28%),
		linear-gradient(90deg, #fff 0%, #fff 48%, #f1f9fa 100%);
}

.sk-hero::after {
	position: absolute;
	inset: 0 0 auto auto;
	width: 340px;
	height: 340px;
	background: radial-gradient(circle, rgba(6, 142, 149, .14), transparent 70%);
	content: "";
	pointer-events: none;
}

.sk-hero__grid {
	display: grid;
	grid-template-columns: minmax(620px, .96fr) minmax(480px, 1.04fr);
	align-items: center;
	gap: 48px;
	min-height: 540px;
	padding: 78px 0 64px;
}

.sk-hero__content {
	position: relative;
	z-index: 2;
}

.sk-hero h1 {
	margin: 0;
	color: var(--sk-navy);
	font-size: clamp(34px, 2.55vw, 41px);
	font-weight: 900;
	line-height: 1.5;
	letter-spacing: 0;
	word-break: keep-all;
	overflow-wrap: normal;
}

.sk-hero h1 span {
	color: var(--sk-teal);
}

.sk-hero h1 > .sk-nowrap {
	display: block;
	color: var(--sk-navy);
	white-space: normal;
}

.sk-hero__content p {
	max-width: 570px;
	margin: 28px 0 30px;
	color: var(--sk-text);
	font-size: 17px;
	font-weight: 800;
	line-height: 2;
}

.sk-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-height: 66px;
	padding: 0 34px;
	border-radius: 9px;
	background: linear-gradient(135deg, var(--sk-teal), #006471);
	color: #fff !important;
	font-size: 16px;
	font-weight: 900;
	white-space: nowrap;
	box-shadow: 0 18px 32px rgba(0, 111, 122, .24);
}

.sk-btn::after {
	width: 10px;
	height: 10px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	content: "";
	transform: rotate(45deg);
}

.sk-btn i {
	position: relative;
	width: 26px;
	height: 22px;
	border: 2px solid currentColor;
	border-radius: 8px;
}

.sk-btn i::before,
.sk-btn i::after {
	position: absolute;
	content: "";
}

.sk-btn i::before {
	left: 5px;
	top: 7px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 7px 0 0 currentColor, 14px 0 0 currentColor;
}

.sk-hero__visual {
	position: relative;
	z-index: 1;
}

.sk-product-shot {
	margin: 0;
	overflow: hidden;
	border-radius: 18px;
	background: #e7f7fa;
	box-shadow: 0 28px 64px rgba(7, 45, 68, .16);
}

.sk-product-shot img {
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
	object-fit: cover;
}

.sk-section {
	padding: 52px 0;
}

.sk-section--pale {
	background:
		linear-gradient(180deg, rgba(237, 249, 250, .84), rgba(255, 255, 255, .96)),
		var(--sk-bg);
}

.sk-title {
	margin: 0 0 24px;
	color: var(--sk-navy);
	font-size: 28px;
	font-weight: 900;
	line-height: 1.55;
	text-align: center;
	word-break: keep-all;
}

.sk-problem-grid,
.sk-feature-grid {
	display: grid;
	gap: 36px;
}

.sk-problem-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	width: min(100%, 1030px);
	margin-inline: auto;
}

.sk-feature-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sk-card {
	padding: 0 0 24px;
	overflow: hidden;
	border: 1px solid var(--sk-line);
	border-radius: 12px;
	background: rgba(255, 255, 255, .94);
	box-shadow: var(--sk-shadow);
	text-align: left;
}

.sk-card-media {
	margin: 0;
	overflow: hidden;
	background: #eef8fa;
}

.sk-card-media img {
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
	object-fit: cover;
}

.sk-card h3 {
	margin: 20px 24px 10px;
	color: var(--sk-navy);
	font-size: 17px;
	font-weight: 900;
	line-height: 1.6;
	text-align: left;
	word-break: normal;
	overflow-wrap: break-word;
}

.sk-card p {
	margin: 0 24px;
	color: #304965;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.85;
	text-align: left;
	word-break: normal;
	overflow-wrap: break-word;
}

.sk-icon {
	position: relative;
	display: grid;
	place-items: center;
	width: 80px;
	height: 80px;
	margin-inline: auto;
	border-radius: 50%;
	background: #e9f7f7;
	color: var(--sk-teal);
}

.sk-icon::before,
.sk-icon::after {
	position: absolute;
	content: "";
}

.sk-icon--word::before,
.sk-icon--record::before,
.sk-icon--doc::before,
.sk-icon--opinion::before {
	width: 34px;
	height: 44px;
	border: 3px solid currentColor;
	border-radius: 3px;
	background: #fff;
}

.sk-icon--word::after {
	content: "W";
	color: currentColor;
	font-size: 24px;
	font-weight: 900;
}

.sk-icon--mail::before {
	width: 44px;
	height: 30px;
	border: 3px solid currentColor;
	border-radius: 4px;
	background: #fff;
}

.sk-icon--mail::after {
	width: 32px;
	height: 20px;
	border-right: 3px solid currentColor;
	border-bottom: 3px solid currentColor;
	transform: rotate(45deg) translate(-2px, -10px);
}

.sk-icon--team::before,
.sk-icon--interview::before,
.sk-icon--divide::before {
	width: 18px;
	height: 18px;
	border: 3px solid currentColor;
	border-radius: 50%;
	box-shadow: -20px 10px 0 -2px #e9f7f7, -20px 10px 0 1px currentColor, 20px 10px 0 -2px #e9f7f7, 20px 10px 0 1px currentColor;
}

.sk-icon--team::after,
.sk-icon--interview::after,
.sk-icon--divide::after {
	bottom: 19px;
	width: 54px;
	height: 22px;
	border: 3px solid currentColor;
	border-top: 0;
	border-radius: 0 0 24px 24px;
}

.sk-icon--record::after,
.sk-icon--doc::after,
.sk-icon--opinion::after {
	width: 20px;
	height: 3px;
	background: currentColor;
	box-shadow: 0 9px 0 currentColor, 0 18px 0 currentColor;
}

.sk-icon--opinion::after {
	right: 20px;
	bottom: 18px;
	width: 18px;
	height: 18px;
	border-right: 3px solid currentColor;
	border-bottom: 3px solid currentColor;
	background: transparent;
	box-shadow: none;
	transform: rotate(45deg);
}

.sk-icon--share::before {
	width: 44px;
	height: 44px;
	border-top: 3px solid currentColor;
	border-right: 3px solid currentColor;
	transform: rotate(35deg) skew(-16deg);
}

.sk-icon--share::after {
	left: 19px;
	bottom: 20px;
	width: 30px;
	height: 3px;
	background: currentColor;
	transform: rotate(-28deg);
}

.sk-icon--folder::before {
	width: 46px;
	height: 34px;
	border: 3px solid currentColor;
	border-radius: 5px;
	background: #fff;
}

.sk-icon--folder::after {
	left: 22px;
	top: 24px;
	width: 22px;
	height: 10px;
	border: 3px solid currentColor;
	border-bottom: 0;
	border-radius: 5px 5px 0 0;
	background: #fff;
}

.sk-icon--secure::before {
	width: 36px;
	height: 42px;
	border: 3px solid currentColor;
	border-radius: 18px 18px 8px 8px;
	background: #fff;
}

.sk-icon--secure::after {
	width: 14px;
	height: 17px;
	border: 3px solid currentColor;
	border-radius: 3px;
	background: #fff;
}

.sk-flow-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	align-items: center;
	gap: 48px;
}

.sk-flow {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr);
	align-items: start;
	gap: 10px;
}

.sk-flow__item {
	text-align: center;
}

.sk-flow__media {
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--sk-line);
	border-radius: 12px;
	background: #eef8fa;
	box-shadow: 0 14px 32px rgba(18, 74, 100, .09);
}

.sk-flow__media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	height: auto;
	object-fit: cover;
}

.sk-flow__item h3 {
	margin: 12px 0 4px;
	color: var(--sk-teal-dark);
	font-size: 17px;
	font-weight: 900;
	line-height: 1.45;
}

.sk-flow__item p,
.sk-flow-copy {
	margin: 0;
	color: #304965;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.8;
	word-break: normal;
	overflow-wrap: break-word;
}

.sk-flow__arrow {
	position: relative;
	display: block;
	width: 34px;
	height: 116px;
}

.sk-flow__arrow::before {
	position: absolute;
	top: 57px;
	left: 2px;
	width: 25px;
	height: 2px;
	background: var(--sk-teal);
	content: "";
}

.sk-flow__arrow::after {
	position: absolute;
	top: 52px;
	right: 4px;
	width: 11px;
	height: 11px;
	border-top: 2px solid var(--sk-teal);
	border-right: 2px solid var(--sk-teal);
	content: "";
	transform: rotate(45deg);
}

.sk-flow-copy {
	font-size: 16px;
	font-weight: 800;
	line-height: 2;
}

.sk-section--cta {
	padding: 30px 0 54px;
	background: #f5fbfc;
}

.sk-cta {
	display: grid;
	grid-template-columns: 390px minmax(0, 1fr);
	align-items: center;
	gap: 42px;
	overflow: hidden;
	border-radius: 14px;
	background:
		linear-gradient(90deg, rgba(235, 248, 249, .92), rgba(255, 255, 255, .98)),
		#e9f7f7;
	box-shadow: var(--sk-shadow);
}

.sk-cta figure {
	height: 220px;
	margin: 0;
	overflow: hidden;
}

.sk-cta figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sk-cta h2 {
	margin: 0 0 12px;
	color: var(--sk-navy);
	font-size: 28px;
	font-weight: 900;
	line-height: 1.55;
}

.sk-cta p {
	margin: 0 0 20px;
	color: #2d4965;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.85;
}

.sk-cta .sk-btn {
	min-height: 58px;
}

.sk-footer {
	background: linear-gradient(135deg, #123a55, #08707a);
	color: #fff;
}

.sk-footer__inner {
	display: grid;
	grid-template-columns: minmax(240px, 1fr) auto;
	align-items: center;
	gap: 24px;
	padding: 34px 0;
}

.sk-footer__brand,
.sk-footer__brand strong,
.sk-footer__brand small {
	color: #fff;
}

.sk-footer__brand strong {
	font-size: 22px;
	font-weight: 900;
}

.sk-footer__brand small {
	font-size: 12px;
	font-weight: 800;
}

.sk-footer__brand img {
	background: #fff;
}

.sk-footer__nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 18px;
	color: rgba(255, 255, 255, .88);
	font-size: 13px;
	font-weight: 800;
}

.sk-footer p {
	grid-column: 1 / -1;
	margin: 0;
	color: rgba(255, 255, 255, .8);
	font-size: 12px;
	font-weight: 800;
}

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

	.sk-hero__grid,
	.sk-flow-layout,
	.sk-cta {
		grid-template-columns: 1fr;
	}

	.sk-hero__grid {
		min-height: 0;
	}

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

@media (max-width: 760px) {
	.sampo-karte-page .sc-header__inner {
		justify-content: space-between;
	}

	.sampo-karte-page .sc-header__actions {
		margin-left: auto;
	}

	.admin-bar .sk-header {
		top: 46px;
	}

	.sk-container {
		width: min(calc(100% - 32px), 1180px);
	}

	.sk-header__inner {
		min-height: 74px;
	}

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

	.sk-brand small {
		font-size: 10px;
	}

	.sk-hero {
		background: linear-gradient(180deg, #fff, #f0fafb);
	}

	.sk-hero__grid {
		gap: 34px;
		padding: 46px 0;
	}

	.sk-hero__content,
	.sk-hero__visual,
	.sk-flow-main,
	.sk-flow-copy,
	.sk-cta > div {
		min-width: 0;
	}

	.sk-hero h1 {
		font-size: clamp(29px, 8vw, 34px);
		line-height: 1.45;
		word-break: normal;
		overflow-wrap: break-word;
	}

	.sk-hero h1 > .sk-nowrap {
		display: inline;
		white-space: normal;
	}

	.sk-hero h1 span {
		word-break: normal;
		overflow-wrap: break-word;
	}

	.sk-card {
		text-align: left;
	}

	.sk-card h3 {
		font-size: 17px;
	}

	.sk-hero__content p {
		font-size: 15px;
	}

	.sk-btn {
		width: 100%;
		min-height: 58px;
		padding: 0 14px;
		font-size: 13px;
		white-space: normal;
	}

	.sk-product-shot {
		border-radius: 12px;
	}

	.sk-product-shot img {
		width: 100%;
		max-width: none;
	}

	.sk-problem-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.sk-feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	.sk-flow {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	.sk-flow__arrow {
		display: none;
	}

	.sk-card {
		padding-bottom: 16px;
		border-radius: 10px;
	}

	.sk-card h3 {
		margin: 14px 14px 6px;
		font-size: 14px;
		line-height: 1.45;
	}

	.sk-card p {
		margin-inline: 14px;
		font-size: 11px;
		line-height: 1.65;
	}

	.sk-card-media img,
	.sk-flow__media img {
		aspect-ratio: 16 / 10;
	}

	.sk-flow__media {
		border-radius: 10px;
	}

	.sk-flow__item h3 {
		margin-top: 10px;
		font-size: 15px;
	}

	.sk-flow__item p {
		font-size: 11px;
		line-height: 1.6;
	}

	.sk-cta {
		gap: 0;
	}

	.sk-cta > div {
		padding: 24px 20px;
	}

	.sk-cta h2 {
		font-size: 22px;
	}

	.sk-footer__inner {
		grid-template-columns: 1fr;
	}

	.sk-footer__nav {
		justify-content: flex-start;
	}
}
