:root {
	--color-main: #0F3A5F;
	--color-main-dark: #082A46;
	--color-soft: #EEF6FB;
	--color-section: #F5F9FC;
	--color-accent: #2563EB;
	--color-cta: #1D4ED8;
	--color-cta-hover: #1E40AF;
	--color-alert: #D97706;
	--color-success: #0F766E;
	--color-text: #111827;
	--color-muted: #4B5563;
	--color-border: #D8E4EE;
	--color-white: #FFFFFF;
	--shadow-card: 0 10px 24px rgba(8, 42, 70, .08);
	--radius: 8px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 92px;
}

body {
	margin: 0;
	background: var(--color-white);
	color: var(--color-text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
	font-size: 16px;
	line-height: 1.8;
	letter-spacing: 0;
}

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

a {
	color: var(--color-main);
	text-decoration: none;
}

a:hover {
	color: var(--color-accent);
}

button,
input,
select,
textarea {
	font: inherit;
}

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

.l-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, .96);
	border-bottom: 1px solid var(--color-border);
	backdrop-filter: blur(10px);
}

.l-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1160px;
	min-height: 74px;
	margin: 0 auto;
	padding: 0 24px;
	gap: 24px;
}

.l-header__brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 240px;
	color: var(--color-main-dark);
	font-weight: 700;
}

.l-header__mark {
	display: grid;
	place-items: center;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	border-radius: 9px;
	overflow: hidden;
	box-shadow: 0 4px 10px rgba(8, 42, 70, .12);
}

.l-header__mark img {
	display: block;
	width: 42px;
	height: 42px;
}

.l-header__site-name {
	display: block;
	font-size: 18px;
	line-height: 1.35;
}

.l-header__tagline {
	display: block;
	color: var(--color-muted);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
}

.l-header__nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
}

.l-header__menu {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: 14px;
	font-weight: 700;
}

.l-header__menu a[aria-current="page"] {
	color: var(--color-accent);
}

.l-header__toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 9px;
	border: 1px solid var(--color-border);
	border-radius: 8px;
	background: var(--color-white);
}

.l-header__toggle span:not(.screen-reader-text) {
	display: block;
	width: 100%;
	height: 2px;
	margin: 5px 0;
	background: var(--color-main);
}

.l-main {
	min-height: 60vh;
}

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

.l-container--narrow {
	width: min(880px, calc(100% - 40px));
}

.l-section {
	padding: 72px 0;
}

.l-section--soft {
	background: var(--color-section);
}

.l-content-with-sidebar {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	column-gap: 36px;
	padding-bottom: 80px;
}

.p-entry {
	width: min(760px, 100%);
}

.l-sidebar {
	flex: 0 0 292px;
	position: sticky;
	top: 96px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	max-height: calc(100vh - 112px);
	overflow: visible;
	transform: translateY(var(--sidebar-footer-offset, 0px));
	will-change: transform;
}

.c-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 18px;
	border: 1px solid var(--color-cta);
	border-radius: 8px;
	background: var(--color-cta);
	color: var(--color-white);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.3;
	text-align: center;
	transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.c-button:hover {
	background: var(--color-cta-hover);
	border-color: var(--color-cta-hover);
	color: var(--color-white);
	transform: translateY(-1px);
}

.c-button--large {
	min-height: 52px;
	padding: 14px 22px;
	font-size: 16px;
}

.c-button--ghost {
	background: var(--color-white);
	color: var(--color-main);
	border-color: var(--color-border);
}

.c-button--ghost:hover {
	background: var(--color-soft);
	color: var(--color-main-dark);
	border-color: var(--color-main);
}

.c-section-heading {
	margin-bottom: 28px;
	text-align: center;
}

.c-section-heading--left {
	text-align: left;
}

.c-section-heading p {
	margin: 0 0 4px;
	color: var(--color-accent);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.c-section-heading h2 {
	margin: 0;
	color: var(--color-main-dark);
	font-size: 30px;
	line-height: 1.35;
}

.c-empty {
	margin: 0;
	color: var(--color-muted);
}

.p-front-hero {
	background: linear-gradient(180deg, var(--color-soft) 0%, var(--color-white) 100%);
}

.p-front-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 420px;
	align-items: center;
	gap: 48px;
	width: min(1120px, calc(100% - 40px));
	min-height: 520px;
	margin: 0 auto;
	padding: 54px 0 64px;
}

