/* ==========================================================================
   クラウドLP (page-cloud-lp.php) 専用スタイル
   「クラウドLP.pdf」全5ページを1本の縦長LPとして再構成したデザイン。
   このテンプレート専用のため common.css 等には依存しない完全独立スタイル。
   ========================================================================== */

.cloud-lp {
	--lp-blue: #0f5cce;
	--lp-blue-dark: #0b2544;
	--lp-blue-deep: #093a8c;
	--lp-blue-bg: #eff6fe;
	--lp-blue-soft: #e3eefc;
	--lp-pink: #cc2e5e;
	--lp-text: #33404f;
	--lp-text-light: #64748b;
	--lp-border: #e3e9f2;
	--lp-radius: 20px;
	--lp-shadow: 0 10px 30px rgba(15, 40, 90, 0.08);
	--lp-max: 1160px;

	margin: 0;
	color: var(--lp-text);
	font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
	line-height: 1.7;
	background: #fff;
	-webkit-font-smoothing: antialiased;
}

.cloud-lp * {
	box-sizing: border-box;
}

@media (max-width: 900px) {
	.cloud-lp {
		overflow-x: hidden;
	}
}

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

.cloud-lp a {
	text-decoration: none;
	color: inherit;
}

.cloud-lp ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.cloud-lp h1,
.cloud-lp h2,
.cloud-lp h3,
.cloud-lp h4,
.cloud-lp p {
	margin: 0;
}

.lp-container {
	max-width: var(--lp-max);
	margin: 0 auto;
	padding: 0 24px;
}

.u-accent {
	color: var(--lp-blue);
}

/* ---------- ボタン ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 15px 30px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 10px;
	border: 2px solid transparent;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
	white-space: nowrap;
}

.btn svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn--primary {
	background: var(--lp-blue);
	color: #fff;
	box-shadow: 0 8px 20px rgba(15, 92, 206, 0.35);
}

.btn--primary:hover {
	background: var(--lp-blue-deep);
}

.btn--outline-navy {
	background: #fff;
	color: var(--lp-blue-dark);
	border-color: var(--lp-blue-dark);
}

.btn--outline-navy:hover {
	background: var(--lp-blue-dark);
	color: #fff;
}

.btn--outline-white {
	background: transparent;
	color: #fff;
	border-color: #fff;
}

.btn--outline-white:hover {
	background: #fff;
	color: var(--lp-blue-dark);
}

.btn--outline {
	background: #fff;
	color: var(--lp-pink);
	border-color: var(--lp-pink);
}

.btn--outline:hover {
	background: var(--lp-pink);
	color: #fff;
}

.btn--pink {
	background: var(--lp-pink);
	color: #fff;
}

.btn--pink:hover {
	background: #a52149;
}

.btn--sm {
	padding: 9px 20px;
	font-size: 8.5px;
}

.lp-hero .btn {
	font-size: 16px;
	padding: 13px 40px;
}

.lp-hero .btn--primary {
	color: #fff;
}

.lp-btn-group {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.lp-btn-group--center {
	justify-content: center;
	margin-top: 36px;
}

/* ---------- HERO ---------- */
.lp-hero {
	background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 60%);
	padding: 56px 0 0;
	overflow: hidden;
}

.lp-hero__inner {
	max-width: var(--lp-max);
	margin: 0 auto;
	padding: 0 24px;
	min-height: 630px;
	display: flex;
	align-items: center;
	background: url('../images/hero-background.webp') right top/cover no-repeat;
}

.lp-hero__text {
	min-width: 0;
	max-width: 785px;
}

.lp-badge {
	display: inline-block;
	padding: 8px 18px;
	border-radius: 999px;
	border: 1px solid var(--lp-blue);
	color: var(--lp-blue);
	font-size: 8.2px;
	font-weight: 700;
	margin-bottom: 22px;
}

.lp-hero__text .lp-badge {
	font-size: 16.4px;
}

.lp-hero__title {
	font-size: clamp(33.6px, 4.76vw, 39.2px);
	font-weight: 900;
	line-height: 1.05;
	color: var(--lp-blue-dark);
	letter-spacing: 0.09em;
	white-space: nowrap;
}

.lp-hero__title--lg {
	font-size: clamp(70px, 10.08vw, 81.2px);
	font-weight: 800;
	line-height: 1.05;
}

.lp-hero__title--boost {
	font-size: clamp(84.7px, 12.19vw, 98.3px);
}

.lp-hero__title--accent {
	font-size: 84px;
	letter-spacing: 0.08em;
	color: var(--lp-blue);
}

.lp-hero__title--wo {
	font-size: 60px;
}

.lp-hero__lead {
	max-width: 100%;
	margin-top: 22px;
	color: var(--lp-text);
	font-weight: 600;
	font-size: 17.6px;
	line-height: 1.9;
	letter-spacing: 1.8px;
	white-space: nowrap;
}


@media (max-width: 900px) {
	.lp-hero__inner {
		min-height: 460px;
		position: relative;
		background: none;
	}
	.lp-hero__inner::before {
		content: '';
		position: absolute;
		inset: 0;
		background: url('../images/hero-background.webp') right top/cover no-repeat;
		opacity: 0.3;
		z-index: 0;
	}
	.lp-hero__text {
		position: relative;
		z-index: 1;
	}
	.lp-hero__text .lp-badge {
		font-size: 11px;
		white-space: normal;
		display: block;
		width: fit-content;
		max-width: 100%;
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}
	.lp-hero__title {
		white-space: normal;
		font-size: clamp(20px, 7.5vw, 30.3px);
		letter-spacing: 0.02em;
	}
	.lp-hero__title--lg {
		font-size: clamp(26px, 13vw, 63.3px);
	}
	.lp-hero__title--boost {
		font-size: clamp(28px, 15vw, 76px);
	}
	.lp-hero__title--accent {
		font-size: clamp(26px, 13vw, 63.3px);
	}
	.lp-hero__title--wo {
		font-size: clamp(16px, 6vw, 22px);
	}
	.lp-hero__lead {
		white-space: normal;
		font-size: 12.1px;
		letter-spacing: normal;
	}
	.lp-hero__lead br {
		display: none;
	}
}

.lp-points {
	margin-top: 56px;
	background: var(--lp-blue-bg);
	padding: 30px 0;
}

