/* ============================================================
   Paradox Services（事業ページ）
   配色: 黒系背景 / ネオンピンク #ff2e9a / シアン #2de2e6 / パープル #8a5cff
   ※ テーマ(Hello Elementor)＋ダークキットに負けないよう色を明示する
   ============================================================ */

.pxs-page {
	--pxs-pink: #ff2e9a;
	--pxs-cyan: #2de2e6;
	--pxs-purple: #8a5cff;
	--pxs-bg: #08080f;
	--pxs-text: #e8e8f2;
	--pxs-muted: #b9b9cc;
	background: var(--pxs-bg);
	color: var(--pxs-text);
}

.pxs-page img {
	max-width: 100%;
	height: auto;
}

.pxs-inner {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ---------- ヒーロー ---------- */
.pxs-hero {
	position: relative;
	padding: 72px 0 64px;
	text-align: center;
	background:
		radial-gradient( 1100px 480px at 50% -10%, rgba(138, 92, 255, 0.28), transparent 62% ),
		radial-gradient( 700px 420px at 100% 20%, rgba(45, 226, 230, 0.12), transparent 55% ),
		radial-gradient( 700px 420px at 0% 30%, rgba(255, 46, 154, 0.12), transparent 55% ),
		var(--pxs-bg);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	overflow: hidden;
}

/* うっすらグリッド（ゲームセンターの床イメージ） */
.pxs-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 90%);
	-webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 90%);
	pointer-events: none;
}

.pxs-hero > .pxs-inner {
	position: relative;
}

.pxs-breadcrumb {
	font-size: 0.78rem;
	letter-spacing: 0.06em;
	color: #7c7c95;
	margin-bottom: 34px;
}

.pxs-page .pxs-breadcrumb a {
	color: #7c7c95;
	text-decoration: none;
	transition: color 0.2s ease;
}

.pxs-page .pxs-breadcrumb a:hover {
	color: var(--pxs-cyan);
	text-shadow: 0 0 8px rgba(45, 226, 230, 0.6);
}

.pxs-breadcrumb__sep {
	margin: 0 8px;
}

.pxs-page .pxs-breadcrumb__current {
	color: var(--pxs-text);
}

.pxs-hero__icon {
	width: 112px;
	height: 112px;
	margin: 0 auto 24px;
	border-radius: 28px;
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, #17121f, #0b0a12);
	border: 1px solid rgba(255, 46, 154, 0.5);
	box-shadow: 0 0 26px rgba(255, 46, 154, 0.35), 0 0 70px rgba(138, 92, 255, 0.22);
}

.pxs-hero__icon img {
	width: 60%;
	height: auto;
	filter: drop-shadow(0 0 6px rgba(45, 226, 230, 0.35));
}

.pxs-hero__en {
	margin: 0 0 12px;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.3em;
	color: var(--pxs-cyan);
	text-shadow: 0 0 10px rgba(45, 226, 230, 0.45);
}

.pxs-page .pxs-hero__title {
	margin: 0;
	font-size: 2.4rem;
	font-weight: 800;
	line-height: 1.35;
	color: #ffffff;
	text-shadow: 0 0 18px rgba(255, 46, 154, 0.35);
}

.pxs-page .pxs-hero__title::after {
	content: "";
	display: block;
	width: 72px;
	height: 3px;
	margin: 20px auto 0;
	border-radius: 2px;
	background: linear-gradient(90deg, var(--pxs-pink), var(--pxs-cyan));
	box-shadow: 0 0 14px rgba(255, 46, 154, 0.6);
}

.pxs-hero__lead {
	max-width: 720px;
	margin: 24px auto 0;
	font-size: 1rem;
	line-height: 2;
	color: var(--pxs-muted);
}

/* ---------- 本文 ---------- */
.pxs-body {
	padding: 64px 0 24px;
}

.pxs-content {
	font-size: 1rem;
	line-height: 2;
	color: #d2d2e0;
}

.pxs-content > * {
	margin: 0 0 1.5em;
}

.pxs-page .pxs-content h2 {
	margin: 2.4em 0 1em;
	padding-left: 16px;
	font-size: 1.4rem;
	font-weight: 800;
	line-height: 1.4;
	color: #ffffff;
	border-left: 4px solid var(--pxs-pink);
	text-shadow: 0 0 12px rgba(255, 46, 154, 0.25);
}

