﻿:root {
	--color-text: #252027;
	--color-muted: #70676f;
	--color-line: #eee7eb;
	--color-pink: #f35b86;
	--color-pink-dark: #df416f;
	--color-blue: #2e78c7;
	--color-green: #2fa763;
	--color-orange: #e88a22;
	--color-purple: #8050c8;
	--color-cyan: #13a7a7;
	--shadow-soft: 0 16px 42px rgba(49, 36, 45, 0.08);
	--radius-card: 8px;
	--container: 1200px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--color-text);
	background: #fff;
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
	font-size: 16px;
	line-height: 1.85;
	letter-spacing: 0;
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
}

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

a {
	color: inherit;
	text-decoration: none;
}

p {
	margin: 0;
}

h1,
h2,
h3 {
	margin: 0;
	font-weight: 800;
	line-height: 1.5;
}

.skip-link,
.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;
}

.skip-link:focus {
	z-index: 10000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: #fff;
	border: 2px solid var(--color-pink);
	border-radius: 8px;
}

.site-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	background: rgba(255, 255, 255, 0.92);
	border-bottom: 1px solid rgba(238, 231, 235, 0.8);
	backdrop-filter: blur(18px);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(100% - 48px, var(--container));
	min-height: 74px;
	margin: 0 auto;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 900;
	color: #f64260;
}

.custom-logo-link img {
	max-width: 190px;
	max-height: 54px;
	object-fit: contain;
}