.lp-points {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	max-width: var(--lp-max);
	margin: 56px auto 0;
	padding: 30px 12px;
	background: var(--lp-blue-bg);
	gap: 8px;
}

.lp-point {
	display: flex;
	align-items: center;
	gap: 5px;
}

.lp-point__icon {
	width: 64px;
	height: 64px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lp-point__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.lp-point__body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.lp-point__num {
	font-weight: 800;
	color: var(--lp-blue);
	font-size: 19px;
}

.lp-point__text {
	font-size: 13.8px;
	font-weight: 600;
	color: var(--lp-blue-dark);
	line-height: 1.5;
}

@media (max-width: 900px) {
	.lp-points {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ---------- 共通セクション ---------- */
.lp-section {
	padding: 88px 0;
}

.lp-concept1 {
	padding-bottom: 30px;
}

.lp-concept2 {
	padding-top: 30px;
}

.lp-eyebrow {
	text-align: center;
	color: var(--lp-blue);
	font-weight: 700;
	font-size: 8.5px;
	letter-spacing: 0.08em;
}

.lp-eyebrow span {
	display: block;
	color: var(--lp-blue);
	font-weight: 500;
	margin-top: 4px;
}

.lp-section-title {
	text-align: center;
	font-size: clamp(15px, 3vw, 21px);
	font-weight: 800;
	color: var(--lp-blue-dark);
	line-height: 1.55;
	margin-top: 14px;
}

.lp-service .lp-section-title,
.lp-concept1 .lp-section-title,
.lp-change .lp-section-title,
.lp-effect .lp-section-title {
	font-size: clamp(33.6px, 4.76vw, 39.2px);
}

.lp-origin .lp-section-title {
	font-size: clamp(40.32px, 5.712vw, 47.04px);
}

@media (max-width: 600px) {
	.lp-service .lp-section-title,
	.lp-concept1 .lp-section-title,
	.lp-change .lp-section-title,
	.lp-effect .lp-section-title {
		font-size: clamp(17px, 7vw, 24px);
	}

	.lp-origin .lp-section-title {
		font-size: clamp(18px, 7.5vw, 26px);
	}
}

.lp-punct-hang {
	display: inline-block;
	margin-right: -0.5em;
}

.lp-origin .lp-eyebrow,
.lp-service .lp-eyebrow,
.lp-concept1 .lp-eyebrow,
.lp-concept2 .lp-eyebrow,
.lp-effect .lp-eyebrow,
.lp-webservice1 .lp-eyebrow,
.lp-webservice2 .lp-eyebrow {
	font-size: 18px;
	font-weight: 1000;
}

.lp-lead {
	text-align: center;
	color: var(--lp-text-light);
	margin-top: 22px;
	font-size: 20px;
	line-height: 1.9;
}

.lp-service .lp-lead,
.lp-concept1 .lp-lead,
.lp-change .lp-lead {
	font-size: 16.5px;
	color: var(--lp-text);
}

.lp-divider-label {
	text-align: center;
	color: var(--lp-blue-dark);
	font-weight: 700;
	font-size: 9.5px;
	margin: 52px 0 28px;
}

.lp-divider-label--intro {
	font-size: 19px;
}

.lp-divider-label--outro {
	font-size: 17px;
	margin: 160px 0 90px;
	padding: 40px 0;
}

.lp-footnote {
	text-align: center;
	color: var(--lp-text-light);
	font-size: 14px;
	margin-top: 30px;
}

/* ---------- OUR ORIGIN ---------- */
.lp-origin {
	background: radial-gradient(circle at 15% 20%, #eaf3ff 0%, #ffffff 45%);
}

.lp-origin__text {
	max-width: 760px;
	margin: 30px auto 0;
	text-align: center;
	color: var(--lp-text);
	display: grid;
	gap: 14px;
	font-size: 15px;
}

.lp-origin__text p {
	white-space: normal;
}

.lp-formula {
	margin-top: 52px;
	background: #fff;
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius);
	box-shadow: var(--lp-shadow);
	padding: 44px 32px;
	display: grid;
	grid-template-columns: 1fr auto 1fr auto 1fr;
	align-items: center;
	gap: 18px;
}

.lp-formula__item {
	text-align: center;
}

.lp-formula__icon {
	width: 117px;
	height: 117px;
	border-radius: 50%;
	background: var(--lp-blue-soft);
	color: var(--lp-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin: 0 auto 16px;
}

.lp-formula__icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.lp-formula__icon--brand {
	background: var(--lp-blue);
}

.lp-formula__item h3 {
	font-size: 20.4px;
	font-weight: 800;
	color: var(--lp-blue);
	line-height: 1.5;
}

.lp-formula__item p {
	margin-top: 10px;
	font-size: 14px;
	color: var(--lp-text);
	line-height: 1.7;
}

.lp-formula__op {
	font-size: 36px;
	font-weight: 800;
	color: var(--lp-blue);
	text-align: center;
}

@media (max-width: 860px) {
	.lp-formula {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.lp-formula__op {
		transform: rotate(90deg);
	}
}

/* ---------- SERVICE カード ---------- */
.lp-service {
	background: var(--lp-blue-bg);
}

.lp-cards {
	display: grid;
	gap: 24px;
	margin-top: 24px;
}

.lp-cards > * {
	min-width: 0;
}

.lp-cards--3 {
	grid-template-columns: repeat(3, 1fr);
}

.lp-cards--2 {
	display: flex;
	justify-content: center;
}

.lp-cards--2 .lp-card {
	flex: 0 0 calc((100% - 48px) / 3);
}

@media (max-width: 900px) {
	.lp-cards--3 {
		grid-template-columns: 1fr;
	}
	.lp-cards--2 {
		flex-direction: column;
	}
	.lp-cards--2 .lp-card {
		flex-basis: auto;
	}
}

.lp-card {
	position: relative;
	background: #fff;
	border-radius: var(--lp-radius);
	padding: 34px 26px 28px;
	box-shadow: var(--lp-shadow);
}

.lp-card__head {
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
}

.lp-card__num {
	font-size: 17px;
	font-weight: 800;
	color: var(--lp-blue);
	opacity: 0.55;
}

.lp-card__icon {
	width: 200px;
	height: 117px;
	border-radius: 14px;
	background: var(--lp-blue-soft);
	color: var(--lp-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.lp-card__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.lp-card h3 {
	font-size: 11.2px;
	font-weight: 800;
	color: var(--lp-blue-dark);
}

.lp-cards--3 .lp-card h3,
.lp-cards--2 .lp-card h3 {
	font-size: 22.4px;
}

.lp-card h3,
.lp-card__desc {
	text-align: center;
}

.lp-card__desc {
	margin-top: 10px;
	font-size: 14px;
	color: var(--lp-text-light);
	line-height: 1.75;
}

ul.lp-check-list {
	margin-top: 12px;
	padding-top: 16px;
	border-top: 1px dashed var(--lp-border);
	display: grid;
	gap: 9px;
}

.lp-check-list li {
	position: relative;
	padding-left: 26px;
	font-size: 14px;
	color: var(--lp-text);
}

.lp-check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	background: var(--lp-blue);
}

.lp-check-list li::after {
	content: "";
	position: absolute;
	left: 4.5px;
	top: 6px;
	width: 8px;
	height: 4.5px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg);
}

.lp-banner {
	margin: 44px auto 0;
	width: fit-content;
	max-width: 100%;
	background: var(--lp-blue-dark);
	border-radius: var(--lp-radius);
	padding: 28px 32px;
	display: flex;
	align-items: center;
	gap: 20px;
	color: #fff;
}

.lp-banner__icon {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.lp-banner__icon img {
	width: 39px;
	height: 39px;
	object-fit: contain;
}

.lp-banner p {
	font-size: 22.4px;
	line-height: 1.8;
	text-align: center;
}

.lp-banner strong {
	color: #8ec2ff;
	font-size: inherit;
}

@media (max-width: 600px) {
	.lp-banner {
		flex-direction: column;
		text-align: center;
	}
}

/* ---------- フローステップ (共通: SERVICE/CHANGE) ---------- */
.lp-flow {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 6px;
	margin-top: 6px;
}

.lp-flow__step {
	flex: 1;
	text-align: center;
}

.lp-flow__icon {
	width: 78px;
	height: 78px;
	border-radius: 50%;
	background: #fff;
	color: var(--lp-blue-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 12px;
	box-shadow: var(--lp-shadow);
}

.lp-flow__icon img {
	width: 42px;
	height: 42px;
	object-fit: contain;
}

.lp-flow__step p {
	font-size: 14px;
	font-weight: 700;
	color: var(--lp-blue-dark);
}

.lp-flow__arrow {
	color: var(--lp-blue);
	font-size: 56px;
	font-weight: 900;
	margin-top: 14px;
}

@media (max-width: 780px) {
	.lp-flow {
		flex-wrap: wrap;
	}
	.lp-flow__step {
		flex: 1 1 40%;
	}
	.lp-flow__arrow {
		display: none;
	}
}

/* ---------- CONCEPT 1 ---------- */
.lp-steps {
	display: flex;
	align-items: stretch;
	gap: 6px;
	margin-top: 48px;
}

.lp-step {
	flex: 1;
	background: #fff;
	border: 1px solid var(--lp-border);
	border-radius: 18px;
	padding: 26px 16px 18px;
	text-align: center;
	box-shadow: var(--lp-shadow);
}

.lp-step__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--lp-blue-soft);
	color: var(--lp-blue);
	font-weight: 800;
	margin-bottom: 14px;
}

.lp-step h3 {
	font-size: 11.76px;
	font-weight: 800;
	color: var(--lp-blue-dark);
	line-height: 1.4;
}

.lp-step p {
	margin-top: 8px;
	font-size: 14px;
	color: var(--lp-text-light);
	line-height: 1.6;
	min-height: 2.6em;
}

.lp-step img {
	margin: 16px auto 0;
	border-radius: 12px;
}

.lp-step__arrow {
	align-self: center;
	color: var(--lp-blue);
	font-size: 13px;
	font-weight: 700;
}

@media (max-width: 960px) {
	.lp-steps {
		flex-wrap: wrap;
	}
	.lp-step {
		flex: 1 1 40%;
	}
	.lp-step__arrow {
		display: none;
	}
}

.lp-note-bar {
	margin: 40px auto 0;
	width: fit-content;
	max-width: 100%;
	background: var(--lp-blue-bg);
	border-radius: 16px;
	padding: 22px 28px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.lp-note-bar__icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: var(--lp-blue);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.lp-note-bar__icon svg {
	width: 22px;
	height: 22px;
}

.lp-note-bar p {
	font-size: 20px;
	color: var(--lp-blue-dark);
	font-weight: 600;
}

/* ---------- CONCEPT 2 ---------- */
.lp-concept2 > .lp-container > .lp-eyebrow {
	margin-bottom: 20px;
}

.lp-concept2__grid {
	display: grid;
	grid-template-columns: 6.5fr 3.5fr;
	gap: 56px;
}

.lp-concept2__grid > * {
	min-width: 0;
}

.lp-concept2__left .lp-section-title,
.lp-concept2__right .lp-section-title,
.lp-concept2__left .lp-lead,
.lp-concept2__right .lp-lead {
	text-align: left;
}

.lp-concept2__right .lp-section-title--sm {
	font-size: 20px;
}

.lp-badge--sm {
	font-size: 12px;
	padding: 7px 16px;
	background: var(--lp-blue-soft);
	border: none;
}

.lp-badge--outline {
	font-size: 17px;
	padding: 6px 18px;
}

.lp-section-title--sm {
	font-size: 30px;
	margin-top: 16px;
}

p.lp-lead--left {
	margin-top: 16px;
	margin-bottom: 25px;
	font-size: 14px;
}

.lp-concept2__illustration {
	margin-top: 28px;
	border-radius: 16px;
	box-shadow: var(--lp-shadow);
}

.lp-concept2__illustration img {
	border-radius: 16px;
}

.lp-concept2__legend {
	margin-top: 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	background: #fff;
	border: 1px solid var(--lp-border);
	border-radius: 14px;
	padding: 16px 18px;
}

.lp-concept2__legend > div {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--lp-blue-dark);
	line-height: 1.4;
}

.lp-concept2__legend svg {
	width: 22px;
	height: 22px;
	color: var(--lp-blue);
	flex-shrink: 0;
}

.lp-concept2__legend img {
	width: 60px;
	height: 60px;
	flex-shrink: 0;
	object-fit: contain;
}

.lp-concept2__legend-divider {
	width: 1px;
	height: 40px;
	background: var(--lp-border);
	flex-shrink: 0;
}

.lp-concept2__legend-both {
	flex-direction: column;
	gap: 2px;
	font-size: 10.5px;
}

.lp-concept2__legend-both-arrow {
	font-size: 19.5px;
	color: var(--lp-blue);
	font-weight: 700;
}

.lp-feature-list {
	margin-top: 30px;
	display: grid;
	gap: 18px;
}

.lp-feature-list li {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding-bottom: 18px;
	border-bottom: 1px dashed var(--lp-border);
}

.lp-feature-list li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.lp-feature-list__icon {
	width: 63px;
	height: 63px;
	border-radius: 50%;
	background: var(--lp-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.lp-feature-list__icon svg {
	width: 36px;
	height: 36px;
}

.lp-concept2 .lp-feature-list__icon {
	background: none;
}

.lp-concept2 .lp-feature-list__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.lp-feature-list h4 {
	font-size: 12px;
	font-weight: 800;
	color: var(--lp-blue-dark);
}

.lp-feature-list p {
	margin-top: 4px;
	font-size: 14px;
	color: var(--lp-text-light);
	line-height: 1.65;
}

.lp-security-note {
	margin-top: 26px;
	background: var(--lp-blue-dark);
	border-radius: 14px;
	padding: 20px 14px;
	display: flex;
	gap: 10px;
	align-items: center;
	color: #fff;
}

.lp-security-note__icon {
	width: 63px;
	height: 63px;
	border-radius: 50%;
	background: var(--lp-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.lp-security-note__icon svg {
	width: 60px;
	height: 60px;
}

.lp-security-note h4 {
	font-size: 12px;
	font-weight: 800;
}

.lp-security-note p {
	margin-top: 3px;
	font-size: 12px;
	color: #cfe0ff;
	line-height: 1.6;
}

@media (max-width: 960px) {
	.lp-concept2__grid {
		grid-template-columns: 1fr;
	}
	.lp-concept2__legend {
		flex-direction: column;
		align-items: flex-start;
	}
	.lp-concept2__legend-divider {
		width: 100%;
		height: 1px;
	}
	.lp-concept2__legend-both-arrow {
		display: inline-block;
		transform: rotate(90deg);
	}
}

@media (max-width: 640px) {
	.lp-concept2__legend {
		align-items: center;
		text-align: center;
	}
	.lp-concept2__legend > div {
		justify-content: center;
	}
}

/* ---------- 変化する窓口運用 (Before/After) ---------- */
.lp-change {
	background: var(--lp-blue-bg);
}

.lp-change-row {
	display: grid;
	grid-template-columns: 165px 1fr;
	gap: 10px;
	align-items: center;
	background: #fff;
	border-radius: var(--lp-radius);
	box-shadow: var(--lp-shadow);
	padding: 24px 16px;
	margin-top: 28px;
}

.lp-change-row > * {
	min-width: 0;
}

.lp-change-row__icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}

.lp-change-row__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.lp-change-row__label h3 {
	font-size: 15px;
	font-weight: 800;
	color: var(--lp-blue-dark);
}

.lp-change-row__label p {
	margin-top: 8px;
	font-size: 10.4px;
	color: var(--lp-text-light);
	line-height: 1.5;
}

.lp-change-row__scene {
	height: 330px;
	overflow: hidden;
	border-radius: 12px;
}

.lp-change-row__scene img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 12px;
}

@media (max-width: 860px) {
	.lp-change-row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.lp-change-row__scene {
		height: auto;
	}
}

.lp-legend {
	margin-top: 40px;
	background: #fff;
	border-radius: var(--lp-radius);
	box-shadow: var(--lp-shadow);
	padding: 24px 32px;
	display: grid;
	grid-template-columns: auto minmax(280px, 1fr) auto;
	align-items: center;
	gap: 30px;
}

.lp-legend__icons {
	display: flex;
	align-items: flex-start;
	padding-bottom: 0;
	padding-right: 24px;
	border-bottom: none;
	border-right: 1px solid var(--lp-border);
}

.lp-legend__icons > div {
	position: relative;
	text-align: center;
	padding: 0 10px;
}

.lp-legend__icons > div:first-child {
	padding-left: 0;
}

.lp-legend__icons > div:last-child {
	padding-right: 0;
}

.lp-legend__icons > div:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 36px;
	background: var(--lp-border);
}

.lp-legend__icons img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 6px;
}

.lp-legend__icons span {
	font-size: 10px;
	font-weight: 700;
	color: var(--lp-blue-dark);
	line-height: 1.15;
	white-space: nowrap;
}

.lp-legend__banner {
	margin-top: 0;
	display: block;
	min-width: 0;
}

.lp-legend__banner h3 {
	font-size: 10.5px;
	font-weight: 800;
	color: var(--lp-blue-dark);
}

.lp-legend__banner p {
	margin-top: 8px;
	font-size: 14px;
	color: var(--lp-text-light);
	line-height: 1.7;
}

.lp-legend__skyline {
	width: 220px;
	border-radius: 12px;
	overflow: hidden;
}

@media (max-width: 780px) {
	.lp-legend {
		grid-template-columns: 1fr;
	}
	.lp-legend__icons {
		flex-wrap: wrap;
		border-right: none;
		border-bottom: 1px solid var(--lp-border);
		padding-right: 0;
		padding-bottom: 20px;
	}
	.lp-legend__icons > div {
		flex: 1 0 40%;
		padding: 8px 0;
	}
	.lp-legend__icons > div::after {
		display: none;
	}
	.lp-legend__icons span {
		white-space: normal;
	}
	.lp-legend__banner {
		margin-top: 20px;
	}
	.lp-legend__skyline {
		margin-left: 0;
		width: 100%;
	}
}

/* ---------- EFFECT ---------- */
.lp-persona-cards {
	margin-top: 44px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.lp-persona-cards > * {
	min-width: 0;
}

@media (max-width: 900px) {
	.lp-persona-cards {
		grid-template-columns: 1fr;
	}
}

.lp-persona-card {
	background: #fff;
	border-radius: var(--lp-radius);
	box-shadow: var(--lp-shadow);
	overflow: hidden;
	padding-bottom: 26px;
}

.lp-persona-card__head {
	background: linear-gradient(120deg, var(--lp-blue) 0%, var(--lp-blue-deep) 100%);
	color: #fff;
	padding: 16px 22px;
	display: flex;
	align-items: baseline;
	gap: 10px;
}

.lp-persona-card__head span {
	font-size: 20px;
	font-weight: 800;
}

.lp-persona-card__head em {
	font-style: normal;
	font-size: 12px;
	opacity: 0.85;
}

.lp-persona-card__img {
	display: flex;
	justify-content: center;
	padding: 24px 0 6px;
}

.lp-persona-card__img img {
	width: 130px;
	border-radius: 50%;
	background: var(--lp-blue-soft);
}

.lp-persona-card h3 {
	text-align: center;
	font-size: 12px;
	font-weight: 800;
	color: var(--lp-blue);
	padding: 0 22px;
	line-height: 1.6;
}

ul.lp-check-list--persona {
	margin-top: 22px;
	padding: 0 20px;
	border-top: 1px solid var(--lp-border);
	padding-top: 18px;
	gap: 16px;
}

.lp-check-list--persona li {
	padding-left: 26px;
	margin-left: 44px;
}

.lp-check-list--persona strong {
	display: block;
	font-size: 14px;
	color: var(--lp-blue-dark);
	font-weight: 700;
}

.lp-check-list--persona span {
	display: block;
	margin-top: 2px;
	font-size: 14px;
	color: var(--lp-text-light);
}

/* ---------- 最終CTA ---------- */
.lp-cta {
	background: var(--lp-blue-dark);
	padding: 76px 0;
	text-align: center;
}

.lp-cta h2 {
	color: #fff;
	font-size: clamp(13.5px, 3vw, 19px);
	font-weight: 800;
	line-height: 1.6;
}

.lp-cta .btn {
	font-size: 20px;
	width: 300px;
	padding: 10px 30px;
	color: #fff;
}

/* ---------- WEBサービス① 混雑状況の見える化 ---------- */
.lp-webservice1 > .lp-container > .lp-eyebrow {
	margin-bottom: 20px;
}

.lp-webservice1__grid {
	display: grid;
	grid-template-columns: 6.5fr 3.9fr;
	gap: 40px;
	align-items: start;
}

.lp-webservice1__grid > * {
	min-width: 0;
}

.lp-webservice1__left .lp-section-title,
.lp-webservice1__left .lp-lead {
	text-align: left;
}

.lp-webservice1__left .lp-section-title--sm {
	font-size: clamp(20px, 2.6vw, 25px);
}

.lp-webservice1__phones {
	display: grid;
	grid-template-columns: 1fr auto 1fr auto 1fr;
	align-items: center;
	gap: 10px;
	margin-top: 40px;
}

.lp-webservice1__phone-img img {
	border-radius: 22px;
	margin: 0 auto;
}

.lp-webservice1__arrow {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #fff;
	box-shadow: var(--lp-shadow);
	color: var(--lp-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.lp-webservice1__arrow svg {
	width: 16px;
	height: 16px;
}

.lp-webservice1__captions {
	display: grid;
	grid-template-columns: 1fr auto 1fr auto 1fr;
	gap: 10px;
	margin-top: 22px;
}

.lp-webservice1__captions > *:nth-child(1) {
	grid-column: 1;
}

.lp-webservice1__captions > *:nth-child(2) {
	grid-column: 3;
}

.lp-webservice1__captions > *:nth-child(3) {
	grid-column: 5;
}

.lp-webservice1__mobile-rows {
	display: none;
}

.lp-webservice1__cap {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.lp-webservice1__cap-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--lp-blue);
	color: #fff;
	font-weight: 800;
	font-size: 12px;
	flex-shrink: 0;
	margin-top: 2px;
}

.lp-webservice1__cap h3 {
	font-size: 13.65px;
	font-weight: 800;
	color: var(--lp-blue-dark);
}

.lp-webservice1__cap p {
	margin-top: 6px;
	font-size: 12.35px;
	color: var(--lp-text-light);
	line-height: 1.6;
}

.lp-webservice1__right {
	position: relative;
	background: linear-gradient(165deg, var(--lp-blue-bg) 0%, #fff 55%);
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius);
	box-shadow: var(--lp-shadow);
	padding: 40px 36px 0;
	overflow: hidden;
}

.lp-webservice1__right::before {
	content: "";
	position: absolute;
	top: -50px;
	right: -70px;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(15, 92, 206, 0.12), rgba(15, 92, 206, 0) 70%);
}

.lp-webservice1__right::after {
	content: "";
	position: absolute;
	top: 26px;
	right: 34px;
	width: 100px;
	height: 84px;
	background-image: radial-gradient(var(--lp-blue) 1.4px, transparent 1.6px);
	background-size: 14px 14px;
	opacity: 0.16;
}

.lp-webservice1__steps {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 10px;
}

.lp-webservice1__steps .lp-badge {
	margin-bottom: 0;
}

.lp-webservice1__step-num {
	display: inline-block;
	padding: 8px 18px;
	border-radius: 999px;
	background: var(--lp-blue);
	color: #fff;
	font-weight: 800;
	font-size: 9.5px;
}

.lp-webservice1__right .lp-webservice1__title {
	position: relative;
	z-index: 1;
	margin-top: 24px;
	font-size: 19px;
	font-weight: 800;
	color: var(--lp-blue-dark);
	line-height: 1.5;
	text-align: left;
}

.lp-webservice1__right .lp-lead {
	position: relative;
	z-index: 1;
	text-align: left;
	color: var(--lp-blue-dark);
}

.lp-webservice1__right .lp-feature-list {
	position: relative;
	z-index: 1;
}

.lp-webservice1__right .lp-feature-list p,
.lp-webservice2__right .lp-feature-list p {
	font-size: 13px;
}

.lp-webservice1__skyline {
	margin: 32px -1px 0;
	width: calc(100% + 2px);
	max-width: none;
}

@media (max-width: 960px) {
	.lp-webservice1__grid {
		grid-template-columns: 1fr;
	}
	.lp-webservice1__phones,
	.lp-webservice1__captions {
		grid-template-columns: 1fr 1fr;
	}
	.lp-webservice1__arrow {
		display: none;
	}
	.lp-webservice1__captions > *:nth-child(1) {
		grid-column: 1;
	}
	.lp-webservice1__captions > *:nth-child(2) {
		grid-column: 2;
	}
	.lp-webservice1__captions > *:nth-child(3) {
		grid-column: 1;
	}
}

@media (max-width: 640px) {
	/* スマホ表示のみ: 画像左・キャプション右の並びに切り替え */
	.lp-webservice1__phones,
	.lp-webservice1__captions {
		display: none;
	}
	.lp-webservice1__mobile-rows {
		display: flex;
		flex-direction: column;
		gap: 24px;
		margin-top: 32px;
	}
	.lp-webservice1__mobile-row {
		display: flex;
		align-items: center;
		gap: 18px;
	}
	.lp-webservice1__mobile-row .lp-webservice1__phone-img {
		flex: 0 0 140px;
	}
	.lp-webservice1__mobile-row .lp-webservice1__phone-img img {
		width: 100%;
		max-width: 100%;
		margin: 0 auto;
	}
	.lp-webservice1__mobile-row .lp-webservice1__cap {
		flex: 0 1 50%;
		max-width: 50%;
		min-width: 0;
	}
	.lp-webservice1__mobile-row .lp-webservice1__cap h3 {
		font-size: 15.5px;
	}
	.lp-webservice1__mobile-row .lp-webservice1__cap p {
		font-size: 14px;
	}
}

/* ---------- WEBサービス② Web発券 ---------- */
.lp-webservice2 > .lp-container > .lp-eyebrow {
	margin-bottom: 20px;
}

.lp-webservice2__grid {
	display: grid;
	grid-template-columns: 6.5fr 3.9fr;
	gap: 40px;
	align-items: start;
}

.lp-webservice2__grid > * {
	min-width: 0;
}

.lp-webservice2__left .lp-section-title,
.lp-webservice2__left .lp-lead {
	text-align: left;
}

.lp-webservice2__left .lp-section-title--sm {
	margin-top: 16px;
	font-size: clamp(20px, 2.6vw, 25px);
}

.lp-webservice2__phones {
	display: grid;
	grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
	align-items: center;
	gap: 8px;
	margin-top: 36px;
}

.lp-webservice2__phone-img {
	position: relative;
}

.lp-webservice2__phone-img img {
	border-radius: 20px;
	margin: 0 auto;
}

.lp-webservice2__bubble {
	position: absolute;
	top: -16px;
	right: -8px;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 5px;
	background: var(--lp-pink);
	color: #fff;
	font-size: 7.2px;
	font-weight: 700;
	padding: 7px 12px;
	border-radius: 999px;
	white-space: nowrap;
	box-shadow: var(--lp-shadow);
}

.lp-webservice2__bubble svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}

.lp-webservice2__arrow {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--lp-blue);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: var(--lp-shadow);
}

.lp-webservice2__arrow svg {
	width: 15px;
	height: 15px;
}

.lp-webservice2__captions {
	display: grid;
	grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
	gap: 8px;
	margin-top: 22px;
}

.lp-webservice2__captions > *:nth-child(1) {
	grid-column: 1;
}

.lp-webservice2__captions > *:nth-child(2) {
	grid-column: 3;
}

.lp-webservice2__captions > *:nth-child(3) {
	grid-column: 5;
}

.lp-webservice2__captions > *:nth-child(4) {
	grid-column: 7;
}

.lp-webservice2__mobile-rows {
	display: none;
}

.lp-webservice2__cap {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.lp-webservice2__cap-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--lp-blue);
	color: #fff;
	font-weight: 800;
	font-size: 12px;
	flex-shrink: 0;
	margin-top: 2px;
}

.lp-webservice2__cap h3 {
	font-size: 13.65px;
	font-weight: 800;
	color: var(--lp-blue-dark);
}

.lp-webservice2__cap p {
	margin-top: 6px;
	font-size: 12.35px;
	color: var(--lp-text-light);
	line-height: 1.6;
}

.lp-webservice2__right-title {
	font-size: 17px;
	font-weight: 800;
	color: var(--lp-blue-dark);
	text-align: left;
	padding-bottom: 14px;
	border-bottom: 2px solid var(--lp-blue);
}

.lp-webservice2__right .lp-feature-list {
	margin-top: 22px;
}

.lp-webservice2__highlight {
	margin-top: 24px;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	background: var(--lp-blue-bg);
	border: 1px solid var(--lp-border);
	border-radius: 14px;
	padding: 20px 22px;
}

.lp-webservice2__highlight-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--lp-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.lp-webservice2__highlight-icon svg {
	width: 28px;
	height: 28px;
}

.lp-webservice2__highlight-icon img {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.lp-webservice2__highlight h4 {
	font-size: 13px;
	font-weight: 800;
	color: var(--lp-blue-dark);
}

.lp-webservice2__stats {
	margin-top: 56px;
	background: #fff;
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius);
	box-shadow: var(--lp-shadow);
	padding: 36px 40px;
	display: grid;
	grid-template-columns: 1.5fr 2fr 1.35fr;
	gap: 30px;
	align-items: center;
}

.lp-webservice2__stats > * {
	min-width: 0;
}

.lp-webservice2__stats-info {
	position: relative;
	padding-right: 74px;
}

.lp-webservice2__stats-info h4 {
	margin-top: 14px;
	font-size: 15px;
	font-weight: 800;
	color: var(--lp-blue-dark);
}

.lp-webservice2__stats-info p {
	margin-top: 6px;
	font-size: 14.85px;
	color: var(--lp-text-light);
}

.lp-webservice2__stats-illustration {
	margin-top: 0;
	display: flex;
	align-items: flex-end;
	gap: 12px;
}

.lp-webservice2__stats-illustration img:first-child {
	flex: 1;
	min-width: 0;
}

.lp-webservice2__stats-illustration img:last-child {
	width: 62px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.lp-webservice2__stats-compare {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
}

.lp-webservice2__stats-card {
	background: var(--lp-blue-bg);
	border-radius: 14px;
	padding: 18px 30px;
	text-align: center;
	flex: 0 0 180px;
	width: 180px;
}

.lp-webservice2__stats-card span {
	display: block;
	font-size: 9.2px;
	font-weight: 700;
	color: var(--lp-text);
	margin-bottom: 8px;
}

.lp-webservice2__stats-card strong {
	font-size: 52px;
	font-weight: 800;
	color: var(--lp-blue-dark);
	white-space: nowrap;
}

.lp-webservice2__stats-card strong small {
	font-size: 22px;
	font-weight: 700;
	margin-left: 2px;
}

.lp-webservice2__stats-card--accent {
	position: relative;
	background: #fde8ef;
}

.lp-webservice2__stats-card--accent strong {
	color: var(--lp-pink);
}

.lp-webservice2__stats-arrow {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--lp-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.lp-webservice2__stats-arrow svg {
	width: 20px;
	height: 20px;
}

.lp-webservice2__stats-check {
	position: absolute;
	top: 50%;
	right: -16px;
	transform: translateY(-50%);
	width: 32px;
	height: auto;
}

.lp-webservice2__stats-badge {
	width: 100%;
	margin: 0 auto;
}

@media (max-width: 960px) {
	.lp-webservice2__grid {
		grid-template-columns: 1fr;
	}
	.lp-webservice2__phones,
	.lp-webservice2__captions {
		grid-template-columns: 1fr 1fr;
	}
	.lp-webservice2__arrow {
		display: none;
	}
	.lp-webservice2__captions > *:nth-child(1) {
		grid-column: 1;
	}
	.lp-webservice2__captions > *:nth-child(2) {
		grid-column: 2;
	}
	.lp-webservice2__captions > *:nth-child(3) {
		grid-column: 1;
	}
	.lp-webservice2__captions > *:nth-child(4) {
		grid-column: 2;
	}
	.lp-webservice2__stats {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	/* スマホ表示のみ: 画像左・キャプション右の並びに切り替え */
	.lp-webservice2__phones,
	.lp-webservice2__captions {
		display: none;
	}
	.lp-webservice2__mobile-rows {
		display: flex;
		flex-direction: column;
		gap: 24px;
		margin-top: 32px;
	}
	.lp-webservice2__mobile-row {
		display: flex;
		align-items: center;
		gap: 16px;
	}
	.lp-webservice2__mobile-row .lp-webservice2__phone-img {
		flex: 0 0 120px;
	}
	.lp-webservice2__mobile-row .lp-webservice2__phone-img img {
		width: 100%;
		max-width: 100%;
		margin: 0 auto;
	}
	.lp-webservice2__mobile-row .lp-webservice2__bubble {
		left: -8px;
		right: auto;
	}
	.lp-webservice2__mobile-row .lp-webservice2__cap {
		flex: 0 1 50%;
		max-width: 50%;
		min-width: 0;
	}
	.lp-webservice2__mobile-row .lp-webservice2__cap h3 {
		font-size: 15.5px;
	}
	.lp-webservice2__mobile-row .lp-webservice2__cap p {
		font-size: 14px;
	}
	.lp-webservice2__stats-compare {
		flex-direction: column;
	}
}

/* ---------- WEBサービス③ 日時予約 ---------- */
.lp-webservice3 .lp-eyebrow {
	font-size: 18px;
	font-weight: 1000;
}

.lp-webservice3__panels {
	margin-top: 44px;
	display: grid;
	grid-template-columns: 4fr 6fr;
	gap: 2px;
}

.lp-webservice3__panels > * {
	min-width: 0;
}

.lp-webservice3__panel {
	background: #fff;
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius);
	box-shadow: var(--lp-shadow);
	padding: 32px 18px 32px 32px;
}

.lp-webservice3__panel:first-child {
	padding: 20px;
}

.lp-webservice3__panel:last-child {
	padding: 32px 10px 32px 24px;
}

.lp-webservice3__panel-head {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.lp-webservice3__panel-icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.lp-webservice3__panel-icon svg {
	width: 28px;
	height: 28px;
}

.lp-webservice3__panel-icon img {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.lp-webservice3__panel-icon--blue {
	background: #fff;
	border: 3px solid var(--lp-blue);
}

.lp-webservice3__panel-icon--green {
	background: #fff;
	border: 3px solid #22a06b;
}

.lp-webservice3__panel-head h3 {
	font-size: 22px;
	font-weight: 800;
	line-height: 1.4;
}

.lp-webservice3__panel-icon--blue + div h3 {
	color: var(--lp-blue);
}

.lp-webservice3__panel-icon--green + div h3 {
	color: #22a06b;
}

.lp-webservice3__panel-desc {
	margin-top: 8px;
	font-size: 15px;
	color: var(--lp-text-light);
	line-height: 1.7;
}

.lp-webservice3__nowrap {
	white-space: nowrap;
}

.lp-webservice3__phones {
	margin-top: 26px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 12px;
}

.lp-webservice3__phone {
	text-align: center;
}

.lp-webservice3__phone-cap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-bottom: 12px;
}

.lp-webservice3__phone-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--lp-blue);
	color: #fff;
	font-weight: 800;
	font-size: 12px;
	flex-shrink: 0;
}

.lp-webservice3__phone-cap h4 {
	font-size: 9.2px;
	font-weight: 800;
	color: var(--lp-blue-dark);
}

.lp-webservice3__phone img {
	border-radius: 16px;
	margin: 0 auto;
}

.lp-webservice3__mobile-phones {
	display: none;
}

.lp-webservice3__notebar {
	margin-top: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	background: var(--lp-blue-bg);
	border-radius: 14px;
	padding: 16px 20px;
	text-align: center;
}

.lp-webservice3__notebar-icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #fff;
	box-shadow: var(--lp-shadow);
	color: var(--lp-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.lp-webservice3__notebar-icon svg {
	width: 22px;
	height: 22px;
}

.lp-webservice3__notebar h4 {
	font-size: 15px;
	font-weight: 800;
	color: var(--lp-blue-dark);
}

.lp-webservice3__notebar p {
	margin-top: 3px;
	font-size: 11.7px;
	color: var(--lp-text-light);
}

.lp-webservice3__flow {
	margin-top: 26px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.lp-webservice3__flow-inputs {
	flex: 0.7 1 0;
	min-width: 105px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.lp-webservice3__flow-input {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	border-radius: 12px;
	padding: 8.5px 5px 8.5px 12px;
	border: 1px solid;
}

.lp-webservice3__flow-input-icon {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.lp-webservice3__flow-input-icon img {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	object-fit: contain;
}

.lp-webservice3__flow-input h5 {
	margin: 0 0 10px;
	font-size: 15.84px;
	font-weight: 800;
	line-height: 1.2;
}

.lp-webservice3__flow-input span {
	display: block;
	margin-top: 5px;
	font-size: 8.64px;
	line-height: 1.2;
	color: var(--lp-text-light);
	white-space: nowrap;
}

.lp-webservice3__flow-input--pink {
	background: #fdeef2;
	border-color: #f8c9d6;
}

.lp-webservice3__flow-input--pink .lp-webservice3__flow-input-icon {
	background: #fff;
}

.lp-webservice3__flow-input--pink h5 {
	color: var(--lp-pink);
}

.lp-webservice3__flow-input--blue {
	background: var(--lp-blue-soft);
	border-color: #cfe0fb;
}

.lp-webservice3__flow-input--blue .lp-webservice3__flow-input-icon {
	background: #fff;
}

.lp-webservice3__flow-input--blue h5 {
	color: var(--lp-blue);
}

.lp-webservice3__flow-input--green {
	background: #e8f7ef;
	border-color: #bfe8d2;
}

.lp-webservice3__flow-input--green .lp-webservice3__flow-input-icon {
	background: #fff;
}

.lp-webservice3__flow-input--green h5 {
	color: #22a06b;
}

.lp-webservice3__flow-arrow {
	flex-shrink: 0;
	color: var(--lp-blue);
}

.lp-webservice3__flow-arrow svg {
	width: 18px;
	height: 18px;
}

.lp-webservice3__flow-cloud {
	flex: 0.3 0 163px;
	height: 235px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	padding: 24px 11px 33px;
}

.lp-webservice3__flow-cloud-icon {
	width: 35px;
	height: 35px;
}

.lp-webservice3__flow-cloud h4 {
	margin-top: 7px;
	font-size: 15.84px;
	font-weight: 800;
	color: var(--lp-blue-dark);
	line-height: 1.35;
}

.lp-webservice3__flow-cloud .lp-check-list {
	margin-top: 9px;
	padding-top: 9px;
	gap: 3px;
}

.lp-webservice3__flow-cloud .lp-check-list li {
	font-size: 9px;
	padding-left: 20px;
	text-align: left;
}

.lp-webservice3__flow-cloud .lp-check-list li::before {
	width: 13px;
	height: 13px;
}

.lp-webservice3__flow-cloud .lp-check-list li::after {
	left: 3.5px;
	top: 4px;
	width: 6px;
	height: 3.5px;
}

.lp-webservice3__flow-monitor {
	flex: 1 1 0;
	overflow: visible;
	min-width: 150px;
}

.lp-webservice3__flow-monitor img {
	width: 100%;
	margin: 0 auto;
}

.lp-webservice3__flow-note {
	margin-top: 14px;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	text-align: left;
	gap: 14px;
	background: #fdeef2;
	border-radius: 12px;
	padding: 18px 20px;
}

.lp-webservice3__flow-note-icon {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--lp-pink);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.lp-webservice3__flow-note-icon svg {
	width: 20px;
	height: 20px;
}

.lp-webservice3__flow-note-icon img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.lp-webservice3__flow-note p {
	font-size: 10px;
	font-weight: 700;
	color: var(--lp-blue-dark);
	line-height: 1.4;
}

.lp-webservice3__features {
	margin-top: 40px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	background: #fff;
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius);
	box-shadow: var(--lp-shadow);
}

.lp-webservice3__feature {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 28px 14px;
	border-right: 1px solid var(--lp-border);
}

.lp-webservice3__feature:last-child {
	border-right: none;
}

.lp-webservice3__feature-icon {
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

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

.lp-webservice3__feature h4 {
	font-size: 15px;
	font-weight: 800;
	color: var(--lp-blue-dark);
}

.lp-webservice3__feature p {
	margin-top: 6px;
	font-size: 11.7px;
	color: var(--lp-text-light);
	line-height: 1.6;
}

.lp-webservice3__banner {
	margin-top: 24px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 20px;
	background: linear-gradient(120deg, var(--lp-blue-bg), #fff);
	border-radius: var(--lp-radius);
	padding: 28px 36px;
}

.lp-webservice3__banner-icon {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: #fff;
	box-shadow: var(--lp-shadow);
	color: var(--lp-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.lp-webservice3__banner-icon img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.lp-webservice3__banner h3 {
	font-size: 22px;
	font-weight: 800;
	color: var(--lp-blue);
}

.lp-webservice3__banner p {
	margin-top: 6px;
	font-size: 15px;
	color: var(--lp-text-light);
}

@media (max-width: 960px) {
	.lp-webservice3__panels {
		grid-template-columns: 1fr;
	}
	.lp-webservice3__flow {
		flex-direction: column;
	}
	.lp-webservice3__flow-inputs {
		width: 100%;
	}
	.lp-webservice3__flow-arrow svg {
		transform: rotate(90deg);
	}
	.lp-webservice3__features {
		grid-template-columns: 1fr;
	}
	.lp-webservice3__feature {
		border-right: none;
		border-bottom: 1px solid var(--lp-border);
	}
	.lp-webservice3__feature:last-child {
		border-bottom: none;
	}
	.lp-webservice3__banner {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 640px) {
	/* スマホ表示のみ: 画像左・キャプション右の並びに切り替え */
	.lp-webservice3__phones {
		display: none;
	}
	.lp-webservice3__mobile-phones {
		display: flex;
		flex-direction: column;
		gap: 16px;
	}
	.lp-webservice3__mobile-phone {
		display: flex;
		align-items: center;
		gap: 18px;
		text-align: left;
	}
	.lp-webservice3__mobile-phone img {
		flex: 0 0 110px;
		width: 110px;
		max-width: 110px;
		border-radius: 16px;
		margin: 0;
	}
	.lp-webservice3__mobile-phone .lp-webservice3__phone-cap {
		flex: 0 1 50%;
		max-width: 50%;
		min-width: 0;
		gap: 9px;
		margin-bottom: 0;
	}
	.lp-webservice3__mobile-phone .lp-webservice3__phone-num {
		width: 36px;
		height: 36px;
		font-size: 18px;
	}
	.lp-webservice3__mobile-phone .lp-webservice3__phone-cap h4 {
		font-size: 15.75px;
	}
	.lp-webservice3__flow-input span {
		font-size: 12.96px;
	}
	.lp-webservice3__flow-inputs {
		width: 86%;
		max-width: 360px;
	}
	.lp-webservice3__flow-input {
		justify-content: center;
		text-align: center;
	}
	.lp-webservice3__flow-cloud .lp-check-list li {
		font-size: 13.5px;
	}
	.lp-webservice3__flow-note p {
		font-size: 15px;
	}
}