.pxs-page .pxs-content > h2:first-child {
	margin-top: 0;
}

.pxs-page .pxs-content h3 {
	margin: 2em 0 0.8em;
	font-size: 1.1rem;
	font-weight: 700;
	color: #ffffff;
}

.pxs-page .pxs-content h3::before {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	margin-right: 10px;
	border-radius: 3px;
	background: linear-gradient(135deg, var(--pxs-pink), var(--pxs-purple));
	vertical-align: 1px;
}

.pxs-page .pxs-content a {
	color: var(--pxs-cyan);
	text-decoration: underline;
}

.pxs-page .pxs-content a:hover {
	text-shadow: 0 0 10px rgba(45, 226, 230, 0.7);
}

/* 通常の箇条書き（ネオンのドット） */
.pxs-content ul:not(.pxs-features) {
	list-style: none;
	padding: 0;
	margin: 0 0 2em;
}

.pxs-content ul:not(.pxs-features) > li {
	position: relative;
	padding-left: 1.7em;
	margin: 0 0 0.6em;
}

.pxs-content ul:not(.pxs-features) > li::before {
	content: "";
	position: absolute;
	left: 0.25em;
	top: 0.8em;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--pxs-cyan);
	box-shadow: 0 0 10px rgba(45, 226, 230, 0.8);
}