.p-front-hero__eyebrow {
	display: inline-flex;
	margin: 0 0 14px;
	padding: 5px 10px;
	border-radius: 999px;
	background: var(--color-white);
	color: var(--color-main);
	font-size: 13px;
	font-weight: 800;
	border: 1px solid var(--color-border);
}

.p-front-hero h1 {
	margin: 0;
	color: var(--color-main-dark);
	font-size: 40px;
	line-height: 1.32;
}

.p-front-hero__content > p:not(.p-front-hero__eyebrow) {
	max-width: 680px;
	margin: 18px 0 0;
	color: var(--color-muted);
	font-size: 17px;
	line-height: 1.9;
}

.p-front-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.p-front-hero__visual {
	position: relative;
	aspect-ratio: 16 / 10;
	border: 1px solid var(--color-border);
	border-radius: 8px;
	background: var(--color-white);
	box-shadow: var(--shadow-card);
	overflow: hidden;
}

.p-front-hero__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p-front-hero__panel {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: 100%;
	padding: 28px;
	background:
		linear-gradient(90deg, rgba(15, 58, 95, .08) 1px, transparent 1px),
		linear-gradient(180deg, rgba(15, 58, 95, .08) 1px, transparent 1px),
		var(--color-soft);
	background-size: 24px 24px;
}

.p-front-hero__panel span,
.p-front-hero__panel em {
	color: var(--color-muted);
	font-style: normal;
	font-weight: 700;
}

.p-front-hero__panel strong {
	color: var(--color-main-dark);
	font-size: 38px;
	line-height: 1.3;
}

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

.p-post-grid--compact {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.c-post-card {
	overflow: hidden;
	border: 1px solid var(--color-border);
	border-radius: 8px;
	background: var(--color-white);
	box-shadow: 0 6px 18px rgba(8, 42, 70, .05);
}

.c-post-card__thumb {
	display: block;
	aspect-ratio: 16 / 9;
	background: var(--color-soft);
	overflow: hidden;
}

.c-post-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .24s ease;
}

.c-post-card:hover .c-post-card__thumb img {
	transform: scale(1.025);
}

.c-post-card__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	color: var(--color-main);
	font-weight: 800;
}

.c-post-card__body {
	padding: 16px;
}

.c-post-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
	color: var(--color-muted);
	font-size: 12px;
	font-weight: 700;
}

.c-post-card__meta a {
	color: var(--color-accent);
}

.c-post-card__title {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
}

.c-post-card__title a {
	color: var(--color-text);
}

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

.p-category-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 18px 20px;
	border: 1px solid var(--color-border);
	border-radius: 8px;
	background: var(--color-white);
	color: var(--color-main-dark);
	font-weight: 800;
}

.p-category-card em {
	display: inline-flex;
	min-width: 44px;
	justify-content: center;
	padding: 3px 9px;
	border-radius: 999px;
	background: var(--color-soft);
	color: var(--color-muted);
	font-size: 12px;
	font-style: normal;
}

.p-about-site {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.p-about-site p {
	max-width: 720px;
	color: var(--color-muted);
}

.p-breadcrumb {
	margin: 22px 0 28px;
	color: var(--color-muted);
	font-size: 13px;
}

.p-breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.p-breadcrumb li:not(:last-child)::after {
	content: "/";
	margin-left: 6px;
	color: #8A9AAF;
}

.p-entry__header {
	margin-bottom: 34px;
}

.c-category-label {
	display: inline-flex;
	margin-bottom: 14px;
	padding: 5px 10px;
	border-radius: 6px;
	background: var(--color-soft);
	color: var(--color-main);
	font-size: 13px;
	font-weight: 800;
}

.p-entry__header h1,
.p-page__header h1,
.p-archive-header h1,
.p-error-page h1 {
	margin: 0;
	color: var(--color-main-dark);
	font-size: 34px;
	line-height: 1.45;
}

.p-entry__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	margin-top: 16px;
	color: var(--color-muted);
	font-size: 13px;
	font-weight: 700;
}

