@charset "UTF-8";

/*
 * D03-15B
 * LegalOnの比率と視線誘導を基準にした、複数パック対応ヒーロー。
 * すべての指定は .ftl-home-hero 配下へ閉じ込める。
 */

/*
 * SWELLがトップページ本文へ加える上余白を、ヒーローが先頭にある
 * このページだけ解除する。告知帯・透明ヘッダーから背景を連続させる。
 */
#body_wrap.top.ftl-has-home-hero #content {
	padding-top: 0 !important;
}

#body_wrap.top.ftl-has-home-hero #main_content .l-mainContent__inner > .post_content {
	margin-top: 0 !important;
}

/*
 * トップの通常ヘッダーは、同じ位置から始まるヒーロー背景を透過表示する。
 * 高さの異なる2要素で斜めグラデーションを別々に描かないため、
 * ヘッダーからヒーローまで一枚の背景として完全に連続する。
 * 下層ページの通常ヘッダーと、スクロール後の固定ヘッダーは対象外。
 */
#body_wrap.ftl-has-home-hero #header.-transparent .l-header__inner {
	background: transparent;
}

.ftl-home-hero {
	--ftl-hero-text: #fff;
	--ftl-hero-muted: #d9e3e7;
	--ftl-hero-secondary-bg: #050505;
	--ftl-hero-secondary-text: #fff;
	--ftl-hero-demo-accent: #0b74ff;
	--ftl-hero-demo-warning: #e8a63a;
	position: relative;
	isolation: isolate;
	width: calc(100vw - var(--swl-scrollbar_width, 0px));
	max-width: 100vw !important;
	margin-block: 0 !important;
	overflow: hidden;
	color: var(--ftl-hero-text);
	background: linear-gradient(
		115deg,
		var(--ftl-header-top-bg) 1%,
		var(--ftl-header-top-bg2) 120%
	);
}

.ftl-home-hero *,
.ftl-home-hero *::before,
.ftl-home-hero *::after {
	box-sizing: border-box;
}

.ftl-home-hero__slider {
	position: relative;
	width: min(100%, 1480px);
	margin: 0 auto;
}

.ftl-home-hero__slides {
	position: relative;
}

.ftl-home-hero__slide {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
	gap: 20px;
	width: 100%;
	align-items: center;
	min-height: 690px;
	padding: 54px 30px 26px;
	opacity: 0;
	visibility: hidden;
	transform: translateX(18px);
	transition:
		opacity .5s ease,
		transform .65s cubic-bezier(.22, 1, .36, 1),
		visibility 0s linear .65s;
	pointer-events: none;
}

.ftl-home-hero__slider.has-multiple .ftl-home-hero__slide {
	padding-bottom: 82px;
}

.ftl-home-hero__slide.is-active {
	position: relative;
	z-index: 2;
	opacity: 1;
	visibility: visible;
	transform: none;
	transition-delay: 0s;
	pointer-events: auto;
}

.ftl-home-hero__copy {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	max-width: 590px;
	padding: 38px 0;
}

.ftl-home-hero__eyebrow {
	margin: 0 0 20px;
	color: var(--ftl-hero-muted);
	color: color-mix(in srgb, var(--ftl-hero-muted) 92%, transparent);
	font-size: var(--ftl-hero-eyebrow-size-pc, 13px);
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: .08em;
}

.post_content .ftl-home-hero__heading {
	max-width: 610px;
	margin: 0;
	color: var(--ftl-hero-text);
	font-family: inherit;
	font-size: clamp(
		var(--ftl-hero-heading-min-pc, 48px),
		var(--ftl-hero-heading-fluid-pc, 4.15vw),
		var(--ftl-hero-heading-size-pc, 60px)
	);
	font-weight: 400;
	line-height: 1.18;
	letter-spacing: -.035em;
	text-wrap: balance;
}

.ftl-home-hero__lead {
	max-width: 535px;
	margin: 28px 0 0;
	color: var(--ftl-hero-muted);
	font-size: var(--ftl-hero-lead-size-pc, 17px);
	font-weight: 400;
	line-height: 1.78;
}