.brand__mark {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	color: #fff;
	background: linear-gradient(135deg, #ff6d91, #ffad4d);
	border-radius: 50%;
}

.brand__text {
	font-size: 1.55rem;
	letter-spacing: 0.12em;
	background: linear-gradient(90deg, #f83d5f, #f59a2b, #23a862, #2385de, #d75ab4);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.primary-nav {
	display: flex;
	align-items: center;
	gap: 28px;
	font-size: 0.88rem;
	font-weight: 700;
}

.primary-nav__list {
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-nav a {
	transition: color 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
	color: var(--color-pink-dark);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 0.72rem 2rem;
	color: #fff;
	font-weight: 800;
	line-height: 1.2;
	background: linear-gradient(135deg, #ff7ba0, #ef4676);
	border: 1px solid transparent;
	border-radius: 999px;
	box-shadow: 0 12px 24px rgba(239, 70, 118, 0.22);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button::after {
	content: "竊・;
	font-size: 1rem;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 16px 30px rgba(239, 70, 118, 0.28);
}

.button--ghost {
	color: var(--color-text);
	background: #fff;
	border-color: #f7a9bd;
	box-shadow: none;
}

.button--light {
	color: var(--color-pink-dark);
	background: #fff;
	box-shadow: none;
}

.button--small {
	min-height: 42px;
	padding: 0.65rem 1.35rem;
	font-size: 0.86rem;
}

.button--compact {
	min-height: 42px;
	padding: 0.6rem 1.3rem;
	font-size: 0.88rem;
}

.menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 0;
	background: transparent;
	border: 0;
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 26px;
	height: 2px;
	margin: 6px auto;
	background: var(--color-text);
	border-radius: 999px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
	opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

.hero {
	padding: 84px 0 94px;
	background:
		radial-gradient(circle at 84% 18%, rgba(245, 91, 134, 0.09), transparent 30%),
		linear-gradient(180deg, #fff 0%, #fff9fb 100%);
}

.hero__inner {
	display: grid;
	grid-template-columns: minmax(520px, 1.02fr) minmax(420px, 0.98fr);
	gap: 48px;
	align-items: center;
	width: min(100% - 48px, var(--container));
	margin: 0 auto;
}

.hero__eyebrow {
	margin-bottom: 1rem;
	font-size: 0.95rem;
	font-weight: 800;
}

.hero h1 {
	margin-bottom: 1.5rem;
	font-size: clamp(2.35rem, 4.2vw, 4rem);
	letter-spacing: 0;
}

.hero h1 span {
	display: block;
}

.hero h1 span:nth-child(2) {
	color: var(--color-pink);
}

.hero h1 span:nth-child(3) {
	background: linear-gradient(90deg, #f34f7b, #f59a2b, #32aa64, #2385de);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero__lead {
	max-width: 36rem;
	margin-bottom: 2rem;
	color: var(--color-muted);
	font-size: 1rem;
	line-height: 1.95;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 1.55rem;
}

.hero__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 22px;
	padding: 0;
	margin: 0;
	color: #524950;
	font-size: 0.92rem;
	font-weight: 800;
	list-style: none;
}

.hero__badges li::before {
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-right: 8px;
	vertical-align: -2px;
	background: #ffb54c;
	border-radius: 4px;
}

.hero__badges li:nth-child(2)::before {
	background: #f0a92f;
	border-radius: 50%;
}

.hero__badges li:nth-child(3)::before {
	background: #67c982;
}

.hero__visual {
	min-width: 0;
}

.hero__visual img {
	width: 100%;
	max-height: 520px;
	object-fit: contain;
}

.section {
	width: min(100% - 48px, var(--container));
	margin: 0 auto;
	padding: 76px 0;
}

.section--center {
	text-align: center;
}

.section__intro {
	margin-bottom: 2rem;
}

.section__label,
.section__sub {
	margin-bottom: 0.65rem;
	color: var(--color-pink);
	font-size: 0.88rem;
	font-weight: 800;
}

.section h2 {
	font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.section__heading-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 2rem;
}

.section__button {
	margin-top: 2rem;
}

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

.service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 324px;
	padding: 24px 18px 20px;
	overflow: hidden;
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-soft);
}

.service-card--pink { background: #fff1f5; }
.service-card--blue { background: #eef7ff; }
.service-card--green { background: #effbea; }
.service-card--orange { background: #fff5e6; }
.service-card--purple { background: #f7f1ff; }
.service-card--cyan { background: #eafafa; }
.service-card--beige { background: #fbf2e7; }
.service-card--rose { background: #fff0f3; }

.service-card h3 {
	min-height: 2.9em;
	margin-bottom: 14px;
	font-size: 1.2rem;
}

.service-card img,
.service-card .media-placeholder {
	width: 100%;
	max-width: 190px;
	aspect-ratio: 1 / 0.86;
	margin-bottom: 14px;
	object-fit: contain;
}

.service-card p {
	min-height: 4.2em;
	font-size: 0.94rem;
	line-height: 1.75;
}

.circle-link {
	display: grid;
	place-items: center;
	width: 26px;
	height: 26px;
	margin-top: auto;
	color: var(--color-pink-dark);
	background: #fff;
	border: 1px solid rgba(239, 70, 118, 0.35);
	border-radius: 50%;
}

.media-placeholder {
	display: grid;
	place-items: center;
	color: rgba(80, 64, 72, 0.45);
	font-size: 0.8rem;
	font-weight: 800;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.24)),
		repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.4) 0 8px, rgba(255, 255, 255, 0.1) 8px 16px);
	border: 1px dashed rgba(130, 110, 122, 0.24);
	border-radius: 8px;
}

.media-placeholder--hero {
	aspect-ratio: 1.22 / 1;
	min-height: 360px;
	background:
		radial-gradient(circle at 50% 48%, rgba(255, 120, 158, 0.18), transparent 34%),
		linear-gradient(135deg, #fff7fa, #f4fbff);
}

.media-placeholder--wide {
	aspect-ratio: 1.55 / 1;
	width: 100%;
}

.media-placeholder--cta {
	width: 148px;
	aspect-ratio: 1 / 1;
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.46);
}

.reason-panel {
	padding: 42px;
	text-align: center;
	background: linear-gradient(110deg, #fff5fb, #fff8ec 52%, #f6fff6);
	border-radius: var(--radius-card);
}

.reason-panel h2 {
	margin-bottom: 2rem;
}

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

.reason-grid h3 {
	margin: 12px 0 8px;
	font-size: 1rem;
}

.reason-grid p {
	color: var(--color-muted);
	font-size: 0.9rem;
	line-height: 1.8;
}

.reason-icon {
	display: inline-block;
	width: 48px;
	height: 48px;
	border-radius: 16px;
	background: var(--color-pink);
}

.reason-icon--heart { background: linear-gradient(135deg, #ff7ca2, #f45b82); }
.reason-icon--chart { background: linear-gradient(135deg, #74b8ff, #397eda); }
.reason-icon--pen { background: linear-gradient(135deg, #80d991, #32a85e); }
.reason-icon--support { background: linear-gradient(135deg, #c48bf2, #8750c9); }

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

.post-card {
	min-width: 0;
}

.post-card__thumb,
.post-card > .media-placeholder {
	display: block;
	margin-bottom: 14px;
	overflow: hidden;
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-soft);
}

.post-card__thumb img {
	width: 100%;
	aspect-ratio: 1.55 / 1;
	object-fit: cover;
	transition: transform 0.25s ease;
}

.post-card__thumb:hover img {
	transform: scale(1.04);
}

.post-card time {
	display: block;
	margin-bottom: 4px;
	color: #8d858c;
	font-size: 0.82rem;
}

.post-card__term {
	display: inline-flex;
	margin-bottom: 8px;
	padding: 2px 8px;
	color: #2d84c9;
	font-size: 0.75rem;
	font-weight: 800;
	line-height: 1.5;
	background: #e9f5ff;
	border-radius: 999px;
}

.post-card h3 {
	font-size: 1rem;
	line-height: 1.65;
}

.cta-band {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 26px;
	align-items: center;
	padding: 30px 42px;
	color: #fff;
	background: linear-gradient(135deg, #ff86a8, #ef5a86);
	border-radius: var(--radius-card);
}

.cta-band h2 {
	margin-bottom: 0.35rem;
	font-size: clamp(1.45rem, 2.8vw, 2rem);
}

.cta-band__visual img {
	width: 148px;
	height: 148px;
	object-fit: contain;
}

.site-footer {
	padding: 68px 0 28px;
	background: #fff;
	border-top: 1px solid var(--color-line);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 1.35fr 0.8fr 0.8fr 1fr;
	gap: 42px;
	width: min(100% - 48px, var(--container));
	margin: 0 auto;
}

.site-footer h2 {
	margin-bottom: 1rem;
	font-size: 1rem;
}

.site-footer p,
.site-footer li {
	color: var(--color-muted);
	font-size: 0.9rem;
	line-height: 1.85;
}

.site-footer ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	width: min(100% - 48px, var(--container));
	margin: 54px auto 0;
	color: #8d858c;
	font-size: 0.8rem;
}

.archive-header {
	width: min(100% - 48px, var(--container));
	margin: 0 auto;
	padding: 72px 0 0;
}

.archive-header h1,
.content-page__header h1 {
	font-size: clamp(2rem, 4vw, 3rem);
}

.content-page {
	width: min(100% - 48px, 860px);
	margin: 0 auto;
	padding: 76px 0;
}

.content-page__header {
	margin-bottom: 2rem;
}

.content-page__thumb {
	margin-bottom: 2rem;
	overflow: hidden;
	border-radius: var(--radius-card);
}

.entry-content {
	font-size: 1rem;
	line-height: 1.95;
}

.entry-content > * {
	margin-top: 0;
	margin-bottom: 1.4rem;
}

.entry-content h2 {
	margin-top: 3rem;
	margin-bottom: 1rem;
	font-size: 1.85rem;
}

.entry-content h3 {
	margin-top: 2.2rem;
	margin-bottom: 0.8rem;
	font-size: 1.35rem;
}

.entry-content a {
	color: var(--color-pink-dark);
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.entry-content img {
	border-radius: var(--radius-card);
}

@media (max-width: 980px) {
	.site-header__inner {
		width: min(100% - 32px, var(--container));
		min-height: 66px;
	}

	.primary-nav {
		position: fixed;
		inset: 0 0 0 auto;
		z-index: 1100;
		display: block;
		width: min(76vw, 330px);
		padding: 84px 28px 36px;
		color: #fff;
		background: linear-gradient(160deg, #f35b86, #e94876);
		box-shadow: -16px 0 30px rgba(53, 33, 42, 0.18);
		transform: translateX(105%);
		transition: transform 0.24s ease;
	}

	.menu-open .primary-nav {
		transform: translateX(0);
	}

	.primary-nav__list {
		display: grid;
		gap: 18px;
		font-size: 1.05rem;
	}

	.primary-nav__cta {
		width: 100%;
		margin-top: 28px;
		color: var(--color-pink-dark);
		background: #fff;
		box-shadow: none;
	}

	.menu-toggle {
		position: relative;
		z-index: 1200;
		display: block;
	}

	.menu-open .menu-toggle span:not(.screen-reader-text) {
		background: #fff;
	}

	.hero {
		padding: 46px 0 64px;
	}

	.hero__inner {
		grid-template-columns: 1fr;
		gap: 24px;
		width: min(100% - 32px, var(--container));
	}

	.hero__visual {
		order: 2;
	}

	.hero__content {
		order: 1;
	}

	.hero h1 {
		font-size: 2.45rem;
	}

	.service-grid,
	.post-grid,
	.reason-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cta-band,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.cta-band {
		text-align: center;
	}

	.cta-band__visual {
		justify-self: center;
	}
}

@media (max-width: 640px) {
	body {
		font-size: 15px;
		line-height: 1.85;
	}

	.custom-logo-link img {
		max-width: 150px;
	}

	.brand__text {
		font-size: 1.25rem;
	}

	.hero {
		padding-top: 34px;
	}

	.hero__eyebrow {
		font-size: 0.88rem;
		line-height: 1.8;
	}

	.hero h1 {
		margin-bottom: 1.1rem;
		font-size: 1.82rem;
		line-height: 1.5;
	}

	.hero__lead {
		margin-bottom: 1.55rem;
		font-size: 0.96rem;
		line-height: 1.95;
	}

	.hero__actions {
		display: grid;
		gap: 12px;
	}

	.button {
		width: 100%;
		min-height: 48px;
		padding-inline: 1.2rem;
		font-size: 0.94rem;
	}

	.hero__badges {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;
		font-size: 0.78rem;
		text-align: center;
	}

	.hero__badges li::before {
		display: block;
		margin: 0 auto 5px;
	}

	.media-placeholder--hero {
		min-height: 280px;
	}

	.section {
		width: min(100% - 32px, var(--container));
		padding: 58px 0;
	}

	.section__intro,
	.section__heading-row {
		margin-bottom: 2rem;
	}

	.section h2 {
		font-size: 1.55rem;
		line-height: 1.55;
	}

	.section__heading-row {
		align-items: flex-start;
		flex-direction: column;
	}

	.section__heading-row .button {
		width: auto;
	}

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

	.service-card {
		min-height: auto;
		padding: 22px 18px 18px;
	}

	.service-card h3 {
		font-size: 1rem;
		line-height: 1.5;
	}

	.service-card p {
		font-size: 0.82rem;
		line-height: 1.75;
	}

	.service-card img,
	.service-card .media-placeholder {
		max-width: 180px;
	}

	.reason-panel {
		padding: 28px 16px;
	}

	.reason-grid {
		gap: 20px 14px;
	}

	.reason-grid h3 {
		font-size: 0.88rem;
	}

	.reason-grid p {
		font-size: 0.78rem;
	}

	.post-grid {
		grid-template-columns: 1fr;
	}

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

	.post-grid--works .post-card h3 {
		font-size: 0.9rem;
	}

	.cta-band {
		padding: 30px 22px;
	}

	.cta-band__visual img,
	.media-placeholder--cta {
		width: 116px;
		height: 116px;
	}

	.site-footer {
		padding-top: 48px;
	}

	.site-footer__inner,
	.site-footer__bottom {
		width: min(100% - 32px, var(--container));
	}

	.site-footer__bottom {
		display: grid;
		text-align: center;
	}

	.content-page {
		width: min(100% - 32px, 860px);
		padding: 58px 0;
	}

	.entry-content {
		font-size: 0.98rem;
		line-height: 1.95;
	}

	.entry-content h2 {
		font-size: 1.45rem;
	}
}



/* Header navigation refinement */
.site-header__inner {
	width: min(100% - 48px, 1360px);
	min-height: 82px;
}

.primary-nav {
	flex: 1;
	justify-content: flex-end;
	min-width: 0;
}

.primary-nav__list,
.primary-nav__list ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-nav__list > li {
	position: relative;
	display: flex;
	align-items: center;
}

.primary-nav__list > li > a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	white-space: nowrap;
}

.primary-nav__list > .menu-item-has-children > a::after {
	content: "";
	width: 7px;
	height: 7px;
	margin-left: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
}

.primary-nav .sub-menu {
	position: absolute;
	top: calc(100% + 14px);
	left: 50%;
	z-index: 1001;
	width: max-content;
	min-width: 236px;
	padding: 12px;
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid rgba(238, 231, 235, 0.95);
	border-radius: 8px;
	box-shadow: 0 18px 46px rgba(45, 32, 40, 0.14);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 8px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.primary-nav .sub-menu::before {
	content: "";
	position: absolute;
	inset: -16px 0 auto;
	height: 18px;
}

.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

.primary-nav .sub-menu li + li {
	margin-top: 2px;
}

.primary-nav .sub-menu a {
	display: flex;
	align-items: center;
	min-height: 38px;
	padding: 8px 12px;
	color: var(--color-text);
	font-size: 0.86rem;
	font-weight: 700;
	line-height: 1.5;
	white-space: nowrap;
	border-radius: 6px;
}

.primary-nav .sub-menu a:hover,
.primary-nav .sub-menu a:focus-visible {
	color: var(--color-pink-dark);
	background: #fff2f6;
}

.submenu-toggle {
	display: none;
}

@media (max-width: 1180px) and (min-width: 981px) {
	.site-header__inner {
		width: min(100% - 32px, 1360px);
	}

	.primary-nav,
	.primary-nav__list {
		gap: 18px;
		font-size: 0.82rem;
	}

	.primary-nav__cta {
		padding-inline: 1.15rem;
	}
}

@media (max-width: 980px) {
	.site-header__inner {
		width: min(100% - 32px, 1360px);
	}

	.primary-nav {
		overflow-y: auto;
		width: min(86vw, 390px);
		padding: 82px 24px 34px;
	}

	.primary-nav__list {
		gap: 0;
	}

	.primary-nav__list > li {
		display: grid;
		grid-template-columns: 1fr auto;
		align-items: center;
		border-bottom: 1px solid rgba(255, 255, 255, 0.22);
	}

	.primary-nav__list > li > a {
		min-height: 54px;
		color: #fff;
		font-size: 1rem;
		line-height: 1.4;
	}

	.primary-nav__list > .menu-item-has-children > a::after {
		display: none;
	}

	.submenu-toggle {
		display: grid;
		place-items: center;
		width: 38px;
		height: 38px;
		padding: 0;
		color: #fff;
		background: rgba(255, 255, 255, 0.16);
		border: 1px solid rgba(255, 255, 255, 0.25);
		border-radius: 50%;
	}

	.submenu-toggle::before {
		content: "+";
		font-size: 1.25rem;
		font-weight: 700;
		line-height: 1;
	}

	.menu-item-has-children.is-open > .submenu-toggle::before {
		content: "-";
	}

	.primary-nav .sub-menu {
		position: static;
		grid-column: 1 / -1;
		width: 100%;
		min-width: 0;
		max-height: 0;
		padding: 0;
		margin: 0;
		overflow: hidden;
		background: rgba(255, 255, 255, 0.12);
		border: 0;
		border-radius: 8px;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		transition: max-height 0.22s ease, padding 0.22s ease, margin 0.22s ease;
	}

	.primary-nav .sub-menu::before {
		display: none;
	}

	.primary-nav .menu-item-has-children.is-open > .sub-menu {
		max-height: 520px;
		padding: 8px;
		margin-bottom: 12px;
	}

	.primary-nav .sub-menu a {
		min-height: 40px;
		padding: 8px 10px;
		color: #fff;
		font-size: 0.9rem;
		white-space: normal;
	}

	.primary-nav .sub-menu a:hover,
	.primary-nav .sub-menu a:focus-visible {
		color: #fff;
		background: rgba(255, 255, 255, 0.16);
	}
}




/* Mobile layout refinements */
.hero__visual--mobile {
	display: none;
}

@media (max-width: 640px) {
	.hero__visual--desktop {
		display: none;
	}

	.hero__visual--mobile {
		display: block;
		margin: 1.35rem 0 1.45rem;
	}

	.hero__visual--mobile img,
	.hero__visual--mobile .media-placeholder {
		width: min(100%, 360px);
		margin-inline: auto;
	}

	.hero__visual--mobile .media-placeholder--hero {
		min-height: 250px;
	}

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

	.service-card {
		min-height: auto;
		padding: 22px 18px 18px;
	}

	.service-card h3 {
		min-height: auto;
		font-size: 1.08rem;
	}

	.service-card img,
	.service-card .media-placeholder {
		max-width: 180px;
	}

	.service-card p {
		min-height: auto;
		font-size: 0.92rem;
	}

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

	.reason-grid > div {
		padding: 4px 6px 10px;
	}

	.reason-grid h3 {
		font-size: 1rem;
	}

	.reason-grid p {
		font-size: 0.9rem;
	}

	.post-grid--works {
		display: grid;
		grid-auto-flow: column;
		grid-auto-columns: minmax(82%, 1fr);
		grid-template-columns: none;
		gap: 16px;
		overflow-x: auto;
		padding: 4px 16px 18px 0;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
	}

	.post-grid--works .post-card {
		scroll-snap-align: start;
	}

	.post-grid--works::-webkit-scrollbar {
		height: 6px;
	}

	.post-grid--works::-webkit-scrollbar-thumb {
		background: #f7a9bd;
		border-radius: 999px;
	}
}

.cta-band h2 span {
	display: inline;
}

@media (max-width: 640px) {
	.cta-band h2 span {
		display: block;
	}
}


/* Web production page */
.web-hero {
	padding: 72px 0 64px;
	background: radial-gradient(circle at 82% 20%, rgba(243, 91, 134, 0.11), transparent 34%), linear-gradient(180deg, #fff, #fff9fb 100%);
}

.web-hero__inner,
.web-section {
	width: min(100% - 48px, 1200px);
	margin: 0 auto;
}

.web-hero__inner {
	display: grid;
	grid-template-columns: minmax(480px, 0.9fr) minmax(420px, 1.1fr);
	gap: 52px;
	align-items: center;
}

.web-pill,
.web-section__heading span {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	min-height: 28px;
	padding: 4px 12px;
	color: var(--color-pink-dark);
	font-size: 0.82rem;
	font-weight: 800;
	line-height: 1.4;
	background: #fff0f5;
	border-radius: 999px;
}

.web-hero h1 {
	margin: 1rem 0 1.25rem;
	font-size: clamp(2.15rem, 4.4vw, 4rem);
	line-height: 1.48;
}

.web-hero h1 span {
	color: var(--color-pink);
}

.web-hero__content > p:not(.web-pill) {
	max-width: 40rem;
	color: var(--color-muted);
	font-size: 1rem;
	line-height: 1.95;
}

.web-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 1.75rem;
}

.web-hero__visual {
	position: relative;
	min-height: 430px;
}

.web-device {
	position: absolute;
	display: grid;
	place-items: center;
	color: rgba(75, 60, 70, 0.46);
	font-weight: 800;
	background: #fff;
	border: 1px solid #f0e6eb;
	border-radius: 8px;
	box-shadow: var(--shadow-soft);
}

.web-device--desktop {
	top: 18px;
	right: 54px;
	width: min(80%, 470px);
	aspect-ratio: 1.58 / 1;
}

.web-device--phone {
	left: 22px;
	bottom: 86px;
	width: 118px;
	aspect-ratio: 0.56 / 1;
}

.web-cat-placeholder {
	position: absolute;
	right: 8px;
	bottom: 8px;
	display: grid;
	place-items: center;
	width: 330px;
	max-width: 62%;
	aspect-ratio: 1.45 / 1;
	color: rgba(37, 32, 39, 0.45);
	font-size: 1.2rem;
	font-weight: 900;
	background: linear-gradient(135deg, #fff, #fff2f7);
	border: 1px dashed rgba(243, 91, 134, 0.26);
	border-radius: 8px;
	box-shadow: 0 18px 46px rgba(243, 91, 134, 0.12);
}

.web-section {
	padding: 62px 0;
}

.web-section--center {
	text-align: center;
}

.web-section__heading {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 2rem;
}

.web-section__heading--between {
	justify-content: space-between;
	gap: 24px;
}

.web-section__heading--between > div {
	display: flex;
	align-items: center;
	gap: 12px;
}

.web-section__heading h2 {
	font-size: clamp(1.55rem, 2.6vw, 2.1rem);
}

.web-section__lead,
.web-note {
	margin: -1rem 0 2rem;
	color: var(--color-muted);
	text-align: center;
}

.web-trouble-grid,
.web-feature-grid,
.web-type-grid,
.web-option-grid {
	display: grid;
	gap: 18px;
}

.web-trouble-grid,
.web-option-grid {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.web-feature-grid {
	grid-template-columns: repeat(6, minmax(0, 1fr));
	text-align: center;
}

.web-type-grid {
	grid-template-columns: repeat(8, minmax(0, 1fr));
	text-align: center;
}

.web-soft-card,
.web-feature-grid article,
.web-type-grid div {
	padding: 22px 14px;
	background: #fff;
	border: 1px solid #f2e8ed;
	border-radius: 8px;
	box-shadow: 0 12px 32px rgba(45, 32, 40, 0.06);
}

.web-soft-card p,
.web-feature-grid p,
.web-type-grid strong {
	font-size: 0.9rem;
	line-height: 1.75;
}

.web-feature-grid h3 {
	margin: 12px 0 8px;
	font-size: 0.98rem;
}

.web-feature-grid p {
	color: var(--color-muted);
}

.web-icon {
	display: inline-block;
	width: 34px;
	height: 34px;
	margin-bottom: 10px;
	background: linear-gradient(135deg, #ff83a5, #6fc8ff);
	border-radius: 12px;
}

.web-icon--large {
	width: 44px;
	height: 44px;
}

.web-solution {
	display: inline-flex;
	margin-top: 24px;
	padding: 12px 28px;
	font-weight: 800;
	background: #fff0f5;
	border-radius: 999px;
}

.web-plan-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.web-plan {
	display: flex;
	flex-direction: column;
	padding: 28px 22px 22px;
	background: #fff;
	border: 1px solid #eee3e9;
	border-radius: 8px;
	box-shadow: var(--shadow-soft);
}

.web-plan h3 {
	font-size: 1.2rem;
}

.web-plan > p {
	min-height: 3.3em;
	margin: 8px 0 16px;
	color: var(--color-muted);
	font-size: 0.86rem;
	line-height: 1.65;
}

.web-price {
	margin-bottom: 18px;
	font-size: 2rem;
	font-weight: 900;
	line-height: 1;
}

.web-price small {
	font-size: 1rem;
}

.web-plan ul {
	padding: 0;
	margin: 0 0 20px;
	list-style: none;
}

.web-plan li {
	position: relative;
	padding-left: 1.35em;
	font-size: 0.88rem;
	line-height: 1.8;
}

.web-plan li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.72em;
	width: 8px;
	height: 8px;
	background: currentColor;
	border-radius: 50%;
}

.web-plan a {
	display: inline-flex;
	justify-content: center;
	margin-top: auto;
	padding: 9px 14px;
	color: #fff;
	font-weight: 800;
	border-radius: 999px;
}

.web-plan--green { color: #1d9d5d; border-color: #bfe9d0; }
.web-plan--blue { color: #307ed1; border-color: #c7ddf6; }
.web-plan--pink { color: var(--color-pink-dark); border-color: #ffc6d6; transform: translateY(-8px); }
.web-plan--purple { color: #7856c9; border-color: #d7c9f3; }
.web-plan--green a { background: #25b770; }
.web-plan--blue a { background: #3b86d8; }
.web-plan--pink a { background: var(--color-pink); }
.web-plan--purple a { background: #7f60d1; }
.web-plan p,
.web-plan li { color: var(--color-text); }

.web-table-wrap {
	overflow-x: auto;
	border: 1px solid #eee3e9;
	border-radius: 8px;
	box-shadow: var(--shadow-soft);
}

.web-support-table {
	width: 100%;
	min-width: 760px;
	border-collapse: collapse;
	background: #fff;
	font-size: 0.92rem;
}

.web-support-table th,
.web-support-table td {
	padding: 14px 16px;
	text-align: center;
	border-bottom: 1px solid #f1e8ed;
}

.web-support-table th:first-child {
	text-align: left;
	background: #fff8fb;
}

.web-flow {
	display: grid;
	grid-template-columns: repeat(8, minmax(0, 1fr));
	gap: 12px;
}

.web-flow div {
	position: relative;
	padding: 18px 10px;
	text-align: center;
	background: #fff;
	border: 1px solid #eee3e9;
	border-radius: 8px;
}

.web-flow span {
	display: block;
	margin-bottom: 8px;
	color: var(--color-pink-dark);
	font-weight: 900;
}

.web-flow strong {
	font-size: 0.86rem;
}

.web-faq-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.web-faq-grid details {
	background: #fff;
	border: 1px solid #eee3e9;
	border-radius: 8px;
}

.web-faq-grid summary {
	padding: 15px 18px;
	font-weight: 800;
	cursor: pointer;
}

.web-faq-grid p {
	padding: 0 18px 16px;
	color: var(--color-muted);
	font-size: 0.92rem;
}

.web-cta {
	margin-top: 34px;
	margin-bottom: 72px;
}

/* PC page image and CTA final corrections. */
.pc-sales-slider {
	padding: 18px !important;
}

.pc-sales-slide {
	flex-basis: 300px !important;
}

.pc-sales-slide img {
	object-fit: contain !important;
	background: #fff !important;
}

.pc-sales-slide img,
.pc-sales-slide .media-placeholder {
	aspect-ratio: 16 / 10 !important;
}

.pc-contact-cta__inner {
	gap: 40px !important;
}

.pc-contact-cta h2 {
	font-size: clamp(1.65rem, 2.25vw, 2.15rem) !important;
	line-height: 1.45 !important;
	word-break: keep-all !important;
	overflow-wrap: normal !important;
}

.pc-contact-cta h2 span {
	display: block !important;
}

@media (max-width: 640px) {
	.pc-contact-cta h2 {
		font-size: clamp(1.28rem, 5.2vw, 1.55rem) !important;
	}
}

/* Final hero image reset: remove framed/raised image treatment on all service heroes. */
.hero__visual,
.hero__visual--mobile,
.web-hero__visual,
.web-hero__visual .web-device,
.seo-hero__visual,
.sns-hero__visual,
.company-hero__visual,
.pc-hero__visual,
.ai-hero__visual,
.pillar-hero__visual {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	filter: none !important;
}

.hero__visual img,
.hero__visual--mobile img,
.web-hero__visual img,
.web-hero__visual .web-device img,
.seo-hero__visual > img,
.sns-hero__visual > img,
.company-hero__visual img,
.pc-hero__visual > img,
.ai-hero__visual > img,
.pillar-hero__visual img {
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	filter: none !important;
	mix-blend-mode: multiply !important;
}

.web-hero__visual::before,
.web-hero__visual::after {
	display: none !important;
	content: none !important;
}

/* PC page final layout refinements. */
.pc-service-tab {
	min-height: 0 !important;
	padding: 24px 18px !important;
	justify-content: center !important;
}

.pc-service-tab span {
	display: none !important;
}

.pc-section--sales-detail .pc-sales-detail__content h2 {
	max-width: 10.8em !important;
}

.pc-section--reasons .pc-reason-grid {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 16px !important;
	max-width: 900px !important;
}

.pc-section--reasons .pc-reason-card {
	display: grid !important;
	grid-template-columns: 58px minmax(0, 1fr) !important;
	gap: 6px 18px !important;
	align-items: center !important;
	padding: 22px 24px !important;
	text-align: left !important;
}

.pc-section--reasons .pc-reason-card span {
	position: relative !important;
	grid-row: span 2 !important;
	width: 50px !important;
	height: 50px !important;
	margin: 0 !important;
	border: 2px solid currentColor !important;
	border-radius: 999px !important;
	background: #fff !important;
}

.pc-section--reasons .pc-reason-card span::before {
	content: "" !important;
	position: absolute !important;
	left: 15px !important;
	top: 13px !important;
	width: 16px !important;
	height: 9px !important;
	border-left: 4px solid currentColor !important;
	border-bottom: 4px solid currentColor !important;
	transform: rotate(-45deg) !important;
}

.pc-section--reasons .pc-reason-card h3,
.pc-section--reasons .pc-reason-card p {
	margin: 0 !important;
}

@media (min-width: 981px) {
	.pc-section--pickup {
		padding-top: 96px !important;
		padding-bottom: 104px !important;
	}

	.pc-contact-cta {
		padding-top: 88px !important;
		padding-bottom: 104px !important;
	}
}

@media (max-width: 640px) {
	.pc-section--sales-detail .pc-sales-detail__content h2 {
		max-width: none !important;
		font-size: clamp(1.22rem, 5.1vw, 1.45rem) !important;
		line-height: 1.38 !important;
		white-space: nowrap !important;
	}

	.related-guides--pc .related-guides__heading h2,
	.pc-section--pickup .pc-pickup-card h2 {
		font-size: clamp(1.08rem, 4.7vw, 1.35rem) !important;
		line-height: 1.38 !important;
		white-space: nowrap !important;
		text-align: center !important;
	}
}

/* PC page: reason cards and pickup CTA desktop correction. */
.pc-section--reasons .pc-reason-grid {
	grid-template-columns: 1fr !important;
	max-width: 980px !important;
	gap: 18px !important;
}

.pc-section--reasons .pc-reason-card {
	display: grid !important;
	grid-template-columns: 76px minmax(0, 1fr) !important;
	gap: 8px 24px !important;
	align-items: center !important;
	min-height: 136px !important;
	padding: 28px 34px !important;
	border-radius: 8px !important;
	text-align: left !important;
	box-shadow: none !important;
}

.pc-section--reasons .pc-reason-card .pc-card-icon {
	position: relative !important;
	grid-row: span 2 !important;
	width: 58px !important;
	height: 58px !important;
	margin: 0 !important;
	border: 2px solid currentColor !important;
	border-radius: 999px !important;
	background: #fff !important;
}

.pc-section--reasons .pc-reason-card .pc-card-icon img {
	display: none !important;
}

.pc-section--reasons .pc-reason-card .pc-card-icon::before {
	content: "" !important;
	position: absolute !important;
	left: 17px !important;
	top: 15px !important;
	width: 18px !important;
	height: 10px !important;
	border-left: 4px solid currentColor !important;
	border-bottom: 4px solid currentColor !important;
	transform: rotate(-45deg) !important;
}

.pc-section--reasons .pc-reason-card h3 {
	margin: 0 !important;
	color: #111827 !important;
	font-size: clamp(1.25rem, 1.7vw, 1.55rem) !important;
	line-height: 1.45 !important;
}

.pc-section--reasons .pc-reason-card p {
	margin: 0 !important;
	color: #243244 !important;
	font-size: 16px !important;
	line-height: 1.9 !important;
}

.pc-section--pickup {
	padding-top: 96px !important;
	padding-bottom: 96px !important;
}

.pc-section--pickup .pc-pickup-card {
	display: block !important;
	max-width: 1040px !important;
	margin: 0 auto 54px !important;
	padding: 58px 56px !important;
	text-align: center !important;
}

.pc-section--pickup .pc-pickup-card h2 {
	margin: 0 auto 20px !important;
	color: #36a94d !important;
	font-size: clamp(1.9rem, 2.8vw, 2.45rem) !important;
	line-height: 1.45 !important;
	white-space: normal !important;
}

.pc-section--pickup .pc-pickup-card p {
	max-width: 760px !important;
	margin: 0 auto 28px !important;
	font-size: 16px !important;
	line-height: 2 !important;
}

.pc-section--pickup .pc-pickup-card .button {
	display: inline-flex !important;
	width: auto !important;
	min-width: 210px !important;
	margin: 0 auto !important;
	padding: 0 34px !important;
}

@media (max-width: 640px) {
	.pc-section--reasons .pc-reason-card {
		grid-template-columns: 64px minmax(0, 1fr) !important;
		padding: 24px 20px !important;
	}

	.pc-section--pickup .pc-pickup-card {
		padding: 30px 20px !important;
		margin-bottom: 32px !important;
	}
}

.pc-section--faq .pc-section__heading,
.pc-section--faq .pc-section__heading--left {
	text-align: center !important;
}

.pc-section--faq .pc-section__heading h2::after,
.pc-section--faq .pc-section__heading--left h2::after {
	margin-left: auto !important;
	margin-right: auto !important;
}

/* PC page final layout refinements. */
.pc-service-tab {
	min-height: 0 !important;
	padding: 24px 18px !important;
	justify-content: center !important;
}

.pc-service-tab span {
	display: none !important;
}

.pc-section--sales-detail .pc-sales-detail__content h2 {
	max-width: 10.8em !important;
}

.pc-section--reasons .pc-reason-grid {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 16px !important;
	max-width: 900px !important;
}

.pc-section--reasons .pc-reason-card {
	display: grid !important;
	grid-template-columns: 58px minmax(0, 1fr) !important;
	gap: 6px 18px !important;
	align-items: center !important;
	padding: 22px 24px !important;
	text-align: left !important;
}

.pc-section--reasons .pc-reason-card span {
	position: relative !important;
	grid-row: span 2 !important;
	width: 50px !important;
	height: 50px !important;
	margin: 0 !important;
	border: 2px solid currentColor !important;
	border-radius: 999px !important;
	background: #fff !important;
}

.pc-section--reasons .pc-reason-card span::before {
	content: "" !important;
	position: absolute !important;
	left: 15px !important;
	top: 13px !important;
	width: 16px !important;
	height: 9px !important;
	border-left: 4px solid currentColor !important;
	border-bottom: 4px solid currentColor !important;
	transform: rotate(-45deg) !important;
}

.pc-section--reasons .pc-reason-card h3,
.pc-section--reasons .pc-reason-card p {
	margin: 0 !important;
}

@media (min-width: 981px) {
	.pc-section--pickup {
		padding-top: 96px !important;
		padding-bottom: 104px !important;
	}

	.pc-contact-cta {
		padding-top: 88px !important;
		padding-bottom: 104px !important;
	}
}

@media (max-width: 640px) {
	.pc-section--sales-detail .pc-sales-detail__content h2 {
		max-width: none !important;
		font-size: clamp(1.22rem, 5.1vw, 1.45rem) !important;
		line-height: 1.38 !important;
		white-space: nowrap !important;
	}

	.related-guides--pc .related-guides__heading h2,
	.pc-section--pickup .pc-pickup-card h2 {
		font-size: clamp(1.08rem, 4.7vw, 1.35rem) !important;
		line-height: 1.38 !important;
		white-space: nowrap !important;
		text-align: center !important;
	}
}

@media (max-width: 1100px) {
	.web-trouble-grid,
	.web-feature-grid,
	.web-option-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

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

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

@media (max-width: 760px) {
	.web-hero {
		padding: 42px 0 48px;
	}

	.web-hero__inner,
	.web-section {
		width: min(100% - 32px, 1200px);
	}

	.web-hero__inner {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.web-hero h1 {
		font-size: 1.86rem;
		line-height: 1.55;
	}

	.web-hero__actions {
		display: grid;
	}

	.web-hero__visual {
		min-height: 320px;
	}

	.web-device--desktop {
		right: 0;
		width: 86%;
	}

	.web-device--phone {
		left: 0;
		bottom: 72px;
		width: 82px;
	}

	.web-cat-placeholder {
		width: 240px;
		max-width: 72%;
	}

	.web-section {
		padding: 48px 0;
	}

	.web-section__heading,
	.web-section__heading--between,
	.web-section__heading--between > div {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.web-section__heading--between .button {
		width: auto;
	}

	.web-trouble-grid,
	.web-feature-grid,
	.web-type-grid,
	.web-option-grid,
	.web-plan-grid,
	.web-faq-grid {
		grid-template-columns: 1fr;
	}

	.web-plan--pink {
		transform: none;
	}

	.web-flow {
		grid-template-columns: 1fr;
	}

	.web-flow div {
		display: flex;
		align-items: center;
		gap: 12px;
		text-align: left;
	}

	.web-flow span {
		margin-bottom: 0;
	}
}

/* Web production page refinements */
.web-section__heading,
.web-section__heading--between,
.web-section__heading--between > div {
	justify-content: center;
	align-items: center;
	text-align: center;
}

.web-section__heading {
	flex-direction: column;
}

.web-section__heading span {
	display: none;
}

.web-section__heading--between {
	position: relative;
}

.web-section__heading--between .button {
	position: absolute;
	right: 0;
	bottom: 0;
}

.web-feature-grid {
	grid-template-columns: 1fr;
	gap: 28px;
	text-align: left;
}

.web-feature-grid article {
	display: grid;
	grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
	gap: 32px;
	align-items: center;
	padding: 28px;
}

.web-feature-grid article:nth-child(even) .web-feature-visual {
	order: 2;
}

.web-feature-grid article:nth-child(even) .web-feature-body {
	order: 1;
}

.web-feature-visual {
	display: grid;
	place-items: center;
	min-height: 190px;
	background: linear-gradient(135deg, #fff7fa, #f3fbff);
	border: 1px dashed rgba(243, 91, 134, 0.22);
	border-radius: 8px;
}

.web-feature-visual .web-icon {
	width: 82px;
	height: 82px;
	margin: 0;
	border-radius: 24px;
}

.web-feature-body h3 {
	margin: 0 0 0.8rem;
	font-size: 1.35rem;
}

.web-feature-body p {
	max-width: 38rem;
	font-size: 1rem;
	line-height: 1.95;
}

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

.web-type-grid div {
	display: grid;
	place-items: center;
	min-height: 72px;
	padding: 16px 12px;
	box-shadow: none;
}

.web-type-grid strong {
	font-size: 0.96rem;
	line-height: 1.6;
	text-align: center;
}

.web-plan-grid {
	align-items: stretch;
}

.web-plan,
.web-plan--pink {
	height: 100%;
	transform: none;
}

.web-plan > p {
	min-height: 4.9em;
}

.web-plan ul {
	flex: 1;
}

@media (max-width: 760px) {
	.web-section__heading,
	.web-section__heading--between,
	.web-section__heading--between > div {
		align-items: center;
		text-align: center;
	}

	.web-section__heading--between .button {
		position: static;
		width: auto;
		margin-top: 12px;
	}

	.web-feature-grid article,
	.web-feature-grid article:nth-child(even) {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 22px 18px;
		text-align: center;
	}

	.web-feature-grid article:nth-child(even) .web-feature-visual,
	.web-feature-grid article:nth-child(even) .web-feature-body {
		order: initial;
	}

	.web-feature-visual {
		min-height: 150px;
	}

	.web-feature-visual .web-icon {
		width: 64px;
		height: 64px;
	}

	.web-feature-body h3 {
		font-size: 1.12rem;
	}

	.web-feature-body p {
		font-size: 0.94rem;
	}

	.web-type-grid {
		grid-template-columns: 1fr;
	}

	.web-plan > p {
		min-height: auto;
	}
}

/* Readability and pastel section backgrounds */
:root {
	--color-muted: #5d535c;
}

body {
	color: #211c23;
}

.web-section {
	position: relative;
	width: 100%;
	padding: 70px 0;
}

.web-section > * {
	width: min(100% - 48px, 1200px);
	margin-left: auto;
	margin-right: auto;
}

.web-section:nth-of-type(2) { background: #fff7fb; }
.web-section:nth-of-type(3) { background: #f4fbff; }
.web-section:nth-of-type(4) { background: #f7fff4; }
.web-section:nth-of-type(5) { background: #fffaf0; }
.web-section:nth-of-type(6) { background: #f7f4ff; }
.web-section:nth-of-type(7) { background: #f2fffd; }
.web-section:nth-of-type(8) { background: #fff6f2; }
.web-section:nth-of-type(9) { background: #f7fbff; }
.web-section:nth-of-type(10) { background: #fff7fb; }

.web-section__heading,
.web-section__lead,
.web-note,
.web-trouble-grid,
.web-feature-grid,
.web-type-grid,
.web-plan-grid,
.web-table-wrap,
.web-option-grid,
.web-flow,
.web-faq-grid,
.web-solution,
.web-section .post-grid {
	position: relative;
	z-index: 1;
}

.web-note {
	clear: both;
	display: block;
	max-width: 760px;
	margin: 1.5rem auto 0;
	padding: 0 12px;
	color: #4f4650;
	font-size: 0.95rem;
	line-height: 1.9;
	text-align: center;
}

.web-type-grid {
	margin-bottom: 0;
}

.web-section p,
.web-feature-grid p,
.web-soft-card p,
.web-faq-grid p,
.web-plan > p,
.web-support-table,
.entry-content {
	color: #3f3740;
}

@media (max-width: 760px) {
	.web-section {
		padding: 56px 0;
	}

	.web-section > * {
		width: min(100% - 32px, 1200px);
	}

	.web-note {
		margin-top: 1.25rem;
		font-size: 0.92rem;
	}
}

/* Cute section dividers and gentle motion */
.web-section {
	overflow: hidden;
}

.web-section + .web-section::before {
	content: "";
	position: absolute;
	top: -22px;
	left: 50%;
	width: min(100% - 32px, 980px);
	height: 44px;
	background:
		radial-gradient(circle at 20px 22px, rgba(255, 132, 166, 0.26) 0 8px, transparent 9px),
		radial-gradient(circle at 64px 20px, rgba(104, 194, 255, 0.22) 0 7px, transparent 8px),
		radial-gradient(circle at 110px 22px, rgba(113, 215, 139, 0.22) 0 6px, transparent 7px);
	background-size: 132px 44px;
	transform: translateX(-50%);
	pointer-events: none;
	opacity: 0.9;
}

.web-section + .web-section::after {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: min(100% - 40px, 1120px);
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(243, 91, 134, 0.22), rgba(104, 194, 255, 0.2), transparent);
	transform: translateX(-50%);
	pointer-events: none;
}

.web-section__heading h2::after {
	content: "";
	display: block;
	width: 72px;
	height: 5px;
	margin: 14px auto 0;
	background: linear-gradient(90deg, #ff7fa4, #ffc15e, #6edc90, #69bfff);
	border-radius: 999px;
}

.web-hero__visual::before,
.web-hero__visual::after {
	content: "";
	position: absolute;
	z-index: 0;
	width: 58px;
	height: 58px;
	border: 2px dashed rgba(243, 91, 134, 0.35);
	border-radius: 18px;
	animation: moreism-float 5.5s ease-in-out infinite;
}

.web-hero__visual::before {
	top: 12px;
	left: 12%;
}

.web-hero__visual::after {
	right: 4%;
	bottom: 24%;
	border-color: rgba(85, 178, 244, 0.38);
	animation-delay: -2.2s;
}

.web-device,
.web-cat-placeholder,
.web-soft-card,
.web-feature-grid article,
.web-type-grid div,
.web-plan,
.web-flow div,
.web-faq-grid details,
.post-card {
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.web-soft-card:hover,
.web-feature-grid article:hover,
.web-type-grid div:hover,
.web-plan:hover,
.web-flow div:hover,
.web-faq-grid details:hover,
.post-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 42px rgba(45, 32, 40, 0.1);
	border-color: rgba(243, 91, 134, 0.24);
}

.web-icon {
	animation: moreism-soft-pop 4.8s ease-in-out infinite;
}

.web-feature-grid article:nth-child(2n) .web-icon,
.web-soft-card:nth-child(2n) .web-icon,
.web-option-grid .web-soft-card:nth-child(2n) .web-icon {
	animation-delay: -1.8s;
}

.web-reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

.web-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes moreism-float {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-12px) rotate(4deg); }
}

@keyframes moreism-soft-pop {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.06); }
}

@media (max-width: 760px) {
	.web-section + .web-section::before {
		top: -18px;
		height: 36px;
		background-size: 110px 36px;
	}

	.web-section__heading h2::after {
		width: 58px;
		height: 4px;
		margin-top: 12px;
	}

	.web-hero__visual::before,
	.web-hero__visual::after {
		width: 42px;
		height: 42px;
		border-radius: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.web-hero__visual::before,
	.web-hero__visual::after,
	.web-icon {
		animation: none;
	}

	.web-reveal,
	.web-reveal.is-visible,
	.web-device,
	.web-cat-placeholder,
	.web-soft-card,
	.web-feature-grid article,
	.web-type-grid div,
	.web-plan,
	.web-flow div,
	.web-faq-grid details,
	.post-card {
		transition: none;
		transform: none;
	}
}

/* Web production content refinements */
.web-trouble-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	text-align: left;
}

.web-trouble-list li {
	position: relative;
	padding: 16px 18px 16px 48px;
	color: #332b34;
	font-weight: 800;
	line-height: 1.65;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid #f2e3ea;
	border-radius: 8px;
	box-shadow: 0 10px 28px rgba(45, 32, 40, 0.06);
}

.web-trouble-list li::before {
	content: "?";
	position: absolute;
	left: 16px;
	top: 50%;
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	color: #fff;
	font-size: 0.85rem;
	background: linear-gradient(135deg, #ff7fa4, #ffb45e);
	border-radius: 50%;
	transform: translateY(-50%);
}

.web-solution {
	display: flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
	max-width: min(100%, 720px);
	margin: 28px auto 0;
	padding: 16px 34px;
	color: var(--color-pink-dark);
	font-size: 1.08rem;
	font-weight: 900;
	line-height: 1.55;
	text-align: center;
	background: linear-gradient(135deg, #fff0f6, #fffaf0);
	border: 1px solid #ffd4df;
	border-radius: 999px;
	box-shadow: 0 14px 34px rgba(243, 91, 134, 0.12);
}

.web-flow {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	max-width: 900px;
}

.web-flow::before {
	content: "";
	position: absolute;
	top: 28px;
	bottom: 28px;
	left: 27px;
	width: 2px;
	background: linear-gradient(180deg, #ff9ab7, #7cc7ff, #79d995, #ffc15e);
}

.web-flow div {
	position: relative;
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 18px;
	align-items: start;
	padding: 20px 22px;
	text-align: left;
}

.web-flow div > div {
	display: block;
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.web-flow span {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	margin: 0;
	color: #fff;
	font-weight: 900;
	background: linear-gradient(135deg, #ff7fa4, #6fc8ff);
	border: 4px solid #fff;
	border-radius: 50%;
	box-shadow: 0 8px 20px rgba(45, 32, 40, 0.12);
}

.web-flow span::before {
	content: "";
	position: absolute;
	right: -7px;
	bottom: -4px;
	width: 18px;
	height: 18px;
	background: #fff;
	border: 2px solid #ffb45e;
	border-radius: 50%;
}

.web-flow strong {
	display: block;
	margin-bottom: 0.45rem;
	font-size: 1.08rem;
}

.web-flow p {
	margin: 0;
	color: #3f3740;
	font-size: 0.95rem;
	line-height: 1.9;
}

.web-cta .button,
.cta-band .button--light {
	width: fit-content;
	min-width: 0;
	padding-inline: 2rem;
	justify-self: end;
}

@media (max-width: 760px) {
	.web-cta {
		margin-bottom: 48px;
	}

	.web-trouble-list {
		grid-template-columns: 1fr;
	}

	.web-solution {
		padding: 15px 20px;
		border-radius: 8px;
		font-size: 1rem;
	}

	.web-flow::before {
		left: 25px;
	}

	.web-flow div {
		grid-template-columns: 52px 1fr;
		gap: 14px;
		padding: 18px 14px;
	}

	.web-flow span {
		width: 52px;
		height: 52px;
	}

	.web-flow strong {
		font-size: 1rem;
	}

	.web-flow p {
		font-size: 0.9rem;
	}

	.web-cta .button,
	.cta-band .button--light {
		width: fit-content;
		margin-inline: auto;
		padding-inline: 1.6rem;
	}
}

/* Web section vertical breathing room */
.web-section {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.web-section__heading {
	margin-top: 0;
	margin-bottom: 2.5rem;
}

.web-section > :last-child {
	margin-bottom: 0;
}

@media (max-width: 760px) {
	.web-section {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	.web-section__heading {
		margin-bottom: 2rem;
	}
}

/* Larger visual breathing area before each web section heading */
.web-section {
	padding-top: 7rem;
	padding-bottom: 6rem;
}

.web-section + .web-section::before {
	top: 18px;
	height: 56px;
}

.web-section + .web-section::after {
	top: 44px;
}

.web-section__heading {
	margin-bottom: 3rem;
}

.web-section__heading h2 {
	margin-top: 1rem;
}

@media (max-width: 760px) {
	.web-section {
		padding-top: 6rem;
		padding-bottom: 5rem;
	}

	.web-section + .web-section::before {
		top: 16px;
		height: 46px;
	}

	.web-section + .web-section::after {
		top: 38px;
	}

	.web-section__heading {
		margin-bottom: 2.5rem;
	}
}

/* Larger closing space inside web sections */
.web-section {
	padding-bottom: 8rem;
}

.web-section > :last-child {
	margin-bottom: 0;
}

.web-plan-grid,
.web-trouble-list,
.web-feature-grid,
.web-type-grid,
.web-option-grid,
.web-flow,
.web-faq-grid,
.web-table-wrap,
.web-section .post-grid {
	margin-bottom: 1.5rem;
}

@media (max-width: 760px) {
	.web-section {
		padding-bottom: 6.5rem;
	}
}

/* Remove dotted orb section dividers */
.web-section + .web-section::before,
.web-section + .web-section::after {
	display: none;
	content: none;
}

/* Web production heading size adjustment */
.web-section__heading h2 {
	font-size: clamp(1.7rem, 3vw, 2.5rem);
}

@media (max-width: 760px) {
	.web-section__heading h2 {
		font-size: 1.55rem;
	}
}

/* Remove hover lift and shadow effects */
.web-soft-card:hover,
.web-feature-grid article:hover,
.web-type-grid div:hover,
.web-plan:hover,
.web-flow div:hover,
.web-faq-grid details:hover,
.post-card:hover {
	transform: none;
	box-shadow: none;
	border-color: inherit;
}

/* Web production editable media and hero title tuning */
.web-hero h1 {
	font-size: clamp(2rem, 3.6vw, 3.35rem);
}

.web-hero-title-line {
	display: block;
}

.web-hero-title-line--2 {
	color: var(--color-pink);
}

.web-device img,
.web-cat-placeholder img,
.web-feature-visual img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.web-feature-visual img {
	max-width: 100%;
	max-height: 220px;
}

@media (max-width: 760px) {
	.web-hero h1 {
		font-size: 1.68rem;
		line-height: 1.62;
	}
}

/* Blog index and single pages */
.blog-hero,
.blog-single-hero {
	position: relative;
	padding: 92px 0 88px;
	overflow: hidden;
	background: radial-gradient(circle at 8% 72%, rgba(255, 136, 168, 0.16), transparent 26%), radial-gradient(circle at 92% 72%, rgba(255, 198, 216, 0.22), transparent 25%), linear-gradient(180deg, #fff, #fff7fb);
}

.blog-hero__inner,
.blog-single-hero__inner,
.blog-layout,
.blog-single-layout,
.blog-category-band {
	width: min(100% - 48px, 1200px);
	margin: 0 auto;
}

.blog-hero__inner {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 40px;
	align-items: center;
}

.blog-hero__content,
.blog-single-hero__inner {
	text-align: center;
}

.blog-hero h1,
.blog-single-hero h1 {
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.45;
}

.blog-hero p,
.blog-single-meta {
	max-width: 34rem;
	margin: 1rem auto 0;
	color: #4b424b;
	line-height: 1.9;
}

.blog-book {
	display: grid;
	place-items: center;
	aspect-ratio: 1.35 / 1;
	color: rgba(223, 65, 111, 0.55);
	font-weight: 900;
	background: #fff;
	border: 1px dashed rgba(243, 91, 134, 0.28);
	border-radius: 8px;
	box-shadow: var(--shadow-soft);
}

.blog-layout,
.blog-single-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 40px;
	padding: 72px 0;
}

.blog-section-heading {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 1.5rem;
}

.blog-section-heading span {
	width: 14px;
	height: 28px;
	background: var(--color-pink);
	border-radius: 999px;
}

.blog-section-heading h2,
.blog-widget h2,
.blog-category-band h2 {
	font-size: 1.25rem;
}

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

.blog-card,
.blog-widget,
.blog-category-band,
.blog-single-main {
	background: #fff;
	border: 1px solid #f0e4ea;
	border-radius: 8px;
	box-shadow: 0 12px 34px rgba(45, 32, 40, 0.06);
}

.blog-card {
	overflow: hidden;
}

.blog-card__thumb {
	position: relative;
	display: block;
	overflow: hidden;
}

.blog-card__thumb img,
.blog-card__thumb .media-placeholder {
	width: 100%;
	aspect-ratio: 1.45 / 1;
	object-fit: cover;
}

.blog-card__cat {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 6px 12px;
	color: #fff;
	font-size: 0.78rem;
	font-weight: 900;
	line-height: 1.3;
	background: linear-gradient(135deg, #ff7fa4, #f35b86);
	border-radius: 999px;
}

.blog-card__thumb .blog-card__cat {
	position: absolute;
	left: 14px;
	bottom: 14px;
}

.blog-card__body {
	padding: 18px 18px 22px;
}

.blog-card time,
.blog-single-meta time {
	color: #70636d;
	font-size: 0.86rem;
}

.blog-card h3 {
	margin: 0.45rem 0 0.75rem;
	font-size: 1.05rem;
	line-height: 1.65;
}

.blog-card p {
	color: #4b424b;
	font-size: 0.92rem;
	line-height: 1.85;
}

.blog-sidebar {
	display: grid;
	align-content: start;
	gap: 20px;
}

.blog-widget {
	padding: 22px;
}

.blog-widget h2 {
	margin-bottom: 1rem;
}

.blog-widget .search-form {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px;
}

.blog-widget .search-field {
	width: 100%;
	min-height: 44px;
	padding: 0 14px;
	border: 1px solid #eee1e8;
	border-radius: 999px;
}

.blog-widget .search-submit {
	min-height: 44px;
	padding: 0 16px;
	color: #fff;
	font-weight: 800;
	background: var(--color-pink);
	border: 0;
	border-radius: 999px;
}

.blog-category-list,
.blog-ranking {
	padding: 0;
	margin: 0;
	list-style: none;
}

.blog-category-list li + li,
.blog-ranking li + li {
	margin-top: 12px;
}

.blog-category-list a {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	color: #3e3540;
	font-weight: 800;
}

.blog-category-list em {
	font-style: normal;
	color: #827681;
}

.blog-ranking a {
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 10px;
	align-items: center;
	font-weight: 800;
	font-size: 0.86rem;
	line-height: 1.55;
}

.blog-ranking img {
	width: 58px;
	height: 58px;
	object-fit: cover;
	border-radius: 8px;
}

.blog-download-card {
	text-align: center;
	background: linear-gradient(135deg, #eef9ff, #fff1f6);
}

.blog-download-card p {
	margin-bottom: 1rem;
	font-weight: 900;
}

.blog-category-band {
	margin-bottom: 72px;
	padding: 28px;
	background: linear-gradient(135deg, #fff4f8, #fffafa);
}

.blog-category-band div {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 1rem;
}

.blog-category-band a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 96px;
	min-height: 48px;
	padding: 8px 14px;
	font-weight: 800;
	background: #fff;
	border: 1px solid #f1e3ea;
	border-radius: 999px;
}

.navigation.pagination {
	margin-top: 36px;
	text-align: center;
}

.nav-links {
	display: inline-flex;
	gap: 10px;
	align-items: center;
}

.page-numbers {
	display: grid;
	place-items: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	background: #fff;
	border: 1px solid #eadfe5;
	border-radius: 8px;
}

.page-numbers.current {
	color: #fff;
	background: var(--color-pink);
	border-color: var(--color-pink);
}

.blog-single-main {
	padding: 34px;
}

.blog-single-thumb {
	margin-bottom: 2rem;
	overflow: hidden;
	border-radius: 8px;
}

.blog-single-thumb img {
	width: 100%;
	max-height: 520px;
	object-fit: cover;
}

.blog-entry-content {
	color: #332b34;
	font-size: 1rem;
	line-height: 2;
}

.blog-entry-content h2 {
	padding-bottom: 0.55rem;
	border-bottom: 3px solid #ffd2dd;
}

.blog-single-nav {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid #f0e4ea;
}

@media (max-width: 980px) {
	.blog-hero__inner,
	.blog-layout,
	.blog-single-layout {
		grid-template-columns: 1fr;
	}

	.blog-hero__visual,
	.blog-sidebar {
		display: none;
	}

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

@media (max-width: 640px) {
	.blog-hero,
	.blog-single-hero {
		padding: 52px 0 46px;
	}

	.blog-hero__inner,
	.blog-single-hero__inner,
	.blog-layout,
	.blog-single-layout,
	.blog-category-band {
		width: min(100% - 32px, 1200px);
	}

	.blog-hero h1,
	.blog-single-hero h1 {
		font-size: 1.8rem;
	}

	.blog-layout,
	.blog-single-layout {
		padding: 42px 0;
	}

	.blog-card-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.blog-card__body {
		padding: 16px;
	}

	.blog-single-main {
		padding: 20px 16px;
	}

	.blog-single-nav {
		display: grid;
	}

	.blog-category-band {
		padding: 22px 16px;
	}

	.blog-category-band div {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.blog-category-band a {
		min-width: 0;
		border-radius: 8px;
	}
}

/* Blog readability refinements */
.blog-hero__inner {
	display: block;
	max-width: 760px;
	text-align: center;
}

.blog-hero__visual {
	display: none;
}

@media (min-width: 981px) {
	.blog-card-list {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.blog-card-list .blog-card {
		display: grid;
		grid-template-columns: 240px minmax(0, 1fr);
		align-items: stretch;
	}

	.blog-card-list .blog-card__thumb img,
	.blog-card-list .blog-card__thumb .media-placeholder {
		height: 100%;
		min-height: 168px;
		aspect-ratio: auto;
	}

	.blog-card-list .blog-card__body {
		padding: 22px 24px;
	}

	.blog-card-list .blog-card h3 {
		font-size: 1.18rem;
		line-height: 1.65;
	}

	.blog-card-list .blog-card p {
		font-size: 0.96rem;
		line-height: 1.9;
	}
}

.blog-card__cat,
.blog-category-list a span {
	white-space: normal;
}

/* Blog thumbnail normalization */
.blog-card__thumb {
	height: 100%;
	min-height: 0;
	background: #fff7fb;
}

.blog-card__thumb img,
.blog-card__thumb .media-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	object-position: center;
}

@media (min-width: 981px) {
	.blog-card-list .blog-card {
		grid-template-columns: 220px minmax(0, 1fr);
		min-height: 170px;
		max-height: 220px;
		overflow: hidden;
	}

	.blog-card-list .blog-card__thumb {
		height: 100%;
		min-height: 170px;
		max-height: 220px;
	}

	.blog-card-list .blog-card__thumb img,
	.blog-card-list .blog-card__thumb .media-placeholder {
		height: 100%;
		min-height: 170px;
		max-height: 220px;
		aspect-ratio: auto;
	}

	.blog-card-list .blog-card__body {
		display: flex;
		flex-direction: column;
		justify-content: center;
		min-width: 0;
	}

	.blog-card-list .blog-card p {
		display: -webkit-box;
		overflow: hidden;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
	}
}

@media (max-width: 980px) {
	.blog-card__thumb img,
	.blog-card__thumb .media-placeholder {
		height: auto;
		aspect-ratio: 16 / 10;
	}
}

/* Blog single title and sidebar refinements */
.blog-single-hero {
	padding: 72px 0 68px;
}

.blog-single-hero__inner {
	max-width: 920px;
}

.blog-single-hero h1 {
	max-width: 900px;
	margin: 0.85rem auto 0;
	font-size: clamp(2rem, 3.2vw, 3.15rem);
	line-height: 1.45;
	word-break: keep-all;
	overflow-wrap: anywhere;
}

.blog-ranking--numbered {
	counter-reset: ranking;
}

.blog-ranking--numbered li {
	counter-increment: ranking;
	position: relative;
}

.blog-ranking--numbered li::before {
	content: counter(ranking);
	position: absolute;
	z-index: 2;
	left: -5px;
	top: -5px;
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	color: #fff;
	font-size: 0.78rem;
	font-weight: 900;
	background: var(--color-pink);
	border: 2px solid #fff;
	border-radius: 50%;
}

.blog-tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.blog-tag-list a {
	display: inline-flex;
	padding: 6px 10px;
	color: #4b424b;
	font-size: 0.82rem;
	font-weight: 800;
	background: #fff6fa;
	border: 1px solid #f2dfe8;
	border-radius: 999px;
}

.blog-single-layout {
	align-items: start;
}

.blog-single-layout .blog-sidebar {
	position: sticky;
	top: 104px;
}

@media (max-width: 980px) {
	.blog-single-layout .blog-sidebar {
		display: grid;
		position: static;
	}
}

@media (max-width: 640px) {
	.blog-single-hero {
		padding: 46px 0 42px;
	}

	.blog-single-hero h1 {
		font-size: 1.65rem;
		line-height: 1.55;
		word-break: normal;
		overflow-wrap: break-word;
	}
}

/* Contact page and Contact Form 7 */
.contact-hero {
	padding: 86px 0 78px;
	background: radial-gradient(circle at 12% 70%, rgba(104, 210, 190, 0.16), transparent 25%), radial-gradient(circle at 88% 24%, rgba(255, 177, 94, 0.16), transparent 26%), linear-gradient(180deg, #fff, #f5fcff);
}

.contact-hero__inner,
.contact-form-shell,
.contact-methods {
	width: min(100% - 48px, 1080px);
	margin: 0 auto;
}

.contact-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	gap: 56px;
	align-items: center;
}

.contact-hero__content {
	text-align: center;
}

.contact-hero h1 {
	margin-bottom: 1.6rem;
	font-size: clamp(2rem, 4vw, 3rem);
}

.contact-hero h1::after,
.contact-methods h2::after {
	content: "";
	display: block;
	width: 64px;
	height: 5px;
	margin: 14px auto 0;
	background: linear-gradient(90deg, #ff7fa4, #ffc15e, #68d2be, #69bfff);
	border-radius: 999px;
}

.contact-hero p {
	max-width: 42rem;
	margin: 0 auto 1rem;
	color: #3f3740;
	line-height: 2;
}

.contact-envelope {
	display: grid;
	place-items: center;
	aspect-ratio: 1.18 / 1;
	color: #4f9fc4;
	font-weight: 900;
	background: linear-gradient(135deg, #ffffff, #effcff);
	border: 1px dashed rgba(82, 179, 214, 0.34);
	border-radius: 8px;
	box-shadow: 0 18px 42px rgba(68, 154, 190, 0.12);
}

.contact-form-section {
	padding: 70px 0 80px;
	background: linear-gradient(180deg, #f5fcff, #fffaf4);
}

.contact-form-shell {
	padding: 48px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid #e7f1f4;
	border-radius: 8px;
	box-shadow: 0 18px 50px rgba(55, 91, 105, 0.09);
}

.contact-entry-content {
	max-width: none;
}

.wpcf7 form {
	display: grid;
	gap: 22px;
}

.wpcf7 p {
	margin: 0;
}

.wpcf7 label {
	display: grid;
	gap: 8px;
	color: #211c23;
	font-weight: 800;
	line-height: 1.5;
}

.wpcf7 label .required,
.wpcf7 label .must,
.wpcf7 .required,
.wpcf7 .must {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	min-height: 20px;
	padding: 2px 7px;
	margin-right: 6px;
	color: #fff;
	font-size: 0.72rem;
	font-weight: 900;
	background: #ff6f95;
	border-radius: 4px;
}

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

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="date"],
.wpcf7 input[type="number"],
.wpcf7 select,
.wpcf7 textarea {
	width: 100%;
	min-height: 52px;
	padding: 0 16px;
	color: #211c23;
	font: inherit;
	background: #fff;
	border: 1px solid #dfe9ed;
	border-radius: 8px;
	outline: none;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.wpcf7 textarea {
	min-height: 170px;
	padding-top: 14px;
	resize: vertical;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
	background: #fbfeff;
	border-color: #68c7dc;
	box-shadow: 0 0 0 4px rgba(104, 199, 220, 0.16);
}

.wpcf7 ::placeholder {
	color: #9a9299;
}

.wpcf7-list-item {
	margin: 0;
}

.wpcf7-acceptance label,
.wpcf7-checkbox label,
.wpcf7-radio label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-weight: 700;
}

.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] {
	width: 18px;
	height: 18px;
	margin-top: 0.25em;
	accent-color: #ff6f95;
}

.wpcf7-submit {
	display: inline-flex;
	justify-content: center;
	min-width: 240px;
	min-height: 54px;
	padding: 0 2.2rem;
	margin: 8px auto 0;
	color: #fff;
	font-weight: 900;
	font-size: 1rem;
	background: linear-gradient(135deg, #ff7fa4, #ff9f6a);
	border: 0;
	border-radius: 999px;
	box-shadow: 0 14px 30px rgba(255, 111, 149, 0.22);
	cursor: pointer;
}

.wpcf7-spinner {
	margin: 12px auto 0;
}

.wpcf7-not-valid-tip {
	margin-top: 6px;
	color: #d93662;
	font-size: 0.86rem;
	font-weight: 700;
}

.wpcf7-response-output {
	margin: 18px 0 0 !important;
	padding: 14px 16px !important;
	border-radius: 8px;
}

.contact-methods {
	padding: 72px 0 84px;
	text-align: center;
}

.contact-methods h2 {
	margin-bottom: 2.2rem;
	font-size: clamp(1.55rem, 3vw, 2.3rem);
}

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

.contact-method-card {
	display: grid;
	grid-template-columns: 86px 1fr;
	gap: 22px;
	align-items: center;
	padding: 28px;
	text-align: left;
	background: #fff;
	border: 1px solid #e8edf0;
	border-radius: 8px;
	box-shadow: 0 14px 38px rgba(48, 76, 88, 0.08);
}

.contact-method-icon {
	display: grid;
	place-items: center;
	width: 72px;
	height: 72px;
	color: #fff;
	font-size: 0.85rem;
	font-weight: 900;
	background: linear-gradient(135deg, #68d2be, #69bfff);
	border-radius: 50%;
}

.contact-method-card--mail .contact-method-icon {
	background: linear-gradient(135deg, #ff7fa4, #ffb45e);
}

.contact-method-card strong,
.contact-method-card em,
.contact-method-card small {
	display: block;
}

.contact-method-card strong {
	font-size: 0.96rem;
}

.contact-method-card em {
	margin: 4px 0;
	color: #ff6f95;
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 900;
}

.contact-method-card small {
	color: #5d535c;
}

@media (max-width: 760px) {
	.contact-hero {
		padding: 48px 0 42px;
	}

	.contact-hero__inner,
	.contact-form-shell,
	.contact-methods {
		width: min(100% - 32px, 1080px);
	}

	.contact-hero__inner,
	.contact-method-grid {
		grid-template-columns: 1fr;
	}

	.contact-hero__visual {
		max-width: 220px;
		margin: 0 auto;
	}

	.contact-form-section {
		padding: 44px 0 56px;
	}

	.contact-form-shell {
		padding: 22px 16px;
	}

	.wpcf7 form {
		gap: 18px;
	}

	.wpcf7 input[type="text"],
	.wpcf7 input[type="email"],
	.wpcf7 input[type="tel"],
	.wpcf7 input[type="url"],
	.wpcf7 input[type="date"],
	.wpcf7 input[type="number"],
	.wpcf7 select,
	.wpcf7 textarea {
		min-height: 48px;
		padding-inline: 13px;
	}

	.wpcf7-submit {
		width: 100%;
		min-width: 0;
	}

	.contact-methods {
		padding: 54px 0 66px;
	}

	.contact-method-card {
		grid-template-columns: 1fr;
		justify-items: center;
		padding: 24px 18px;
		text-align: center;
	}
}

/* Contact refinements: no visual placeholder and stronger CF7 styling */
.contact-hero__inner {
	display: block;
	max-width: 820px;
	text-align: center;
}

.contact-hero__visual {
	display: none;
}

.contact-form-shell .wpcf7 {
	max-width: 820px;
	margin: 0 auto;
}

.contact-form-shell .wpcf7 form {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.contact-form-shell .wpcf7 p {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
	margin: 0 0 18px;
}

.contact-form-shell .wpcf7 label {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 8px;
	width: 100%;
	font-size: 0.95rem;
}

.contact-form-shell .wpcf7-form-control-wrap {
	width: 100%;
}

.contact-form-shell .wpcf7 input[type="text"],
.contact-form-shell .wpcf7 input[type="email"],
.contact-form-shell .wpcf7 input[type="tel"],
.contact-form-shell .wpcf7 input[type="url"],
.contact-form-shell .wpcf7 input[type="date"],
.contact-form-shell .wpcf7 input[type="number"],
.contact-form-shell .wpcf7 select,
.contact-form-shell .wpcf7 textarea {
	box-sizing: border-box;
	width: 100% !important;
	max-width: none !important;
}

.contact-form-shell .wpcf7 textarea {
	min-height: 190px;
}

.contact-form-shell .wpcf7 .wpcf7-submit {
	display: flex;
	width: fit-content !important;
	min-width: 240px;
	margin: 14px auto 0;
}

.contact-method-icon {
	position: relative;
	font-size: 0;
}

.contact-method-icon--tel::before,
.contact-method-icon--mail::before {
	content: "";
	display: block;
	width: 34px;
	height: 34px;
	background: #fff;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
}

.contact-method-icon--tel::before {
	mask-image: linear-gradient(#000, #000);
	-webkit-mask-image: linear-gradient(#000, #000);
	width: 30px;
	height: 30px;
	border: 5px solid transparent;
	border-left-color: #fff;
	border-bottom-color: #fff;
	border-radius: 50%;
	transform: rotate(-35deg);
	background: transparent;
}

.contact-method-icon--mail::before {
	width: 38px;
	height: 28px;
	background: transparent;
	border: 4px solid #fff;
	border-radius: 5px;
}

.contact-method-icon--mail::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 26px;
	height: 26px;
	border-left: 4px solid #fff;
	border-bottom: 4px solid #fff;
	transform: translate(-50%, -58%) rotate(-45deg);
}

@media (max-width: 760px) {
	.contact-form-shell .wpcf7 .wpcf7-submit {
		width: 100% !important;
		min-width: 0;
	}
}

/* Force Contact Form 7 layout reset */
.contact-form-shell .wpcf7,
.contact-form-shell .wpcf7-form {
	width: 100% !important;
	max-width: 760px !important;
	margin-inline: auto !important;
}

.contact-form-shell .wpcf7-form table,
.contact-form-shell .wpcf7-form tbody,
.contact-form-shell .wpcf7-form tr,
.contact-form-shell .wpcf7-form th,
.contact-form-shell .wpcf7-form td {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	text-align: left !important;
	vertical-align: top !important;
}

.contact-form-shell .wpcf7-form tr,
.contact-form-shell .wpcf7-form p,
.contact-form-shell .wpcf7-form .form-row,
.contact-form-shell .wpcf7-form dl,
.contact-form-shell .wpcf7-form dt,
.contact-form-shell .wpcf7-form dd {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 0 20px !important;
	padding: 0 !important;
}

.contact-form-shell .wpcf7-form th,
.contact-form-shell .wpcf7-form dt,
.contact-form-shell .wpcf7-form label {
	display: block !important;
	margin: 0 0 8px !important;
	color: #211c23 !important;
	font-weight: 900 !important;
	line-height: 1.55 !important;
}

.contact-form-shell .wpcf7-form td,
.contact-form-shell .wpcf7-form dd,
.contact-form-shell .wpcf7-form-control-wrap {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
}

.contact-form-shell .wpcf7-form br {
	display: none !important;
}

.contact-form-shell .wpcf7-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.contact-form-shell .wpcf7-form select,
.contact-form-shell .wpcf7-form textarea {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
}

.contact-form-shell .wpcf7-form textarea {
	height: 190px !important;
}

.contact-form-shell .wpcf7-form input[type="checkbox"],
.contact-form-shell .wpcf7-form input[type="radio"] {
	display: inline-block !important;
	width: 18px !important;
	height: 18px !important;
	margin-right: 8px !important;
}

.contact-form-shell .wpcf7-form .wpcf7-acceptance label,
.contact-form-shell .wpcf7-form .wpcf7-checkbox label,
.contact-form-shell .wpcf7-form .wpcf7-radio label {
	display: flex !important;
	align-items: flex-start !important;
	gap: 8px !important;
	font-weight: 700 !important;
}

.contact-form-shell .wpcf7-form .wpcf7-submit {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: fit-content !important;
	min-width: 240px !important;
	margin: 26px auto 0 !important;
}

@media (max-width: 760px) {
	.contact-form-shell .wpcf7-form .wpcf7-submit {
		width: 100% !important;
		min-width: 0 !important;
	}
}

/* Contact Form 7 inquiry table final override */
body.page-template-template-contact .contact-form-shell table.inquiry,
body.page-template-template-contact .contact-form-shell table.inquiry tbody,
body.page-template-template-contact .contact-form-shell table.inquiry tr,
body.page-template-template-contact .contact-form-shell table.inquiry th,
body.page-template-template-contact .contact-form-shell table.inquiry td {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;
	height: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	text-align: left !important;
	vertical-align: top !important;
	box-sizing: border-box !important;
}

body.page-template-template-contact .contact-form-shell table.inquiry {
	border-collapse: separate !important;
	border-spacing: 0 !important;
}

body.page-template-template-contact .contact-form-shell table.inquiry tr {
	margin-bottom: 22px !important;
}

body.page-template-template-contact .contact-form-shell table.inquiry th,
body.page-template-template-contact .contact-form-shell table.inquiry th p {
	color: #211c23 !important;
	font-size: 15px !important;
	font-weight: 900 !important;
	line-height: 1.55 !important;
}

body.page-template-template-contact .contact-form-shell table.inquiry th {
	margin-bottom: 9px !important;
}

body.page-template-template-contact .contact-form-shell table.inquiry p {
	margin: 0 !important;
}

body.page-template-template-contact .contact-form-shell table.inquiry br {
	display: none !important;
}

body.page-template-template-contact .contact-form-shell table.inquiry .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
	margin-top: 12px !important;
}

body.page-template-template-contact .contact-form-shell table.inquiry input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
body.page-template-template-contact .contact-form-shell table.inquiry select,
body.page-template-template-contact .contact-form-shell table.inquiry textarea {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	min-height: 54px !important;
	margin: 0 !important;
	padding: 14px 16px !important;
	border: 1px solid #dbe7ed !important;
	border-radius: 10px !important;
	background: #fff !important;
	color: #211c23 !important;
	font: inherit !important;
	box-shadow: none !important;
}

body.page-template-template-contact .contact-form-shell table.inquiry textarea {
	min-height: 210px !important;
	resize: vertical !important;
}

body.page-template-template-contact .contact-form-shell .haveto,
body.page-template-template-contact .contact-form-shell .any {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-width: 38px !important;
	margin-right: 8px !important;
	padding: 3px 8px !important;
	border-radius: 999px !important;
	color: #fff !important;
	font-size: 12px !important;
	font-weight: 900 !important;
	line-height: 1.2 !important;
}

body.page-template-template-contact .contact-form-shell .haveto {
	background: #ff6f9c !important;
}

body.page-template-template-contact .contact-form-shell .any {
	background: #9aa8b5 !important;
}

body.page-template-template-contact .contact-form-shell ruby,
body.page-template-template-contact .contact-form-shell rt {
	ruby-position: over !important;
	font-size: 11px !important;
}

body.page-template-template-contact .contact-form-shell .pcdate,
body.page-template-template-contact .contact-form-shell .spdate {
	display: inline-block !important;
	margin-bottom: 8px !important;
	color: #5f6c77 !important;
	font-size: 13px !important;
}

body.page-template-template-contact .contact-form-shell > .entry-content,
body.page-template-template-contact .contact-form-shell .wpcf7,
body.page-template-template-contact .contact-form-shell .wpcf7-form {
	width: 100% !important;
	max-width: 760px !important;
	margin-inline: auto !important;
}

body.page-template-template-contact .contact-form-shell .wpcf7-acceptance label {
	display: flex !important;
	align-items: flex-start !important;
	gap: 9px !important;
	font-weight: 700 !important;
	line-height: 1.8 !important;
}

body.page-template-template-contact .contact-form-shell .wpcf7-submit {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: fit-content !important;
	min-width: 220px !important;
	margin: 28px auto 0 !important;
	padding: 16px 30px !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: linear-gradient(135deg, #ff6f9c, #ff9b73) !important;
	color: #fff !important;
	font-weight: 900 !important;
	box-shadow: none !important;
}

@media (max-width: 760px) {
	body.page-template-template-contact .contact-form-shell .wpcf7-submit {
		width: 100% !important;
		min-width: 0 !important;
	}
}

/* SEO / AI / MEO service page */
.seo-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(72px, 8vw, 120px) 24px 64px;
	background: radial-gradient(circle at 12% 18%, rgba(255, 235, 242, .9), transparent 30%), radial-gradient(circle at 86% 24%, rgba(225, 240, 255, .95), transparent 34%), linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.seo-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(380px, .9fr);
	align-items: center;
	gap: clamp(40px, 6vw, 88px);
	max-width: 1180px;
	margin: 0 auto;
}

.seo-pill {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	margin: 0 0 22px;
	padding: 8px 18px;
	border-radius: 999px;
	background: rgba(255, 111, 156, .1);
	color: #f45f8f;
	font-size: 14px;
	font-weight: 900;
}

.seo-hero h1 {
	margin: 0 0 22px;
	color: #151927;
	font-size: clamp(2.4rem, 4.5vw, 4.4rem);
	font-weight: 900;
	line-height: 1.28;
	letter-spacing: 0;
}

.seo-title-line {
	display: block;
}

.seo-title-line--1,
.seo-title-line--2 {
	color: #f45f8f;
}

.seo-hero__content > p:not(.seo-pill) {
	max-width: 680px;
	margin: 0 0 32px;
	color: #263342;
	font-size: 16px;
	font-weight: 700;
	line-height: 2;
}

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

.seo-focus-card,
.seo-worry-card,
.seo-service-card,
.seo-result-card,
.seo-flow-item,
.seo-cta-card,
.seo-faq-list details {
	border: 1px solid rgba(143, 164, 190, .18);
	border-radius: 8px;
	background: rgba(255, 255, 255, .82);
	box-shadow: none;
}

.seo-focus-card {
	padding: 24px 18px;
	text-align: center;
}

.seo-focus-card--blue { background: linear-gradient(180deg, #eef6ff, #fff); }
.seo-focus-card--green { background: linear-gradient(180deg, #f0faed, #fff); }
.seo-focus-card--pink { background: linear-gradient(180deg, #fff0f5, #fff); }

.seo-focus-card h2 {
	margin: 12px 0 8px;
	font-size: 17px;
	font-weight: 900;
}

.seo-focus-card p {
	margin: 0;
	color: #314050;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.8;
}

.seo-icon,
.seo-mini-icon {
	display: inline-grid;
	place-items: center;
	position: relative;
	border-radius: 50%;
	background: #fff;
}

.seo-icon {
	width: 72px;
	height: 72px;
	margin: 0 auto;
}

.seo-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.seo-icon::before,
.seo-mini-icon::before {
	content: "";
	display: block;
	width: 34px;
	height: 34px;
	border: 4px solid currentColor;
	border-radius: 9px;
}

.seo-icon--seo,
.seo-mini-icon--chart { color: #5d95f7; background: #eaf3ff; }
.seo-icon--meo,
.seo-mini-icon--pin { color: #78c75d; background: #effbe9; }
.seo-icon--aio,
.seo-mini-icon--ai { color: #ff759d; background: #fff0f5; }
.seo-mini-icon--users { color: #ffb45c; background: #fff6e6; }
.seo-mini-icon--screen { color: #9d7bf2; background: #f4efff; }

.seo-icon--seo::after,
.seo-mini-icon--chart::after {
	content: "";
	position: absolute;
	width: 34px;
	height: 22px;
	border-left: 4px solid currentColor;
	border-bottom: 4px solid currentColor;
	transform: skew(-18deg) translateY(2px);
}

.seo-icon--meo::before,
.seo-mini-icon--pin::before {
	width: 30px;
	height: 30px;
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
}

.seo-icon--aio::before,
.seo-mini-icon--ai::before {
	border-radius: 14px;
}

.seo-hero__visual {
	min-height: 420px;
}

.seo-hero__visual > img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 520px;
	object-fit: contain;
}

.seo-visual-card {
	position: relative;
	width: min(100%, 520px);
	aspect-ratio: 1.08;
	margin-inline: auto;
}

.seo-window {
	position: absolute;
	inset: 9% 10% 24% 8%;
	border: 1px solid rgba(122, 159, 240, .28);
	border-radius: 10px;
	background: linear-gradient(180deg, #eff5ff, #fff);
}

.seo-window::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 42px;
	border-radius: 10px 10px 0 0;
	background: #7ea4fb;
}

.seo-window span {
	position: relative;
	display: inline-block;
	width: 9px;
	height: 9px;
	margin: 16px 0 0 13px;
	border-radius: 50%;
	background: #ffc5dc;
	z-index: 1;
}

.seo-chart {
	position: absolute;
	left: 22%;
	top: 38%;
	display: flex;
	align-items: flex-end;
	gap: 12px;
	width: 220px;
	height: 128px;
	padding: 24px;
	border-radius: 12px;
	background: rgba(255,255,255,.75);
}

.seo-chart i {
	display: block;
	width: 26px;
	border-radius: 8px 8px 0 0;
	background: linear-gradient(180deg, #bdd2ff, #edf3ff);
}

.seo-chart i:nth-child(1) { height: 38px; }
.seo-chart i:nth-child(2) { height: 58px; }
.seo-chart i:nth-child(3) { height: 84px; }
.seo-chart i:nth-child(4) { height: 108px; }

.seo-magnifier {
	position: absolute;
	right: 7%;
	top: 34%;
	width: 138px;
	height: 138px;
	border: 18px solid #5d8eea;
	border-radius: 50%;
}

.seo-magnifier::after {
	content: "";
	position: absolute;
	right: -58px;
	bottom: -42px;
	width: 86px;
	height: 20px;
	border-radius: 999px;
	background: #5d8eea;
	transform: rotate(45deg);
}

.seo-floating {
	position: absolute;
	border: 1px solid rgba(143, 164, 190, .2);
	border-radius: 12px;
	background: rgba(255,255,255,.9);
}

.seo-floating--pin {
	left: 12%;
	bottom: 13%;
	width: 136px;
	height: 90px;
	box-shadow: inset 0 0 0 999px rgba(255, 236, 242, .5);
}

.seo-floating--text {
	right: 18%;
	bottom: 15%;
	width: 170px;
	height: 76px;
	box-shadow: inset 0 0 0 999px rgba(237, 246, 255, .5);
}

.seo-section {
	padding: 72px 24px;
}

.seo-section--worries { background: linear-gradient(180deg, #f4f7fb 0%, #f8f5fb 100%); }
.seo-section--services { background: linear-gradient(180deg, #fbfdff, #fff7fa); }
.seo-section--results { background: linear-gradient(180deg, #fff, #f6fbf4); }
.seo-section--pricing { background: #fff; }
.seo-section--flow { background: #fff; }
.seo-section--faq-cta { background: linear-gradient(180deg, #fff, #f6fbff); }

.seo-section__heading {
	max-width: 760px;
	margin: 0 auto 34px;
	text-align: center;
}

.seo-section__heading--left {
	margin-inline: 0;
	text-align: left;
}

.seo-section__heading h2 {
	margin: 0;
	color: #151927;
	font-size: clamp(2rem, 3vw, 2.7rem);
	font-weight: 900;
	line-height: 1.45;
}

.seo-section__heading h2::after {
	content: "";
	display: block;
	width: 54px;
	height: 4px;
	margin: 16px auto 0;
	border-radius: 999px;
	background: linear-gradient(90deg, #ff7da5, #ffd66b, #69d2f0);
}

.seo-section__heading--left h2::after {
	margin-left: 0;
}

.seo-section__heading p {
	margin: 16px 0 0;
	color: #4a5868;
	font-weight: 700;
	line-height: 1.9;
}

.seo-worry-grid,
.seo-service-grid,
.seo-result-grid,
.seo-flow-list,
.seo-section--faq-cta {
	max-width: 1180px;
	margin-inline: auto;
}

.seo-worry-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
}

.seo-worry-card {
	padding: 24px 14px;
	text-align: center;
}

.seo-mini-icon {
	width: 58px;
	height: 58px;
	margin-bottom: 14px;
}

.seo-mini-icon::before {
	width: 25px;
	height: 25px;
	border-width: 3px;
}

.seo-worry-card p {
	margin: 0;
	color: #253142;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.7;
}

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

.seo-service-card {
	display: grid;
	grid-template-columns: 1fr 110px;
	gap: 20px;
	min-height: 250px;
	padding: 30px;
	overflow: hidden;
}

.seo-service-card--blue { background: linear-gradient(135deg, #edf6ff, #fff); }
.seo-service-card--green { background: linear-gradient(135deg, #eefbea, #fff); }
.seo-service-card--pink { background: linear-gradient(135deg, #fff0f5, #fff); }

.seo-service-card h3 {
	margin: 0 0 18px;
	font-size: 22px;
	font-weight: 900;
}

.seo-service-card--blue h3 { color: #4c8ef4; }
.seo-service-card--green h3 { color: #45ad55; }
.seo-service-card--pink h3 { color: #f45f8f; }

.seo-service-card ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.seo-service-card li {
	position: relative;
	margin: 0 0 10px;
	padding-left: 15px;
	color: #263342;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.7;
}

.seo-service-card li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .78em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: currentColor;
}

.seo-service-card__visual {
	align-self: end;
	min-height: 120px;
	border-radius: 16px;
	background: rgba(255,255,255,.48);
}

.seo-service-card__visual img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

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

.seo-result-card {
	padding: 32px 24px;
	text-align: center;
}

.seo-result-card p {
	margin: 0 0 10px;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.7;
}

.seo-result-card strong {
	display: block;
	font-size: clamp(3rem, 5vw, 5rem);
	font-weight: 900;
	line-height: 1;
}

.seo-result-card--blue { color: #4c8ef4; background: linear-gradient(180deg, #eff7ff, #fff); }
.seo-result-card--green { color: #43b85c; background: linear-gradient(180deg, #effbea, #fff); }
.seo-result-card--pink { color: #f45f8f; background: linear-gradient(180deg, #fff0f5, #fff); }

.seo-pricing-head,
.seo-pricing-grid,
.seo-pricing-note {
	position: relative;
	z-index: 1;
	max-width: 1180px;
	margin-inline: auto;
}

.contact-method-icon--custom::before,
.contact-method-icon--custom::after {
	content: none !important;
}

.contact-method-icon img {
	display: block;
	width: 42px;
	height: 42px;
	object-fit: contain;
}

@media (max-width: 760px) {
	.ai-section--services .ai-service-grid {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 18px !important;
	}

	.ai-section--services .ai-service-card {
		display: grid !important;
		grid-template-columns: 1fr !important;
		justify-items: center;
		gap: 12px;
		padding: 24px 20px !important;
		text-align: center !important;
	}

	.ai-section--services .ai-card-icon {
		grid-column: auto !important;
		grid-row: auto !important;
		width: 100%;
		max-width: 260px;
		margin: 0 auto 4px !important;
	}

	.ai-section--services .ai-card-icon img {
		width: 100%;
		max-width: 260px !important;
		border-radius: 14px;
		object-fit: cover;
	}

	.ai-section--services .ai-service-card h3 {
		margin: 0 !important;
		font-size: 1.12rem;
		line-height: 1.45;
	}

	.ai-section--services .ai-service-card p {
		margin: 0 !important;
		color: #263342;
		font-size: 16px;
		font-weight: 700;
		line-height: 1.85;
		text-align: left;
	}
}

/* Hero visuals should sit on the page, not as floating white image boxes. */
.hero__visual img,
.web-hero__visual img,
.seo-hero__visual > img,
.sns-hero__visual > img,
.company-hero__visual img,
.pc-hero__visual > img,
.ai-hero__visual > img,
.pillar-hero__visual img {
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	filter: none !important;
	mix-blend-mode: multiply;
}

.web-hero__visual,
.seo-hero__visual,
.sns-hero__visual,
.company-hero__visual,
.pc-hero__visual,
.ai-hero__visual,
.pillar-hero__visual {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.web-hero__visual::before,
.web-hero__visual::after {
	content: none !important;
}

.back-to-top {
	position: fixed;
	right: clamp(16px, 2.4vw, 28px);
	bottom: clamp(18px, 2.6vw, 32px);
	z-index: 1200;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 112px;
	min-height: 46px;
	padding: 12px 18px;
	border: 0;
	border-radius: 999px;
	background: #151927;
	color: #fff;
	font-family: inherit;
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
	box-shadow: 0 12px 28px rgba(21, 25, 39, .18);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity .2s ease, visibility .2s ease, transform .2s ease, background .2s ease;
}

.back-to-top::after {
	content: "↑";
	display: inline-grid;
	place-items: center;
	width: 24px;
	height: 24px;
	margin-left: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .14);
	color: #72d8ef;
	font-size: 15px;
	font-weight: 900;
}

.back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
	background: #f05a8a;
	color: #fff;
	outline: none;
}

@media (max-width: 640px) {
	.back-to-top {
		right: 14px;
		bottom: 14px;
		min-width: 94px;
		min-height: 42px;
		padding: 10px 14px;
		font-size: 12px;
	}

	.back-to-top::after {
		width: 22px;
		height: 22px;
		margin-left: 6px;
	}
}

/* AI hero: keep intentional line breaks without overflowing into the visual column. */
.ai-hero h1 {
	max-width: 12.5em !important;
	font-size: clamp(2rem, 3.15vw, 3.2rem) !important;
	line-height: 1.34 !important;
}

.ai-hero h1 .ai-title-line {
	display: block !important;
	white-space: normal !important;
	overflow-wrap: anywhere !important;
}

@media (max-width: 980px) {
	.ai-hero h1 {
		max-width: 100% !important;
		font-size: clamp(1.85rem, 7vw, 2.55rem) !important;
	}
}

.seo-section--pricing {
	--seo-ribbon-width: 182px;
	--seo-ribbon-height: 34px;
	--seo-ribbon-top: 25px;
	--seo-ribbon-right: -42px;
	--seo-ribbon-angle: 14deg;
	--seo-ribbon-text-y: 0px;
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(238, 247, 255, .82), rgba(255, 248, 235, .72) 48%, rgba(255, 241, 247, .78)),
		#fff;
}

.seo-section--pricing::before {
	display: none;
	content: none;
}

.seo-section--pricing::after {
	content: "";
	position: absolute;
	right: max(-90px, calc(50% - 720px));
	bottom: 70px;
	width: 220px;
	height: 220px;
	border-radius: 42% 58% 50% 50%;
	background: linear-gradient(135deg, rgba(255, 214, 107, .32), rgba(105, 210, 240, .2));
	transform: rotate(-12deg);
}

.seo-pricing-head {
	display: grid;
	grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
	gap: 48px;
	align-items: start;
	margin-bottom: 70px;
}

.seo-pricing-kicker {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 8px;
	color: #2489a6;
	font-size: 14px;
	font-weight: 900;
	letter-spacing: .04em;
}

.seo-pricing-kicker::before {
	content: "";
	width: 24px;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, #69d2f0, #ffd66b);
}

.seo-pricing-head h2 {
	margin: 0;
	color: #222;
	font-size: clamp(2rem, 3vw, 2.7rem);
	font-weight: 900;
	line-height: 1.35;
}

.seo-pricing-head > p {
	margin: 10px 0 0;
	color: #4a5868;
	font-weight: 800;
	line-height: 1.9;
}

.seo-pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
	gap: 22px;
}

.seo-price-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 520px;
	padding: 68px 36px 36px;
	overflow: hidden;
	border: 1px solid rgba(126, 148, 168, .18);
	border-radius: 18px;
	background: rgba(255, 255, 255, .9);
	box-shadow: 0 16px 36px rgba(36, 46, 66, .06);
}

.seo-price-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 8px;
	background: #333;
}

.seo-price-card--recommended {
	border-color: rgba(255, 125, 165, .42);
	transform: translateY(-16px);
	box-shadow: 0 22px 46px rgba(233, 93, 131, .12);
}

.seo-price-card:nth-child(2)::before {
	background: linear-gradient(90deg, #ff7da5, #ffd66b);
}

.seo-price-card:nth-child(3)::before {
	background: #333;
}

.seo-price-card__badge {
	position: absolute;
	left: 50%;
	top: 22px;
	display: grid;
	place-items: center;
	width: min(72%, 230px);
	height: 40px;
	margin: 0;
	padding: 0 18px;
	border-radius: 999px;
	background: #ff7da5;
	color: #fff;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.2;
	text-align: center;
	transform: translateX(-50%);
}

.seo-price-card__badge {
	transform-origin: center;
}

.seo-price-card__badge span {
	display: block;
	transform: translateY(var(--seo-ribbon-text-y));
}

.seo-price-card--recommended .seo-price-card__label {
	margin-top: 0;
}

.seo-price-card__label {
	display: grid;
	place-items: center;
	min-height: 1.4em;
	margin: 0 0 12px;
	color: #2489a6;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .06em;
	text-align: center;
}

.seo-price-card h3 {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 3.1em;
	margin: 0 0 16px;
	color: #222;
	font-size: clamp(1.45rem, 2vw, 2rem);
	font-weight: 900;
	line-height: 1.45;
	text-align: center;
}

.seo-price-card strong {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 2.45em;
	margin-bottom: 18px;
	color: #333;
	font-size: clamp(1.55rem, 2vw, 2.05rem);
	font-weight: 900;
	line-height: 1.2;
	text-align: center;
}

.seo-price-card--recommended strong {
	color: #f28a2e;
}

.seo-price-card__lead {
	min-height: 5.2em;
	margin: 0 0 28px;
	color: #4a5868;
	font-weight: 800;
	line-height: 1.8;
	text-align: center;
}

.seo-price-card ul {
	display: grid;
	gap: 12px;
	margin: auto 0 0;
	padding: 0;
	list-style: none;
}

.seo-price-card li {
	position: relative;
	padding-left: 24px;
	color: #263342;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.75;
}

.seo-price-card li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .58em;
	width: 12px;
	height: 7px;
	border-left: 3px solid #2fb366;
	border-bottom: 3px solid #2fb366;
	transform: rotate(-45deg);
}

.seo-pricing-note {
	margin-top: 18px;
	color: #596777;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.8;
	text-align: center;
}

.seo-flow-list {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 22px;
}

.seo-flow-item {
	position: relative;
	padding: 30px 18px 24px;
	text-align: center;
}

.seo-flow-item span {
	display: inline-grid;
	place-items: center;
	width: 46px;
	height: 46px;
	margin: -54px auto 18px;
	border-radius: 50%;
	background: #e8f0ff;
	color: #5d8eea;
	font-weight: 900;
}

.seo-flow-item h3 {
	margin: 0 0 8px;
	font-size: 17px;
	font-weight: 900;
}

.seo-flow-item p {
	margin: 0;
	color: #4a5868;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.7;
}

.seo-section--faq-cta {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 42px;
	align-items: start;
}

.seo-faq-list {
	display: grid;
	gap: 12px;
}

.seo-faq-list details {
	padding: 18px 20px;
}

.seo-faq-list summary {
	cursor: pointer;
	color: #1d2634;
	font-weight: 900;
}

.seo-faq-list p {
	margin: 14px 0 0;
	color: #4a5868;
	font-weight: 700;
	line-height: 1.9;
}

.seo-cta-card {
	padding: 36px 28px;
	text-align: center;
	background: linear-gradient(135deg, #fff7d7, #fff);
}

.seo-cta-card h2 {
	margin: 0 0 18px;
	color: #ff9c22;
	font-size: 2rem;
	font-weight: 900;
	line-height: 1.4;
}

.seo-cta-card p {
	margin: 0 0 24px;
	color: #2f3a49;
	font-weight: 800;
	line-height: 1.8;
}

@media (max-width: 980px) {
	.seo-hero {
		padding: 44px 20px 52px;
	}

	.seo-hero__inner {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.seo-hero__content {
		text-align: left;
	}

	.seo-pill {
		font-size: 12px;
	}

	.seo-hero h1 {
		font-size: clamp(2rem, 8vw, 3.3rem);
	}

	.seo-hero__content > p:not(.seo-pill) {
		font-size: 15px;
		line-height: 1.9;
	}

	.seo-focus-grid,
	.seo-worry-grid,
	.seo-service-grid,
	.seo-result-grid,
	.seo-flow-list,
	.seo-section--faq-cta {
		grid-template-columns: 1fr;
	}

	.seo-focus-grid--hero {
		gap: 14px;
	}

	.seo-focus-card {
		display: grid;
		grid-template-columns: 64px 1fr;
		gap: 14px;
		align-items: center;
		padding: 18px;
		text-align: left;
	}

	.seo-focus-card .seo-icon {
		grid-row: span 2;
		width: 56px;
		height: 56px;
	}

	.seo-focus-card h2 {
		margin: 0 0 4px;
	}

	.seo-hero__visual {
		min-height: 0;
	}

	.seo-section {
		padding: 56px 20px;
	}

	.seo-worry-card {
		display: grid;
		grid-template-columns: 52px 1fr;
		gap: 16px;
		align-items: center;
		padding: 18px;
		text-align: left;
	}

	.seo-mini-icon {
		width: 48px;
		height: 48px;
		margin: 0;
	}

	.seo-service-card {
		grid-template-columns: 1fr;
		min-height: 0;
		padding: 24px;
	}

	.seo-service-card__visual {
		display: none;
	}

	.seo-flow-list {
		gap: 18px;
	}

	.seo-flow-item {
		display: grid;
		grid-template-columns: 46px 1fr;
		gap: 8px 14px;
		padding: 20px;
		text-align: left;
	}

	.seo-flow-item span {
		grid-row: span 2;
		margin: 0;
	}

	.seo-section--faq-cta {
		gap: 28px;
	}
}
/* Blog sidebar ranking final layout fix */
.blog-sidebar .blog-ranking,
.blog-sidebar .blog-ranking--numbered {
	display: grid !important;
	gap: 14px !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.blog-sidebar .blog-ranking li,
.blog-sidebar .blog-ranking--numbered li {
	display: block !important;
	position: relative !important;
	margin: 0 !important;
	padding: 0 !important;
	min-width: 0 !important;
}

.blog-sidebar .blog-ranking li + li,
.blog-sidebar .blog-ranking--numbered li + li {
	border-top: 1px solid rgba(143, 164, 190, .18) !important;
	padding-top: 14px !important;
}

.blog-sidebar .blog-ranking a,
.blog-sidebar .blog-ranking--numbered a {
	display: grid !important;
	grid-template-columns: 72px minmax(0, 1fr) !important;
	align-items: center !important;
	gap: 12px !important;
	width: 100% !important;
	min-width: 0 !important;
	color: #101827 !important;
	font-weight: 900 !important;
	line-height: 1.55 !important;
	text-decoration: none !important;
	word-break: normal !important;
	overflow-wrap: anywhere !important;
}

.blog-sidebar .blog-ranking a::before,
.blog-sidebar .blog-ranking--numbered a::before {
	content: "";
	display: block;
	width: 72px;
	height: 54px;
	border-radius: 8px;
	background: linear-gradient(135deg, #fff1f6, #edf7ff);
}

.blog-sidebar .blog-ranking img,
.blog-sidebar .blog-ranking--numbered img {
	grid-column: 1;
	grid-row: 1;
	display: block !important;
	width: 72px !important;
	height: 54px !important;
	max-width: 72px !important;
	border-radius: 8px !important;
	object-fit: cover !important;
	background: #f5f8fb !important;
}

.blog-sidebar .blog-ranking span,
.blog-sidebar .blog-ranking--numbered span {
	grid-column: 2;
	grid-row: 1;
	display: block !important;
	min-width: 0 !important;
	max-width: 100% !important;
	font-size: 13px !important;
	line-height: 1.55 !important;
	letter-spacing: 0 !important;
	white-space: normal !important;
	word-break: normal !important;
	overflow-wrap: anywhere !important;
}

.blog-sidebar .blog-ranking--numbered li::before {
	z-index: 2 !important;
	left: -6px !important;
	top: -2px !important;
}

@media (min-width: 981px) {
	.blog-layout,
	.blog-single-layout {
		grid-template-columns: minmax(0, 1fr) 340px !important;
	}
}

@media (max-width: 980px) {
	.blog-sidebar .blog-ranking a,
	.blog-sidebar .blog-ranking--numbered a {
		grid-template-columns: 86px minmax(0, 1fr) !important;
	}

	.blog-sidebar .blog-ranking a::before,
	.blog-sidebar .blog-ranking--numbered a::before,
	.blog-sidebar .blog-ranking img,
	.blog-sidebar .blog-ranking--numbered img {
		width: 86px !important;
		height: 64px !important;
		max-width: 86px !important;
	}
}
/* SEO page refinements: list worries, one-column flow, FAQ CTA placement */
.seo-section--worries .seo-worry-grid {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 12px !important;
	max-width: 780px !important;
	margin-inline: auto !important;
}

.seo-section--worries .seo-worry-card {
	display: grid !important;
	grid-template-columns: 52px minmax(0, 1fr) !important;
	align-items: center !important;
	gap: 16px !important;
	padding: 16px 20px !important;
	text-align: left !important;
	background: rgba(255, 255, 255, .9) !important;
}

.seo-section--worries .seo-mini-icon {
	width: 46px !important;
	height: 46px !important;
	margin: 0 !important;
}

.seo-section--worries .seo-worry-card p {
	font-size: 15px !important;
	line-height: 1.75 !important;
}

.seo-service-grid {
	grid-template-columns: repeat(3, minmax(300px, 1fr)) !important;
	gap: 22px !important;
}

.seo-service-card {
	grid-template-columns: minmax(0, 1fr) 84px !important;
	padding: 28px 24px !important;
}

.seo-service-card h3 {
	white-space: nowrap !important;
	font-size: 20px !important;
}

.seo-service-card li {
	white-space: nowrap !important;
	font-size: 13px !important;
	letter-spacing: 0 !important;
}

.seo-flow-list {
	display: grid !important;
	grid-template-columns: 1fr !important;
	max-width: 820px !important;
	gap: 16px !important;
}

.seo-flow-item {
	display: grid !important;
	grid-template-columns: 58px minmax(150px, 220px) minmax(0, 1fr) !important;
	align-items: center !important;
	gap: 18px !important;
	padding: 20px 24px !important;
	text-align: left !important;
}

.seo-flow-item span {
	grid-column: 1 !important;
	grid-row: 1 !important;
	margin: 0 !important;
}

.seo-flow-item h3 {
	grid-column: 2 !important;
	grid-row: 1 !important;
	margin: 0 !important;
	font-size: 17px !important;
}

.seo-flow-item p {
	grid-column: 3 !important;
	grid-row: 1 !important;
	font-size: 14px !important;
	line-height: 1.8 !important;
}

.seo-section--faq-cta {
	display: block !important;
	max-width: none !important;
	padding-inline: 24px !important;
}

.seo-section--faq-cta .seo-faq-panel {
	max-width: 920px !important;
	margin-inline: auto !important;
}

.seo-section--faq-cta .seo-section__heading {
	text-align: center !important;
	margin-inline: auto !important;
}

.seo-section--faq-cta .seo-section__heading h2::after {
	margin-left: auto !important;
}

.seo-cta-card {
	max-width: 620px !important;
	margin: 34px auto 0 !important;
}

@media (max-width: 980px) {
	.seo-service-grid {
		grid-template-columns: 1fr !important;
	}

	.seo-service-card h3,
	.seo-service-card li {
		white-space: normal !important;
	}

	.seo-flow-item {
		grid-template-columns: 48px minmax(0, 1fr) !important;
		gap: 8px 14px !important;
	}

	.seo-flow-item span {
		grid-column: 1 !important;
		grid-row: 1 / span 2 !important;
	}

	.seo-flow-item h3 {
		grid-column: 2 !important;
		grid-row: 1 !important;
	}

	.seo-flow-item p {
		grid-column: 2 !important;
		grid-row: 2 !important;
	}
}
/* SEO page final CTA and hero readability tweaks */
.seo-hero h1 {
	max-width: 760px !important;
	font-size: clamp(2.25rem, 4vw, 4rem) !important;
	line-height: 1.34 !important;
}

.seo-hero h1 .seo-title-line {
	display: block !important;
	white-space: nowrap !important;
}

.seo-section--worries .seo-mini-icon {
	background: linear-gradient(135deg, #ff7da5, #69d2f0) !important;
	color: #fff !important;
}

.seo-section--worries .seo-mini-icon::before,
.seo-section--worries .seo-mini-icon::after {
	display: none !important;
}

.seo-section--worries .seo-mini-icon::before {
	content: "" !important;
	display: block !important;
	width: 12px !important;
	height: 12px !important;
	border: 0 !important;
	border-radius: 50% !important;
	background: #fff !important;
}

.seo-section--faq-cta .seo-cta-card {
	max-width: 1080px !important;
	margin: 40px auto 0 !important;
	padding: clamp(28px, 4vw, 44px) !important;
	border: 0 !important;
	border-radius: 8px !important;
	background: linear-gradient(135deg, #ff7da5 0%, #ff8fb4 52%, #ffb084 100%) !important;
	color: #fff !important;
	text-align: center !important;
	box-shadow: none !important;
}

.seo-section--faq-cta .seo-cta-card h2 {
	margin: 0 0 10px !important;
	color: #fff !important;
	font-size: clamp(2rem, 3vw, 2.8rem) !important;
	font-weight: 900 !important;
	line-height: 1.35 !important;
}

.seo-section--faq-cta .seo-cta-card p {
	margin: 0 0 24px !important;
	color: #fff !important;
	font-size: 16px !important;
	font-weight: 800 !important;
	line-height: 1.8 !important;
}

.seo-section--faq-cta .seo-cta-card .button {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: fit-content !important;
	min-width: 240px !important;
	padding: 15px 34px !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: #fff !important;
	color: #f45f8f !important;
	font-weight: 900 !important;
	box-shadow: none !important;
}

@media (max-width: 760px) {
	.seo-hero h1 {
		font-size: clamp(1.8rem, 7.4vw, 2.45rem) !important;
		line-height: 1.34 !important;
	}

	.seo-hero h1 .seo-title-line {
		white-space: normal !important;
	}

	.seo-section--faq-cta .seo-cta-card .button {
		width: 100% !important;
		min-width: 0 !important;
	}
}
/* SNS operation service page */
.sns-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(72px, 8vw, 118px) 24px 76px;
	background: radial-gradient(circle at 14% 18%, rgba(255, 235, 242, .9), transparent 32%), radial-gradient(circle at 84% 20%, rgba(255, 238, 245, .86), transparent 34%), linear-gradient(180deg, #fff 0%, #fff8fb 100%);
}

.sns-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr);
	gap: clamp(42px, 7vw, 92px);
	align-items: center;
	max-width: 1180px;
	margin: 0 auto;
}

.sns-breadcrumb {
	margin: 0 0 22px;
	color: #587184;
	font-size: 13px;
	font-weight: 800;
}

.sns-hero h1 {
	max-width: 760px;
	margin: 0 0 24px;
	color: #151927;
	font-size: clamp(2.25rem, 4vw, 4rem);
	font-weight: 900;
	line-height: 1.35;
	letter-spacing: 0;
}

.sns-title-line {
	display: block;
}

.sns-title-line--1 {
	color: #f45f8f;
}

.sns-hero__content > p:not(.sns-breadcrumb) {
	max-width: 680px;
	margin: 0 0 30px;
	color: #253142;
	font-size: 16px;
	font-weight: 700;
	line-height: 2;
}

.sns-hero__actions {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
}

.sns-hero__visual > img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 520px;
	object-fit: contain;
}

.sns-phone-visual {
	position: relative;
	width: min(100%, 440px);
	aspect-ratio: .9;
	margin: 0 auto;
}

.sns-phone-screen {
	position: absolute;
	inset: 8% 26% 6% 24%;
	border: 12px solid #7784d7;
	border-radius: 34px;
	background: linear-gradient(180deg, #eef4ff, #fff);
	transform: rotate(8deg);
}

.sns-phone-screen::before {
	content: "";
	position: absolute;
	inset: 18% 12% auto;
	height: 110px;
	border-radius: 14px;
	background: linear-gradient(135deg, #b9d4ff, #fff0f5);
}

.sns-phone-screen::after {
	content: "";
	position: absolute;
	left: 14%;
	right: 14%;
	bottom: 18%;
	height: 92px;
	border-radius: 12px;
	background: repeating-linear-gradient(180deg, #eef3fb 0 10px, transparent 10px 22px);
}

.sns-orbit {
	position: absolute;
	display: inline-grid;
	place-items: center;
	width: 74px;
	height: 74px;
	border-radius: 50%;
	color: #fff;
	font-weight: 900;
	box-shadow: none;
}

.sns-orbit--insta { left: 9%; top: 26%; background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7); }
.sns-orbit--x { right: 10%; top: 31%; background: #050505; }
.sns-orbit--line { left: 4%; bottom: 28%; background: #06c755; font-size: 13px; }
.sns-orbit--heart { right: 12%; bottom: 21%; border-radius: 18px; background: #ff5f82; }

.sns-section {
	padding: 72px 24px;
}

.sns-section--worries { background: #fff; }
.sns-section--services { background: linear-gradient(180deg, #fff, #fff8fb); }
.sns-section--platforms { background: #fff; }
.sns-section--plans { background: linear-gradient(180deg, #fff, #f8fbff); }

.sns-section__heading {
	max-width: 780px;
	margin: 0 auto 34px;
	text-align: center;
}

.sns-section__heading h2 {
	margin: 0;
	color: #151927;
	font-size: clamp(2rem, 3vw, 2.7rem);
	font-weight: 900;
	line-height: 1.45;
}

.sns-section__heading h2::after {
	content: "";
	display: block;
	width: 54px;
	height: 4px;
	margin: 16px auto 0;
	border-radius: 999px;
	background: linear-gradient(90deg, #ff7da5, #9ecbff, #7bdc8a);
}

.sns-worry-list,
.sns-service-grid,
.sns-platform-grid,
.sns-plan-grid {
	max-width: 1180px;
	margin-inline: auto;
}

.sns-worry-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	max-width: 780px;
}

.sns-worry-item,
.sns-service-card,
.sns-platform-card,
.sns-plan-card {
	border: 1px solid rgba(143, 164, 190, .18);
	border-radius: 8px;
	background: rgba(255, 255, 255, .9);
	box-shadow: none;
}

.sns-worry-item {
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr);
	align-items: center;
	gap: 16px;
	padding: 16px 20px;
}

.sns-worry-item span,
.sns-service-icon {
	display: inline-grid;
	place-items: center;
	border-radius: 50%;
	background: linear-gradient(135deg, #ff7da5, #69d2f0);
}

.sns-worry-item span {
	width: 46px;
	height: 46px;
}

.sns-worry-item span::before {
	content: "";
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #fff;
}

.sns-worry-item p {
	margin: 0;
	color: #253142;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.75;
}

.sns-service-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 20px;
}

.sns-service-card {
	padding: 26px 18px;
	text-align: center;
}

.sns-service-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 16px;
	background: #fff0f5;
}

.sns-service-icon::before {
	content: "";
	width: 24px;
	height: 24px;
	border: 4px solid currentColor;
	border-radius: 8px;
}

.sns-service-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.sns-service-card--pink { color: #f45f8f; background: linear-gradient(180deg, #fff0f5, #fff); }
.sns-service-card--blue { color: #5595f5; background: linear-gradient(180deg, #eef6ff, #fff); }
.sns-service-card--green { color: #43b85c; background: linear-gradient(180deg, #eefbea, #fff); }
.sns-service-card--purple { color: #9a78ef; background: linear-gradient(180deg, #f5f0ff, #fff); }
.sns-service-card--orange { color: #ff9c22; background: linear-gradient(180deg, #fff6e6, #fff); }

.sns-service-card h3 {
	margin: 0 0 12px;
	font-size: 17px;
	font-weight: 900;
	line-height: 1.45;
	white-space: nowrap;
}

.sns-service-card p {
	margin: 0;
	color: #253142;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.85;
}

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

.sns-platform-card {
	padding: 32px 28px;
	text-align: center;
}

.sns-platform-icon {
	display: inline-grid;
	place-items: center;
	width: 66px;
	height: 66px;
	margin-bottom: 16px;
	border-radius: 50%;
	color: #fff;
	font-weight: 900;
}

.sns-platform-card--instagram .sns-platform-icon { background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7); }
.sns-platform-card--x .sns-platform-icon { background: #050505; }
.sns-platform-card--line .sns-platform-icon { background: #06c755; font-size: 13px; }

.sns-platform-card h3 {
	margin: 0 0 12px;
	font-size: 22px;
	font-weight: 900;
}

.sns-platform-card p {
	margin: 0;
	color: #344252;
	font-weight: 700;
	line-height: 1.9;
}

.sns-plan-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	align-items: stretch;
}

.sns-plan-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 34px 28px 28px;
}

.sns-plan-card--standard {
	border-color: #ff6f9c;
}

.sns-plan-badge {
	position: absolute;
	right: 20px;
	top: -16px;
	display: inline-flex;
	padding: 7px 14px;
	border-radius: 999px;
	background: #ff6f9c;
	color: #fff;
	font-size: 12px;
	font-weight: 900;
}

.sns-plan-card h3 {
	margin: 0 0 8px;
	font-size: 22px;
	font-weight: 900;
	text-align: center;
}

.sns-plan-card p {
	margin: 0 0 16px;
	color: #647383;
	font-size: 13px;
	font-weight: 700;
	text-align: center;
}

.sns-plan-card strong {
	display: block;
	margin: 0 0 22px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(143, 164, 190, .2);
	color: #151927;
	font-size: 28px;
	font-weight: 900;
	text-align: center;
}

.sns-plan-card ul {
	margin: 0 0 26px;
	padding: 0;
	list-style: none;
}

.sns-plan-card li {
	margin: 0 0 9px;
	color: #253142;
	font-size: 14px;
	font-weight: 700;
}

.sns-plan-card li::before {
	content: "・";
	color: #ff6f9c;
	font-weight: 900;
}

.sns-plan-card a {
	margin-top: auto;
	display: inline-flex;
	justify-content: center;
	padding: 12px 18px;
	border: 1px solid rgba(143, 164, 190, .38);
	border-radius: 8px;
	color: #253142;
	font-weight: 900;
	text-decoration: none;
}

.sns-plan-card--standard a {
	border-color: #ff6f9c;
	background: #ff6f9c;
	color: #fff;
}

.sns-bottom-cta {
	padding: 36px 24px 76px;
	background: linear-gradient(180deg, #f8fbff, #fff);
}

.sns-bottom-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	max-width: 1080px;
	margin: 0 auto;
	padding: 30px 36px;
	border-radius: 8px;
	background: linear-gradient(135deg, #fff1f6, #fff);
}

.sns-bottom-cta h2 {
	margin: 0 0 8px;
	color: #151927;
	font-size: clamp(1.8rem, 2.5vw, 2.4rem);
	font-weight: 900;
	line-height: 1.45;
}

.sns-bottom-cta p {
	margin: 0;
	color: #647383;
	font-weight: 800;
}

@media (max-width: 980px) {
	.sns-hero {
		padding: 42px 20px 52px;
	}

	.sns-hero__inner,
	.sns-service-grid,
	.sns-platform-grid,
	.sns-plan-grid {
		grid-template-columns: 1fr;
	}

	.sns-hero h1 {
		font-size: clamp(1.85rem, 7.2vw, 2.75rem);
	}

	.sns-hero__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.sns-hero__actions .button {
		width: 100%;
	}

	.sns-phone-visual {
		width: min(100%, 330px);
	}

	.sns-service-card {
		display: grid;
		grid-template-columns: 58px 1fr;
		gap: 8px 16px;
		text-align: left;
	}

	.sns-service-icon {
		grid-row: span 2;
		width: 54px;
		height: 54px;
		margin: 0;
	}

	.sns-service-card h3,
	.sns-service-card p {
		margin: 0;
	}

	.sns-service-card h3 {
		white-space: normal;
	}

	.sns-bottom-cta__inner {
		display: grid;
		padding: 28px 22px;
		text-align: center;
	}

	.sns-bottom-cta .button {
		width: 100%;
	}
}
/* Company profile page */
.company-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(70px, 8vw, 116px) 24px 70px;
	background: radial-gradient(circle at 12% 35%, rgba(255, 231, 238, .9), transparent 32%), radial-gradient(circle at 88% 20%, rgba(255, 240, 244, .9), transparent 32%), linear-gradient(180deg, #fff 0%, #fff8fb 100%);
}

.company-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	align-items: center;
	gap: 48px;
	max-width: 1080px;
	margin: 0 auto;
}

.company-hero__content {
	text-align: center;
}

.company-hero h1 {
	margin: 0;
	color: #151927;
	font-size: clamp(2.4rem, 4vw, 3.8rem);
	font-weight: 900;
	line-height: 1.35;
}

.company-hero h1::after,
.company-section__heading h2::after {
	content: "";
	display: block;
	width: 54px;
	height: 5px;
	margin: 18px auto 0;
	border-radius: 999px;
	background: linear-gradient(90deg, #ff9eb9, #9ecbff, #ffbe8d);
}

.company-hero p {
	max-width: 650px;
	margin: 32px auto 0;
	color: #263342;
	font-size: 16px;
	font-weight: 700;
	line-height: 2;
}

.company-hero__visual img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.company-cat-placeholder {
	display: grid;
	place-items: center;
	width: 240px;
	aspect-ratio: 1;
	margin: 0 auto;
	border-radius: 50%;
	background: #fff0f5;
	color: #ff6f9c;
	font-weight: 900;
}

.company-section {
	padding: 28px 24px 0;
	background: #fff;
}

.company-section--values {
	padding-bottom: 76px;
}

.company-card,
.company-value-card {
	border: 1px solid rgba(143, 164, 190, .18);
	border-radius: 8px;
	background: rgba(255,255,255,.95);
	box-shadow: none;
}

.company-card {
	max-width: 1080px;
	margin: 0 auto;
	padding: clamp(26px, 4vw, 42px);
}

.company-info-card h2,
.company-story__body h2,
.company-section__heading h2 {
	margin: 0 0 24px;
	color: #151927;
	font-size: 22px;
	font-weight: 900;
}

.company-info-card h2::before,
.company-story__body h2::before,
.company-section__heading h2::before {
	content: "";
	display: inline-block;
	width: 18px;
	height: 18px;
	margin-right: 9px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ff8fb4, #ffd0dc);
	vertical-align: -2px;
}

.company-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
}

.company-table tr {
	border-bottom: 1px solid rgba(143, 164, 190, .22);
}

.company-table tr:last-child {
	border-bottom: 0;
}

.company-table th,
.company-table td {
	padding: 18px 22px;
	text-align: left;
	vertical-align: top;
	line-height: 1.8;
}

.company-table th {
	width: 230px;
	background: linear-gradient(90deg, #fff0f5, rgba(255,255,255,0));
	color: #263342;
	font-weight: 900;
}

.company-table td {
	color: #253142;
	font-weight: 700;
}

.company-section--story {
	display: grid;
	gap: 28px;
	padding-top: 28px;
}

.company-story {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	align-items: center;
	gap: 44px;
}

.company-story__image {
	display: grid;
	place-items: center;
	width: 200px;
	aspect-ratio: 1;
	margin: 0 auto;
	border-radius: 50%;
	background: #fff0f5;
	color: #ff6f9c;
	font-weight: 900;
}

.company-story--vision .company-story__image {
	background: #edf6ff;
	color: #5d95f7;
}

.company-story__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 50%;
}

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

.company-story--vision .company-story__body h2::before {
	background: linear-gradient(135deg, #7eb8ff, #d8ebff);
}

.company-story__body h3 {
	margin: 0 0 18px;
	font-size: clamp(1.8rem, 2.4vw, 2.5rem);
	font-weight: 900;
	line-height: 1.5;
}

.company-story--mission h3 {
	color: #ff6f9c;
}

.company-story--vision h3 {
	color: #4c95f6;
}

.company-story__body p {
	margin: 0;
	color: #263342;
	font-weight: 700;
	line-height: 2;
}

.company-section__heading {
	max-width: 1080px;
	margin: 0 auto 28px;
}

.company-section__heading h2 {
	margin: 0;
}

.company-section__heading h2::after {
	display: none;
}

.company-value-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	max-width: 1080px;
	margin: 0 auto;
}

.company-value-card {
	padding: 30px 22px;
	text-align: center;
}

.company-value-icon {
	display: inline-grid;
	place-items: center;
	width: 64px;
	height: 64px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: #fff0f5;
}

.company-value-icon::before {
	content: "";
	width: 28px;
	height: 28px;
	border: 4px solid #ff6f9c;
	border-radius: 50%;
}

.company-value-card h3 {
	margin: 0 0 12px;
	color: #151927;
	font-size: 17px;
	font-weight: 900;
}

.company-value-card p {
	margin: 0;
	color: #4a5868;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.8;
}

.company-value-card--blue .company-value-icon { background: #edf6ff; }
.company-value-card--blue .company-value-icon::before { border-color: #5d95f7; }
.company-value-card--orange .company-value-icon { background: #fff6e6; }
.company-value-card--orange .company-value-icon::before { border-color: #ff9c22; }
.company-value-card--rose .company-value-icon { background: #fff0f5; }

@media (max-width: 900px) {
	.company-hero {
		padding: 52px 20px 48px;
	}

	.company-hero__inner,
	.company-story,
	.company-value-grid {
		grid-template-columns: 1fr;
	}

	.company-hero__content {
		text-align: center;
	}

	.company-hero__visual {
		max-width: 230px;
		margin: 0 auto;
	}

	.company-section {
		padding-inline: 16px;
	}

	.company-card {
		padding: 22px 18px;
	}

	.company-table,
	.company-table tbody,
	.company-table tr,
	.company-table th,
	.company-table td {
		display: block;
		width: 100%;
	}

	.company-table tr {
		padding: 14px 0;
	}

	.company-table th,
	.company-table td {
		padding: 0;
	}

	.company-table th {
		margin-bottom: 7px;
		background: transparent;
		color: #ff6f9c;
		font-size: 13px;
	}

	.company-story {
		gap: 22px;
		text-align: center;
	}

	.company-story__image {
		width: 150px;
	}

	.company-story__body h2::before {
		display: none;
	}

	.company-value-card {
		display: grid;
		grid-template-columns: 58px 1fr;
		gap: 6px 16px;
		align-items: center;
		text-align: left;
	}

	.company-value-icon {
		grid-row: span 2;
		width: 54px;
		height: 54px;
		margin: 0;
	}

	.company-value-card h3,
	.company-value-card p {
		margin: 0;
	}
}
/* PC repair and sales page */
.pc-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(72px, 8vw, 118px) 24px 72px;
	background: radial-gradient(circle at 84% 30%, rgba(225, 240, 255, .95), transparent 34%), radial-gradient(circle at 15% 22%, rgba(244, 249, 255, .95), transparent 30%), linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.pc-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
	align-items: center;
	gap: clamp(42px, 7vw, 92px);
	max-width: 1180px;
	margin: 0 auto;
}

.pc-pill {
	display: inline-flex;
	width: fit-content;
	margin: 0 0 24px;
	padding: 8px 16px;
	border-radius: 999px;
	background: #edf5ff;
	color: #4f84f4;
	font-size: 13px;
	font-weight: 900;
}

.pc-hero h1 {
	margin: 0 0 22px;
	color: #151927;
	font-size: clamp(2.35rem, 4vw, 4.1rem);
	font-weight: 900;
	line-height: 1.34;
	letter-spacing: 0;
}

.pc-title-line {
	display: block;
}

.pc-title-line--1 {
	color: #456ff0;
}

.pc-hero__content > p:not(.pc-pill) {
	max-width: 680px;
	margin: 0 0 32px;
	color: #263342;
	font-size: 16px;
	font-weight: 700;
	line-height: 2;
}

.pc-feature-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px 26px;
	max-width: 640px;
}

.pc-feature-item {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 12px;
	align-items: start;
}

.pc-feature-item span,
.pc-card-icon,
.pc-reason-card span {
	display: inline-grid;
	place-items: center;
	border-radius: 50%;
	background: #edf5ff;
}

.pc-feature-item span {
	width: 48px;
	height: 48px;
}

.pc-feature-item span::before,
.pc-card-icon::before,
.pc-reason-card span::before {
	content: "";
	width: 22px;
	height: 22px;
	border: 4px solid currentColor;
	border-radius: 8px;
}

.pc-feature-item h2 {
	margin: 0 0 4px;
	font-size: 17px;
	font-weight: 900;
}

.pc-feature-item p {
	margin: 0;
	color: #4a5868;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.75;
}

.pc-feature-item--blue { color: #4f84f4; }
.pc-feature-item--green { color: #55bb52; }

.pc-hero__visual > img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 500px;
	object-fit: contain;
}

.pc-device-visual {
	position: relative;
	width: min(100%, 520px);
	aspect-ratio: 1.18;
	margin: 0 auto;
}

.pc-laptop {
	position: absolute;
	left: 8%;
	bottom: 16%;
	width: 55%;
	height: 42%;
	border: 10px solid #1d2634;
	border-radius: 12px;
	background: linear-gradient(135deg, #dce9ff, #fff);
}

.pc-laptop::after {
	content: "";
	position: absolute;
	left: -16%;
	right: -16%;
	bottom: -34px;
	height: 24px;
	border-radius: 0 0 16px 16px;
	background: #9fb1c8;
}

.pc-tower {
	position: absolute;
	right: 10%;
	bottom: 11%;
	width: 25%;
	height: 58%;
	border-radius: 12px;
	background: linear-gradient(180deg, #2d3544, #101827);
}

.pc-device-visual span {
	position: absolute;
	right: 31%;
	top: 10%;
	display: grid;
	place-items: center;
	width: 86px;
	height: 86px;
	border-radius: 50%;
	background: #fff;
	font-size: 34px;
}

.pc-section {
	padding: 72px 24px;
	background: #fff;
}

.pc-section--reasons,
.pc-section--faq-pickup {
	background: linear-gradient(180deg, #fff, #f8fbff);
}

.pc-section__heading {
	max-width: 780px;
	margin: 0 auto 34px;
	text-align: center;
}

.pc-section__heading--left {
	margin-inline: 0;
	text-align: left;
}

.pc-section__heading h2 {
	margin: 0;
	color: #151927;
	font-size: clamp(2rem, 3vw, 2.7rem);
	font-weight: 900;
	line-height: 1.45;
}

.pc-section__heading h2::after {
	content: "";
	display: block;
	width: 54px;
	height: 4px;
	margin: 16px auto 0;
	border-radius: 999px;
	background: linear-gradient(90deg, #4f84f4, #7bdc8a, #ffb45c);
}

.pc-section__heading--left h2::after {
	margin-left: 0;
}

.pc-service-grid,
.pc-service-tabs,
.pc-reason-grid,
.pc-flow-list,
.pc-section--faq-pickup {
	max-width: 1180px;
	margin-inline: auto;
}

.pc-service-grid,
.pc-service-tabs,
.pc-reason-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 18px;
}

.pc-service-card,
.pc-reason-card,
.pc-flow-item,
.pc-pickup-card,
.pc-faq-list details {
	border: 1px solid rgba(143, 164, 190, .18);
	border-radius: 8px;
	background: rgba(255,255,255,.95);
	box-shadow: none;
}

.pc-service-card,
.pc-service-tab,
.pc-reason-card {
	padding: 30px 22px;
	text-align: center;
}

.pc-service-tab {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 230px;
	border: 1px solid rgba(143, 164, 190, .18);
	border-radius: 8px;
	color: inherit;
	text-decoration: none;
	background: rgba(255,255,255,.95);
	box-shadow: none;
	transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.pc-service-tab:hover {
	transform: translateY(-2px);
	border-color: rgba(79, 132, 244, .32);
	background: #fff;
}

.pc-card-icon,
.pc-reason-card span {
	width: 70px;
	height: 70px;
	margin: 0 auto 18px;
}

.pc-card-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.pc-card-icon--image {
	background: transparent !important;
}

.pc-card-icon--image::before {
	display: none !important;
	content: none !important;
}

.pc-card-icon--image img {
	display: block;
	border-radius: 18px;
}

.pc-service-card--blue,
.pc-service-tab--blue,
.pc-reason-card--blue { color: #4f84f4; background: linear-gradient(180deg, #eef6ff, #fff); }
.pc-service-card--green,
.pc-service-tab--green,
.pc-reason-card--green { color: #55bb52; background: linear-gradient(180deg, #eefbea, #fff); }
.pc-service-card--orange,
.pc-service-tab--orange,
.pc-reason-card--orange { color: #ff9c22; background: linear-gradient(180deg, #fff6e6, #fff); }
.pc-service-card--purple,
.pc-service-tab--purple,
.pc-reason-card--purple { color: #9a78ef; background: linear-gradient(180deg, #f5f0ff, #fff); }

.pc-service-card h3,
.pc-service-tab h3,
.pc-reason-card h3 {
	margin: 0 0 12px;
	color: #151927;
	font-size: 19px;
	font-weight: 900;
	line-height: 1.5;
}

.pc-service-card p,
.pc-service-tab span,
.pc-reason-card p {
	margin: 0;
	color: #344252;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.85;
}

.pc-service-tab span {
	display: block;
}

.pc-service-tab .pc-card-icon:not(.pc-card-icon--image) {
	display: none;
}

#pc-sales,
#pc-repair,
#pc-pickup,
#pc-custom,
#pc-custom-service,
#pc-cleaning,
#pc-lesson {
	scroll-margin-top: 110px;
}

.pc-flow-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.pc-flow-item {
	position: relative;
	padding: 30px 22px;
	text-align: center;
}

.pc-flow-item span {
	display: inline-grid;
	place-items: center;
	width: 46px;
	height: 46px;
	margin: -54px auto 18px;
	border-radius: 50%;
	background: #e8f0ff;
	color: #4f84f4;
	font-weight: 900;
}

.pc-flow-item h3 {
	margin: 0 0 8px;
	font-size: 17px;
	font-weight: 900;
}

.pc-flow-item p {
	margin: 0;
	color: #4a5868;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.75;
}

.pc-contact-cta {
	padding: 0 24px 72px;
	background: #fff;
}

.pc-contact-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	max-width: 1080px;
	margin: 0 auto;
	padding: 30px 34px;
	border-radius: 8px;
	background: linear-gradient(135deg, #edf5ff, #fff);
}

.pc-contact-cta h2 {
	margin: 0 0 8px;
	color: #151927;
	font-size: clamp(1.8rem, 2.5vw, 2.35rem);
	font-weight: 900;
}

.pc-contact-cta p {
	margin: 0;
	color: #4a5868;
	font-weight: 800;
}

.pc-contact-cta__actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.pc-contact-cta .button,
.pc-pickup-card .button {
	background: linear-gradient(135deg, #4f84f4, #4266de);
}

.pc-section--faq-pickup,
.pc-section--faq {
	display: grid;
	grid-template-columns: 1fr;
	gap: 42px;
	align-items: start;
	max-width: 980px;
	margin-inline: auto;
}

.pc-section--pickup {
	background: linear-gradient(180deg, #fff, #f6fff3);
}

.pc-section--pickup .pc-pickup-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 28px;
	max-width: 1040px;
	margin-inline: auto;
}

.pc-faq-list {
	display: grid;
	gap: 12px;
}

.pc-faq-list details {
	padding: 18px 20px;
}

.pc-faq-list summary {
	cursor: pointer;
	color: #1d2634;
	font-weight: 900;
}

.pc-faq-list p {
	margin: 14px 0 0;
	color: #4a5868;
	font-weight: 700;
	line-height: 1.9;
}

.pc-pickup-card {
	padding: 34px 28px;
	background: linear-gradient(135deg, #f0ffec, #fff);
}

.pc-pickup-card h2 {
	margin: 0 0 16px;
	color: #43b85c;
	font-size: 2rem;
	font-weight: 900;
	line-height: 1.45;
}

.pc-pickup-card p {
	margin: 0 0 22px;
	color: #344252;
	font-weight: 800;
	line-height: 1.85;
}

.pc-section--repair-price {
	background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}

.pc-section--sales-detail {
	background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.pc-sales-detail {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	gap: 48px;
	align-items: center;
	max-width: 1180px;
	margin-inline: auto;
}

.pc-sales-detail__content h2 {
	margin: 0 0 18px;
	color: #151927;
	font-size: clamp(2rem, 3vw, 2.7rem);
	font-weight: 900;
	line-height: 1.45;
}

.pc-sales-detail__content p:not(.pc-section__eyebrow) {
	margin: 0 0 28px;
	color: #344252;
	font-size: 16px;
	font-weight: 700;
	line-height: 2;
}

.pc-sales-slider {
	overflow: hidden;
	padding: 10px;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 18px 44px rgba(41, 66, 96, .09);
}

.pc-sales-slider__track {
	display: flex;
	width: max-content;
	animation: pcSalesSlide 28s linear infinite;
}

.pc-sales-slider:hover .pc-sales-slider__track {
	animation-play-state: paused;
}

.pc-sales-slide {
	flex: 0 0 260px;
	padding: 10px;
}

.pc-sales-slide img,
.pc-sales-slide .media-placeholder {
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: 12px;
	object-fit: cover;
}

@keyframes pcSalesSlide {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

.pc-section--custom {
	background: linear-gradient(180deg, #fff 0%, #f8f4ff 100%);
}

.pc-section--lesson {
	background: linear-gradient(180deg, #fff 0%, #f6fbff 100%);
}

.pc-section--cleaning {
	background: linear-gradient(180deg, #fff 0%, #f8fff0 100%);
}

.pc-section__eyebrow {
	margin: 0 0 10px;
	color: #2d6cdf;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .08em;
}

.pc-repair-symptoms {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	max-width: 960px;
	margin: -8px auto 34px;
}

.pc-repair-symptoms span {
	padding: 9px 14px;
	border: 1px solid rgba(79, 132, 244, .18);
	border-radius: 999px;
	background: #fff;
	color: #263342;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.4;
}

.pc-repair-price-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	max-width: 1180px;
	margin-inline: auto;
}

.pc-menu-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	max-width: 1180px;
	margin-inline: auto;
}

.pc-repair-price-card,
.pc-menu-card {
	position: relative;
	min-height: 270px;
	overflow: hidden;
	padding: 0 26px 28px;
	border: 1px solid rgba(88, 112, 138, .16);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(41, 66, 96, .06);
}

.pc-repair-price-card::before,
.pc-menu-card::before {
	content: none;
}

.pc-repair-price-card h3,
.pc-menu-card h3 {
	display: grid;
	place-items: center;
	min-height: 78px;
	margin: 0 -26px 0;
	padding: 18px 22px;
	background: #f08a3c;
	color: #fff;
	font-size: 1.18rem;
	font-weight: 900;
	line-height: 1.45;
	text-align: center;
}

.pc-menu-card--custom h3 {
	background: #8068df;
}

.pc-menu-card--pickup h3 {
	background: #4fb96a;
}

.pc-menu-card--lesson h3 {
	background: #4f84f4;
}

.pc-repair-price-card strong,
.pc-menu-card strong {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin: 0 0 8px;
	padding: 26px 0 12px;
	color: #222;
	font-size: clamp(1.45rem, 2.2vw, 1.9rem);
	font-weight: 900;
	line-height: 1.25;
	text-align: center;
}

.pc-repair-price-card strong::before,
.pc-menu-card strong::before {
	content: "料金";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 58px;
	padding: 6px 11px;
	background: #e8533f;
	color: #fff;
	font-size: .82rem;
	font-weight: 900;
	line-height: 1;
}

.pc-repair-price-card p,
.pc-menu-card p {
	margin: 0;
	color: #344252;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.9;
}

.pc-cleaning-formula {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
	max-width: 980px;
	margin: -4px auto 34px;
}

.pc-fee-formula {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
	max-width: 1120px;
	margin: -2px auto 34px;
}

.pc-fee-formula > span,
.pc-fee-choice span {
	display: inline-grid;
	place-items: center;
	min-width: 148px;
	min-height: 70px;
	padding: 16px 20px;
	border: 2px solid #151927;
	background: #fff264;
	color: #151927;
	font-size: 1.12rem;
	font-weight: 900;
	line-height: 1.35;
	text-align: center;
	box-shadow: 5px 5px 0 rgba(21, 25, 39, .12);
}

.pc-fee-formula > span:nth-of-type(2),
.pc-fee-choice span:first-child {
	background: #77e0e4;
}

.pc-fee-formula > span:nth-of-type(3),
.pc-fee-choice span:last-child {
	background: #b7ff68;
}

.pc-fee-formula strong,
.pc-fee-choice em {
	color: #151927;
	font-size: 1.35rem;
	font-weight: 900;
	font-style: normal;
}

.pc-fee-choice {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
	align-items: center;
	justify-items: center;
}

.pc-section-notes {
	display: grid;
	gap: 10px;
	max-width: 980px;
	margin: 28px auto 0;
	padding: 24px 28px;
	border: 1px solid rgba(88, 112, 138, .18);
	border-radius: 12px;
	background: rgba(255, 255, 255, .78);
	list-style: none;
}

.pc-section-notes li {
	position: relative;
	padding-left: 1.55em;
	color: #344252;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.85;
}

.pc-section-notes li::before {
	content: "";
	position: absolute;
	top: .75em;
	left: 0;
	width: .55em;
	height: .55em;
	border-radius: 50%;
	background: #4f84f4;
}

.pc-cleaning-formula span {
	display: inline-grid;
	place-items: center;
	min-width: 180px;
	padding: 18px 24px;
	border: 2px solid #151927;
	background: #fff264;
	color: #151927;
	font-size: 1.35rem;
	font-weight: 900;
	line-height: 1.3;
	box-shadow: 8px 8px 0 rgba(21, 25, 39, .08);
}

.pc-cleaning-formula span:nth-of-type(2) {
	background: #77e0e4;
}

.pc-cleaning-formula span:nth-of-type(3) {
	background: #b7ff68;
}

.pc-cleaning-formula strong,
.pc-cleaning-formula em {
	color: #151927;
	font-size: 1.4rem;
	font-weight: 900;
	font-style: normal;
}

.pc-cleaning-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	max-width: 980px;
	margin-inline: auto;
}

.pc-cleaning-card {
	padding: 34px 30px;
	border: 1px solid rgba(88, 112, 138, .18);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 16px 38px rgba(41, 66, 96, .07);
}

.pc-cleaning-card--basic {
	border-top: 6px solid #ffd94a;
}

.pc-cleaning-card--deep {
	border-top: 6px solid #55bb52;
}

.pc-cleaning-card h3 {
	margin: 0 0 8px;
	color: #151927;
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	font-weight: 900;
	line-height: 1.4;
}

.pc-cleaning-card__lead,
.pc-cleaning-card__time {
	margin: 0 0 12px;
	color: #4a5868;
	font-weight: 800;
	line-height: 1.8;
}

.pc-cleaning-card strong {
	display: block;
	margin: 18px 0;
	color: #151927;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 900;
	line-height: 1;
}

.pc-cleaning-card ul {
	display: grid;
	gap: 0;
	margin: 0 0 24px;
	padding: 0;
	border-top: 1px solid #e8edf3;
	list-style: none;
}

.pc-cleaning-card li {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 0;
	border-bottom: 1px solid #e8edf3;
	color: #344252;
	font-weight: 800;
	line-height: 1.6;
}

.pc-cleaning-card li b {
	color: #151927;
	font-size: 1.05rem;
}

.pc-repair-note {
	max-width: 960px;
	margin: 22px auto 0;
	color: #5b6776;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.8;
	text-align: center;
}

.pc-section--pickup .pc-pickup-card p {
	margin-bottom: 0;
}

.pc-pickup-card .button {
	background: linear-gradient(135deg, #55bb52, #34a845);
}

@media (max-width: 980px) {
	.pc-hero {
		padding: 44px 20px 52px;
	}

	.pc-hero__inner,
	.pc-sales-detail,
	.pc-service-grid,
	.pc-service-tabs,
	.pc-reason-grid,
	.pc-repair-price-grid,
	.pc-menu-grid,
	.pc-cleaning-grid,
	.pc-flow-list,
	.pc-section--faq-pickup,
	.pc-section--faq,
	.pc-section--pickup .pc-pickup-card {
		grid-template-columns: 1fr;
	}

	.pc-hero h1 {
		font-size: clamp(1.9rem, 7.4vw, 2.75rem);
	}

	.pc-feature-list {
		grid-template-columns: 1fr;
	}

	.pc-hero__visual {
		max-width: 330px;
		margin: 0 auto;
	}

	.pc-service-card,
	.pc-service-tab,
	.pc-reason-card,
	.pc-flow-item {
		display: grid;
		grid-template-columns: 58px 1fr;
		gap: 6px 16px;
		align-items: center;
		text-align: left;
	}

	.pc-service-tab {
		min-height: 0;
		padding: 18px;
	}

	.pc-sales-detail {
		gap: 28px;
	}

	.pc-sales-slide {
		flex-basis: 220px;
	}

	.pc-cleaning-formula {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.pc-fee-formula {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
		margin-bottom: 28px;
	}

	.pc-fee-formula > span,
	.pc-fee-choice span {
		width: 100%;
		min-width: 0;
		min-height: 0;
		padding: 14px 18px;
		font-size: 1.05rem;
	}

	.pc-fee-formula strong,
	.pc-fee-choice em {
		text-align: center;
		font-size: 1rem;
	}

	.pc-section-notes {
		margin-top: 22px;
		padding: 20px;
	}

	.pc-section-notes li {
		font-size: 15px;
		line-height: 1.8;
	}

	.pc-cleaning-formula span {
		min-width: 0;
		width: 100%;
		padding: 14px 18px;
		font-size: 1.1rem;
	}

	.pc-cleaning-formula strong,
	.pc-cleaning-formula em {
		text-align: center;
		font-size: 1rem;
	}

	.pc-cleaning-card {
		padding: 28px 20px;
	}

	.pc-card-icon,
	.pc-reason-card span {
		grid-row: span 2;
		width: 54px;
		height: 54px;
		margin: 0;
	}

	.pc-repair-symptoms {
		justify-content: flex-start;
		margin-bottom: 24px;
	}

	.pc-repair-symptoms span {
		font-size: 13px;
	}

	.pc-repair-price-grid {
		gap: 16px;
	}

	.pc-repair-price-card,
	.pc-menu-card {
		min-height: 0;
		padding: 26px 20px 24px;
	}

	.pc-repair-price-card h3,
	.pc-menu-card h3 {
		font-size: 1.12rem;
	}

	.pc-repair-price-card strong,
	.pc-menu-card strong {
		font-size: 1.6rem;
	}

	.pc-repair-price-card p,
	.pc-menu-card p {
		font-size: 15px;
	}

	.pc-flow-item span {
		grid-row: span 2;
		margin: 0;
	}

	.pc-service-card h3,
	.pc-service-tab h3,
	.pc-service-card p,
	.pc-service-tab span,
	.pc-reason-card h3,
	.pc-reason-card p,
	.pc-flow-item h3,
	.pc-flow-item p {
		margin: 0;
	}

	.pc-contact-cta__inner {
		display: grid;
		padding: 28px 22px;
		text-align: center;
	}

	.pc-contact-cta__actions,
	.pc-contact-cta .button {
		width: 100%;
	}
}

@media (max-width: 760px) {
	.pc-hero {
		padding: 36px 18px 46px;
		overflow: visible;
	}

	.pc-hero__inner {
		gap: 28px;
	}

	.pc-hero__visual {
		width: 100%;
		max-width: 100%;
	}

	.pc-hero__visual > img {
		width: min(100%, 420px);
		max-height: none;
		margin-inline: auto;
		object-fit: contain;
	}

	.pc-service-tabs {
		grid-template-columns: 1fr !important;
		gap: 16px;
	}

	.pc-service-tab {
		display: grid;
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 12px;
		padding: 24px 20px;
		text-align: center;
	}

	.pc-service-tab .pc-card-icon {
		grid-row: auto;
		width: 92px;
		height: 92px;
		margin: 0 auto 2px;
	}

	.pc-service-tab .pc-card-icon img {
		width: 82px;
		height: 82px;
	}

	.pc-service-tab h3 {
		font-size: 1.1rem;
	}

	.pc-service-tab span {
		font-size: 16px;
		line-height: 1.85;
	}

	.pc-repair-price-grid,
	.pc-menu-grid,
	.pc-cleaning-grid {
		grid-template-columns: 1fr !important;
		gap: 18px;
	}

	.pc-repair-price-card,
	.pc-menu-card {
		min-height: 0;
		overflow: hidden;
		padding: 0 0 22px;
		border: 1px solid rgba(60, 82, 108, .18);
		border-radius: 14px;
		background: #fff;
		box-shadow: 0 10px 24px rgba(30, 54, 82, .08);
		text-align: center;
	}

	.pc-repair-price-card::before,
	.pc-menu-card::before {
		content: none;
	}

	.pc-repair-price-card h3,
	.pc-menu-card h3 {
		display: grid;
		place-items: center;
		min-height: 72px;
		margin: 0 0 0;
		padding: 16px 18px;
		background: #f08a3c;
		color: #fff;
		font-size: 1.08rem;
		font-weight: 900;
		line-height: 1.45;
	}

	.pc-menu-card--custom h3 {
		background: #8068df;
	}

	.pc-menu-card--pickup h3 {
		background: #4fb96a;
	}

	.pc-menu-card--lesson h3 {
		background: #4f84f4;
	}

	.pc-repair-price-card strong,
	.pc-menu-card strong {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 16px;
		margin: 0;
		padding: 22px 18px 12px;
		color: #222;
		font-size: clamp(1.45rem, 7vw, 1.9rem);
		line-height: 1.25;
	}

	.pc-repair-price-card strong::before,
	.pc-menu-card strong::before {
		content: "料金";
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 56px;
		padding: 5px 10px;
		background: #e8533f;
		color: #fff;
		font-size: .82rem;
		font-weight: 900;
		line-height: 1;
	}

	.pc-repair-price-card p,
	.pc-menu-card p {
		padding: 0 20px;
		font-size: 16px;
		line-height: 1.85;
		text-align: left;
	}

	.pc-cleaning-card {
		overflow: hidden;
		padding: 0 20px 24px;
		border-radius: 14px;
		text-align: center;
	}

	.pc-cleaning-card h3 {
		margin: 0 -20px 16px;
		padding: 18px;
		background: #3f7fe8;
		color: #fff;
	}

	.pc-cleaning-card strong {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 14px;
		color: #222;
	}

	.pc-cleaning-card strong::before {
		content: "料金";
		display: inline-flex;
		padding: 5px 10px;
		background: #e8533f;
		color: #fff;
		font-size: .82rem;
		line-height: 1;
	}

	.pc-section--reasons .pc-card-icon:not(.pc-card-icon--image) {
		background: #fff;
		border: 2px solid currentColor;
	}

	.pc-section--reasons .pc-card-icon:not(.pc-card-icon--image)::before {
		width: 22px;
		height: 12px;
		border: 0;
		border-left: 4px solid currentColor;
		border-bottom: 4px solid currentColor;
		border-radius: 0;
		transform: rotate(-45deg) translate(1px, -2px);
	}

	.pc-section--pickup .pc-pickup-card {
		margin-bottom: 28px;
	}
}
/* AI training and business improvement page */
.ai-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(72px, 8vw, 118px) 24px 72px;
	background: radial-gradient(circle at 84% 28%, rgba(226, 239, 255, .95), transparent 34%), radial-gradient(circle at 16% 22%, rgba(246, 250, 255, .95), transparent 30%), linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.ai-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
	align-items: center;
	gap: clamp(42px, 7vw, 92px);
	max-width: 1180px;
	margin: 0 auto;
}

.ai-pill {
	display: inline-flex;
	width: fit-content;
	margin: 0 0 24px;
	padding: 8px 16px;
	border-radius: 999px;
	background: #edf5ff;
	color: #4f84f4;
	font-size: 13px;
	font-weight: 900;
}

.ai-hero h1 {
	margin: 0 0 22px;
	color: #151927;
	font-size: clamp(2.05rem, 3.25vw, 3.25rem);
	font-weight: 900;
	line-height: 1.36;
	letter-spacing: 0;
}

.ai-title-line {
	display: block;
}

.ai-hero h1 .ai-title-line {
	display: block;
	white-space: normal;
	overflow-wrap: anywhere;
}

.ai-title-line--1 {
	color: #456ff0;
}

.ai-hero__content > p:not(.ai-pill) {
	max-width: 680px;
	margin: 0 0 32px;
	color: #263342;
	font-size: 16px;
	font-weight: 700;
	line-height: 2;
}

.ai-hero__actions {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
}

.ai-hero__visual > img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 500px;
	object-fit: contain;
}

.ai-device-visual {
	position: relative;
	width: min(100%, 520px);
	aspect-ratio: 1.18;
	margin: 0 auto;
}

.ai-laptop {
	position: absolute;
	left: 16%;
	bottom: 14%;
	width: 62%;
	height: 45%;
	border: 10px solid #1d2634;
	border-radius: 12px;
	background: linear-gradient(135deg, #244db8, #6fa2ff);
}

.ai-laptop::after {
	content: "";
	position: absolute;
	left: -16%;
	right: -16%;
	bottom: -34px;
	height: 24px;
	border-radius: 0 0 16px 16px;
	background: #9fb1c8;
}

.ai-laptop span {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: #fff;
	font-size: 54px;
	font-weight: 900;
}

.ai-float {
	position: absolute;
	display: block;
	width: 74px;
	height: 74px;
	border: 1px solid rgba(79,132,244,.26);
	border-radius: 16px;
	background: rgba(255,255,255,.9);
}

.ai-float::before {
	content: "";
	position: absolute;
	inset: 22px;
	border: 4px solid #8bb3ff;
	border-radius: 8px;
}

.ai-float--chart { left: 18%; top: 10%; }
.ai-float--gear { left: 7%; top: 42%; }
.ai-float--chat { right: 8%; top: 30%; }

.ai-section {
	padding: 72px 24px;
	background: #fff;
}

.ai-section--tabs {
	position: sticky;
	top: 72px;
	z-index: 10;
	padding: 18px 24px;
	border-top: 1px solid rgba(88, 112, 138, .1);
	border-bottom: 1px solid rgba(88, 112, 138, .12);
	background: rgba(255, 255, 255, .92);
	backdrop-filter: blur(12px);
}

.ai-service-tabs {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
	max-width: 1080px;
	margin-inline: auto;
}

.ai-service-tabs a {
	display: grid;
	place-items: center;
	min-height: 50px;
	padding: 10px 14px;
	border: 1px solid rgba(79, 132, 244, .22);
	border-radius: 8px;
	background: #f7fbff;
	color: #151927;
	font-size: 15px;
	font-weight: 900;
	text-align: center;
	text-decoration: none;
	transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.ai-service-tabs a:hover,
.ai-service-tabs a:focus-visible {
	border-color: #456ff0;
	background: #456ff0;
	color: #fff;
}

.ai-section--reasons,
.ai-section--targets {
	background: linear-gradient(180deg, #fff, #f8fbff);
}

.ai-section--details {
	background:
		linear-gradient(90deg, rgba(57, 226, 255, .08) 1px, transparent 1px),
		linear-gradient(180deg, #fbfdff 0%, #fff 100%);
	background-size: 46px 46px, auto;
}

.ai-section--pricing {
	background: linear-gradient(180deg, #fff 0%, #f4f7ff 100%);
}

.ai-section__heading {
	max-width: 780px;
	margin: 0 auto 34px;
	text-align: center;
}

.ai-section__heading h2 {
	margin: 0;
	color: #151927;
	font-size: clamp(2rem, 3vw, 2.7rem);
	font-weight: 900;
	line-height: 1.45;
}

.ai-section__heading h2::after {
	content: "";
	display: block;
	width: 54px;
	height: 4px;
	margin: 16px auto 0;
	border-radius: 999px;
	background: linear-gradient(90deg, #4f84f4, #8c7cf4, #7bdc8a);
}

.ai-section__heading > p:not(.ai-section__eyebrow) {
	margin: 14px 0 0;
	color: #344252;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.8;
}

.ai-section__eyebrow {
	margin: 0 0 12px;
	color: #456ff0;
	font-size: .82rem;
	font-weight: 900;
	letter-spacing: .08em;
}

.ai-service-grid,
.ai-reason-grid,
.ai-flow-list,
.ai-target-grid {
	max-width: 1180px;
	margin-inline: auto;
}

.ai-service-grid,
.ai-reason-grid,
.ai-flow-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.ai-service-card,
.ai-reason-card,
.ai-flow-item,
.ai-target-card {
	border: 1px solid rgba(143,164,190,.18);
	border-radius: 8px;
	background: rgba(255,255,255,.95);
	box-shadow: none;
}

.ai-service-card,
.ai-reason-card {
	padding: 30px 22px;
	text-align: center;
}

.ai-card-icon,
.ai-reason-card span,
.ai-target-card span {
	display: inline-grid;
	place-items: center;
	border-radius: 0;
	background: transparent;
}

.ai-card-icon,
.ai-reason-card span {
	width: 100%;
	height: auto;
	margin: 0 auto 20px;
}

.ai-card-icon::before,
.ai-reason-card span::before,
.ai-target-card span::before {
	content: none;
	display: none;
}

.ai-card-icon img {
	width: 100%;
	max-width: 220px;
	aspect-ratio: 4 / 3;
	height: auto;
	border-radius: 14px;
	object-fit: cover;
}

.ai-card-icon:empty {
	display: none;
}

.ai-reason-card > span,
.ai-target-card > span {
	display: none;
}

.ai-service-card--blue { color: #4f84f4; background: linear-gradient(180deg, #eef6ff, #fff); }
.ai-service-card--green { color: #55bb52; background: linear-gradient(180deg, #eefbea, #fff); }
.ai-service-card--purple { color: #9a78ef; background: linear-gradient(180deg, #f5f0ff, #fff); }
.ai-service-card--orange { color: #ff9c22; background: linear-gradient(180deg, #fff6e6, #fff); }

.ai-detail-list {
	display: grid;
	gap: clamp(56px, 7vw, 96px);
	max-width: 1240px;
	margin-inline: auto;
}

.ai-detail-card {
	display: grid;
	grid-template-columns: minmax(420px, .98fr) minmax(0, 1fr);
	gap: clamp(34px, 5vw, 66px);
	align-items: start;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.ai-detail-card:nth-child(even) .ai-detail-card__media {
	order: 2;
}

.ai-detail-card__media img,
.ai-detail-card__media .media-placeholder {
	display: block;
	width: 100%;
	aspect-ratio: 1 / .86;
	border-radius: 0;
	object-fit: cover;
	overflow: hidden;
}

.ai-detail-card__media .media-placeholder {
	display: grid;
	place-items: center;
	border: 1px solid rgba(17, 24, 39, .16);
	background:
		linear-gradient(135deg, rgba(64, 92, 255, .12), rgba(43, 226, 255, .08)),
		#f8fbff;
}

.ai-detail-card__media .media-placeholder span {
	color: #151927;
	font-weight: 900;
	letter-spacing: .08em;
}

.ai-detail-card__body h2 {
	position: relative;
	margin: 0 0 18px;
	padding-left: 0;
	color: #151927;
	font-size: clamp(1.72rem, 2.25vw, 2.25rem);
	font-weight: 900;
	line-height: 1.32;
}

.ai-detail-card__body h2::before {
	content: none;
	display: none;
}

.ai-detail-card__body > p:not(.ai-section__eyebrow) {
	margin: 0;
	color: #1f2937;
	font-size: 15.5px;
	font-weight: 800;
	line-height: 1.9;
}

.ai-detail-price {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	align-items: center;
	margin-top: 24px;
	padding: 22px 24px;
	border: 3px solid #151927;
	border-radius: 0;
	background: rgba(255, 255, 255, .96);
}

.ai-detail-price h3 {
	margin: 0;
	color: #151927;
	font-size: clamp(1.08rem, 1.55vw, 1.38rem);
	font-weight: 900;
	line-height: 1.45;
}

.ai-detail-price p {
	margin: 0;
	padding-top: 12px;
	border-top: 1px solid rgba(17, 24, 39, .2);
	color: #1f2937;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.75;
}

.ai-detail-price strong {
	display: block;
	color: #151927;
	font-size: clamp(1.65rem, 2.5vw, 2.25rem);
	font-weight: 900;
	line-height: 1.08;
	text-align: left;
	white-space: nowrap;
}

.ai-detail-price small {
	display: block;
	color: #566275;
	font-size: 12.5px;
	font-weight: 800;
	line-height: 1.65;
	text-align: left;
}

.ai-detail-button {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 46px;
	align-items: center;
	gap: 14px;
	width: min(100%, 430px);
	min-height: 62px;
	margin-top: 20px;
	padding: 10px 12px 10px 30px;
	border-radius: 999px;
	background: #151927;
	color: #fff;
	font-size: .94rem;
	font-weight: 900;
	line-height: 1.5;
	text-align: center;
	text-decoration: none;
}

.ai-detail-button::after {
	content: "→";
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .13);
	color: #1fddff;
	font-size: 1.3rem;
	font-weight: 900;
}

.ai-detail-button:hover,
.ai-detail-button:focus-visible {
	background: #101522;
	color: #fff;
}

.ai-price-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	max-width: 1080px;
	margin-inline: auto;
}

.ai-price-card {
	position: relative;
	min-height: 360px;
	padding: 34px 28px 30px;
	border: 1px solid rgba(88, 112, 138, .18);
	border-top: 5px solid #333;
	border-radius: 12px;
	background: #fff;
}

.ai-price-card--standard {
	border-color: rgba(69, 111, 240, .36);
	border-top-color: #456ff0;
	background: linear-gradient(180deg, #f7fbff 0%, #fff 42%);
}

.ai-price-card h3 {
	margin: 0 0 12px;
	color: #151927;
	font-size: 1.45rem;
	font-weight: 900;
	line-height: 1.4;
}

.ai-price-card p {
	min-height: 3.4em;
	margin: 0 0 18px;
	color: #344252;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.7;
}

.ai-price-card strong {
	display: block;
	margin: 0 0 22px;
	color: #333;
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	font-weight: 900;
	line-height: 1.2;
}

.ai-price-card--standard strong {
	color: #456ff0;
}

.ai-price-card ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ai-price-card li {
	position: relative;
	padding-left: 1.5em;
	color: #344252;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.7;
}

.ai-price-card li::before {
	content: "";
	position: absolute;
	top: .62em;
	left: 0;
	width: .56em;
	height: .56em;
	border-radius: 50%;
	background: #456ff0;
}

#ai-training,
#ai-consulting,
#ai-tool,
#ai-security,
#ai-pricing {
	scroll-margin-top: 128px;
}

.ai-service-card h3,
.ai-reason-card h3 {
	margin: 0 0 12px;
	color: #151927;
	font-size: 19px;
	font-weight: 900;
	line-height: 1.5;
}

.ai-service-card p,
.ai-reason-card p {
	margin: 0;
	color: #344252;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.85;
}

.ai-reason-feature-list {
	display: grid;
	gap: clamp(64px, 8vw, 104px);
	max-width: 1180px;
	margin-inline: auto;
}

.ai-reason-feature {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
	gap: clamp(42px, 7vw, 86px);
	align-items: center;
	padding: 26px 0;
}

.ai-reason-feature:nth-child(even) {
	grid-template-columns: minmax(360px, 1fr) minmax(0, .9fr);
}

.ai-reason-feature:nth-child(even) .ai-reason-feature__media {
	order: -1;
}

.ai-reason-feature::before,
.ai-reason-feature::after {
	content: "";
	position: absolute;
	z-index: 0;
	width: 118px;
	height: 118px;
	background: #0b58ad;
}

.ai-reason-feature::before {
	top: 0;
	right: -34px;
}

.ai-reason-feature:nth-child(even)::before {
	right: auto;
	left: -34px;
}

.ai-reason-feature::after {
	display: none;
}

.ai-reason-feature__body,
.ai-reason-feature__media {
	position: relative;
	z-index: 1;
}

.ai-reason-feature h3 {
	margin: 0 0 32px;
	color: #0759ad;
	font-size: clamp(2rem, 3vw, 3rem);
	font-weight: 900;
	line-height: 1.35;
}

.ai-reason-feature__lead {
	margin: 0 0 24px;
	color: #151927;
	font-size: 1.08rem;
	font-weight: 900;
	line-height: 1.8;
}

.ai-reason-feature ul {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ai-reason-feature li {
	position: relative;
	padding-left: 1.6em;
	color: #0759ad;
	font-size: 1rem;
	font-weight: 900;
	line-height: 1.8;
}

.ai-reason-feature li::before {
	content: "";
	position: absolute;
	top: .65em;
	left: 0;
	width: .72em;
	height: .72em;
	border-radius: 50%;
	background: #67b7e4;
}

.ai-reason-feature__media img,
.ai-reason-feature__media .media-placeholder {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	box-shadow: 0 18px 28px rgba(18, 47, 88, .16);
}

.ai-reason-feature__media .media-placeholder {
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, #edf7ff, #fff);
	border: 1px solid rgba(7, 89, 173, .18);
}

.ai-reason-feature__media .media-placeholder span {
	color: #0759ad;
	font-weight: 900;
}

.ai-section--flow {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px),
		linear-gradient(180deg, #245ca8 0%, #358fc8 100%);
	background-size: 52px 52px, auto;
}

.ai-section--flow .ai-section__heading h2 {
	color: #fff;
}

.ai-section--flow .ai-section__heading h2::after {
	background: #ffe957;
}

.ai-flow-list {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.ai-flow-item {
	position: relative;
	min-height: 320px;
	padding: 52px 24px 26px;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 8px;
	background: rgba(255, 255, 255, .14);
	box-shadow: 0 14px 24px rgba(10, 34, 74, .18);
	text-align: center;
}

.ai-flow-item:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -22px;
	z-index: 2;
	width: 0;
	height: 0;
	border-top: 18px solid transparent;
	border-bottom: 18px solid transparent;
	border-left: 28px solid #ffe957;
	transform: translateY(-50%);
}

.ai-flow-item__step {
	position: absolute;
	top: -32px;
	left: 50%;
	display: block;
	width: 100%;
	margin: 0;
	color: rgba(255, 255, 255, .44);
	font-size: clamp(2.35rem, 4vw, 3.4rem);
	font-weight: 900;
	line-height: 1;
	text-align: center;
	letter-spacing: .02em;
	transform: translateX(-50%);
	pointer-events: none;
}

.ai-flow-item h3 {
	margin: 0 0 18px;
	color: #fff;
	font-size: clamp(.98rem, 1.25vw, 1.18rem);
	font-weight: 900;
	line-height: 1.45;
	white-space: nowrap;
	text-align: center;
}

.ai-flow-item__image {
	display: grid;
	place-items: center;
	min-height: 76px;
	margin: 0 auto 18px;
}

.ai-flow-item__image img {
	display: block;
	width: min(92px, 48%);
	height: auto;
	object-fit: contain;
}

.ai-flow-item p {
	margin: 0;
	color: #fff;
	font-size: 13.5px;
	font-weight: 800;
	line-height: 1.8;
	text-align: left;
}

.ai-target-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

.ai-target-card {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	align-items: start;
	padding: 32px;
}

.ai-target-card h2 {
	margin: 0;
	color: #456ff0;
	font-size: clamp(1.28rem, 2vw, 1.7rem);
	font-weight: 900;
	line-height: 1.45;
}

.ai-target-card img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 8px;
	object-fit: cover;
}

.ai-target-card p {
	margin: 0;
	color: #344252;
	font-weight: 700;
	line-height: 1.9;
}

.ai-bottom-cta {
	padding: 0 24px 76px;
	background: #f8fbff;
}

.ai-bottom-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	max-width: 1080px;
	margin: 0 auto;
	padding: 34px 40px;
	border-radius: 8px;
	background: linear-gradient(135deg, #5f91ff, #8c7cf4);
	color: #fff;
}

.ai-bottom-cta h2 {
	margin: 0 0 8px;
	color: #fff;
	font-size: clamp(1.9rem, 2.7vw, 2.6rem);
	font-weight: 900;
}

.ai-bottom-cta p {
	margin: 0;
	color: #fff;
	font-weight: 800;
}

.ai-bottom-cta .button {
	background: #fff;
	color: #456ff0;
}

@media (max-width: 980px) {
	.ai-hero {
		padding: 44px 20px 52px;
	}

	.ai-hero__inner,
	.ai-service-grid,
	.ai-reason-grid,
	.ai-flow-list,
	.ai-target-grid,
	.ai-detail-card,
	.ai-price-grid {
		grid-template-columns: 1fr;
	}

	.ai-section--tabs {
		position: static;
		padding: 14px 20px;
	}

	.ai-service-tabs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.ai-service-tabs a {
		min-height: 46px;
		font-size: 14px;
	}

	.ai-hero h1 {
		font-size: clamp(1.9rem, 7.2vw, 2.75rem);
	}

	.ai-hero__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.ai-hero__actions .button {
		width: 100%;
	}

	.ai-hero__visual {
		max-width: 330px;
		margin: 0 auto;
	}

	.ai-detail-card {
		padding: 0;
		gap: 22px;
	}

	.ai-detail-card:nth-child(even) .ai-detail-card__media {
		order: 0;
	}

	.ai-detail-card__body {
		display: contents;
	}

	.ai-detail-card__body .ai-section__eyebrow {
		order: -3;
		margin-bottom: 0;
	}

	.ai-detail-card__body h2 {
		order: -2;
		margin-bottom: 0;
		padding-left: 18px;
		font-size: 1.65rem;
		line-height: 1.42;
	}

	.ai-detail-card__media {
		order: -1;
	}

	.ai-detail-card__media img,
	.ai-detail-card__media .media-placeholder {
		aspect-ratio: 16 / 11;
	}

	.ai-detail-card__body p:last-child {
		font-size: 15px;
		line-height: 1.85;
	}

	.ai-detail-card__body > p:not(.ai-section__eyebrow) {
		font-size: 15px;
		font-weight: 700;
		line-height: 1.9;
	}

	.ai-detail-price {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-top: 0;
		padding: 20px;
		border-width: 3px;
	}

	.ai-detail-price strong {
		font-size: 2rem;
		text-align: left;
	}

	.ai-detail-price p {
		padding-top: 14px;
		font-size: 14px;
	}

	.ai-detail-price small {
		text-align: left;
	}

	.ai-detail-button {
		width: 100%;
		min-height: 64px;
		margin-top: 0;
		padding: 12px 12px 12px 24px;
		font-size: .95rem;
	}

	.ai-detail-button::after {
		width: 44px;
		height: 44px;
		font-size: 1.25rem;
	}

	.ai-price-card {
		min-height: 0;
		padding: 28px 22px;
	}

	.ai-service-card,
	.ai-reason-card,
	.ai-flow-item {
		display: grid;
		grid-template-columns: 58px 1fr;
		gap: 6px 16px;
		align-items: center;
		text-align: left;
	}

	.ai-card-icon,
	.ai-reason-card span,
	.ai-flow-item span {
		grid-row: span 2;
		width: 100%;
		height: auto;
		margin: 0;
	}

	.ai-service-card .ai-card-icon {
		grid-column: 1 / -1;
		margin-bottom: 12px;
	}

	.ai-service-card .ai-card-icon img {
		max-width: 190px;
		border-radius: 12px;
	}

	.ai-service-card h3,
	.ai-service-card p,
	.ai-reason-card h3,
	.ai-reason-card p,
	.ai-flow-item h3,
	.ai-flow-item p {
		margin: 0;
	}

	.ai-reason-feature-list {
		gap: 48px;
	}

	.ai-reason-feature,
	.ai-reason-feature:nth-child(even) {
		grid-template-columns: 1fr;
		gap: 22px;
		padding: 10px 0 26px;
	}

	.ai-reason-feature:nth-child(even) .ai-reason-feature__media {
		order: 0;
	}

	.ai-reason-feature::before {
		width: 70px;
		height: 70px;
		top: auto;
		right: -20px;
		bottom: 0;
	}

	.ai-reason-feature:nth-child(even)::before {
		left: auto;
		right: -20px;
	}

	.ai-reason-feature h3 {
		margin-bottom: 20px;
		font-size: 1.75rem;
		line-height: 1.42;
	}

	.ai-reason-feature__lead {
		margin-bottom: 18px;
		font-size: 1rem;
	}

	.ai-reason-feature li {
		font-size: 15px;
		line-height: 1.75;
	}

	.ai-section--flow {
		padding-top: 82px;
	}

	.ai-section--flow .ai-section__heading {
		margin-bottom: 42px;
	}

	.ai-flow-list {
		gap: 44px;
	}

	.ai-flow-item {
		display: block;
		min-height: 0;
		padding: 46px 22px 26px;
		text-align: center;
	}

	.ai-flow-item:not(:last-child)::after {
		top: auto;
		right: auto;
		bottom: -34px;
		left: 50%;
		border-top: 22px solid #ffe957;
		border-right: 16px solid transparent;
		border-left: 16px solid transparent;
		border-bottom: 0;
		transform: translateX(-50%);
	}

	.ai-flow-item__step {
		position: absolute;
		top: -24px;
		left: 50%;
		display: block;
		grid-row: auto;
		width: 100% !important;
		height: auto;
		margin: 0;
		background: transparent;
		color: rgba(255, 255, 255, .44);
		font-size: 2.45rem;
		line-height: 1;
		text-align: center;
		transform: translateX(-50%);
	}

	.ai-flow-item h3 {
		margin-bottom: 18px;
		font-size: 1.08rem;
		text-align: center;
		white-space: nowrap;
	}

	.ai-flow-item__image {
		min-height: 58px;
		margin-bottom: 18px;
	}

	.ai-flow-item p {
		font-size: 15px;
		line-height: 1.85;
	}

	.ai-target-card {
		grid-template-columns: 1fr;
		padding: 22px;
	}

	.ai-bottom-cta__inner {
		display: grid;
		padding: 28px 22px;
		text-align: center;
	}

	.ai-bottom-cta .button {
		width: 100%;
	}
}
/* Blog ranking no-thumbnail hard fix */
.blog-sidebar .blog-ranking .blog-ranking__link {
	display: grid !important;
	grid-template-columns: 76px minmax(0, 1fr) !important;
	gap: 12px !important;
	align-items: center !important;
	width: 100% !important;
	min-width: 0 !important;
}

.blog-sidebar .blog-ranking .blog-ranking__link::before {
	display: none !important;
	content: none !important;
}

.blog-sidebar .blog-ranking .blog-ranking__placeholder,
.blog-sidebar .blog-ranking .wp-post-image {
	display: block !important;
	grid-column: 1 !important;
	grid-row: 1 !important;
	width: 76px !important;
	height: 58px !important;
	min-width: 76px !important;
	max-width: 76px !important;
	border-radius: 8px !important;
	object-fit: cover !important;
	background: linear-gradient(135deg, #fff1f6, #edf7ff) !important;
}

.blog-sidebar .blog-ranking .blog-ranking__placeholder::before {
	content: "";
	display: block;
	width: 28px;
	height: 28px;
	margin: 15px auto 0;
	border-radius: 50%;
	background: rgba(255, 111, 156, .32);
}

.blog-sidebar .blog-ranking .blog-ranking__title {
	display: block !important;
	grid-column: 2 !important;
	grid-row: 1 !important;
	width: auto !important;
	min-width: 0 !important;
	max-width: 100% !important;
	font-size: 13px !important;
	font-weight: 900 !important;
	line-height: 1.55 !important;
	letter-spacing: 0 !important;
	white-space: normal !important;
	word-break: keep-all !important;
	overflow-wrap: anywhere !important;
}

.blog-sidebar .blog-ranking li.no-thumb .blog-ranking__title,
.blog-sidebar .blog-ranking li.has-thumb .blog-ranking__title {
	padding: 0 !important;
	margin: 0 !important;
}

.blog-sidebar .blog-ranking li.no-thumb,
.blog-sidebar .blog-ranking li.has-thumb {
	width: 100% !important;
	min-width: 0 !important;
}

@media (max-width: 980px) {
	.blog-sidebar .blog-ranking .blog-ranking__link {
		grid-template-columns: 88px minmax(0, 1fr) !important;
	}

	.blog-sidebar .blog-ranking .blog-ranking__placeholder,
	.blog-sidebar .blog-ranking .wp-post-image {
		width: 88px !important;
		height: 64px !important;
		min-width: 88px !important;
		max-width: 88px !important;
	}
}
/* Blog ranking logo placeholder */
.blog-sidebar .blog-ranking .blog-ranking__placeholder {
	display: grid !important;
	place-items: center !important;
	padding: 8px !important;
}

.blog-sidebar .blog-ranking .blog-ranking__placeholder img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	max-height: 100% !important;
	object-fit: contain !important;
	border-radius: 0 !important;
	background: transparent !important;
}

.blog-sidebar .blog-ranking .blog-ranking__placeholder:has(img)::before {
	display: none !important;
	content: none !important;
}
/* Pillar page template */
.pillar-page {
  color: #253142;
  background: linear-gradient(180deg, #fff9fb 0%, #f4fbff 46%, #fff 100%);
}

.pillar-hero {
  padding: clamp(4.5rem, 8vw, 7rem) 1.5rem clamp(3.5rem, 6vw, 5.5rem);
  background:
    radial-gradient(circle at 12% 25%, rgba(255, 111, 153, 0.16), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(111, 207, 232, 0.18), transparent 28%),
    linear-gradient(135deg, #fff7fb 0%, #f2fbff 100%);
}

.pillar-hero__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.7fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.pillar-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: #f45685;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(244, 86, 133, 0.12);
}

.pillar-hero h1 {
  margin: 1.2rem 0 1.2rem;
  color: #111827;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.35;
  letter-spacing: 0;
}

.pillar-hero__lead {
  max-width: 720px;
  margin: 0;
  color: #3b4658;
  font-size: 1rem;
  line-height: 2;
  font-weight: 600;
}

.pillar-hero__visual {
  min-height: 280px;
  border-radius: 28px;
  display: grid;
  place-items: center;
}

.pillar-hero__visual img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  border-radius: 20px;
}

.pillar-hero__placeholder {
  width: min(340px, 100%);
  aspect-ratio: 1.25;
  border-radius: 32px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 111, 153, 0.16), rgba(93, 198, 226, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(67, 83, 102, 0.12);
  text-align: center;
}

.pillar-hero__placeholder span {
  display: block;
  color: #f45685;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.pillar-hero__placeholder strong {
  display: block;
  margin-top: 0.35rem;
  color: #2f80ed;
  font-size: 3rem;
  line-height: 1;
}

.pillar-layout {
  width: min(1180px, calc(100% - 3rem));
  margin: clamp(3rem, 6vw, 5rem) auto;
  display: grid;
  grid-template-columns: minmax(0, 780px) 310px;
  gap: clamp(2rem, 4vw, 3.25rem);
  align-items: start;
}

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

.pillar-content {
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(210, 223, 232, 0.75);
  box-shadow: 0 22px 70px rgba(37, 49, 66, 0.08);
  color: #253142;
  font-size: 16px;
  line-height: 2.05;
}

.pillar-content > *:first-child {
  margin-top: 0 !important;
}

.pillar-content h1 {
  padding: 1.3rem 1.5rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff2f7, #eefaff);
  color: #111827;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.45;
}

.pillar-content h2 {
  position: relative;
  margin: 4rem 0 1.35rem;
  padding-bottom: 0.85rem;
  color: #111827;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  line-height: 1.5;
}

.pillar-content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 76px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff6f99, #ffd166, #63d2e6);
}

.pillar-content h3 {
  margin: 3rem 0 1rem;
  padding-left: 1rem;
  border-left: 5px solid #63d2e6;
  color: #172033;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.6;
}

.pillar-content p,
.pillar-content li,
.pillar-content td,
.pillar-content th {
  color: #253142;
}

.pillar-content p {
  margin: 0 0 1.35rem;
}

.pillar-content a {
  color: #e94f7f;
  font-weight: 700;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.pillar-content ul,
.pillar-content ol {
  margin: 1.4rem 0 1.8rem;
  padding: 1.25rem 1.5rem 1.25rem 2.2rem;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid #e6eef5;
}

.pillar-content li + li {
  margin-top: 0.55rem;
}

.pillar-content figure,
.pillar-content img {
  max-width: 100%;
  height: auto;
}

.pillar-content figure {
  margin: 2rem 0;
}

.pillar-content img {
  border-radius: 18px;
}

.pillar-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  border-left: 5px solid #ff8aae;
  border-radius: 16px;
  background: #fff7fa;
  color: #3b4658;
}

.pillar-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  overflow: hidden;
  border-radius: 16px;
  font-size: 0.95rem;
}

.pillar-content th,
.pillar-content td {
  padding: 0.9rem 1rem;
  border: 1px solid #e2eaf1;
  vertical-align: top;
}

.pillar-content th {
  background: #f3f9ff;
  font-weight: 800;
}

.pillar-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 1.25rem;
}

.pillar-toc,
.pillar-side-cta {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(210, 223, 232, 0.75);
  box-shadow: 0 18px 54px rgba(37, 49, 66, 0.07);
}

.pillar-toc {
  padding: 1.35rem;
}

.pillar-toc h2 {
  margin: 0 0 0.9rem;
  color: #111827;
  font-size: 1.05rem;
}

.pillar-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.62rem;
}

.pillar-toc li.is-level-3 {
  padding-left: 0.9rem;
  font-size: 0.92em;
}

.pillar-toc a {
  display: block;
  padding: 0.58rem 0.7rem;
  border-radius: 12px;
  color: #334155;
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
}

.pillar-toc a:hover {
  background: #f4fbff;
  color: #e94f7f;
}

.pillar-side-cta {
  padding: 1.35rem;
  background: linear-gradient(135deg, #fff4d9, #fff7fb);
}

.pillar-side-cta p {
  margin: 0 0 0.5rem;
  color: #f39b2f;
  font-weight: 900;
}

.pillar-side-cta strong {
  display: block;
  color: #172033;
  line-height: 1.7;
}

.pillar-side-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  margin-top: 1rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  background: #ff6f99;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.pillar-bottom-cta {
  margin-top: 2rem;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border-radius: 24px;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #ff7aa4, #68cde5);
  color: #fff;
}

.pillar-bottom-cta h2,
.pillar-bottom-cta p {
  margin: 0;
  color: #fff;
}

.pillar-bottom-cta h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.55;
}

.pillar-bottom-cta__label {
  margin-bottom: 0.4rem !important;
  font-weight: 900;
}

.pillar-bottom-cta .button {
  flex: 0 0 auto;
  white-space: nowrap;
  background: #fff;
  color: #e94f7f;
}

@media (max-width: 900px) {
  .pillar-hero__inner,
  .pillar-layout {
    grid-template-columns: 1fr;
  }

  .pillar-hero {
    padding-top: 3.5rem;
  }

  .pillar-hero__visual {
    min-height: 200px;
  }

  .pillar-layout {
    width: min(100% - 2rem, 680px);
    margin-top: 2.5rem;
  }

  .pillar-sidebar {
    position: static;
    order: -1;
  }

  .pillar-content {
    padding: 1.45rem;
    font-size: 15.5px;
    line-height: 1.95;
    border-radius: 20px;
  }

  .pillar-content h2 {
    margin-top: 3rem;
  }

  .pillar-bottom-cta {
    display: grid;
    text-align: center;
    justify-items: center;
  }
}
/* Mobile hamburger stability fix */
@media (max-width: 980px) {
  .menu-toggle {
    position: relative;
    z-index: 1300;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 22px rgba(17, 24, 39, 0.08);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .menu-toggle span:not(.screen-reader-text) {
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    width: 24px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: #172033;
    transform: translate(-50%, -50%);
    transform-origin: center;
    transition: transform 0.22s ease, opacity 0.18s ease, background-color 0.2s ease;
  }

  .menu-toggle span:not(.screen-reader-text):nth-child(1) {
    transform: translate(-50%, calc(-50% - 7px));
  }

  .menu-toggle span:not(.screen-reader-text):nth-child(2) {
    transform: translate(-50%, -50%);
  }

  .menu-toggle span:not(.screen-reader-text):nth-child(3) {
    transform: translate(-50%, calc(-50% + 7px));
  }

  .menu-open .menu-toggle {
    position: fixed;
    top: 14px;
    right: 16px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: none;
  }

  .menu-open .menu-toggle span:not(.screen-reader-text) {
    background: #fff;
  }

  .menu-open .menu-toggle span:not(.screen-reader-text):nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .menu-open .menu-toggle span:not(.screen-reader-text):nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:not(.screen-reader-text):nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .primary-nav {
    padding-top: 82px;
  }
}
@media (max-width: 980px) {
  body.admin-bar.menu-open .menu-toggle {
    top: 60px;
  }
}
/* Mobile drawer touch and overflow hard fix */
@media (max-width: 980px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .menu-toggle span:not(.screen-reader-text),
  .menu-open .menu-toggle span:not(.screen-reader-text) {
    background: #f45685;
  }

  .menu-open .menu-toggle {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 26px rgba(17, 24, 39, 0.12);
  }

  .primary-nav {
    right: 0;
    left: auto;
    max-width: calc(100vw - 28px);
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(100%, 0, 0);
    will-change: transform;
  }

  .menu-open .primary-nav {
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  body.menu-open {
    overflow: hidden;
    touch-action: none;
  }
}
@media (max-width: 980px) {
  html,
  body {
    overflow-x: hidden;
  }

  @supports (overflow: clip) {
    html,
    body {
      overflow-x: clip;
    }
  }
}
/* Mobile drawer height and readability fix */
@media (max-width: 980px) {
  .primary-nav {
    top: 0;
    bottom: 0;
    height: 100dvh;
    min-height: 100vh;
    max-height: 100dvh;
    padding: 5.5rem 1.35rem 2rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  body.admin-bar .primary-nav {
    height: calc(100dvh - 46px);
    max-height: calc(100dvh - 46px);
    top: 46px;
    padding-top: 4.8rem;
  }

  .primary-nav__list {
    display: grid;
    gap: 0.45rem;
  }

  .primary-nav__list > li {
    min-height: 58px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .primary-nav__list > li > a {
    min-height: 58px;
    padding: 0.35rem 0.35rem;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.45;
  }

  .submenu-toggle {
    width: 42px;
    height: 42px;
  }

  .primary-nav .menu-item-has-children.is-open > .sub-menu {
    max-height: none;
    padding: 0.65rem;
    margin: 0.1rem 0 0.9rem;
  }

  .primary-nav .sub-menu a {
    min-height: 44px;
    padding: 0.6rem 0.75rem;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .primary-nav__cta {
    min-height: 52px;
    margin-top: 1.4rem;
    padding: 0.85rem 1.2rem;
    font-size: 1rem;
  }
}
/* Mobile drawer submenu overflow and contrast fix */
@media (max-width: 980px) {
  .primary-nav,
  .primary-nav * {
    box-sizing: border-box;
  }

  .primary-nav__list,
  .primary-nav__list > li,
  .primary-nav .sub-menu {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .primary-nav__list > li {
    overflow: hidden;
  }

  .primary-nav .sub-menu {
    grid-column: 1 / -1;
    position: static;
    left: auto;
    right: auto;
    transform: none;
    max-width: 100%;
    overflow: hidden;
  }

  .primary-nav .menu-item-has-children.is-open > .sub-menu {
    width: 100%;
    max-width: 100%;
    padding: 0.65rem;
  }

  .primary-nav .sub-menu li,
  .primary-nav .sub-menu a {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .primary-nav .sub-menu a {
    overflow-wrap: anywhere;
    word-break: keep-all;
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
  }

  .primary-nav .sub-menu a:hover,
  .primary-nav .sub-menu a:focus-visible,
  .primary-nav__list > li > a:hover,
  .primary-nav__list > li > a:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.22);
  }

  .primary-nav a:hover,
  .primary-nav a:focus-visible {
    color: #fff;
  }
}

@media (min-width: 981px) {
  .primary-nav .sub-menu a:hover,
  .primary-nav .sub-menu a:focus-visible {
    color: #d92f68;
    background: #fff3f7;
  }

  .primary-nav__list > li > a:hover,
  .primary-nav__list > li > a:focus-visible {
    color: #d92f68;
  }
}
/* Mobile header center logo and stable accordion reset */
@media (max-width: 980px) {
  .site-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
  }

  .site-header .brand {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
  }

  .site-header .brand img,
  .site-header .custom-logo {
    max-width: 148px;
    height: auto;
  }

  .menu-toggle {
    position: relative;
    z-index: 1300;
    margin-left: auto;
  }

  .menu-open .menu-toggle {
    position: fixed;
  }

  .primary-nav {
    display: block;
    width: min(88vw, 390px);
    max-width: calc(100vw - 24px);
    padding: 5.25rem 1.15rem 2rem;
  }

  .primary-nav__list {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .primary-nav__list > li {
    position: relative;
    display: block !important;
    width: 100%;
    min-height: 0;
    overflow: visible;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .primary-nav__list > li > a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 58px;
    padding: 0.75rem 3.2rem 0.75rem 0.35rem;
    color: #fff;
    font-size: 1.04rem;
    font-weight: 800;
    line-height: 1.45;
    text-decoration: none;
    white-space: normal;
  }

  .primary-nav__list > .menu-item-has-children > a::after {
    display: none !important;
  }

  .submenu-toggle {
    position: absolute;
    top: 0.55rem;
    right: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 50%;
  }

  .primary-nav .sub-menu {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    grid-column: auto !important;
    display: none;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    max-height: none !important;
    margin: 0.1rem 0 1rem;
    padding: 0.65rem;
    overflow: visible;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    background: rgba(255, 255, 255, 0.13);
    border: 0;
    border-radius: 12px;
    box-shadow: none;
  }

  .primary-nav .sub-menu::before {
    display: none !important;
  }

  .primary-nav .menu-item-has-children.is-open > .sub-menu {
    display: grid;
    gap: 0.35rem;
  }

  .primary-nav .sub-menu li {
    display: block;
    width: 100%;
    margin: 0;
  }

  .primary-nav .sub-menu a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 44px;
    padding: 0.62rem 0.75rem;
    color: #fff;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.55;
    white-space: normal;
    overflow-wrap: anywhere;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 10px;
  }

  .primary-nav a:hover,
  .primary-nav a:focus-visible,
  .primary-nav .sub-menu a:hover,
  .primary-nav .sub-menu a:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.24);
  }
}
/* Mobile Japanese font weight hardening */
@media (max-width: 980px) {
  html,
  body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  body {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", Meiryo, sans-serif;
    font-synthesis-weight: auto;
  }

  h1,
  h2,
  h3,
  .section-title,
  .hero__eyebrow,
  .hero h1,
  .hero h1 span,
  .web-hero h1,
  .seo-hero h1,
  .sns-hero h1,
  .company-hero h1,
  .pc-hero h1,
  .ai-hero h1,
  .blog-hero h1,
  .blog-single-hero h1,
  .contact-hero h1,
  .pillar-hero h1 {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", Meiryo, sans-serif;
    font-weight: 900 !important;
  }

  .hero__eyebrow {
    color: #111827;
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .hero h1,
  .hero h1 span {
    color: #111827;
    font-weight: 900 !important;
    -webkit-text-stroke: 0.015em transparent;
  }

  .hero h1 span:nth-child(2) {
    color: #f45685;
  }

  .hero h1 span:nth-child(3) {
    color: #f39b2f;
  }

  .hero__lead,
  .hero__badges,
  .hero__badges span,
  .service-card h3,
  .reason-card h3,
  .work-card h3,
  .blog-card h2,
  .blog-card h3 {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", Meiryo, sans-serif;
    font-weight: 800 !important;
  }
}

@media (max-width: 640px) {
  .hero__eyebrow {
    font-weight: 900 !important;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 9vw, 2.5rem);
    line-height: 1.42;
    font-weight: 900 !important;
  }

  .hero h1 span {
    display: block;
    font-weight: 900 !important;
  }
}
/* Final mobile header and bold text correction */
@media (max-width: 980px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1400;
  }

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

  .site-header__inner {
    position: relative;
  }

  .site-header .brand {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
  }

  .menu-toggle,
  .menu-open .menu-toggle,
  body.admin-bar.menu-open .menu-toggle {
    position: absolute !important;
    top: 50% !important;
    right: 0 !important;
    transform: translateY(-50%) !important;
    z-index: 1500 !important;
    margin: 0 !important;
  }

  .primary-nav {
    z-index: 1300;
  }

  body,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .hero__eyebrow,
  .hero h1,
  .hero h1 span,
  .section-title,
  .service-card h3,
  .reason-card h3,
  .work-card h3,
  .blog-card h2,
  .blog-card h3 {
    font-family: Meiryo, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic UI", "Yu Gothic", sans-serif !important;
  }

  h1,
  h2,
  h3,
  .hero__eyebrow,
  .hero h1,
  .hero h1 span,
  .section-title {
    font-weight: 900 !important;
    font-synthesis: weight !important;
  }

  .hero__eyebrow,
  .hero h1,
  .hero h1 span {
    -webkit-text-stroke: 0.012em currentColor;
    text-shadow: 0.25px 0 currentColor, -0.25px 0 currentColor;
  }

  .hero__lead,
  .service-card h3,
  .reason-card h3,
  .work-card h3,
  .blog-card h2,
  .blog-card h3 {
    font-weight: 800 !important;
    font-synthesis: weight !important;
  }
}

@media (max-width: 640px) {
  .hero__eyebrow,
  .hero h1,
  .hero h1 span {
    font-weight: 900 !important;
  }
}

/* Blog mobile list and sticky navigation final correction */
.blog-card__logo-placeholder {
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: linear-gradient(135deg, #fff3f7, #f1fbff);
}

.blog-card__logo-placeholder img {
  width: min(82%, 240px) !important;
  height: auto !important;
  object-fit: contain !important;
}

@media (max-width: 980px) {
  .site-header { position: sticky !important; top: 0 !important; z-index: 5000 !important; transform: none !important; }
  body.admin-bar .site-header { top: 46px !important; }
  .site-header__inner { position: relative !important; min-height: 68px; }
  .menu-toggle,
  body.menu-open .menu-toggle,
  body.admin-bar.menu-open .menu-toggle {
    position: absolute !important; top: 50% !important; right: 0 !important; bottom: auto !important; left: auto !important;
    transform: translateY(-50%) !important; z-index: 5100 !important;
  }
  .primary-nav { position: fixed !important; top: 0 !important; right: 0 !important; bottom: 0 !important; height: 100dvh !important; z-index: 4900 !important; }
  body.admin-bar .primary-nav { top: 46px !important; height: calc(100dvh - 46px) !important; }
}

@media (max-width: 640px) {
  .blog-layout { width: min(100% - 24px, 560px); }
  .blog-card-grid.blog-card-list { display: grid !important; grid-template-columns: 1fr !important; gap: 14px !important; }
  .blog-card-list .blog-card { display: grid !important; grid-template-columns: 38% minmax(0, 1fr) !important; min-height: 132px; overflow: hidden; }
  .blog-card-list .blog-card__thumb { display: block !important; width: 100% !important; min-width: 0 !important; height: 100% !important; min-height: 132px; }
  .blog-card-list .blog-card__thumb img,
  .blog-card-list .media-placeholder { display: block !important; width: 100% !important; height: 100% !important; min-height: 132px; object-fit: cover !important; }
  .blog-card-list .blog-card__body { display: flex !important; flex-direction: column; justify-content: center; min-width: 0; padding: 12px !important; }
  .blog-card-list .blog-card__body time { margin-bottom: 4px; font-size: 0.72rem; }
  .blog-card-list .blog-card__body h3 { display: block !important; margin: 0 !important; font-size: 0.95rem !important; line-height: 1.55 !important; font-weight: 800 !important; }
  .blog-card-list .blog-card__body h3 a,
  .blog-card-list .blog-card__body p { color: #172033 !important; visibility: visible !important; opacity: 1 !important; }
  .blog-card-list .blog-card__body p { margin: 7px 0 0 !important; font-size: 0.78rem !important; line-height: 1.65 !important; display: -webkit-box !important; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; }
  .blog-card__cat { max-width: calc(100% - 12px); font-size: 0.66rem; }
  .blog-sidebar { display: none; }
}

/* Local SEO content for the SNS service page */
.sns-local-intro {
	padding: 54px 24px;
	background: #fff;
	border-top: 1px solid #edf1f4;
	border-bottom: 1px solid #edf1f4;
}

.sns-local-intro__inner {
	display: grid;
	grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
	gap: 54px;
	align-items: center;
	max-width: 1180px;
	margin: 0 auto;
}

.sns-local-intro h2 {
	margin: 0;
	color: #172535;
	font-size: clamp(1.7rem, 3vw, 2.35rem);
	line-height: 1.5;
}

.sns-local-intro p:last-child {
	margin: 0;
	color: #334454;
	font-size: 16px;
	line-height: 2;
}

.sns-local-faq {
	padding: 88px 24px 110px;
	background: #f5faf8;
}

.sns-faq-list {
	max-width: 920px;
	margin: 0 auto;
}

.sns-faq-list details {
	border-bottom: 1px solid #d7e6e5;
	background: #fff;
}

.sns-faq-list summary {
	position: relative;
	padding: 22px 52px 22px 22px;
	color: #172535;
	font-size: 16px;
	font-weight: 900;
	cursor: pointer;
	list-style: none;
}

.sns-faq-list summary::-webkit-details-marker { display: none; }

.sns-faq-list summary::after {
	content: "+";
	position: absolute;
	right: 22px;
	top: 50%;
	color: #e95c85;
	font-size: 24px;
	font-weight: 400;
	transform: translateY(-50%);
}

.sns-faq-list details[open] summary::after { content: "−"; }

.sns-faq-list details p {
	margin: 0;
	padding: 0 52px 24px 22px;
	color: #40515f;
	font-size: 15px;
	line-height: 1.9;
}

@media (max-width: 640px) {
	.sns-local-intro { padding: 48px 20px; }
	.sns-local-intro__inner { grid-template-columns: 1fr; gap: 18px; }
	.sns-local-intro h2 { font-size: 1.65rem; }
	.sns-local-intro p:last-child { font-size: 15px; }
	.sns-local-faq { padding: 70px 20px 80px; }
	.sns-faq-list summary { padding: 18px 46px 18px 16px; font-size: 15px; }
	.sns-faq-list details p { padding: 0 16px 20px; font-size: 14px; }
}

/* SNS page final cascade at the end of the stylesheet */
.sns-hero { padding: clamp(78px, 9vw, 132px) 24px 92px !important; background: linear-gradient(135deg, #fff8fb 0%, #fff 48%, #f1fbff 100%) !important; }
.sns-hero__inner { max-width: 1240px !important; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr) !important; gap: clamp(40px, 7vw, 112px) !important; }
.sns-hero h1 { max-width: 700px !important; font-size: clamp(2.4rem, 4.3vw, 4.5rem) !important; line-height: 1.28 !important; }
.sns-breadcrumb { color: #168f96 !important; }
.sns-title-line--1 { color: #ef4f79 !important; }
.sns-hero__content > p:not(.sns-breadcrumb) { max-width: 630px !important; color: #283847 !important; font-size: 16px !important; line-height: 2.05 !important; }
.sns-hero__actions .button--ghost { border: 1px solid #ef6d91 !important; background: #fff !important; color: #d93f69 !important; }
.sns-hero__visual { min-height: 420px !important; display: grid !important; place-items: center !important; }
.sns-hero__visual > img { max-height: 500px !important; border-radius: 24px !important; filter: drop-shadow(0 22px 30px rgba(41, 67, 88, .12)) !important; }
.sns-section { padding: clamp(82px, 9vw, 132px) 24px !important; }
.sns-section--worries { background: #fff !important; }
.sns-section--services { background: #f7fcfa !important; }
.sns-section--platforms { background: #fff8fb !important; }
.sns-section--reasons { background: #f2f8ff !important; }
.sns-section--flow { background: #fff !important; }
.sns-section--plans { background: #fff8ee !important; }
.sns-section__heading { max-width: 900px !important; margin-bottom: 48px !important; }
.sns-section__heading h2 { font-size: clamp(2rem, 3vw, 2.8rem) !important; line-height: 1.4 !important; }
.sns-section__heading h2::after { width: 42px !important; height: 3px !important; margin-top: 18px !important; background: #ef6d91 !important; }
.sns-section__kicker { margin: 0 0 12px !important; color: #198d93 !important; font-size: 13px !important; font-weight: 900 !important; letter-spacing: .12em !important; }
.sns-worry-list { max-width: 900px !important; gap: 14px !important; }
.sns-worry-item { min-height: 72px !important; padding: 14px 22px !important; border: 0 !important; border-left: 4px solid #f17b9c !important; border-radius: 0 8px 8px 0 !important; background: #fff8fb !important; }
.sns-worry-item span { width: 38px !important; height: 38px !important; background: #f17b9c !important; }
.sns-service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 24px !important; max-width: 1180px !important; }
.sns-service-card { min-height: 270px !important; padding: 34px 28px !important; border: 0 !important; border-radius: 12px !important; box-shadow: 0 12px 32px rgba(32, 75, 93, .08) !important; }
.sns-service-card:nth-child(4), .sns-service-card:nth-child(5) { transform: translateY(18px) !important; }
.sns-service-card h3 { font-size: 20px !important; white-space: normal !important; }
.sns-service-card p, .sns-platform-card p, .sns-reason-card p, .sns-flow-item p { color: #334454 !important; font-size: 15px !important; line-height: 1.95 !important; }
.sns-platform-grid { gap: 22px !important; }
.sns-platform-card { padding: 38px 30px !important; border: 1px solid #f1dce3 !important; border-radius: 12px !important; box-shadow: 0 10px 24px rgba(64, 67, 84, .06) !important; }
.sns-reason-grid { display: grid !important; grid-template-columns: repeat(4, minmax(0, 1fr)) !important; gap: 20px !important; max-width: 1180px !important; margin: 0 auto !important; }
.sns-reason-card { padding: 30px 24px !important; border-top: 4px solid #ef6d91 !important; border-radius: 10px !important; background: #fff !important; box-shadow: 0 10px 24px rgba(50, 93, 120, .07) !important; }
.sns-reason-card:nth-child(2) { border-color: #62badc !important; }
.sns-reason-card:nth-child(3) { border-color: #73c68a !important; }
.sns-reason-card:nth-child(4) { border-color: #a685e5 !important; }
.sns-reason-card h3 { margin: 0 0 14px !important; color: #172535 !important; font-size: 18px !important; line-height: 1.55 !important; }
.sns-flow-list { position: relative !important; max-width: 850px !important; margin: 0 auto !important; }
.sns-flow-list::before { content: "" !important; position: absolute !important; left: 26px !important; top: 22px !important; bottom: 22px !important; width: 2px !important; background: #b7dfe0 !important; }
.sns-flow-item { position: relative !important; display: grid !important; grid-template-columns: 54px 1fr !important; gap: 24px !important; padding: 0 0 42px !important; }
.sns-flow-item__number { position: relative !important; z-index: 1 !important; display: grid !important; place-items: center !important; width: 54px !important; height: 54px !important; border: 5px solid #fff !important; border-radius: 50% !important; background: #ef6d91 !important; color: #fff !important; font-weight: 900 !important; }
.sns-flow-item h3 { margin: 2px 0 10px !important; color: #182637 !important; font-size: 20px !important; }
.sns-plan-grid { max-width: 1180px !important; gap: 20px !important; }
.sns-plan-card { border: 1px solid #f0dcd2 !important; border-radius: 12px !important; box-shadow: 0 10px 26px rgba(114, 82, 56, .08) !important; }
.sns-plan-card--standard { border: 2px solid #ef6d91 !important; transform: translateY(-14px) !important; }
.sns-bottom-cta { padding: 44px 24px 110px !important; background: #fff !important; }
.sns-bottom-cta__inner { max-width: 1180px !important; padding: 42px 52px !important; border-radius: 14px !important; background: linear-gradient(100deg, #f0648b, #ee8e9f 52%, #f2bd83) !important; }
.sns-bottom-cta h2, .sns-bottom-cta p { color: #fff !important; }
.sns-bottom-cta .button { background: #fff !important; color: #d7466e !important; }
@media (max-width: 980px) {
	.sns-hero { padding: 64px 20px 72px !important; }
	.sns-hero__inner { gap: 30px !important; }
	.sns-hero h1 { font-size: clamp(2rem, 8vw, 3rem) !important; }
	.sns-hero__visual { min-height: 300px !important; }
	.sns-section { padding: 72px 20px !important; }
	.sns-service-grid, .sns-reason-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
	.sns-service-card:nth-child(4), .sns-service-card:nth-child(5), .sns-plan-card--standard { transform: none !important; }
}
@media (max-width: 640px) {
	.sns-hero h1 { font-size: 2rem !important; line-height: 1.42 !important; }
	.sns-section__heading { margin-bottom: 34px !important; }
	.sns-section__heading h2 { font-size: 1.8rem !important; }
	.sns-service-grid, .sns-reason-grid, .sns-platform-grid, .sns-plan-grid { grid-template-columns: 1fr !important; }
	.sns-service-card, .sns-platform-card { text-align: left !important; }
	.sns-service-icon, .sns-platform-icon { margin-left: 0 !important; }
	.sns-worry-item { grid-template-columns: 38px minmax(0, 1fr) !important; padding-inline: 16px !important; }
	.sns-worry-item p { font-size: 14px !important; }
	.sns-flow-item { grid-template-columns: 48px 1fr !important; gap: 18px !important; padding-bottom: 34px !important; }
	.sns-flow-item__number { width: 48px !important; height: 48px !important; }
	.sns-flow-list::before { left: 23px !important; }
	.sns-bottom-cta { padding-bottom: 72px !important; }
}

/* Web production optional services: simple text list without gradient icons. */
.web-option-grid {
	display: block !important;
	max-width: 900px;
	margin: 0 auto 1.5rem !important;
	border-top: 1px solid #e9e1e5;
}

.web-option-grid .web-soft-card {
	display: block !important;
	padding: 14px 18px !important;
	background: transparent !important;
	border: 0 !important;
	border-bottom: 1px solid #e9e1e5 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

.web-option-grid .web-soft-card .web-icon {
	display: none !important;
}

.web-option-grid .web-soft-card p {
	margin: 0 !important;
	color: #263342 !important;
	font-size: 1rem !important;
	font-weight: 700;
	line-height: 1.7;
}

/* Remove the small orange dot attached to each flow marker. */
.web-flow span::before {
	display: none !important;
	content: none !important;
}

/* Replace pill-shaped hero labels with a quieter editorial label treatment. */
.web-pill,
.seo-pill,
.pc-pill,
.ai-pill,
.pillar-eyebrow {
	display: inline-block !important;
	width: auto !important;
	min-height: 0 !important;
	margin: 0 0 24px !important;
	padding: 4px 0 5px 13px !important;
	border: 0 !important;
	border-left: 4px solid currentColor !important;
	border-radius: 0 !important;
	background: linear-gradient(90deg, rgba(244, 86, 133, 0.13), transparent) !important;
	box-shadow: none !important;
	font-size: 0.86rem !important;
	font-weight: 800 !important;
	line-height: 1.5 !important;
	letter-spacing: 0.02em;
}

.seo-pill {
	background: linear-gradient(90deg, rgba(244, 95, 143, 0.13), transparent) !important;
}

.pc-pill,
.ai-pill {
	background: linear-gradient(90deg, rgba(79, 132, 244, 0.13), transparent) !important;
}

.pillar-eyebrow {
	background: linear-gradient(90deg, rgba(244, 86, 133, 0.13), transparent) !important;
}

@media (max-width: 640px) {
	.web-pill,
	.seo-pill,
	.pc-pill,
	.ai-pill,
	.pillar-eyebrow {
		margin-bottom: 18px !important;
		padding-left: 10px !important;
		font-size: 0.78rem !important;
	}
}

/* Web production solution callout: a prominent, centered answer to the worries list. */
.web-solution {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: fit-content !important;
	max-width: min(100%, 720px) !important;
	min-height: 62px;
	margin: 28px auto 0 !important;
	padding: 14px 34px !important;
	color: #e83e70 !important;
	font-size: 1.12rem !important;
	font-weight: 900 !important;
	line-height: 1.5 !important;
	text-align: center;
	background-color: #fff0f5 !important;
	background-image: none !important;
	border: 1px solid #ffc4d2 !important;
	border-radius: 999px !important;
	box-shadow: 0 10px 24px rgba(243, 91, 134, 0.08) !important;
}

@media (max-width: 640px) {
	.web-solution {
		width: 100% !important;
		min-height: 56px;
		padding: 12px 18px !important;
		font-size: 1rem !important;
	}
}

/* Web production features: show the visual artwork only. */
.web-feature-grid article {
	display: block !important;
	padding: 28px !important;
}

.web-feature-grid .web-feature-body {
	display: none !important;
}

.web-feature-grid .web-feature-visual {
	width: 100%;
	min-height: 240px;
}

.web-feature-grid .web-feature-visual img {
	width: 100%;
	max-width: none;
	max-height: 300px;
}

@media (max-width: 640px) {
	.web-feature-grid article {
		padding: 18px !important;
	}

	.web-feature-grid .web-feature-visual {
		min-height: 180px;
	}
}

/* Web features: restore image-and-copy columns; remove the decorative image panel. */
.web-feature-grid article {
	display: grid !important;
	grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr) !important;
	gap: 32px !important;
	align-items: center !important;
	padding: 28px !important;
}

.web-feature-grid .web-feature-body {
	display: block !important;
}

.web-feature-grid .web-feature-visual {
	min-height: 0 !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
}

.web-feature-grid .web-feature-visual img {
	width: 100%;
	max-width: 100%;
	max-height: 300px;
	object-fit: contain;
}

@media (max-width: 760px) {
	.web-feature-grid article,
	.web-feature-grid article:nth-child(even) {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 18px !important;
		padding: 22px 18px !important;
		text-align: center;
	}

	.web-feature-grid article:nth-child(even) .web-feature-visual,
	.web-feature-grid article:nth-child(even) .web-feature-body {
		order: initial;
	}
}

/* Web solution message: plain black heading, without badge styling. */
.web-solution {
	display: block !important;
	width: auto !important;
	max-width: none !important;
	min-height: 0 !important;
	margin: 2rem auto 0 !important;
	padding: 0 !important;
	color: #111827 !important;
	font-size: 2rem !important;
	font-weight: 900 !important;
	line-height: 1.45 !important;
	text-align: center !important;
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

@media (max-width: 640px) {
	.web-solution {
		font-size: 1.35rem !important;
	}
}

/* Hero labels: plain bold text without pill or decorative side rules. */
.web-pill,
.seo-pill,
.pc-pill,
.ai-pill,
.pillar-eyebrow {
	display: block !important;
	width: fit-content !important;
	margin: 0 0 24px !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: #111827 !important;
	font-weight: 800 !important;
	line-height: 1.6 !important;
}

@media (max-width: 640px) {
	.web-pill,
	.seo-pill,
	.pc-pill,
	.ai-pill,
	.pillar-eyebrow {
		margin-bottom: 18px !important;
		font-size: 0.82rem !important;
	}
}

@media (max-width: 767px) {
  h2 {
    font-size: 1.8rem !important;
    line-height: 1.35 !important;
  }
}

/* Final service/reason image radius and hamburger line cleanup */
.service-card img,
.reason-media {
  border-radius: 18px;
}

.service-card .media-placeholder {
  border-radius: 18px;
}

@media (max-width: 980px) {
  .menu-toggle,
  body.menu-open .menu-toggle,
  body.admin-bar.menu-open .menu-toggle {
    position: absolute !important;
    top: 50% !important;
    right: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    transform: translateY(-50%) !important;
  }

  .menu-toggle::before,
  .menu-toggle::after {
    display: none !important;
    content: none !important;
    box-shadow: none !important;
  }

  .menu-toggle span:not(.screen-reader-text) {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    display: block !important;
    width: 24px !important;
    height: 2px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    background: #f45685 !important;
    box-shadow: none !important;
    opacity: 1 !important;
    transform-origin: center !important;
  }

  .menu-toggle span:not(.screen-reader-text):nth-child(1) {
    transform: translate(-50%, calc(-50% - 7px)) !important;
  }

  .menu-toggle span:not(.screen-reader-text):nth-child(2) {
    transform: translate(-50%, -50%) !important;
  }

  .menu-toggle span:not(.screen-reader-text):nth-child(3) {
    transform: translate(-50%, calc(-50% + 7px)) !important;
  }

  body.menu-open .menu-toggle span:not(.screen-reader-text):nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg) !important;
  }

  body.menu-open .menu-toggle span:not(.screen-reader-text):nth-child(2) {
    opacity: 0 !important;
  }

  body.menu-open .menu-toggle span:not(.screen-reader-text):nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg) !important;
  }
}

/* SNS real final overrides. */
.sns-platform-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.sns-service-icon {
	width: min(100%, 180px) !important;
	height: 142px !important;
	margin: 0 auto 22px !important;
}

.sns-service-card {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
}

.sns-service-card p {
	width: 100% !important;
}

@media (max-width: 980px) {
	.sns-section--worries .sns-section__heading h2 {
		font-size: 1.6rem !important;
		line-height: 1.45 !important;
		white-space: nowrap !important;
		letter-spacing: 0 !important;
	}
}

@media (max-width: 640px) {
	.sns-service-icon {
		width: min(100%, 240px) !important;
		height: 180px !important;
		margin: 0 auto 20px !important;
	}

	.sns-platform-grid {
		grid-template-columns: 1fr !important;
	}
}
/* SNS absolute final overrides. */
.sns-platform-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.sns-service-icon {
	width: min(100%, 180px) !important;
	height: 142px !important;
	margin: 0 auto 22px !important;
}

.sns-service-card {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
}

.sns-service-card p {
	width: 100% !important;
}

@media (max-width: 640px) {
	.sns-section--worries .sns-section__heading h2,
	body .sns-section--worries .sns-section__heading h2 {
		font-size: 1.6rem !important;
		line-height: 1.45 !important;
		white-space: nowrap !important;
		letter-spacing: 0 !important;
	}

	.sns-service-icon {
		width: min(100%, 240px) !important;
		height: 180px !important;
		margin: 0 auto 20px !important;
	}

	.sns-platform-grid {
		grid-template-columns: 1fr !important;
	}
}

/* SNS final adjustments: platforms, service images, and mobile worry heading. */
.sns-platform-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.sns-service-icon {
	width: min(100%, 180px) !important;
	height: 142px !important;
	margin: 0 auto 22px !important;
}

.sns-service-card {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
}

.sns-service-card p {
	width: 100% !important;
}

@media (max-width: 640px) {
	.sns-section--worries .sns-section__heading h2,
	body .sns-section--worries .sns-section__heading h2 {
		font-size: 1.6rem !important;
		line-height: 1.45 !important;
		white-space: nowrap !important;
		letter-spacing: 0 !important;
	}

	.sns-service-icon {
		width: min(100%, 240px) !important;
		height: 180px !important;
		margin: 0 auto 20px !important;
	}

	.sns-platform-grid {
		grid-template-columns: 1fr !important;
	}
}

/* SNS final adjustments: platforms, service images, and mobile worry heading. */
.sns-platform-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.sns-service-icon {
	width: min(100%, 180px) !important;
	height: 142px !important;
	margin: 0 auto 22px !important;
}

.sns-service-card {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
}

.sns-service-card p {
	width: 100% !important;
}

@media (max-width: 640px) {
	.sns-section--worries .sns-section__heading h2,
	body .sns-section--worries .sns-section__heading h2 {
		font-size: 1.6rem !important;
		line-height: 1.45 !important;
		white-space: nowrap !important;
		letter-spacing: 0 !important;
	}

	.sns-service-icon {
		width: min(100%, 240px) !important;
		height: 180px !important;
		margin: 0 auto 20px !important;
	}

	.sns-platform-grid {
		grid-template-columns: 1fr !important;
	}
}

/* SNS worries: compact item backgrounds, centered as a group. */
.sns-section--worries .sns-worry-list {
	display: grid !important;
	grid-template-columns: minmax(0, 560px) !important;
	justify-content: center !important;
	width: 100% !important;
	max-width: 100% !important;
	margin-inline: auto !important;
}

.sns-section--worries .sns-worry-item {
	display: inline-flex !important;
	justify-content: flex-start !important;
	align-items: center !important;
	gap: 12px !important;
	width: 100% !important;
	max-width: 560px !important;
	min-height: 0 !important;
	padding: 13px 18px !important;
	text-align: left !important;
	justify-self: center !important;
}

.sns-section--worries .sns-worry-item span {
	flex: 0 0 28px !important;
}

.sns-section--worries .sns-worry-item p {
	flex: 0 1 auto !important;
	width: auto !important;
	max-width: none !important;
	margin: 0 !important;
	text-align: left !important;
}

@media (max-width: 640px) {
	.sns-section--worries .sns-worry-list {
		grid-template-columns: minmax(0, 100%) !important;
		justify-content: center !important;
		width: min(100%, 360px) !important;
		padding-inline: 0 !important;
	}

	.sns-section--worries .sns-worry-item {
		max-width: 100% !important;
		padding: 12px 14px !important;
	}

	.sns-section--worries .sns-worry-item p {
		max-width: none !important;
		font-size: 14px !important;
		line-height: 1.65 !important;
	}
}

@media (max-width: 640px) {
	.sns-section--worries .sns-section__heading h2 {
		font-size: 1.6rem !important;
		line-height: 1.45 !important;
		white-space: nowrap !important;
		letter-spacing: 0 !important;
	}
}

@media (max-width: 980px) {
	.sns-section--worries .sns-section__heading h2 {
		font-size: 1.6rem !important;
		line-height: 1.45 !important;
		white-space: nowrap !important;
		letter-spacing: 0 !important;
	}
}

/* SNS worries: center the whole list content, not only the text. */
.sns-section--worries .sns-worry-list {
	width: min(100%, 680px) !important;
	max-width: 680px !important;
	margin-inline: auto !important;
}

.sns-section--worries .sns-worry-item {
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	gap: 12px !important;
	width: 100% !important;
	min-height: 64px !important;
	padding: 14px 18px !important;
	text-align: left !important;
}

.sns-section--worries .sns-worry-item span {
	flex: 0 0 28px !important;
}

.sns-section--worries .sns-worry-item p {
	flex: 0 1 auto !important;
	width: min(100%, 30em) !important;
	margin: 0 !important;
	text-align: left !important;
}

@media (max-width: 640px) {
	.sns-section--worries .sns-worry-list {
		width: min(100%, 340px) !important;
		max-width: 340px !important;
	}

	.sns-section--worries .sns-worry-item {
		justify-content: flex-start !important;
		padding: 13px 14px !important;
	}

	.sns-section--worries .sns-worry-item p {
		width: auto !important;
		font-size: 14px !important;
		line-height: 1.65 !important;
	}
}

/* SNS mobile layout: match the other service templates */
@media (max-width: 980px) {
	.sns-hero__inner,
	.sns-service-grid,
	.sns-platform-grid,
	.sns-plan-grid,
	.sns-reason-grid {
		grid-template-columns: 1fr !important;
	}

	.sns-hero__visual {
		min-height: 0 !important;
		margin-top: 12px !important;
	}

	.sns-service-card:nth-child(4),
	.sns-service-card:nth-child(5),
	.sns-plan-card--standard {
		transform: none !important;
	}
}

@media (max-width: 640px) {
	.sns-hero {
		padding: 48px 20px 58px !important;
	}

	.sns-hero__content > p:not(.sns-breadcrumb) {
		font-size: 15px !important;
		line-height: 1.9 !important;
	}

	.sns-hero__actions {
		grid-template-columns: 1fr !important;
	}

	.sns-hero__actions .button {
		width: 100% !important;
	}

	.sns-service-card,
	.sns-platform-card {
		padding: 24px 20px !important;
	}

	.sns-service-card {
		display: grid !important;
		grid-template-columns: 58px minmax(0, 1fr) !important;
		gap: 8px 16px !important;
		text-align: left !important;
	}

	.sns-service-icon {
		grid-row: span 2 !important;
		width: 54px !important;
		height: 54px !important;
		margin: 0 !important;
	}

	.sns-service-card h3,
	.sns-service-card p {
		margin: 0 !important;
	}

	.sns-bottom-cta__inner {
		padding: 28px 20px !important;
		text-align: center !important;
	}
}

/* Service index page layout */
.service-list-hero {
	padding: clamp(58px, 8vw, 100px) 24px 54px;
	background: linear-gradient(135deg, #fff8fb, #f4fbff);
	text-align: center;
}

.service-list-hero__inner {
	max-width: 860px;
	margin: 0 auto;
}

.service-list-hero h1 {
	margin: 0 0 18px;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.4;
}

.service-list-hero p:last-child {
	margin: 0;
	color: #334454;
	font-size: 15px;
	line-height: 1.9;
}

.service-list-section {
	padding-top: 72px;
	padding-bottom: 96px;
}

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

.service-grid--list .service-card {
	min-height: 360px;
	padding: 28px 22px 24px;
	text-align: center;
}

.service-grid--list .service-card > a {
	display: flex;
	flex: 1;
	width: 100%;
	flex-direction: column;
	align-items: center;
	color: inherit;
	text-decoration: none;
}

.service-grid--list .service-card h2 {
	min-height: 2.8em;
	margin: 0 0 16px;
	font-size: 1.25rem;
	line-height: 1.45;
}

.service-grid--list .service-card img,
.service-grid--list .service-card .media-placeholder {
	width: min(100%, 190px);
	height: 164px;
	max-width: none;
	margin: 0 auto 16px;
	object-fit: contain;
}

.service-grid--list .service-card p {
	min-height: 3.6em;
	margin: 0;
	color: #334454;
	font-size: 15px;
	line-height: 1.8;
}

@media (max-width: 980px) {
	.service-grid--list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.service-list-hero {
		padding: 48px 20px 42px;
	}

	.service-list-hero h1 {
		font-size: 1.8rem;
	}

	.service-list-section {
		width: min(100% - 32px, var(--container));
		padding-top: 48px;
		padding-bottom: 68px;
	}

	.service-grid--list {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.service-grid--list .service-card {
		min-height: 0;
		padding: 24px 20px 22px;
	}

	.service-grid--list .service-card h2 {
		min-height: 0;
		margin-bottom: 14px;
		font-size: 1.15rem;
	}

	.service-grid--list .service-card img,
	.service-grid--list .service-card .media-placeholder {
		height: 150px;
		margin-bottom: 14px;
	}

	.service-grid--list .service-card p {
		min-height: 0;
		font-size: 14px;
		line-height: 1.8;
	}
}

/* SNS mobile typography refinements */
.sns-section--worries .sns-worry-list {
	margin-right: auto !important;
	margin-left: auto !important;
}

.sns-section--worries .sns-worry-item {
	justify-items: center !important;
	text-align: center !important;
}
.sns-title-line--1 {
	color: #222 !important;
}

.sns-title-highlight-pink {
	color: #ef4f79 !important;
}
@media (min-width: 981px) {
	.sns-breadcrumb {
		font-size: 1.6rem !important;
		color: #222 !important;
	}

	.sns-hero h1 {
		font-size: clamp(2.2rem, 3.4vw, 3.6rem) !important;
		color: #222 !important;
	}

	.sns-title-line {
		white-space: nowrap !important;
	}

	.sns-hero__content > p:not(.sns-breadcrumb),
	.sns-section,
	.sns-section h2,
	.sns-section h3,
	.sns-section p,
	.sns-local-intro,
	.sns-local-faq {
		color: #222;
	}
}
.sns-reason-title-line { display: inline; }
.sns-reason-title-line + .sns-reason-title-line::before { content: " "; }

.sns-plan-badge {
	left: 50% !important;
	right: auto !important;
	transform: translateX(-50%) !important;
	white-space: nowrap !important;
}

@media (max-width: 640px) {
	.sns-hero h1 {
		font-size: 1.6rem !important;
		line-height: 1.55 !important;
		letter-spacing: 0 !important;
	}

	.sns-title-line {
		white-space: nowrap !important;
	}

	.sns-section--worries .sns-section__heading h2 {
		font-size: 1.6rem !important;
		white-space: nowrap !important;
		letter-spacing: 0 !important;
	}

	.sns-section--services .sns-section__heading h2 {
		font-size: 1.08rem !important;
		white-space: nowrap !important;
		letter-spacing: 0 !important;
	}

	.sns-reason-title-line {
		display: block !important;
	}

	.sns-reason-title-line + .sns-reason-title-line::before {
		content: none !important;
	}

	.sns-faq-list summary {
		font-size: 12px !important;
		line-height: 1.5 !important;
		white-space: nowrap !important;
		overflow: hidden !important;
		text-overflow: ellipsis !important;
	}
}

/* SNS mobile cards follow the web-production page rhythm. */
.sns-service-icon {
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	width: min(100%, 180px) !important;
	height: 142px !important;
	margin: 0 auto 22px !important;
}

.sns-service-icon::before {
	display: none !important;
	content: none !important;
}

.sns-service-icon img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: contain !important;
}

.sns-worry-item {
	border-left: 0 !important;
	border-radius: 8px !important;
}

.sns-worry-item span {
	position: relative !important;
	width: 28px !important;
	height: 28px !important;
	background: transparent !important;
}

.sns-worry-item span::before {
	content: "✓" !important;
	width: auto !important;
	height: auto !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: #ef6d91 !important;
	font-size: 22px !important;
	font-weight: 900 !important;
}

@media (max-width: 640px) {
	.sns-service-card {
		display: flex !important;
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 0 !important;
		text-align: center !important;
	}

	.sns-service-card h3 {
		order: 1 !important;
		margin: 0 0 18px !important;
	}

	.sns-service-icon {
		order: 2 !important;
		width: min(100%, 240px) !important;
		height: 180px !important;
		margin: 0 auto 20px !important;
	}

	.sns-service-card p {
		order: 3 !important;
		margin: 0 !important;
		text-align: left !important;
	}
}

@media (max-width: 640px) {
  .service-card img,
  .reason-media,
  .service-card .media-placeholder {
    border-radius: 16px;
  }
}

/* Blog article readability refinements */
.blog-entry-content {
  color: #2f2b33;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0;
}

/* Keep service artwork visibly rounded even when the source image has a white square background. */
.service-card img,
.service-card .media-placeholder {
	border-radius: 24px !important;
	overflow: hidden !important;
	clip-path: inset(0 round 24px);
}

/* Company profile hero: text-only, centered presentation. */
.company-hero__visual {
	display: none !important;
}

.company-hero__inner {
	display: block !important;
	max-width: 860px !important;
}

.company-hero__content {
	width: 100%;
	margin: 0 auto;
	text-align: center !important;
}

@media (max-width: 640px) {
	.service-card img,
	.service-card .media-placeholder {
		border-radius: 18px !important;
		clip-path: inset(0 round 18px);
	}
}

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

.blog-entry-content p {
  margin-bottom: 1.55rem;
}

.blog-entry-content h2,
.blog-entry-content h3,
.blog-entry-content h4 {
  color: #141824;
  font-weight: 800;
  letter-spacing: 0;
}

.blog-entry-content h2 {
  position: relative;
  padding: 0 0 0.8rem;
  margin: 3.4rem 0 1.35rem;
  font-size: 1.65rem;
  line-height: 1.45;
  background: transparent;
  border: 0;
  border-bottom: 2px solid #f2d6df;
}

.blog-entry-content h2::before {
  content: none;
}

.blog-entry-content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 5rem;
  height: 2px;
  border-radius: 999px;
  background: #f45f8f;
}

.blog-entry-content h3 {
  position: relative;
  padding: 0 0 0.45rem;
  margin: 2.5rem 0 1rem;
  font-size: 1.28rem;
  line-height: 1.55;
  border-left: 0;
  border-bottom: 1px solid #dfe9f1;
}

.blog-entry-content h3::before {
  content: "";
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.45rem;
  vertical-align: 0.1em;
  border-radius: 50%;
  background: #65c9df;
}

.blog-entry-content h4 {
  margin: 1.9rem 0 0.75rem;
  font-size: 1.08rem;
  line-height: 1.55;
  color: #3a3540;
}

.blog-entry-content ul,
.blog-entry-content ol {
  padding: 0 0 0 1.35rem;
  margin: 1.25rem 0 1.7rem;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.blog-entry-content li {
  margin: 0.55rem 0;
  padding-left: 0.15rem;
}

.blog-entry-content li::marker {
  color: #f35f8d;
  font-weight: 800;
}

.blog-entry-content blockquote {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.15rem;
  margin: 1.6rem 0 1.9rem;
  color: #3f3740;
  background: transparent;
  border: 0;
  border-left: 4px solid #d4eaf5;
  border-radius: 0;
}

.blog-entry-content figure,
.blog-entry-content .wp-block-image {
  margin: 2rem 0;
}

.blog-entry-content img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.blog-entry-content figcaption {
  margin-top: 0.65rem;
  color: #706a73;
  font-size: 0.86rem;
  line-height: 1.7;
  text-align: center;
}

.blog-entry-content table {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 1.5rem 0 2rem;
  overflow-x: auto;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #e9e2eb;
  border-radius: 8px;
  -webkit-overflow-scrolling: touch;
}

.blog-entry-content thead,
.blog-entry-content tbody,
.blog-entry-content tr {
  width: 100%;
}

.blog-entry-content th,
.blog-entry-content td {
  min-width: 9.5rem;
  padding: 0.9rem 1rem;
  line-height: 1.65;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #eee7ef;
}

.blog-entry-content th {
  color: #141824;
  font-weight: 800;
  background: #fff1f6;
}

.blog-entry-content tr:last-child th,
.blog-entry-content tr:last-child td {
  border-bottom: 0;
}

.blog-entry-content a {
  color: #1669c9;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.blog-entry-content strong,
.blog-entry-content b {
  color: #161922;
  font-weight: 800;
}

@media (max-width: 767px) {
  .blog-single-layout {
    width: min(100% - 28px, 1200px);
    padding-top: 2.2rem;
  }

  .blog-single-main {
    padding: 1.15rem 1rem;
    border-radius: 8px;
  }

  .blog-single-hero h1 {
    font-size: 1.55rem !important;
    line-height: 1.55 !important;
  }

  .blog-entry-content {
    font-size: 0.96rem;
    line-height: 1.95;
  }

  .blog-entry-content p {
    margin-bottom: 1.35rem;
  }

  .blog-entry-content h2 {
    padding: 0 0 0.65rem;
    margin: 2.65rem 0 1.05rem;
    font-size: 18px !important;
    line-height: 1.55 !important;
    font-weight: 800 !important;
  }

  .blog-entry-content h2::before {
    top: 0.18em;
    width: 3px;
    height: 1.15em;
  }

  .blog-entry-content h3 {
    margin: 2.1rem 0 0.9rem;
    font-size: 17px;
    line-height: 1.55;
  }

  .blog-entry-content h3::before {
    width: 0.48rem;
    height: 0.48rem;
  }

  .blog-entry-content h4 {
    font-size: 16px;
  }

  .blog-entry-content ul,
  .blog-entry-content ol {
    padding: 0 0 0 1.25rem;
    margin: 1.1rem 0 1.45rem;
  }

  .blog-entry-content blockquote {
    padding: 0.25rem 0 0.25rem 1rem;
    margin: 1.35rem 0 1.6rem;
  }

  .blog-entry-content table {
    font-size: 0.9rem;
  }

  .blog-entry-content th,
  .blog-entry-content td {
    min-width: 8.5rem;
    padding: 0.78rem 0.85rem;
  }
}
/* Mobile hamburger stability fix */
@media (max-width: 980px) {
  .menu-toggle {
    position: relative;
    z-index: 1300;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 22px rgba(17, 24, 39, 0.08);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .menu-toggle span:not(.screen-reader-text) {
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    width: 24px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: #172033;
    transform: translate(-50%, -50%);
    transform-origin: center;
    transition: transform 0.22s ease, opacity 0.18s ease, background-color 0.2s ease;
  }

  .menu-toggle span:not(.screen-reader-text):nth-child(1) {
    transform: translate(-50%, calc(-50% - 7px));
  }

  .menu-toggle span:not(.screen-reader-text):nth-child(2) {
    transform: translate(-50%, -50%);
  }

  .menu-toggle span:not(.screen-reader-text):nth-child(3) {
    transform: translate(-50%, calc(-50% + 7px));
  }

  .menu-open .menu-toggle {
    position: fixed;
    top: 14px;
    right: 16px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: none;
  }

  .menu-open .menu-toggle span:not(.screen-reader-text) {
    background: #fff;
  }

  .menu-open .menu-toggle span:not(.screen-reader-text):nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .menu-open .menu-toggle span:not(.screen-reader-text):nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:not(.screen-reader-text):nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .primary-nav {
    padding-top: 82px;
  }
}
@media (max-width: 980px) {
  body.admin-bar.menu-open .menu-toggle {
    top: 60px;
  }
}
/* Mobile drawer touch and overflow hard fix */
@media (max-width: 980px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .menu-toggle span:not(.screen-reader-text),
  .menu-open .menu-toggle span:not(.screen-reader-text) {
    background: #f45685;
  }

  .menu-open .menu-toggle {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 26px rgba(17, 24, 39, 0.12);
  }

  .primary-nav {
    right: 0;
    left: auto;
    max-width: calc(100vw - 28px);
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(100%, 0, 0);
    will-change: transform;
  }

  .menu-open .primary-nav {
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  body.menu-open {
    overflow: hidden;
    touch-action: none;
  }
}
@media (max-width: 980px) {
  html,
  body {
    overflow-x: hidden;
  }

  @supports (overflow: clip) {
    html,
    body {
      overflow-x: clip;
    }
  }
}
/* Mobile drawer height and readability fix */
@media (max-width: 980px) {
  .primary-nav {
    top: 0;
    bottom: 0;
    height: 100dvh;
    min-height: 100vh;
    max-height: 100dvh;
    padding: 5.5rem 1.35rem 2rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  body.admin-bar .primary-nav {
    height: calc(100dvh - 46px);
    max-height: calc(100dvh - 46px);
    top: 46px;
    padding-top: 4.8rem;
  }

  .primary-nav__list {
    display: grid;
    gap: 0.45rem;
  }

  .primary-nav__list > li {
    min-height: 58px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .primary-nav__list > li > a {
    min-height: 58px;
    padding: 0.35rem 0.35rem;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.45;
  }

  .submenu-toggle {
    width: 42px;
    height: 42px;
  }

  .primary-nav .menu-item-has-children.is-open > .sub-menu {
    max-height: none;
    padding: 0.65rem;
    margin: 0.1rem 0 0.9rem;
  }

  .primary-nav .sub-menu a {
    min-height: 44px;
    padding: 0.6rem 0.75rem;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .primary-nav__cta {
    min-height: 52px;
    margin-top: 1.4rem;
    padding: 0.85rem 1.2rem;
    font-size: 1rem;
  }
}
/* Mobile drawer submenu overflow and contrast fix */
@media (max-width: 980px) {
  .primary-nav,
  .primary-nav * {
    box-sizing: border-box;
  }

  .primary-nav__list,
  .primary-nav__list > li,
  .primary-nav .sub-menu {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .primary-nav__list > li {
    overflow: hidden;
  }

  .primary-nav .sub-menu {
    grid-column: 1 / -1;
    position: static;
    left: auto;
    right: auto;
    transform: none;
    max-width: 100%;
    overflow: hidden;
  }

  .primary-nav .menu-item-has-children.is-open > .sub-menu {
    width: 100%;
    max-width: 100%;
    padding: 0.65rem;
  }

  .primary-nav .sub-menu li,
  .primary-nav .sub-menu a {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .primary-nav .sub-menu a {
    overflow-wrap: anywhere;
    word-break: keep-all;
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
  }

  .primary-nav .sub-menu a:hover,
  .primary-nav .sub-menu a:focus-visible,
  .primary-nav__list > li > a:hover,
  .primary-nav__list > li > a:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.22);
  }

  .primary-nav a:hover,
  .primary-nav a:focus-visible {
    color: #fff;
  }
}

@media (min-width: 981px) {
  .primary-nav .sub-menu a:hover,
  .primary-nav .sub-menu a:focus-visible {
    color: #d92f68;
    background: #fff3f7;
  }

  .primary-nav__list > li > a:hover,
  .primary-nav__list > li > a:focus-visible {
    color: #d92f68;
  }
}
/* Mobile header center logo and stable accordion reset */
@media (max-width: 980px) {
  .site-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
  }

  .site-header .brand {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
  }

  .site-header .brand img,
  .site-header .custom-logo {
    max-width: 148px;
    height: auto;
  }

  .menu-toggle {
    position: relative;
    z-index: 1300;
    margin-left: auto;
  }

  .menu-open .menu-toggle {
    position: fixed;
  }

  .primary-nav {
    display: block;
    width: min(88vw, 390px);
    max-width: calc(100vw - 24px);
    padding: 5.25rem 1.15rem 2rem;
  }

  .primary-nav__list {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .primary-nav__list > li {
    position: relative;
    display: block !important;
    width: 100%;
    min-height: 0;
    overflow: visible;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .primary-nav__list > li > a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 58px;
    padding: 0.75rem 3.2rem 0.75rem 0.35rem;
    color: #fff;
    font-size: 1.04rem;
    font-weight: 800;
    line-height: 1.45;
    text-decoration: none;
    white-space: normal;
  }

  .primary-nav__list > .menu-item-has-children > a::after {
    display: none !important;
  }

  .submenu-toggle {
    position: absolute;
    top: 0.55rem;
    right: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 50%;
  }

  .primary-nav .sub-menu {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    grid-column: auto !important;
    display: none;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    max-height: none !important;
    margin: 0.1rem 0 1rem;
    padding: 0.65rem;
    overflow: visible;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    background: rgba(255, 255, 255, 0.13);
    border: 0;
    border-radius: 12px;
    box-shadow: none;
  }

  .primary-nav .sub-menu::before {
    display: none !important;
  }

  .primary-nav .menu-item-has-children.is-open > .sub-menu {
    display: grid;
    gap: 0.35rem;
  }

  .primary-nav .sub-menu li {
    display: block;
    width: 100%;
    margin: 0;
  }

  .primary-nav .sub-menu a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 44px;
    padding: 0.62rem 0.75rem;
    color: #fff;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.55;
    white-space: normal;
    overflow-wrap: anywhere;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 10px;
  }

  .primary-nav a:hover,
  .primary-nav a:focus-visible,
  .primary-nav .sub-menu a:hover,
  .primary-nav .sub-menu a:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.24);
  }
}
/* Mobile Japanese font weight hardening */
@media (max-width: 980px) {
  html,
  body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  body {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", Meiryo, sans-serif;
    font-synthesis-weight: auto;
  }

  h1,
  h2,
  h3,
  .section-title,
  .hero__eyebrow,
  .hero h1,
  .hero h1 span,
  .web-hero h1,
  .seo-hero h1,
  .sns-hero h1,
  .company-hero h1,
  .pc-hero h1,
  .ai-hero h1,
  .blog-hero h1,
  .blog-single-hero h1,
  .contact-hero h1,
  .pillar-hero h1 {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", Meiryo, sans-serif;
    font-weight: 900 !important;
  }

  .hero__eyebrow {
    color: #111827;
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .hero h1,
  .hero h1 span {
    color: #111827;
    font-weight: 900 !important;
    -webkit-text-stroke: 0.015em transparent;
  }

  .hero h1 span:nth-child(2) {
    color: #f45685;
  }

  .hero h1 span:nth-child(3) {
    color: #f39b2f;
  }

  .hero__lead,
  .hero__badges,
  .hero__badges span,
  .service-card h3,
  .reason-card h3,
  .work-card h3,
  .blog-card h2,
  .blog-card h3 {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", Meiryo, sans-serif;
    font-weight: 800 !important;
  }
}

@media (max-width: 640px) {
  .hero__eyebrow {
    font-weight: 900 !important;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 9vw, 2.5rem);
    line-height: 1.42;
    font-weight: 900 !important;
  }

  .hero h1 span {
    display: block;
    font-weight: 900 !important;
  }
}
/* Final mobile header and bold text correction */
@media (max-width: 980px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1400;
  }

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

  .site-header__inner {
    position: relative;
  }

  .site-header .brand {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
  }

  .menu-toggle,
  .menu-open .menu-toggle,
  body.admin-bar.menu-open .menu-toggle {
    position: absolute !important;
    top: 50% !important;
    right: 0 !important;
    transform: translateY(-50%) !important;
    z-index: 1500 !important;
    margin: 0 !important;
  }

  .primary-nav {
    z-index: 1300;
  }

  body,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .hero__eyebrow,
  .hero h1,
  .hero h1 span,
  .section-title,
  .service-card h3,
  .reason-card h3,
  .work-card h3,
  .blog-card h2,
  .blog-card h3 {
    font-family: Meiryo, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic UI", "Yu Gothic", sans-serif !important;
  }

  h1,
  h2,
  h3,
  .hero__eyebrow,
  .hero h1,
  .hero h1 span,
  .section-title {
    font-weight: 900 !important;
    font-synthesis: weight !important;
  }

  .hero__eyebrow,
  .hero h1,
  .hero h1 span {
    -webkit-text-stroke: 0.012em currentColor;
    text-shadow: 0.25px 0 currentColor, -0.25px 0 currentColor;
  }

  .hero__lead,
  .service-card h3,
  .reason-card h3,
  .work-card h3,
  .blog-card h2,
  .blog-card h3 {
    font-weight: 800 !important;
    font-synthesis: weight !important;
  }
}

@media (max-width: 640px) {
  .hero__eyebrow,
  .hero h1,
  .hero h1 span {
    font-weight: 900 !important;
  }
}

/* Distinguish the final hero line from the pink second line. */
.hero h1 span:nth-child(3) {
  background-image: linear-gradient(90deg, #177bd1, #16a6a0, #55c878) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

.site-footer__bottom p {
  text-align: center !important;
}

@media (max-width: 640px) {
  .site-footer__bottom p {
    grid-column: 1 / -1;
  }
}

/* Mobile top page corrections. */
@media (max-width: 640px) {
  .hero h1 span:nth-child(3) {
    background-image: linear-gradient(90deg, #177bd1, #16a6a0, #55c878) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
  }

  .reason-panel h2 {
    width: 100%;
    margin-bottom: 1.5rem;
    font-size: 1.3rem !important;
    line-height: 1.35 !important;
    white-space: nowrap;
  }

  .site-footer__bottom p {
    width: 100%;
    margin: 0;
    font-size: 0.68rem !important;
    line-height: 1.4 !important;
    white-space: nowrap !important;
  }
}

/* Center the copyright itself across the footer, independent of the privacy link. */
.site-footer__bottom {
  position: relative !important;
  justify-content: center !important;
}

.site-footer__bottom p {
  position: absolute !important;
  left: 50%;
  margin: 0 !important;
  transform: translateX(-50%);
  text-align: center !important;
  white-space: nowrap !important;
}

.site-footer__bottom > a {
  margin-left: auto;
}

@media (max-width: 640px) {
  .site-footer__bottom {
    display: grid !important;
    justify-items: center;
    gap: 12px;
  }

  .site-footer__bottom p {
    position: static !important;
    grid-column: 1 / -1;
    transform: none;
  }

  .site-footer__bottom > a {
    margin: 0;
  }
}

/* Web production hero and mobile section typography. */
.web-hero h1,
.web-hero h1 .web-hero-title-line {
	color: #151927 !important;
}

.web-hero-highlight {
	padding: 0 0.14em 0.03em;
	color: #151927 !important;
	background: linear-gradient(transparent 56%, #ffe477 56%, #ffe477 91%, transparent 91%);
}

.web-hero .button::after,
.web-hero .button--ghost::after,
.web-section .button::after,
.web-cta .button::after {
	content: none !important;
	display: none !important;
}

@media (max-width: 760px) {
	.web-section--center .web-section__heading h2 {
		font-size: 1.28rem !important;
		line-height: 1.35 !important;
		white-space: nowrap;
	}

	.web-solution {
		width: 100% !important;
		font-size: 1.28rem !important;
		line-height: 1.45 !important;
	}

	.web-solution span {
		display: block;
		white-space: nowrap;
	}

	.web-section:has(.web-support-table) .web-section__heading h2 {
		font-size: 1.3rem !important;
		line-height: 1.35 !important;
		white-space: nowrap;
	}
}

.web-support-note {
	margin: -1rem auto 1.5rem;
	color: #8b4b5d;
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1.7;
	text-align: center;
}

@media (max-width: 760px) {
	.web-support-note {
		margin: -0.8rem auto 1.25rem;
		font-size: 0.82rem;
	}

	.web-support-table {
		min-width: 0 !important;
		font-size: 0.78rem;
	}

	.web-support-table th,
	.web-support-table td {
		padding: 10px 6px;
		word-break: break-word;
	}
}

/* Web production hero: use one responsive visual only. */
.web-hero__visual {
	min-height: 0 !important;
	display: block;
}

.web-hero__visual .web-device--desktop {
	position: relative !important;
	top: auto !important;
	right: auto !important;
	left: auto !important;
	bottom: auto !important;
	width: 100% !important;
	max-width: 620px;
	margin: 0 auto;
}

@media (max-width: 760px) {
	.web-hero__visual .web-device--desktop {
		width: 100% !important;
		max-width: none;
	}
}

/* Shared cleanup: buttons use text only, and the company info heading has no dot ornament. */
.button::after {
	display: none !important;
	content: none !important;
}

.company-info-card h2::before {
	display: none !important;
	content: none !important;
}

/* Blog mobile list and sticky navigation final correction */
.blog-card__logo-placeholder {
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: linear-gradient(135deg, #fff3f7, #f1fbff);
}

.blog-card__logo-placeholder img {
  width: min(82%, 240px) !important;
  height: auto !important;
  object-fit: contain !important;
}

@media (max-width: 980px) {
  .site-header { position: sticky !important; top: 0 !important; z-index: 5000 !important; transform: none !important; }
  body.admin-bar .site-header { top: 46px !important; }
  .site-header__inner { position: relative !important; min-height: 68px; }
  .menu-toggle,
  body.menu-open .menu-toggle,
  body.admin-bar.menu-open .menu-toggle {
    position: absolute !important; top: 50% !important; right: 0 !important; bottom: auto !important; left: auto !important;
    transform: translateY(-50%) !important; z-index: 5100 !important;
  }
  .primary-nav { position: fixed !important; top: 0 !important; right: 0 !important; bottom: 0 !important; height: 100dvh !important; z-index: 4900 !important; }
  body.admin-bar .primary-nav { top: 46px !important; height: calc(100dvh - 46px) !important; }
}

@media (max-width: 640px) {
  .blog-layout { width: min(100% - 24px, 560px); }
  .blog-card-grid.blog-card-list { display: grid !important; grid-template-columns: 1fr !important; gap: 14px !important; }
  .blog-card-list .blog-card { display: grid !important; grid-template-columns: 38% minmax(0, 1fr) !important; min-height: 132px; overflow: hidden; }
  .blog-card-list .blog-card__thumb { display: block !important; width: 100% !important; min-width: 0 !important; height: 100% !important; min-height: 132px; }
  .blog-card-list .blog-card__thumb img,
  .blog-card-list .media-placeholder { display: block !important; width: 100% !important; height: 100% !important; min-height: 132px; object-fit: cover !important; }
  .blog-card-list .blog-card__body { display: flex !important; flex-direction: column; justify-content: center; min-width: 0; padding: 12px !important; }
  .blog-card-list .blog-card__body time { margin-bottom: 4px; font-size: 0.72rem; }
  .blog-card-list .blog-card__body h3 { display: block !important; margin: 0 !important; font-size: 0.95rem !important; line-height: 1.55 !important; font-weight: 800 !important; }
  .blog-card-list .blog-card__body h3 a,
  .blog-card-list .blog-card__body p { color: #172033 !important; visibility: visible !important; opacity: 1 !important; }
  .blog-card-list .blog-card__body p { margin: 7px 0 0 !important; font-size: 0.78rem !important; line-height: 1.65 !important; display: -webkit-box !important; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; }
  .blog-card__cat { max-width: calc(100% - 12px); font-size: 0.66rem; }
  .blog-sidebar { display: none; }
}

/* Mobile fixed header, working drawer, and stronger Japanese weights */
@media (max-width: 980px) {
  html {
    scroll-padding-top: 72px;
  }

  body {
    padding-top: 68px !important;
    font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", Meiryo, sans-serif !important;
  }

  body.admin-bar {
    padding-top: 114px !important;
  }

  .site-header,
  body.admin-bar .site-header {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    width: 100% !important;
    z-index: 10000 !important;
    transform: none !important;
  }

  body.admin-bar .site-header {
    top: 46px !important;
  }

  .site-header__inner {
    position: relative !important;
    justify-content: center !important;
    min-height: 68px !important;
  }

  .site-header .brand {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    z-index: 2 !important;
    transform: translate(-50%, -50%) !important;
  }

  .menu-toggle,
  body.menu-open .menu-toggle,
  body.admin-bar.menu-open .menu-toggle {
    position: fixed !important;
    top: 12px !important;
    right: 16px !important;
    bottom: auto !important;
    left: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    margin: 0 !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.96) !important;
    border: 1px solid rgba(244, 86, 133, 0.26) !important;
    box-shadow: 0 10px 26px rgba(17, 24, 39, 0.12) !important;
    transform: none !important;
    z-index: 10020 !important;
  }

  body.admin-bar .menu-toggle,
  body.admin-bar.menu-open .menu-toggle {
    top: 58px !important;
  }

  .menu-toggle::before,
  .menu-toggle::after {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: #f45685 !important;
    transform: translateX(-50%) !important;
  }

  .menu-toggle::before {
    top: 15px !important;
    box-shadow: 0 6px 0 #f45685 !important;
  }

  .menu-toggle::after {
    top: 27px !important;
  }

  body.menu-open .menu-toggle::before {
    top: 21px !important;
    box-shadow: none !important;
    transform: translateX(-50%) rotate(45deg) !important;
  }

  body.menu-open .menu-toggle::after {
    top: 21px !important;
    transform: translateX(-50%) rotate(-45deg) !important;
  }

  .menu-toggle span:not(.screen-reader-text),
  body.menu-open .menu-toggle span:not(.screen-reader-text) {
    background: #f45685 !important;
  }

  .primary-nav,
  body.admin-bar .primary-nav {
    position: fixed !important;
    top: 68px !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: min(88vw, 390px) !important;
    max-width: calc(100vw - 20px) !important;
    height: calc(100dvh - 68px) !important;
    max-height: calc(100dvh - 68px) !important;
    padding: 1rem 1.15rem 2rem !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translate3d(105%, 0, 0) !important;
    z-index: 9990 !important;
  }

  body.admin-bar .primary-nav {
    top: 114px !important;
    height: calc(100dvh - 114px) !important;
    max-height: calc(100dvh - 114px) !important;
  }

  body.menu-open .primary-nav {
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate3d(0, 0, 0) !important;
  }

  body.menu-open {
    overflow: hidden !important;
  }

  .primary-nav__list > li > a,
  .primary-nav .sub-menu a {
    color: #fff !important;
    text-shadow: none !important;
  }

  .primary-nav a:hover,
  .primary-nav a:focus-visible,
  .primary-nav .sub-menu a:hover,
  .primary-nav .sub-menu a:focus-visible {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.24) !important;
  }

  .hero__eyebrow,
  .hero__eyebrow strong,
  .hero h1,
  .hero h1 span,
  .section h2,
  .section-title,
  .blog-hero h1,
  .blog-single-hero h1,
  .contact-hero h1,
  .web-hero h1,
  .seo-hero h1,
  .sns-hero h1,
  .company-hero h1,
  .pc-hero h1,
  .ai-hero h1,
  .pillar-hero h1 {
    font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", Meiryo, sans-serif !important;
    font-weight: 800 !important;
    font-synthesis: weight !important;
    -webkit-font-smoothing: antialiased;
    text-shadow: 0.28px 0 currentColor, -0.28px 0 currentColor !important;
  }
}

/* Noto Sans JP must remain last to override legacy mobile font rules. */
html,
body,
body *,
button,
input,
select,
textarea {
  font-family: "Noto Sans JP", sans-serif !important;
}

/* Final absolute override: mobile hamburger uses only real span lines. */
@media (max-width: 980px) {
  .menu-toggle::before,
  .menu-toggle::after,
  body.menu-open .menu-toggle::before,
  body.menu-open .menu-toggle::after,
  body.admin-bar.menu-open .menu-toggle::before,
  body.admin-bar.menu-open .menu-toggle::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: 0 !important;
  }

  .menu-toggle span:not(.screen-reader-text),
  body.menu-open .menu-toggle span:not(.screen-reader-text) {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    display: block !important;
    width: 24px !important;
    height: 2px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    background: #f45685 !important;
    box-shadow: none !important;
    opacity: 1 !important;
    transform-origin: center !important;
  }

  .menu-toggle span:not(.screen-reader-text):nth-child(1) {
    transform: translate(-50%, calc(-50% - 7px)) !important;
  }

  .menu-toggle span:not(.screen-reader-text):nth-child(2) {
    transform: translate(-50%, -50%) !important;
  }

  .menu-toggle span:not(.screen-reader-text):nth-child(3) {
    transform: translate(-50%, calc(-50% + 7px)) !important;
  }

  body.menu-open .menu-toggle span:not(.screen-reader-text):nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg) !important;
  }

  body.menu-open .menu-toggle span:not(.screen-reader-text):nth-child(2) {
    opacity: 0 !important;
  }

  body.menu-open .menu-toggle span:not(.screen-reader-text):nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg) !important;
  }
}

/* SNS service cards: stable image-heading-text balance. */
.sns-section--services .sns-service-grid {
	align-items: stretch !important;
}

.sns-section--services .sns-service-card {
	display: flex !important;
	flex-direction: column !important;
	align-items: stretch !important;
	justify-content: flex-start !important;
	gap: 0 !important;
	min-height: auto !important;
	overflow: visible !important;
	text-align: center !important;
}

.sns-section--services .sns-service-card h3 {
	order: 1 !important;
	margin: 0 0 18px !important;
	line-height: 1.45 !important;
}

.sns-section--services .sns-service-icon {
	order: 2 !important;
	display: block !important;
	width: min(100%, 210px) !important;
	height: auto !important;
	aspect-ratio: 4 / 3 !important;
	margin: 0 auto 20px !important;
	flex: 0 0 auto !important;
}

.sns-section--services .sns-service-icon img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: contain !important;
}

.sns-section--services .sns-service-card p {
	order: 3 !important;
	margin: 0 !important;
	color: #334454 !important;
	line-height: 1.9 !important;
	text-align: left !important;
}

.sns-section--platforms .sns-platform-icon {
	display: none !important;
}

.sns-section--platforms .sns-platform-card {
	text-align: center !important;
}

@media (max-width: 640px) {
	.sns-section--services .sns-service-card {
		padding: 26px 20px !important;
	}

	.sns-section--services .sns-service-card h3 {
		margin-bottom: 16px !important;
		font-size: 1.05rem !important;
	}

	.sns-section--services .sns-service-icon {
		width: min(100%, 230px) !important;
		margin-bottom: 18px !important;
	}

	.sns-section--services .sns-service-card p {
		font-size: 14px !important;
		line-height: 1.8 !important;
	}

	.sns-section--worries .sns-section__heading h2,
	.sns-local-faq .sns-section__heading h2 {
		font-size: 1.5rem !important;
		line-height: 1.45 !important;
		white-space: nowrap !important;
		letter-spacing: 0 !important;
	}
}

@media (max-width: 980px) {
	body .sns-section.sns-section--worries > .sns-section__heading > h2 {
		font-size: 1.5rem !important;
		line-height: 1.45 !important;
		white-space: nowrap !important;
		letter-spacing: 0 !important;
	}

	body .sns-local-faq > .sns-section__heading > h2 {
		font-size: 1.5rem !important;
		line-height: 1.45 !important;
		white-space: nowrap !important;
		letter-spacing: 0 !important;
	}
}

/* SNS local intro: numbered reasons layout. */
.sns-local-intro {
	padding: clamp(76px, 8vw, 118px) 24px !important;
	background: #fff !important;
	border: 0 !important;
}

.sns-local-intro__inner {
	display: block !important;
	max-width: 1180px !important;
	margin: 0 auto !important;
}

.sns-local-intro__header {
	margin: 0 0 46px !important;
	padding-bottom: 22px !important;
	border-bottom: 2px solid #d8dde2 !important;
}

.sns-local-intro__header h2 {
	margin: 0 !important;
	color: #222 !important;
	font-size: clamp(2rem, 4vw, 3.1rem) !important;
	font-weight: 900 !important;
	line-height: 1.35 !important;
	letter-spacing: 0 !important;
}

.sns-local-intro__header h2 span,
.sns-local-intro__header h2 strong {
	display: block !important;
}

.sns-local-intro__header h2 strong {
	position: relative !important;
	width: fit-content !important;
	margin-top: 4px !important;
	color: #e60039 !important;
}

.sns-local-intro__header h2 strong::after {
	content: "" !important;
	display: block !important;
	width: 42px !important;
	height: 3px !important;
	margin-top: 16px !important;
	background: #e60039 !important;
}

.sns-work-reasons {
	display: grid !important;
	gap: 34px !important;
}

.sns-work-reason {
	display: grid !important;
	grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr) !important;
	gap: clamp(34px, 6vw, 92px) !important;
	align-items: center !important;
	padding: 10px 0 34px !important;
	border-bottom: 1px solid #dfe4e8 !important;
}

.sns-work-reason:last-child {
	border-bottom: 0 !important;
}

.sns-work-reason__number {
	display: block !important;
	margin-bottom: 22px !important;
	color: #e60039 !important;
	font-size: clamp(4rem, 8vw, 6rem) !important;
	font-weight: 900 !important;
	line-height: .9 !important;
	letter-spacing: 0 !important;
}

.sns-work-reason h3 {
	margin: 0 0 12px !important;
	color: #222 !important;
	font-size: clamp(1.45rem, 2.4vw, 2.1rem) !important;
	font-weight: 900 !important;
	line-height: 1.45 !important;
}

.sns-work-reason__lead {
	margin: 0 0 20px !important;
	color: #e60039 !important;
	font-size: clamp(1.05rem, 1.6vw, 1.35rem) !important;
	font-weight: 900 !important;
	line-height: 1.7 !important;
}

.sns-work-reason__body > p:not(.sns-work-reason__lead) {
	margin: 0 !important;
	color: #555 !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	line-height: 2 !important;
}

.sns-work-reason__visual {
	position: relative !important;
	display: grid !important;
	place-items: center !important;
	min-height: 260px !important;
	border-radius: 8px !important;
	background: #fbf7f7 !important;
	overflow: hidden !important;
}

.sns-work-reason__line {
	position: absolute !important;
	inset: 50px 66px !important;
	border: 2px solid rgba(230, 0, 57, .28) !important;
	border-left-color: rgba(45, 55, 65, .28) !important;
	border-bottom-color: rgba(45, 55, 65, .28) !important;
	border-radius: 50% !important;
	transform: rotate(-12deg) !important;
}

.sns-work-reason__node {
	position: absolute !important;
	z-index: 2 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-width: 112px !important;
	min-height: 42px !important;
	padding: 8px 18px !important;
	border-radius: 999px !important;
	background: #e60039 !important;
	color: #fff !important;
	font-size: 14px !important;
	font-weight: 900 !important;
	box-shadow: 0 10px 24px rgba(230, 0, 57, .18) !important;
}

.sns-work-reason__node--from {
	left: 54px !important;
	bottom: 58px !important;
}

.sns-work-reason__node--to {
	right: 54px !important;
	top: 58px !important;
	background: #2c3640 !important;
	box-shadow: 0 10px 24px rgba(44, 54, 64, .16) !important;
}

.sns-work-reason__person {
	position: relative !important;
	z-index: 1 !important;
	width: 96px !important;
	height: 96px !important;
	border-radius: 50% 50% 44% 44% !important;
	background: linear-gradient(180deg, #fff 0%, #ffe5ec 100%) !important;
	border: 3px solid #222 !important;
}

.sns-work-reason__person::before,
.sns-work-reason__person::after {
	content: "" !important;
	position: absolute !important;
	background: #222 !important;
}

.sns-work-reason__person::before {
	left: 27px !important;
	top: 34px !important;
	width: 8px !important;
	height: 8px !important;
	border-radius: 50% !important;
	box-shadow: 34px 0 0 #222 !important;
}

.sns-work-reason__person::after {
	left: 39px !important;
	top: 58px !important;
	width: 18px !important;
	height: 3px !important;
	border-radius: 999px !important;
}

@media (max-width: 760px) {
	.sns-local-intro {
		padding: 64px 20px !important;
	}

	.sns-local-intro__header {
		margin-bottom: 34px !important;
	}

	.sns-local-intro__header h2 {
		font-size: 1.9rem !important;
	}

	.sns-work-reason {
		grid-template-columns: 1fr !important;
		gap: 24px !important;
		padding-bottom: 32px !important;
	}

	.sns-work-reason__number {
		margin-bottom: 16px !important;
		font-size: 4rem !important;
	}

	.sns-work-reason h3 {
		font-size: 1.4rem !important;
	}

	.sns-work-reason__lead {
		font-size: 1rem !important;
	}

	.sns-work-reason__visual {
		min-height: 220px !important;
	}

	.sns-work-reason__node--from {
		left: 22px !important;
		bottom: 40px !important;
	}

	.sns-work-reason__node--to {
		right: 22px !important;
		top: 40px !important;
	}
}

/* SNS correction: apply the numbered reference design only to the strengths section. */
.sns-local-intro {
	padding: 54px 24px !important;
	background: #fff !important;
	border-top: 1px solid #edf1f4 !important;
	border-bottom: 1px solid #edf1f4 !important;
}

.sns-local-intro__inner {
	display: grid !important;
	grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr) !important;
	gap: 54px !important;
	align-items: center !important;
	max-width: 1180px !important;
	margin: 0 auto !important;
}

.sns-local-intro h2 {
	margin: 0 !important;
	color: #172535 !important;
	font-size: clamp(1.7rem, 3vw, 2.35rem) !important;
	line-height: 1.5 !important;
}

.sns-local-intro p:last-child {
	margin: 0 !important;
	color: #334454 !important;
	font-size: 16px !important;
	line-height: 2 !important;
}

.sns-section--reasons {
	background: #eef6ff !important;
}

.sns-section--reasons .sns-section__heading {
	max-width: 1180px !important;
	margin: 0 auto 54px !important;
	padding-bottom: 22px !important;
	text-align: left !important;
	border-bottom: 2px solid #d5dce4 !important;
}

.sns-section--reasons .sns-section__kicker {
	margin: 0 0 12px !important;
	color: #008b9a !important;
	font-size: 13px !important;
	font-weight: 900 !important;
	text-align: left !important;
	letter-spacing: .12em !important;
}

.sns-section--reasons .sns-section__heading h2 {
	margin: 0 !important;
	color: #222 !important;
	font-size: clamp(2.1rem, 4.2vw, 3.4rem) !important;
	font-weight: 900 !important;
	line-height: 1.32 !important;
	text-align: left !important;
	letter-spacing: 0 !important;
}

.sns-section--reasons .sns-section__heading h2::after {
	content: "" !important;
	display: block !important;
	width: 42px !important;
	height: 3px !important;
	margin: 18px 0 0 !important;
	background: #e60039 !important;
}

.sns-section--reasons .sns-reason-title-line {
	display: block !important;
}

.sns-section--reasons .sns-reason-title-line + .sns-reason-title-line {
	color: #f28a2e !important;
}

.sns-section--reasons .sns-reason-title-line + .sns-reason-title-line::before {
	content: none !important;
}

.sns-section--reasons .sns-reason-grid {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 20px !important;
	max-width: 1180px !important;
	margin: 0 auto !important;
}

.sns-section--reasons .sns-reason-card {
	min-height: 230px !important;
	padding: 34px 30px 32px !important;
	border: 0 !important;
	border-top: 5px solid #e60039 !important;
	border-radius: 8px !important;
	background: #fff !important;
	box-shadow: 0 18px 38px rgba(36, 56, 76, .08) !important;
}

.sns-section--reasons .sns-reason-card:nth-child(2) {
	border-top-color: #54b9dc !important;
}

.sns-section--reasons .sns-reason-card:nth-child(3) {
	border-top-color: #62bf7d !important;
}

.sns-section--reasons .sns-reason-card:nth-child(4) {
	border-top-color: #9c73e6 !important;
}

.sns-section--reasons .sns-reason-card__number {
	display: block !important;
	margin: 0 0 12px !important;
	color: #111 !important;
	font-size: 1rem !important;
	font-weight: 500 !important;
	line-height: 1 !important;
}

.sns-section--reasons .sns-reason-card h3 {
	margin: 0 0 18px !important;
	color: #111 !important;
	font-size: 1.12rem !important;
	font-weight: 900 !important;
	line-height: 1.55 !important;
}

.sns-section--reasons .sns-reason-card p {
	margin: 0 !important;
	color: #213042 !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	line-height: 2 !important;
}

@media (max-width: 980px) {
	.sns-local-intro__inner {
		grid-template-columns: 1fr !important;
		gap: 18px !important;
	}

	.sns-section--reasons .sns-reason-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 640px) {
	.sns-local-intro {
		padding: 48px 20px !important;
	}

	.sns-local-intro h2 {
		font-size: 1.65rem !important;
	}

	.sns-local-intro p:last-child {
		font-size: 15px !important;
	}

	.sns-section--reasons .sns-section__heading {
		margin-bottom: 34px !important;
	}

	.sns-section--reasons .sns-section__heading h2 {
		font-size: 1.8rem !important;
	}

	.sns-section--reasons .sns-reason-grid {
		grid-template-columns: 1fr !important;
	}

	.sns-section--reasons .sns-reason-card {
		min-height: auto !important;
		padding: 28px 24px !important;
	}
}

/* SNS strengths: large-number explanation blocks with existing accent colors. */
.sns-section--reasons .sns-reason-grid {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 34px !important;
	max-width: 1180px !important;
	margin: 0 auto !important;
}

.sns-section--reasons .sns-reason-card {
	--reason-accent: #f28a2e;
	display: grid !important;
	grid-template-columns: minmax(0, .9fr) minmax(340px, 1fr) !important;
	gap: clamp(32px, 6vw, 86px) !important;
	align-items: center !important;
	min-height: auto !important;
	padding: 28px 0 36px !important;
	border: 0 !important;
	border-bottom: 1px solid #d7e0e8 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.sns-section--reasons .sns-reason-card:nth-child(2) {
	--reason-accent: #54b9dc;
}

.sns-section--reasons .sns-reason-card:nth-child(3) {
	--reason-accent: #62bf7d;
}

.sns-section--reasons .sns-reason-card:nth-child(4) {
	--reason-accent: #9c73e6;
}

.sns-section--reasons .sns-reason-card:last-child {
	border-bottom: 0 !important;
}

.sns-section--reasons .sns-reason-card__number {
	display: block !important;
	margin: 0 0 24px !important;
	color: var(--reason-accent) !important;
	font-size: clamp(4.2rem, 8vw, 6.3rem) !important;
	font-weight: 900 !important;
	line-height: .9 !important;
	letter-spacing: 0 !important;
}

.sns-section--reasons .sns-reason-card h3 {
	margin: 0 0 12px !important;
	color: #222 !important;
	font-size: clamp(1.45rem, 2.4vw, 2.05rem) !important;
	font-weight: 900 !important;
	line-height: 1.45 !important;
}

.sns-section--reasons .sns-reason-card__lead {
	margin: 0 0 18px !important;
	color: var(--reason-accent) !important;
	font-size: clamp(1.05rem, 1.6vw, 1.28rem) !important;
	font-weight: 900 !important;
	line-height: 1.7 !important;
}

.sns-section--reasons .sns-reason-card__body > p:not(.sns-reason-card__lead) {
	margin: 0 !important;
	color: #555 !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	line-height: 2 !important;
}

.sns-section--reasons .sns-reason-card__visual {
	position: relative !important;
	display: grid !important;
	place-items: center !important;
	min-height: 260px !important;
	border-radius: 8px !important;
	background: rgba(255, 255, 255, .62) !important;
	overflow: hidden !important;
}

.sns-section--reasons .sns-reason-card__line {
	position: absolute !important;
	inset: 50px 66px !important;
	border: 2px solid color-mix(in srgb, var(--reason-accent) 42%, transparent) !important;
	border-left-color: rgba(45, 55, 65, .24) !important;
	border-bottom-color: rgba(45, 55, 65, .24) !important;
	border-radius: 50% !important;
	transform: rotate(-12deg) !important;
}

.sns-section--reasons .sns-reason-card__node {
	position: absolute !important;
	z-index: 2 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-width: 112px !important;
	min-height: 42px !important;
	padding: 8px 18px !important;
	border-radius: 999px !important;
	background: var(--reason-accent) !important;
	color: #fff !important;
	font-size: 14px !important;
	font-weight: 900 !important;
	box-shadow: 0 10px 24px rgba(34, 42, 56, .14) !important;
}

.sns-section--reasons .sns-reason-card__node--from {
	left: 54px !important;
	bottom: 58px !important;
}

.sns-section--reasons .sns-reason-card__node--to {
	right: 54px !important;
	top: 58px !important;
	background: #2c3640 !important;
}

.sns-section--reasons .sns-reason-card__person {
	position: relative !important;
	z-index: 1 !important;
	width: 96px !important;
	height: 96px !important;
	border-radius: 50% 50% 44% 44% !important;
	background: linear-gradient(180deg, #fff 0%, color-mix(in srgb, var(--reason-accent) 18%, #fff) 100%) !important;
	border: 3px solid #222 !important;
}

.sns-section--reasons .sns-reason-card__person::before,
.sns-section--reasons .sns-reason-card__person::after {
	content: "" !important;
	position: absolute !important;
	background: #222 !important;
}

.sns-section--reasons .sns-reason-card__person::before {
	left: 27px !important;
	top: 34px !important;
	width: 8px !important;
	height: 8px !important;
	border-radius: 50% !important;
	box-shadow: 34px 0 0 #222 !important;
}

.sns-section--reasons .sns-reason-card__person::after {
	left: 39px !important;
	top: 58px !important;
	width: 18px !important;
	height: 3px !important;
	border-radius: 999px !important;
}

@media (max-width: 760px) {
	.sns-section--reasons .sns-reason-card {
		grid-template-columns: 1fr !important;
		gap: 24px !important;
		padding-bottom: 34px !important;
	}

	.sns-section--reasons .sns-reason-card__number {
		margin-bottom: 16px !important;
		font-size: 4rem !important;
	}

	.sns-section--reasons .sns-reason-card h3 {
		font-size: 1.4rem !important;
	}

	.sns-section--reasons .sns-reason-card__lead {
		font-size: 1rem !important;
	}

	.sns-section--reasons .sns-reason-card__visual {
		min-height: 220px !important;
	}

	.sns-section--reasons .sns-reason-card__node--from {
		left: 22px !important;
		bottom: 40px !important;
	}

	.sns-section--reasons .sns-reason-card__node--to {
		right: 22px !important;
		top: 40px !important;
	}
}

/* SNS bottom CTA: desktop balance refinement. */
@media (min-width: 981px) {
	.sns-bottom-cta {
		padding: 56px 24px 104px !important;
		background: #fff !important;
	}

	.sns-bottom-cta__inner {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) auto !important;
		align-items: center !important;
		gap: 56px !important;
		max-width: 1180px !important;
		min-height: 210px !important;
		padding: 48px 64px !important;
		border-radius: 10px !important;
		background: linear-gradient(105deg, #f05d8d 0%, #ee8b9b 52%, #f3b679 100%) !important;
	}

	.sns-bottom-cta__inner > div {
		max-width: 760px !important;
	}

	.sns-bottom-cta h2 {
		margin: 0 0 14px !important;
		color: #fff !important;
		font-size: clamp(2rem, 3vw, 2.75rem) !important;
		font-weight: 900 !important;
		line-height: 1.45 !important;
		letter-spacing: 0 !important;
	}

	.sns-bottom-cta p {
		margin: 0 !important;
		color: rgba(255, 255, 255, .95) !important;
		font-size: 16px !important;
		font-weight: 800 !important;
		line-height: 1.8 !important;
	}

	.sns-bottom-cta .button {
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: auto !important;
		min-width: 220px !important;
		min-height: 58px !important;
		padding: 0 34px !important;
		border-radius: 999px !important;
		background: #fff !important;
		color: #df4f78 !important;
		font-size: 15px !important;
		font-weight: 900 !important;
		line-height: 1.4 !important;
		white-space: nowrap !important;
		box-shadow: 0 14px 28px rgba(108, 43, 63, .14) !important;
	}
}

/* Related guide links for pillar pages and posts. */
.related-guides {
	padding: clamp(64px, 8vw, 104px) 24px !important;
	background: #fff !important;
}

.related-guides__inner {
	max-width: 1180px !important;
	margin: 0 auto !important;
}

.related-guides__heading {
	max-width: 760px !important;
	margin: 0 0 34px !important;
}

.related-guides__heading p {
	margin: 0 0 10px !important;
	color: #168f96 !important;
	font-size: 13px !important;
	font-weight: 900 !important;
	letter-spacing: .1em !important;
}

.related-guides__heading h2 {
	margin: 0 !important;
	color: #172033 !important;
	font-size: clamp(1.9rem, 3vw, 2.55rem) !important;
	font-weight: 900 !important;
	line-height: 1.45 !important;
	letter-spacing: 0 !important;
}

.related-guides__heading span {
	display: block !important;
	margin-top: 12px !important;
	color: #4a5968 !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	line-height: 1.9 !important;
}

.related-guides__grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 18px !important;
}

.related-guide-card {
	display: flex !important;
	flex-direction: column !important;
	min-height: 220px !important;
	padding: 28px 26px !important;
	border: 1px solid #e7edf2 !important;
	border-radius: 8px !important;
	background: #fff !important;
	color: inherit !important;
	text-decoration: none !important;
	box-shadow: 0 14px 30px rgba(41, 61, 78, .06) !important;
}

.related-guide-card small {
	margin-bottom: 18px !important;
	color: #f28a2e !important;
	font-size: 1.35rem !important;
	font-weight: 900 !important;
	line-height: 1 !important;
}

.related-guide-card strong {
	margin-bottom: 12px !important;
	color: #172033 !important;
	font-size: 1.08rem !important;
	font-weight: 900 !important;
	line-height: 1.65 !important;
}

.related-guide-card span {
	color: #4a5968 !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	line-height: 1.85 !important;
}

.related-guide-card::after {
	content: "詳しく見る" !important;
	width: fit-content !important;
	margin-top: auto !important;
	padding-top: 20px !important;
	color: #e95d83 !important;
	font-size: 13px !important;
	font-weight: 900 !important;
}

@media (max-width: 980px) {
	.related-guides__grid {
		grid-template-columns: 1fr !important;
	}

	.related-guide-card {
		min-height: 0 !important;
	}
}

@media (max-width: 980px) {
	.seo-pricing-head {
		grid-template-columns: 1fr !important;
		gap: 18px !important;
		margin-bottom: 38px !important;
		text-align: center !important;
	}

	.seo-pricing-kicker {
		justify-content: center !important;
	}

	.seo-section--pricing::before {
		inset: 20px 18px auto !important;
		width: auto !important;
		height: 5px !important;
		border-radius: 999px !important;
	}

	.seo-pricing-grid {
		grid-template-columns: 1fr !important;
		gap: 20px !important;
	}

	.seo-price-card,
	.seo-price-card--recommended {
		min-height: 0 !important;
		padding: 34px 24px 28px !important;
		transform: none !important;
	}

	.seo-price-card__badge {
		position: static !important;
		width: fit-content !important;
		margin: -6px auto 22px !important;
		padding: 9px 18px !important;
		border-radius: 999px !important;
		transform: none !important;
	}

	.seo-price-card--recommended .seo-price-card__label {
		margin-top: 0 !important;
	}

	.seo-price-card__lead {
		min-height: 0 !important;
		margin-bottom: 22px !important;
	}
}

/* Front page services: keep the home grid as 3 columns x 2 rows on desktop. */
@media (min-width: 981px) {
	body.home .service-grid:not(.service-grid--list),
	body.front-page .service-grid:not(.service-grid--list) {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
		max-width: 1180px !important;
		margin-right: auto !important;
		margin-left: auto !important;
		gap: 28px !important;
	}
}

body.home .service-grid:not(.service-grid--list) .service-card,
body.front-page .service-grid:not(.service-grid--list) .service-card {
	align-items: center !important;
	text-align: center !important;
}

body.home .service-grid:not(.service-grid--list) .service-card img,
body.home .service-grid:not(.service-grid--list) .service-card .media-placeholder,
body.front-page .service-grid:not(.service-grid--list) .service-card img,
body.front-page .service-grid:not(.service-grid--list) .service-card .media-placeholder {
	display: block !important;
	margin-right: auto !important;
	margin-left: auto !important;
	object-position: center center !important;
}

/* SEO worry list: use check marks instead of round gradient icons. */
.seo-section--worries .seo-mini-icon {
	flex: 0 0 auto !important;
	width: 30px !important;
	height: 30px !important;
	border-radius: 50% !important;
	background: #e9f8ee !important;
	color: #2fb366 !important;
}

.seo-section--worries .seo-mini-icon::before {
	content: "" !important;
	display: block !important;
	width: 12px !important;
	height: 7px !important;
	border: 0 !important;
	border-left: 3px solid currentColor !important;
	border-bottom: 3px solid currentColor !important;
	border-radius: 0 !important;
	background: transparent !important;
	transform: rotate(-45deg) translate(1px, -1px) !important;
}

.seo-section--worries .seo-mini-icon::after {
	display: none !important;
	content: none !important;
}

/* SEO flow: original timeline inspired layout. */
.seo-section--flow {
	position: relative !important;
	overflow: hidden !important;
	background: linear-gradient(135deg, #124b6d 0%, #1f6f91 56%, #2f8aa4 100%) !important;
	color: #fff !important;
}

.seo-section--flow::before {
	display: none !important;
	content: none !important;
}

.seo-section--flow .seo-section__heading h2,
.seo-section--flow .seo-section__heading p {
	color: #fff !important;
}

.seo-section--flow .seo-section__heading h2::after {
	background: rgba(255, 255, 255, .85) !important;
}

.seo-section--flow .seo-section__heading {
	margin-bottom: 54px !important;
}

.seo-section--flow .seo-flow-list {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 0 !important;
	max-width: 1120px !important;
	margin-inline: auto !important;
}

.seo-section--flow .seo-flow-item {
	position: relative !important;
	display: grid !important;
	grid-template-columns: 140px minmax(160px, 260px) minmax(0, 1fr) !important;
	gap: 34px !important;
	align-items: center !important;
	padding: 34px 0 40px !important;
	border: 0 !important;
	border-bottom: 1px solid rgba(255, 255, 255, .55) !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	text-align: left !important;
}

.seo-section--flow .seo-flow-item:last-child {
	border-bottom: 0 !important;
}

.seo-section--flow .seo-flow-item span {
	display: grid !important;
	place-items: center !important;
	width: 112px !important;
	height: 112px !important;
	margin: 0 !important;
	border: 8px solid rgba(255, 255, 255, .2) !important;
	border-radius: 50% !important;
	background: #fff !important;
	color: #176483 !important;
	font-size: 1.65rem !important;
	font-weight: 900 !important;
	line-height: 1 !important;
	box-shadow: 0 16px 34px rgba(0, 0, 0, .12) !important;
}

.seo-section--flow .seo-flow-item:not(:last-child) span::after {
	content: "" !important;
	position: absolute !important;
	left: 54px !important;
	bottom: -30px !important;
	width: 18px !important;
	height: 18px !important;
	border-right: 2px solid rgba(255, 255, 255, .85) !important;
	border-bottom: 2px solid rgba(255, 255, 255, .85) !important;
	transform: rotate(45deg) !important;
}

.seo-section--flow .seo-flow-item h3 {
	margin: 0 !important;
	color: #fff !important;
	font-size: clamp(1.55rem, 2.2vw, 2.25rem) !important;
	font-weight: 900 !important;
	line-height: 1.45 !important;
	letter-spacing: 0 !important;
}

.seo-section--flow .seo-flow-item h3::before {
	content: "STEP " counter(flow-step, decimal-leading-zero) !important;
	display: block !important;
	margin-bottom: 10px !important;
	color: #ffd66b !important;
	font-size: 14px !important;
	font-weight: 900 !important;
	letter-spacing: .04em !important;
}

.seo-section--flow .seo-flow-list {
	counter-reset: flow-step !important;
}

.seo-section--flow .seo-flow-item {
	counter-increment: flow-step !important;
}

.seo-section--flow .seo-flow-item p {
	margin: 0 !important;
	color: rgba(255, 255, 255, .94) !important;
	font-size: 1rem !important;
	font-weight: 800 !important;
	line-height: 2 !important;
}

@media (max-width: 980px) {
	.seo-section--flow {
		background: linear-gradient(180deg, #124b6d 0%, #22758f 100%) !important;
	}

	.seo-section--flow::before {
		inset: 22px auto auto 20px !important;
		width: 68px !important;
	}

	.seo-section--flow .seo-section__heading {
		margin-bottom: 28px !important;
		text-align: center !important;
	}

	.seo-section--flow .seo-flow-list {
		gap: 16px !important;
	}

	.seo-section--flow .seo-flow-item {
		grid-template-columns: 64px minmax(0, 1fr) !important;
		gap: 8px 16px !important;
		padding: 22px 18px !important;
		border: 1px solid rgba(255, 255, 255, .22) !important;
		border-radius: 14px !important;
		background: rgba(255, 255, 255, .08) !important;
	}

	.seo-section--flow .seo-flow-item span {
		grid-row: span 2 !important;
		width: 58px !important;
		height: 58px !important;
		border-width: 4px !important;
		font-size: .98rem !important;
	}

	.seo-section--flow .seo-flow-item:not(:last-child) span::after {
		display: none !important;
		content: none !important;
	}

	.seo-section--flow .seo-flow-item h3 {
		font-size: 1.24rem !important;
	}

	.seo-section--flow .seo-flow-item h3::before {
		margin-bottom: 5px !important;
		font-size: 11px !important;
	}

	.seo-section--flow .seo-flow-item p {
		font-size: 14px !important;
		line-height: 1.85 !important;
	}
}

/* PC page: reason cards and pickup CTA desktop correction. */
.pc-section--reasons .pc-reason-grid {
	grid-template-columns: 1fr !important;
	max-width: 980px !important;
	gap: 18px !important;
}

.pc-section--reasons .pc-reason-card {
	display: grid !important;
	grid-template-columns: 76px minmax(0, 1fr) !important;
	gap: 8px 24px !important;
	align-items: center !important;
	min-height: 136px !important;
	padding: 28px 34px !important;
	border-radius: 8px !important;
	text-align: left !important;
	box-shadow: none !important;
}

.pc-section--reasons .pc-reason-card .pc-card-icon {
	position: relative !important;
	grid-row: span 2 !important;
	width: 58px !important;
	height: 58px !important;
	margin: 0 !important;
	border: 2px solid currentColor !important;
	border-radius: 999px !important;
	background: #fff !important;
}

.pc-section--reasons .pc-reason-card .pc-card-icon img {
	display: none !important;
}

.pc-section--reasons .pc-reason-card .pc-card-icon::before {
	content: "" !important;
	position: absolute !important;
	left: 17px !important;
	top: 15px !important;
	width: 18px !important;
	height: 10px !important;
	border-left: 4px solid currentColor !important;
	border-bottom: 4px solid currentColor !important;
	transform: rotate(-45deg) !important;
}

.pc-section--reasons .pc-reason-card h3 {
	margin: 0 !important;
	color: #111827 !important;
	font-size: clamp(1.25rem, 1.7vw, 1.55rem) !important;
	line-height: 1.45 !important;
}

.pc-section--reasons .pc-reason-card p {
	margin: 0 !important;
	color: #243244 !important;
	font-size: 16px !important;
	line-height: 1.9 !important;
}

.pc-section--pickup {
	padding-top: 96px !important;
	padding-bottom: 96px !important;
}

.pc-section--pickup .pc-pickup-card {
	display: block !important;
	max-width: 1040px !important;
	margin: 0 auto 54px !important;
	padding: 58px 56px !important;
	text-align: center !important;
}

.pc-section--pickup .pc-pickup-card h2 {
	margin: 0 auto 20px !important;
	color: #36a94d !important;
	font-size: clamp(1.9rem, 2.8vw, 2.45rem) !important;
	line-height: 1.45 !important;
	white-space: normal !important;
}

.pc-section--pickup .pc-pickup-card p {
	max-width: 760px !important;
	margin: 0 auto 28px !important;
	font-size: 16px !important;
	line-height: 2 !important;
}

.pc-section--pickup .pc-pickup-card .button {
	display: inline-flex !important;
	width: auto !important;
	min-width: 210px !important;
	margin: 0 auto !important;
	padding: 0 34px !important;
}

@media (max-width: 640px) {
	.pc-section--reasons .pc-reason-card {
		grid-template-columns: 64px minmax(0, 1fr) !important;
		padding: 24px 20px !important;
	}

	.pc-section--pickup .pc-pickup-card {
		padding: 30px 20px !important;
		margin-bottom: 32px !important;
	}
}

/* SEO mobile readability refinements. */
@media (max-width: 640px) {
	.seo-section--worries .seo-section__heading h2,
	.seo-section--services .seo-section__heading h2,
	.related-guides--seo .related-guides__heading h2 {
		font-size: clamp(1.2rem, 5vw, 1.42rem) !important;
		line-height: 1.35 !important;
		white-space: nowrap !important;
		text-align: center !important;
	}

	.seo-section--services .seo-section__heading {
		max-width: 100% !important;
	}

	.seo-section--services .seo-service-card {
		padding: 22px 16px !important;
	}

	.seo-section--services .seo-service-card h3 {
		font-size: 1.18rem !important;
		line-height: 1.45 !important;
		white-space: nowrap !important;
		text-align: center !important;
	}

	.seo-section--services .seo-service-card ul {
		gap: 10px !important;
	}

	.seo-section--services .seo-service-card li {
		padding-left: 0 !important;
		color: #202b36 !important;
		font-size: 16px !important;
		font-weight: 800 !important;
		line-height: 1.7 !important;
		word-break: keep-all !important;
		overflow-wrap: normal !important;
	}

	.seo-section--services .seo-service-card li::before {
		display: none !important;
		content: none !important;
	}
}

/* Final hero image reset: remove framed/raised image treatment on all service heroes. */
.hero__visual,
.hero__visual--mobile,
.web-hero__visual,
.web-hero__visual .web-device,
.seo-hero__visual,
.sns-hero__visual,
.company-hero__visual,
.pc-hero__visual,
.ai-hero__visual,
.pillar-hero__visual {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	filter: none !important;
}

.hero__visual img,
.hero__visual--mobile img,
.web-hero__visual img,
.web-hero__visual .web-device img,
.seo-hero__visual > img,
.sns-hero__visual > img,
.company-hero__visual img,
.pc-hero__visual > img,
.ai-hero__visual > img,
.pillar-hero__visual img {
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	filter: none !important;
	mix-blend-mode: multiply !important;
}

.web-hero__visual::before,
.web-hero__visual::after {
	display: none !important;
	content: none !important;
}

/* PC page final layout refinements. */
.pc-service-tab {
	min-height: 0 !important;
	padding: 24px 18px !important;
	justify-content: center !important;
}

.pc-service-tab span {
	display: none !important;
}

.pc-section--sales-detail .pc-sales-detail__content h2 {
	max-width: 10.8em !important;
}

.pc-section--reasons .pc-reason-grid {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 16px !important;
	max-width: 900px !important;
}

.pc-section--reasons .pc-reason-card {
	display: grid !important;
	grid-template-columns: 58px minmax(0, 1fr) !important;
	gap: 6px 18px !important;
	align-items: center !important;
	padding: 22px 24px !important;
	text-align: left !important;
}

.pc-section--reasons .pc-reason-card span {
	position: relative !important;
	grid-row: span 2 !important;
	width: 50px !important;
	height: 50px !important;
	margin: 0 !important;
	border: 2px solid currentColor !important;
	border-radius: 999px !important;
	background: #fff !important;
}

.pc-section--reasons .pc-reason-card span::before {
	content: "" !important;
	position: absolute !important;
	left: 15px !important;
	top: 13px !important;
	width: 16px !important;
	height: 9px !important;
	border-left: 4px solid currentColor !important;
	border-bottom: 4px solid currentColor !important;
	transform: rotate(-45deg) !important;
}

.pc-section--reasons .pc-reason-card h3,
.pc-section--reasons .pc-reason-card p {
	margin: 0 !important;
}

@media (min-width: 981px) {
	.pc-section--pickup {
		padding-top: 96px !important;
		padding-bottom: 104px !important;
	}

	.pc-contact-cta {
		padding-top: 88px !important;
		padding-bottom: 104px !important;
	}
}

@media (max-width: 640px) {
	.pc-section--sales-detail .pc-sales-detail__content h2 {
		max-width: none !important;
		font-size: clamp(1.22rem, 5.1vw, 1.45rem) !important;
		line-height: 1.38 !important;
		white-space: nowrap !important;
	}

	.related-guides--pc .related-guides__heading h2,
	.pc-section--pickup .pc-pickup-card h2 {
		font-size: clamp(1.08rem, 4.7vw, 1.35rem) !important;
		line-height: 1.38 !important;
		white-space: nowrap !important;
		text-align: center !important;
	}
}