.p-entry__eyecatch {
	margin: 26px 0 0;
}

.p-entry__eyecatch img,
.entry-content img {
	border-radius: 8px;
}

.p-entry-summary {
	margin-top: 24px;
	padding: 18px 20px;
	border: 1px solid var(--color-border);
	border-left: 5px solid var(--color-accent);
	border-radius: 8px;
	background: var(--color-soft);
}

.p-entry-summary p {
	margin: 0;
	color: var(--color-main-dark);
	font-weight: 700;
}

.entry-content {
	color: var(--color-text);
	font-size: 17px;
	line-height: 1.9;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content p {
	margin: 1.15em 0;
}

.entry-content h2 {
	margin: 2.45em 0 1em;
	padding: 0 0 12px 18px;
	border-bottom: 1px solid var(--color-border);
	border-left: 5px solid var(--color-cta);
	color: var(--color-main-dark);
	font-size: 27px;
	line-height: 1.45;
}

.entry-content h3 {
	margin: 2em 0 .85em;
	padding: 12px 16px;
	border-left: 5px solid var(--color-main);
	border-radius: 6px;
	background: var(--color-soft);
	color: var(--color-main-dark);
	font-size: 22px;
	line-height: 1.5;
}

.entry-content h4 {
	margin: 1.8em 0 .75em;
	color: var(--color-main-dark);
	font-size: 18px;
	line-height: 1.55;
}

.entry-content strong {
	font-weight: 700;
	background: linear-gradient(transparent 62%, rgba(37, 99, 235, .16) 0);
}

.entry-content .is-style-alert strong,
.entry-content .has-alert-underline strong {
	background: linear-gradient(transparent 62%, rgba(217, 119, 6, .22) 0);
}

.entry-content ul,
.entry-content ol {
	margin: 1.2em 0;
	padding-left: 1.45em;
}

.entry-content li + li {
	margin-top: .45em;
}

.entry-content table {
	display: block;
	width: 100%;
	overflow-x: auto;
	border-collapse: collapse;
	white-space: nowrap;
}

.entry-content th,
.entry-content td {
	padding: 12px 14px;
	border: 1px solid var(--color-border);
}

.entry-content th {
	background: var(--color-soft);
	color: var(--color-main-dark);
	text-align: left;
}

.entry-content blockquote {
	margin: 1.6em 0;
	padding: 16px 20px;
	border-left: 5px solid var(--color-success);
	background: var(--color-section);
	color: var(--color-muted);
}

.c-cta-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin: 44px 0;
	padding: 28px;
	border-radius: 8px;
	background: var(--color-main);
	color: var(--color-white);
}

.c-cta-box__label {
	margin: 0 0 6px;
	color: #BFD9F0;
	font-size: 13px;
	font-weight: 800;
}

.c-cta-box h2 {
	margin: 0;
	color: var(--color-white);
	font-size: 24px;
	line-height: 1.45;
}

.c-cta-box p:not(.c-cta-box__label) {
	margin: 8px 0 0;
	color: #E4F0FA;
}

.c-cta-box .c-button {
	flex: 0 0 auto;
	background: var(--color-white);
	border-color: var(--color-white);
	color: var(--color-main);
}

.c-cta-box .c-button:hover {
	background: var(--color-soft);
	color: var(--color-main-dark);
}

.p-supervisor,
.p-related {
	margin-top: 48px;
}

.p-supervisor {
	display: flex;
	gap: 18px;
	padding: 22px;
	border: 1px solid var(--color-border);
	border-radius: 8px;
	background: var(--color-white);
}

.p-supervisor img {
	width: 88px;
	height: 88px;
	object-fit: cover;
	border-radius: 50%;
}

.p-supervisor__label {
	margin: 0 0 4px;
	color: var(--color-success);
	font-size: 13px;
	font-weight: 800;
}

.p-supervisor h2,
.p-related h2,
.p-sidebar-box h2 {
	margin: 0 0 14px;
	color: var(--color-main-dark);
	font-size: 20px;
	line-height: 1.45;
}

.p-sidebar-box h2 {
	margin-bottom: 12px;
	font-size: 17px;
	line-height: 1.35;
}

.p-supervisor p {
	margin: 6px 0 0;
	color: var(--color-muted);
}