.ftl-home-hero__facts {
	max-width: 540px;
	margin: 18px 0 0;
	padding-left: 14px;
	border-left: 2px solid var(--ftl-header-top-accent);
	color: var(--ftl-hero-muted);
	color: color-mix(in srgb, var(--ftl-hero-muted) 86%, transparent);
	font-size: var(--ftl-hero-facts-size-pc, 12px);
	line-height: 1.7;
}

.ftl-home-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

/*
 * PCでは2つの主要導線を一度に比較できるよう、常に横一列で表示する。
 * スマートフォンは下の959px以下の指定で縦並びへ戻す。
 */
@media (min-width: 960px) {
	.ftl-home-hero__buttons {
		flex-wrap: nowrap;
	}
}

.ftl-hero-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-height: 52px;
	padding: 4px 23px 4px 4px;
	border: 1px solid transparent;
	border-radius: 9999px;
	font-size: var(--ftl-hero-button-size-pc, 15px);
	font-weight: 800;
	line-height: 1.35;
	letter-spacing: .005em;
	text-decoration: none !important;
	white-space: nowrap;
	transition:
		transform .2s ease,
		filter .2s ease;
}

.ftl-hero-button:hover {
	transform: translateY(-2px);
	filter: brightness(.98);
}

.ftl-hero-button:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 4px;
}

.ftl-hero-button__icon {
	display: grid;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	color: var(--ftl-header-cta-text);
	background: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	place-items: center;
}

.ftl-hero-button--primary {
	color: var(--ftl-header-cta-text);
	background: var(--ftl-header-cta-bg);
}

.ftl-hero-button--secondary {
	color: var(--ftl-hero-secondary-text);
	background: var(--ftl-hero-secondary-bg);
}

.ftl-home-hero__cta-note {
	margin: 13px 0 0;
	color: var(--ftl-hero-muted);
	color: color-mix(in srgb, var(--ftl-hero-muted) 84%, transparent);
	font-size: var(--ftl-hero-note-size-pc, 12px);
	line-height: 1.55;
}

.ftl-home-hero__visual {
	position: relative;
	align-self: center;
	min-width: 0;
	margin: 0;
	padding: 40px 0 0;
}

.ftl-home-hero__visual-label {
	position: absolute;
	top: 28px;
	left: 12px;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 5px 11px;
	border: 1px solid rgba(255, 255, 255, .25);
	border-radius: 999px;
	color: rgba(255, 255, 255, .94);
	background: rgba(8, 25, 37, .28);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .03em;
	backdrop-filter: blur(7px);
}

.ftl-home-hero__visual-frame {
	position: relative;
	width: 100%;
	aspect-ratio: 1.22 / 1;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 6px;
	background: #f6f8fb;
	box-shadow: 0 18px 48px rgba(7, 22, 35, .18);
}

.ftl-home-hero__visual-frame.is-uploaded {
	display: grid;
	place-items: center;
}

.ftl-home-hero__visual-frame.is-builtin {
	overflow: visible;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.ftl-hero-media__asset {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: #f6f8fb;
}

.ftl-home-hero__visual figcaption {
	position: absolute;
	right: 2px;
	bottom: -22px;
	margin: 0;
	color: var(--ftl-hero-muted);
	color: color-mix(in srgb, var(--ftl-hero-muted) 82%, transparent);
	font-size: 11px;
	line-height: 1.55;
}

/* Built-in animated product demo. */
.ftl-demo {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: visible;
	color: #162337;
	background: transparent;
	font-family: inherit;
}

.ftl-demo::after {
	position: absolute;
	right: -14%;
	bottom: -19%;
	width: 55%;
	aspect-ratio: 1;
	border: 54px solid rgba(255, 255, 255, .08);
	border-color: color-mix(in srgb, var(--ftl-hero-demo-accent) 10%, transparent);
	border-radius: 50%;
	content: "";
	z-index: 0;
	pointer-events: none;
}

.ftl-demo__browser {
	position: absolute;
	top: 2%;
	right: 0;
	width: 76%;
	height: 86%;
	z-index: 1;
	overflow: hidden;
	border: 1px solid #dbe3ed;
	border-radius: 5px;
	background: #fff;
	box-shadow: 0 16px 36px rgba(14, 35, 57, .13);
}

.ftl-demo__bar {
	display: flex;
	align-items: center;
	gap: 6px;
	height: 8%;
	min-height: 27px;
	padding: 0 13px;
	background: #e7ecf2;
}

.ftl-demo__bar i {
	display: block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #b4bfcc;
}

.ftl-demo__body {
	padding: 4.5% 4.5% 0;
}

.ftl-demo__title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 5%;
}