/* 「私たちにできること」カード */
.pxs-content .pxs-features {
	list-style: none;
	padding: 0;
	margin: 0 0 2.4em;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.pxs-content .pxs-features > li {
	margin: 0;
	padding: 24px 22px 22px;
	border-radius: 16px;
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(255, 255, 255, 0.09);
	line-height: 1.85;
	font-size: 0.95rem;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.pxs-content .pxs-features > li:hover {
	border-color: rgba(255, 46, 154, 0.6);
	box-shadow: 0 0 24px rgba(255, 46, 154, 0.22);
	transform: translateY(-2px);
}

.pxs-content .pxs-features > li > strong {
	display: block;
	margin: 0 0 8px;
	font-size: 1.06rem;
	color: #ffffff;
}

.pxs-content .pxs-features > li > strong::before {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	margin-right: 10px;
	border-radius: 3px;
	background: linear-gradient(135deg, var(--pxs-pink), var(--pxs-purple));
	box-shadow: 0 0 8px rgba(255, 46, 154, 0.6);
	vertical-align: 1px;
}

.pxs-content .pxs-features > li > br {
	display: none;
}

/* 「ご依頼の流れ」ステップ */
.pxs-content .pxs-steps {
	list-style: none;
	padding: 0;
	margin: 0 0 2.4em;
	counter-reset: pxs-step;
}

.pxs-content .pxs-steps > li {
	position: relative;
	padding: 0 0 30px 66px;
	margin: 0;
	counter-increment: pxs-step;
	line-height: 1.9;
}

.pxs-content .pxs-steps > li::before {
	content: counter(pxs-step, decimal-leading-zero);
	position: absolute;
	left: 0;
	top: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 0.85rem;
	font-weight: 800;
	color: #ffffff;
	background: linear-gradient(135deg, var(--pxs-pink), var(--pxs-purple));
	box-shadow: 0 0 16px rgba(255, 46, 154, 0.55);
}

.pxs-content .pxs-steps > li::after {
	content: "";
	position: absolute;
	left: 21px;
	top: 48px;
	bottom: 0;
	width: 2px;
	background: linear-gradient(to bottom, rgba(138, 92, 255, 0.7), rgba(138, 92, 255, 0.05));
}

.pxs-content .pxs-steps > li:last-child {
	padding-bottom: 0;
}

.pxs-content .pxs-steps > li:last-child::after {
	display: none;
}

.pxs-content .pxs-steps > li > strong {
	display: block;
	margin: 6px 0 2px;
	font-size: 1.05rem;
	color: #ffffff;
}

.pxs-content .pxs-steps > li > br {
	display: none;
}

.pxs-content blockquote {
	margin: 1.6em 0;
	padding: 16px 20px;
	border-left: 3px solid var(--pxs-purple);
	background: rgba(255, 255, 255, 0.04);
	color: #c9c9d8;
}

.pxs-content img {
	border-radius: 12px;
}

/* ---------- お問い合わせ CTA ---------- */
.pxs-cta {
	padding: 40px 0 72px;
}

.pxs-cta__box {
	position: relative;
	padding: 50px 30px 46px;
	text-align: center;
	border-radius: 22px;
	border: 1px solid transparent;
	background:
		linear-gradient(#0d0b16, #0d0b16) padding-box,
		linear-gradient(120deg, var(--pxs-pink), var(--pxs-purple), var(--pxs-cyan)) border-box;
	box-shadow: 0 0 44px rgba(138, 92, 255, 0.18);
}

.pxs-cta__en {
	margin: 0 0 10px;
	font-size: 0.75rem;
	letter-spacing: 0.3em;
	color: var(--pxs-cyan);
}

.pxs-page .pxs-cta__title {
	margin: 0 0 14px;
	font-size: 1.45rem;
	font-weight: 800;
	color: #ffffff;
}

.pxs-cta__text {
	margin: 0 0 28px;
	font-size: 0.95rem;
	line-height: 1.9;
	color: var(--pxs-muted);
}

.pxs-page .pxs-btn {
	display: inline-block;
	padding: 15px 44px;
	background: linear-gradient(90deg, var(--pxs-pink), var(--pxs-purple));
	color: #ffffff;
	text-decoration: none;
	border-radius: 999px;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	box-shadow: 0 0 18px rgba(255, 46, 154, 0.45);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.pxs-page .pxs-btn:hover {
	box-shadow: 0 0 30px rgba(255, 46, 154, 0.85), 0 0 50px rgba(138, 92, 255, 0.5);
	transform: translateY(-2px);
}

/* ---------- その他の事業 ---------- */
.pxs-others {
	padding: 0 0 70px;
}

.pxs-page .pxs-others__title {
	margin: 0 0 24px;
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	color: #ffffff;
	text-shadow: 0 0 14px rgba(45, 226, 230, 0.4);
}

.pxs-page .pxs-others__title span {
	display: block;
	margin-top: 4px;
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: var(--pxs-muted);
	text-shadow: none;
}

.pxs-others__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
	gap: 14px;
}

.pxs-page .pxs-others__link {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 18px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.03);
	color: #ffffff;
	text-decoration: none;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.pxs-page .pxs-others__link:hover {
	border-color: rgba(255, 46, 154, 0.7);
	box-shadow: 0 0 22px rgba(255, 46, 154, 0.25);
	transform: translateY(-2px);
}

.pxs-others__icon {
	flex: 0 0 auto;
	width: 50px;
	height: 50px;
	border-radius: 13px;
	display: grid;
	place-items: center;
	background: #12101a;
	border: 1px solid rgba(45, 226, 230, 0.3);
}

.pxs-others__icon img {
	width: 58%;
	height: auto;
}

.pxs-others__name {
	flex: 1 1 auto;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.5;
}

.pxs-others__arrow {
	flex: 0 0 auto;
	width: 10px;
	height: 10px;
	border-top: 2px solid rgba(255, 255, 255, 0.5);
	border-right: 2px solid rgba(255, 255, 255, 0.5);
	transform: rotate(45deg);
	transition: border-color 0.25s ease;
}

.pxs-page .pxs-others__link:hover .pxs-others__arrow {
	border-color: var(--pxs-cyan);
}

.pxs-back {
	margin: 0;
	padding: 0 20px 90px;
	text-align: center;
}

.pxs-page .pxs-back a {
	color: #8a8aa0;
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.2s ease;
}

.pxs-page .pxs-back a:hover {
	color: var(--pxs-cyan);
	text-shadow: 0 0 8px rgba(45, 226, 230, 0.6);
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 768px) {
	.pxs-hero {
		padding: 48px 0 44px;
	}

	.pxs-hero__icon {
		width: 88px;
		height: 88px;
		border-radius: 22px;
	}

	.pxs-page .pxs-hero__title {
		font-size: 1.65rem;
	}

	.pxs-hero__lead {
		font-size: 0.95rem;
		text-align: left;
	}

	.pxs-body {
		padding: 44px 0 16px;
	}

	.pxs-page .pxs-content h2 {
		font-size: 1.2rem;
	}

	.pxs-content .pxs-steps > li {
		padding-left: 58px;
	}

	.pxs-cta__box {
		padding: 38px 20px 36px;
	}

	.pxs-page .pxs-btn {
		display: block;
		padding: 15px 20px;
	}
}

/* カードはスマホでは1列 */
@media (max-width: 640px) {
	.pxs-content .pxs-features {
		grid-template-columns: 1fr;
	}
}