.p-sidebar-box {
	padding: 14px;
	border: 1px solid var(--color-border);
	border-radius: 8px;
	background: var(--color-white);
	box-shadow: 0 6px 18px rgba(8, 42, 70, .05);
}

.p-sidebar-box + .p-sidebar-box {
	margin-top: 0;
}

.p-toc {
	flex: 0 0 auto;
	max-height: none;
	overflow: hidden;
}

.p-toc__list {
	height: clamp(320px, 46vh, 440px);
	max-height: calc(100vh - 220px);
	padding: 0;
	margin: 0;
	overflow-y: auto;
	list-style: none;
	scrollbar-width: thin;
}

.p-toc__list:empty::before {
	content: "見出しがある記事で目次が表示されます。";
	display: block;
	color: var(--color-muted);
	font-size: 13px;
}

.p-toc__list li {
	margin: 2px 0;
}

.p-toc__list a {
	display: grid;
	grid-template-columns: 36px 1fr;
	gap: 7px;
	padding: 7px 8px;
	border-left: 3px solid transparent;
	border-radius: 6px;
	color: var(--color-muted);
	font-size: 12.5px;
	line-height: 1.45;
}

.p-toc__list .toc-level-3 a {
	grid-template-columns: 46px 1fr;
	padding-left: 12px;
	font-size: 12px;
}

.p-toc__list .toc-level-4 a {
	grid-template-columns: 56px 1fr;
	padding-left: 18px;
	font-size: 11.5px;
	font-weight: 600;
}

.p-toc__number {
	color: #627A98;
	font-weight: 800;
}

.p-toc__list a.is-active {
	background: var(--color-soft);
	border-left-color: var(--color-cta);
	color: var(--color-main-dark);
	font-weight: 800;
}

.p-toc__list a.is-active .p-toc__number {
	color: var(--color-cta);
}

.p-sidebar-posts,
.p-sidebar-categories {
	padding: 0;
	margin: 0;
	list-style: none;
}

.p-sidebar-posts li + li,
.p-sidebar-categories li + li {
	border-top: 1px solid var(--color-border);
}

.p-sidebar-posts a,
.p-sidebar-categories a {
	display: block;
	padding: 8px 0;
	color: var(--color-text);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
}

.p-sidebar-categories a {
	display: flex;
	justify-content: space-between;
	gap: 10px;
}

.p-sidebar-categories span {
	color: var(--color-muted);
}

.p-page,
.p-error-page {
	padding-bottom: 80px;
}

.p-page__header,
.p-archive-header {
	margin-bottom: 28px;
}

.p-archive-header {
	padding: 42px 0 18px;
}

.p-archive-header p,
.p-error-page p {
	color: var(--color-muted);
}

.p-search-form {
	display: flex;
	gap: 10px;
	margin: 22px 0 30px;
}

.p-search-form label {
	flex: 1;
}

.p-search-form input {
	width: 100%;
	min-height: 46px;
	padding: 10px 14px;
	border: 1px solid var(--color-border);
	border-radius: 8px;
}

.p-contact-fallback {
	padding: 20px;
	border: 1px solid var(--color-border);
	border-left: 5px solid var(--color-alert);
	border-radius: 8px;
	background: #FFF8ED;
}

.hkp-cf7-form,
.wpcf7 form {
	display: grid;
	gap: 20px;
	margin-top: 28px;
}

.hkp-cf7-form label,
.wpcf7 label {
	display: grid;
	gap: 8px;
	color: var(--color-main-dark);
	font-weight: 800;
}

.required,
.wpcf7 .required {
	display: inline-flex;
	align-items: center;
	margin-left: 4px;
	padding: 1px 6px;
	border-radius: 999px;
	background: rgba(217, 119, 6, .12);
	color: var(--color-alert);
	font-size: 12px;
	font-weight: 800;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--color-border);
	border-radius: 8px;
	background: var(--color-white);
	color: var(--color-text);
}

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

.wpcf7 input[type="submit"] {
	display: inline-flex;
	justify-content: center;
	width: min(280px, 100%);
	min-height: 52px;
	padding: 12px 18px;
	border: 1px solid var(--color-cta);
	border-radius: 8px;
	background: var(--color-cta);
	color: var(--color-white);
	font-weight: 800;
	cursor: pointer;
}