.ftl-demo__title strong {
	font-size: clamp(11px, 1.15vw, 17px);
	font-weight: 800;
}

.ftl-demo__title > span {
	padding: 5px 8px;
	border-radius: 999px;
	color: #075ec9;
	background: #e8f2ff;
	font-size: clamp(7px, .7vw, 10px);
	font-weight: 700;
	white-space: nowrap;
}

.ftl-demo__table {
	overflow: hidden;
	border: 1px solid #e2e8f0;
	border-radius: 4px;
}

.ftl-demo__row {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) minmax(42px, .55fr) minmax(55px, .8fr);
	align-items: center;
	min-height: clamp(34px, 4vw, 52px);
	border-bottom: 1px solid #edf1f5;
	font-size: clamp(7px, .82vw, 12px);
}

.ftl-demo__row:last-child {
	border-bottom: 0;
}

.ftl-demo__row--head {
	min-height: clamp(27px, 3vw, 38px);
	color: #687688;
	background: #f6f8fa;
	font-size: clamp(7px, .72vw, 10px);
	font-weight: 700;
}

.ftl-demo__row span {
	min-width: 0;
	padding: 0 9%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ftl-demo__status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 72px;
	min-height: 21px;
	padding: 3px 6px;
	border-radius: 999px;
	font-size: inherit;
	font-weight: 700;
}

.ftl-demo__status--1 {
	color: #8b5b00;
	background: #fff1d6;
}

.ftl-demo__status--2 {
	color: #075ec9;
	background: #e8f2ff;
}

.ftl-demo__status--3 {
	color: #13744a;
	background: #e1f6eb;
}

.ftl-demo__summary {
	margin-top: 4.5%;
	padding: 3.5%;
	border: 1px solid #e2e8f0;
	border-radius: 4px;
	background: #f8fafc;
}

.ftl-demo__summary > strong {
	display: block;
	margin-bottom: 2.8%;
	font-size: clamp(8px, .82vw, 12px);
}

.ftl-demo__summary > div {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 6px;
}

.ftl-demo__summary span {
	display: flex;
	align-items: center;
	min-height: clamp(24px, 2.8vw, 38px);
	padding: 4px 8px;
	border-left: 3px solid #d4deea;
	color: #536176;
	background: #fff;
	font-size: clamp(6px, .67vw, 9px);
	font-weight: 700;
	white-space: nowrap;
}

.ftl-demo__summary span:first-child {
	border-left-color: var(--ftl-hero-demo-warning);
}

.ftl-demo__summary span:nth-child(2) {
	border-left-color: var(--ftl-hero-demo-accent);
}

.ftl-demo__summary span:last-child {
	border-left-color: #2a9c68;
}

.ftl-demo__events {
	position: absolute;
	top: 30%;
	left: 0;
	z-index: 4;
	width: 43%;
	height: 23%;
}

.ftl-demo__event {
	--ftl-event-delay: 0s;
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: clamp(28px, 3.4vw, 46px) minmax(0, 1fr);
	gap: 11px;
	align-items: start;
	padding: clamp(12px, 1.6vw, 22px);
	border: 1px solid #d9e1eb;
	border-radius: 5px;
	opacity: 0;
	background: rgba(255, 255, 255, .98);
	box-shadow: 0 18px 42px rgba(18, 40, 63, .2);
	transform: translateY(16px) scale(.98);
	animation: ftl-demo-event-cycle 12s var(--ftl-event-delay) infinite;
}

.ftl-demo__event--2 {
	--ftl-event-delay: 3s;
}

.ftl-demo__event--3 {
	--ftl-event-delay: 6s;
}

.ftl-demo__event--4 {
	--ftl-event-delay: 9s;
}

.ftl-demo__event-icon {
	display: grid;
	width: clamp(28px, 3.4vw, 46px);
	aspect-ratio: 1;
	border-radius: 50%;
	color: #fff;
	background: var(--ftl-hero-demo-accent);
	font-size: clamp(9px, 1vw, 13px);
	font-weight: 800;
	place-items: center;
}

.ftl-demo__event--4 .ftl-demo__event-icon {
	color: #3a2500;
	background: #ffd27b;
}

.ftl-demo__event strong {
	display: block;
	margin: 1px 0 5px;
	font-size: clamp(9px, 1.05vw, 14px);
	font-weight: 800;
}

.ftl-demo__event p {
	margin: 0;
	color: #657387;
	font-size: clamp(7px, .78vw, 11px);
	line-height: 1.55;
}

.ftl-demo__progress {
	position: absolute;
	right: 4.5%;
	bottom: 7%;
	left: 4.5%;
	z-index: 3;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 5px;
	padding-top: 18px;
	color: rgba(255, 255, 255, .78);
	font-size: clamp(6px, .72vw, 10px);
	font-weight: 700;
	text-align: center;
}

.ftl-demo__progress-line {
	position: absolute;
	top: 2px;
	right: 11.5%;
	left: 11.5%;
	height: 2px;
	background: rgba(255, 255, 255, .28);
}

.ftl-demo__progress-line::before,
.ftl-demo__progress-line::after {
	position: absolute;
	top: 50%;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .56);
	content: "";
	transform: translateY(-50%);
}

.ftl-demo__progress-line::before {
	left: 0;
}

.ftl-demo__progress-line::after {
	right: 0;
}

.ftl-demo__progress-line i {
	position: absolute;
	top: 50%;
	left: 0;
	width: 12px;
	height: 12px;
	border: 3px solid #fff;
	border-radius: 50%;
	background: var(--ftl-hero-demo-accent);
	box-shadow: 0 2px 8px rgba(11, 116, 255, .35);
	transform: translate(0, -50%);
	animation: ftl-demo-progress 12s ease-in-out infinite;
}

@keyframes ftl-demo-event-cycle {
	0%,
	2% {
		opacity: 0;
		transform: translateY(16px) scale(.98);
	}
	6%,
	20% {
		opacity: 1;
		transform: none;
	}
	24%,
	100% {
		opacity: 0;
		transform: translateY(-10px) scale(.985);
	}
}

@keyframes ftl-demo-progress {
	0%,
	18% {
		left: 0;
	}
	25%,
	43% {
		left: 33.333%;
	}
	50%,
	68% {
		left: 66.666%;
	}
	75%,
	94% {
		left: calc(100% - 12px);
	}
	100% {
		left: 0;
	}
}

.ftl-home-hero__slide:not(.is-active) .ftl-demo *,
.ftl-home-hero__slider.is-motion-reduced .ftl-demo * {
	animation-play-state: paused !important;
}

.ftl-home-hero__switcher {
	position: absolute;
	right: 30px;
	bottom: 22px;
	left: 30px;
	z-index: 6;
	display: flex;
	gap: 8px;
	align-items: center;
	padding: 2px 0;
}

.ftl-home-hero__switcher-tabs {
	display: flex;
	flex: 1 1 auto;
	gap: 8px;
	min-width: 0;
	overflow-x: auto;
	padding: 3px;
	scrollbar-width: none;
}

.ftl-home-hero__switcher-tabs::-webkit-scrollbar {
	display: none;
}

.ftl-home-hero__switch {
	position: relative;
	flex: 0 0 auto;
	min-height: 44px;
	padding: 8px 17px;
	border: 1px solid rgba(255, 255, 255, .24);
	border-radius: 999px;
	color: rgba(255, 255, 255, .72);
	background: rgba(8, 25, 37, .18);
	font: inherit;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	transition:
		color .2s ease,
		background .2s ease,
		border-color .2s ease;
}

.ftl-home-hero__switch:hover,
.ftl-home-hero__switch.is-active {
	border-color: rgba(255, 255, 255, .72);
	color: #fff;
	background: rgba(8, 25, 37, .42);
}

.ftl-home-hero__switch:focus-visible {
	outline: 3px solid var(--ftl-header-cta-bg);
	outline-offset: 3px;
}

.ftl-home-hero__autoplay {
	display: inline-flex;
	flex: 0 0 auto;
	gap: 7px;
	align-items: center;
	min-height: 44px;
	padding: 8px 14px;
	border: 0;
	border-radius: 999px;
	color: rgba(255, 255, 255, .88);
	background: rgba(8, 25, 37, .34);
	font: inherit;
	font-size: 11px;
	font-weight: 700;
	cursor: pointer;
}