.wpcf7-not-valid-tip,
.wpcf7-response-output {
	color: var(--color-alert);
	font-size: 14px;
}

.l-footer {
	background: var(--color-main-dark);
	color: #DCEAF5;
}

.l-footer__inner {
	display: grid;
	gap: 22px;
	width: min(1120px, calc(100% - 40px));
	margin: 0 auto;
	padding: 44px 0;
}

.l-footer__site-name {
	margin: 0 0 8px;
	color: var(--color-white);
	font-size: 20px;
	font-weight: 800;
}

.l-footer p {
	margin: 0;
}

.l-footer a {
	color: var(--color-white);
}

.l-footer__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	font-weight: 700;
}

.l-footer__company,
.l-footer__copy {
	color: #BFD1E0;
	font-size: 14px;
}

.p-mobile-cta {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 60;
	padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
	background: rgba(255, 255, 255, .96);
	border-top: 1px solid var(--color-border);
	box-shadow: 0 -8px 22px rgba(8, 42, 70, .12);
}

.p-mobile-cta a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	border-radius: 8px;
	background: var(--color-cta);
	color: var(--color-white);
	font-weight: 800;
}

.p-mobile-cta.is-hidden {
	display: none;
}

.pagination {
	margin: 34px 0 72px;
	text-align: center;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	min-height: 38px;
	margin: 0 3px;
	padding: 6px 10px;
	border: 1px solid var(--color-border);
	border-radius: 6px;
	color: var(--color-main);
	font-weight: 800;
}

.page-numbers.current {
	background: var(--color-main);
	color: var(--color-white);
}

@media (max-width: 980px) {
	.l-header__toggle {
		display: block;
	}

	.l-header__nav {
		position: absolute;
		top: 74px;
		left: 0;
		right: 0;
		display: none;
		flex-direction: column;
		align-items: stretch;
		padding: 18px 24px 24px;
		background: var(--color-white);
		border-bottom: 1px solid var(--color-border);
	}

	.l-header__nav.is-open {
		display: flex;
	}

	.l-header__menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.l-header__menu a {
		display: block;
		padding: 12px 0;
	}

	.l-header__cta {
		width: 100%;
	}

	.p-front-hero__inner {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.p-front-hero__visual {
		max-width: 560px;
	}

	.l-content-with-sidebar {
		display: block;
	}

	.p-entry {
		width: 100%;
	}

	.l-sidebar {
		position: static;
		display: block;
		max-height: none;
		overflow: visible;
		margin-top: 44px;
		transform: none;
		will-change: auto;
	}

	.p-toc {
		max-height: none;
	}

	.p-toc__list {
		max-height: 360px;
	}

	.p-post-grid,
	.p-post-grid--compact,
	.p-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	body {
		font-size: 15.5px;
	}

	.l-container,
	.l-container--narrow,
	.p-front-hero__inner,
	.l-footer__inner {
		width: min(100% - 32px, 1120px);
	}

	.l-header__inner {
		padding: 0 16px;
	}

	.l-header__brand {
		min-width: 0;
	}

	.l-header__tagline {
		display: none;
	}

	.p-front-hero h1 {
		font-size: 30px;
	}

	.p-front-hero__content > p:not(.p-front-hero__eyebrow) {
		font-size: 16px;
	}

	.c-section-heading h2,
	.p-entry__header h1,
	.p-page__header h1,
	.p-archive-header h1,
	.p-error-page h1 {
		font-size: 26px;
	}

	.entry-content {
		font-size: 16.5px;
	}

	.entry-content h2 {
		font-size: 23px;
	}

	.entry-content h3 {
		font-size: 20px;
	}

	.p-post-grid,
	.p-post-grid--compact,
	.p-category-grid {
		grid-template-columns: 1fr;
	}

	.p-about-site,
	.c-cta-box,
	.p-supervisor {
		display: block;
	}

	.c-cta-box .c-button {
		width: 100%;
		margin-top: 18px;
	}

	.p-search-form {
		display: block;
	}

	.p-search-form .c-button {
		width: 100%;
		margin-top: 10px;
	}

	.p-mobile-cta {
		display: block;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}