.ftl-home-hero__autoplay:focus-visible {
	outline: 3px solid var(--ftl-header-cta-bg);
	outline-offset: 3px;
}

@media (min-width: 960px) and (max-width: 1199px) {
	.ftl-home-hero__slide {
		grid-template-columns: minmax(420px, 9fr) minmax(0, 11fr);
		min-height: 570px;
		padding-top: 44px;
	}

	.post_content .ftl-home-hero__heading {
		font-size: clamp(
			var(--ftl-hero-heading-min-tab, 43px),
			var(--ftl-hero-heading-fluid-tab, 4.7vw),
			var(--ftl-hero-heading-max-tab, 51px)
		);
	}

	.ftl-home-hero__lead {
		margin-top: 24px;
		font-size: var(--ftl-hero-lead-size-tab, 15px);
	}

}

/*
 * 960〜1279pxでは右側の画面イメージを狭めずに横並びを維持するため、
 * ボタンだけを段階的に小さくする。文字サイズ設定との連動は残しつつ、
 * この幅で安全な11〜13pxへ補正する。
 */
@media (min-width: 960px) and (max-width: 1279px) {
	.ftl-home-hero__buttons {
		gap: 8px;
		margin-top: 28px;
	}

	.ftl-hero-button {
		gap: 7px;
		min-height: 44px;
		padding: 3px 11px 3px 3px;
		font-size: clamp(
			11px,
			calc(var(--ftl-hero-button-size-tab, 13px) - 1px),
			13px
		);
	}

	.ftl-hero-button__icon {
		flex-basis: 34px;
		width: 34px;
		height: 34px;
		font-size: 16px;
	}
}

/*
 * 一般的なノートPC幅では、通常サイズへ急に戻して右端が切れないよう、
 * 小型と通常の中間寸法を使う。1440px以上で通常寸法へ戻す。
 */
@media (min-width: 1280px) and (max-width: 1439px) {
	.ftl-home-hero__buttons {
		gap: 8px;
		margin-top: 28px;
	}

	.ftl-hero-button {
		gap: 9px;
		min-height: 48px;
		padding: 4px 15px 4px 4px;
		font-size: var(--ftl-hero-button-size-tab, 13px);
	}

	.ftl-hero-button__icon {
		flex-basis: 38px;
		width: 38px;
		height: 38px;
		font-size: 17px;
	}
}

@media not all and (min-width: 960px) {
	.ftl-home-hero__slide {
		grid-template-columns: minmax(0, 1fr);
		gap: 18px;
		min-height: 0;
		padding: 92px 20px 24px;
	}

	.ftl-home-hero__slider.has-multiple .ftl-home-hero__slide {
		padding-bottom: 78px;
	}

	.ftl-home-hero__copy {
		max-width: none;
		padding: 0;
	}

	.ftl-home-hero__eyebrow {
		margin-bottom: 15px;
		font-size: var(--ftl-hero-eyebrow-size-sp, 11px);
	}

	.post_content .ftl-home-hero__heading {
		max-width: 650px;
		font-size: clamp(
			var(--ftl-hero-heading-min-sp, 34px),
			var(--ftl-hero-heading-fluid-sp, 9.8vw),
			var(--ftl-hero-heading-size-sp, 42px)
		);
		line-height: 1.17;
		letter-spacing: -.032em;
	}

	.ftl-home-hero__lead {
		max-width: 620px;
		margin-top: 24px;
		font-size: var(--ftl-hero-lead-size-sp, 16px);
		line-height: 1.72;
	}

	.ftl-home-hero__facts {
		margin-top: 15px;
		font-size: var(--ftl-hero-facts-size-sp, 11px);
	}

	.ftl-home-hero__buttons {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 11px;
		margin-top: 28px;
	}

	.ftl-hero-button {
		width: max-content;
		max-width: 100%;
		min-height: 50px;
		font-size: var(--ftl-hero-button-size-sp, 15px);
	}

	.ftl-hero-button__icon {
		flex-basis: 40px;
		width: 40px;
		height: 40px;
	}

	.ftl-home-hero__cta-note {
		font-size: var(--ftl-hero-note-size-sp, 11px);
	}

	.ftl-home-hero__visual {
		width: 100%;
		padding: 34px 0 20px;
	}

	.ftl-home-hero__visual-label {
		top: 4px;
		left: 8px;
	}

	.ftl-home-hero__visual-frame {
		aspect-ratio: 1.21 / 1;
	}

	.ftl-home-hero__switcher {
		right: 20px;
		bottom: 20px;
		left: 20px;
	}

	.ftl-home-hero__switcher-tabs {
		scroll-snap-type: x proximity;
	}

	.ftl-home-hero__switch {
		scroll-snap-align: start;
	}

	.ftl-home-hero__autoplay {
		width: 44px;
		padding: 8px;
		justify-content: center;
	}

	.ftl-home-hero__autoplay [data-ftl-hero-autoplay-label] {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border: 0;
	}

	.ftl-demo__browser {
		width: 68%;
	}

	.ftl-demo__events {
		width: 43%;
	}
}

@media (max-width: 374px) {
	.ftl-home-hero__slide {
		padding-right: 16px;
		padding-left: 16px;
	}

	.post_content .ftl-home-hero__heading {
		font-size: max(
			var(--ftl-hero-heading-size-xs, 29px),
			min(
				var(--ftl-hero-heading-fluid-sp, 9.8vw),
				calc((100vw - 32px) * .11)
			)
		);
	}

	.ftl-home-hero__lead {
		font-size: var(--ftl-hero-lead-size-sp, 16px);
	}

	.ftl-home-hero__switcher {
		right: 16px;
		left: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ftl-home-hero__slide,
	.ftl-hero-button,
	.ftl-home-hero__switch {
		transition: none !important;
	}

	.ftl-demo__event {
		display: none;
		animation: none !important;
	}

	.ftl-demo__event--4 {
		display: grid;
		opacity: 1;
		transform: none;
	}

	.ftl-demo__progress-line i {
		left: calc(100% - 12px);
		animation: none !important;
	}

	.ftl-home-hero__autoplay {
		display: none;
	}
}

/*
 * Marketing review phase 1.
 * The first view is the official brand thesis, not an individual product LP.
 */
.ftl-home-hero__eyebrow {
	display: inline-block;
	width: fit-content;
	padding: 7px 11px;
	border: 1px solid rgba(255, 255, 255, .25);
	border-radius: 4px;
	background: rgba(8, 25, 37, .16);
	line-height: 1.55;
	letter-spacing: .055em;
}

.post_content .ftl-home-hero__heading {
	word-break: keep-all;
	overflow-wrap: normal;
}

.ftl-home-hero__lead {
	color: var(--ftl-hero-text);
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: -.018em;
}

.ftl-home-hero__facts {
	font-size: var(--ftl-hero-facts-size-pc, 16px);
	line-height: 1.9;
}

.ftl-home-hero__cta-note {
	display: flex;
	flex-wrap: wrap;
	gap: 7px 16px;
	padding: 0;
	list-style: none;
}

.ftl-home-hero__cta-note li {
	position: relative;
	margin: 0;
	padding-left: 15px;
	line-height: 1.55;
}

.ftl-home-hero__cta-note li::before {
	position: absolute;
	top: .66em;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--ftl-header-top-accent);
	content: "";
	transform: translateY(-50%);
}

.ftl-demo__row {
	grid-template-columns: minmax(0, 1.05fr) minmax(54px, .65fr) minmax(90px, 1.2fr);
}

.ftl-demo__status {
	max-width: none;
	white-space: nowrap;
}

@media not all and (min-width: 960px) {
	.ftl-home-hero__slide {
		padding-top: 84px;
	}

	.ftl-home-hero__eyebrow {
		margin-bottom: 18px;
	}

	.ftl-home-hero__lead {
		font-size: var(--ftl-hero-lead-size-sp, 21px);
		line-height: 1.55;
	}

	.ftl-home-hero__facts {
		font-size: max(15px, var(--ftl-hero-facts-size-sp, 16px));
		line-height: 1.85;
	}

	.ftl-home-hero__cta-note {
		display: grid;
		gap: 6px;
		font-size: max(12px, var(--ftl-hero-note-size-sp, 12px));
	}
}
