/* ============================================
   Nagasaki Sightseeing Bus — Page Styles
   Palette: warm cream / terracotta / soft teal
============================================ */

:root {
	--c-bg: #fdf7ef;
	--c-bg-soft: #fbefe1;
	--c-bg-card: #ffffff;
	--c-primary: #e27d5c;
	--c-primary-d: #c5634a;
	--c-primary-l: #f6b199;
	--c-accent: #4a90a4;
	--c-accent-d: #2e6c7f;
	--c-accent-l: #c1dde3;
	--c-ink: #2d4758;
	--c-ink-l: #5b7485;
	--c-gold: #d4a544;
	--c-gold-d: #a87d26;
	--c-gold-l: #f6e6b8;
	--c-text: #3d3532;
	--c-text-sub: #7a6e68;
	--c-text-mute: #ab9f97;
	--c-border: #ead9c6;
	--c-border-l: #f3e6d4;
	--c-text-price: #ff0000;
	--nav-h: 88px;
	--max-w: 1280px;
	--radius: 18px;
	--radius-sm: 10px;
	--shadow-sm: 0 2px 8px rgba(85, 55, 40, 0.06);
	--shadow-md: 0 10px 30px rgba(85, 55, 40, 0.08);
	--shadow-lg: 0 20px 60px rgba(85, 55, 40, 0.12);

	--f-sans: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
	--f-serif: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--f-sans);
	font-size: 16px;
	line-height: 1.8;
	color: var(--c-text);
	background: var(--c-bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img,
svg {
	max-width: 100%;
	display: block;
}

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

ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
p,
dl,
dd,
figure {
	margin: 0;
}

button {
	font: inherit;
	cursor: pointer;
	background: none;
	border: 0;
}

/* ==========================================================
   HERO
========================================================== */
.hero {
	position: relative;
	height: min(90vh, 720px);
	min-height: 520px;
	overflow: hidden;
	isolation: isolate;
}

.hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero__bg picture {
	display: block;
	width: 100%;
	height: 100%;
}

.hero__bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.hero__bg-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(40, 25, 15, 0.15) 0%, rgba(40, 25, 15, 0) 40%, rgba(40, 25, 15, 0.35) 100%);
}

.hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 24px;
}

.hero__inner {
	position: relative;
	text-align: center;
	color: #fff;
	max-width: 920px;
	padding: 48px 32px;
}

.hero__inner::before,
.hero__inner::after {
	content: "";
	position: absolute;
	width: 28px;
	height: 28px;
	border: 1px solid rgba(255, 255, 255, 0.55);
	pointer-events: none;
}

.hero__inner::before {
	top: 0;
	left: 0;
	border-right: 0;
	border-bottom: 0;
}

.hero__inner::after {
	bottom: 0;
	right: 0;
	border-left: 0;
	border-top: 0;
}

/* ----- Brand chip (top) ----- */
.hero__brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 10px 22px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 999px;
	background: rgba(30, 15, 8, 0.18);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	margin-bottom: 36px;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.hero__brand-mark {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #fff6e0;
	box-shadow: 0 0 0 3px rgba(255, 246, 224, 0.25);
}

.hero__brand-ja {
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.2em;
}

.hero__brand-divider {
	width: 1px;
	height: 12px;
	background: rgba(255, 255, 255, 0.55);
}

.hero__brand-en {
	font-size: 10px;
	letter-spacing: 0.3em;
	opacity: 0.85;
	font-weight: 500;
}

/* ----- Headline ----- */
.hero__headline {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	margin: 0 0 36px;
	font-family: var(--f-serif);
	text-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
}

.hero__headline-lead {
	font-weight: 500;
	font-size: clamp(16px, 2.4vw, 22px);
	letter-spacing: 0.22em;
	padding-bottom: 14px;
	position: relative;
	opacity: 0.95;
}

.hero__headline-lead::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 44px;
	height: 1px;
	background: rgba(255, 246, 224, 0.85);
}

.hero__headline-main {
	font-weight: 900;
	font-size: clamp(44px, 8.5vw, 86px);
	letter-spacing: 0.06em;
	line-height: 1.15;
	color: #fff;
}

.hero__headline-em {
	position: relative;
	display: inline-block;
	font-style: normal;
	color: #fff6e0;
	padding: 0 0.08em;
	margin: 0 0.04em;
	z-index: 0;
}

.hero__headline-em::before {
	content: "";
	position: absolute;
	left: -8%;
	right: -8%;
	bottom: 8%;
	height: 28%;
	background: linear-gradient(100deg, rgba(226, 125, 92, 0.9), rgba(255, 180, 140, 0.7));
	border-radius: 999px;
	transform: skew(-6deg);
	z-index: -1;
}

/* ----- Descriptor ----- */
.hero__desc {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	font-size: clamp(12px, 1.5vw, 14px);
	letter-spacing: 0.3em;
	opacity: 0.95;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
	font-weight: 500;
}

.hero__desc-rule {
	display: inline-block;
	width: 40px;
	height: 1px;
	background: rgba(255, 246, 224, 0.8);
}

.hero__scroll {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -90px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	font-size: 11px;
	letter-spacing: 0.3em;
	opacity: 0.85;
}

.hero__scroll-line {
	width: 1px;
	height: 40px;
	background: #fff;
	animation: scroll-line 2s ease-in-out infinite;
	transform-origin: top;
}

@keyframes scroll-line {
	0% {
		transform: scaleY(0);
		transform-origin: top;
	}

	50% {
		transform: scaleY(1);
		transform-origin: top;
	}

	51% {
		transform: scaleY(1);
		transform-origin: bottom;
	}

	100% {
		transform: scaleY(0);
		transform-origin: bottom;
	}
}

/* ==========================================================
   ANCHOR NAV (sticky)
========================================================== */
.anchor-nav {
	position: sticky;
	top: 0;
	z-index: 50;
	background:
		linear-gradient(180deg, #fff7ed 0%, #fff1e1 100%);
	border-bottom: 1px solid var(--c-border);
	box-shadow: 0 6px 20px rgba(85, 55, 40, 0.08);
}

.anchor-nav__inner {
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: stretch;
	gap: 24px;
}

.anchor-nav__heading {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-right: 24px;
	border-right: 1px dashed var(--c-border);
	font-family: var(--f-serif);
}

.anchor-nav__heading-en {
	display: block;
	font-size: 11px;
	letter-spacing: 0.35em;
	color: var(--c-primary);
	font-weight: 700;
	line-height: 1;
	margin-bottom: 4px;
}

.anchor-nav__heading-ja {
	display: block;
	font-size: 16px;
	color: var(--c-text);
	font-weight: 700;
	letter-spacing: 0.2em;
}

.anchor-nav__list {
	flex: 1 1 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
}

.anchor-nav__item {
	display: flex;
}

.anchor-nav__link {
	flex: 1;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 14px;
	padding: 18px 20px;
	color: var(--c-text-sub);
	position: relative;
	border-bottom: 4px solid transparent;
	transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.anchor-nav__link::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -4px;
	height: 4px;
	background: var(--c-primary);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s ease;
}

.anchor-nav__link:hover {
	color: var(--c-primary-d);
	background: rgba(255, 255, 255, 0.6);
}

.anchor-nav__link:hover::before,
.anchor-nav__link.is-active::before {
	transform: scaleX(1);
}

.anchor-nav__link.is-active {
	color: var(--c-primary-d);
	background: rgba(255, 255, 255, 0.8);
}

.anchor-nav__num {
	font-family: var(--f-serif);
	font-size: 22px;
	font-weight: 700;
	color: var(--c-primary);
	letter-spacing: 0.05em;
	line-height: 1;
}

.anchor-nav__item:nth-child(2) .anchor-nav__num {
	color: var(--c-accent);
}

.anchor-nav__item:nth-child(3) .anchor-nav__num {
	color: var(--c-gold-d);
}

.anchor-nav__item:nth-child(2) .anchor-nav__link::before {
	background: var(--c-accent);
}

.anchor-nav__item:nth-child(3) .anchor-nav__link::before {
	background: var(--c-gold);
}

.anchor-nav__item:nth-child(2) .anchor-nav__link:hover,
.anchor-nav__item:nth-child(2) .anchor-nav__link.is-active {
	color: var(--c-accent-d);
}

.anchor-nav__item:nth-child(2) .anchor-nav__link:hover .anchor-nav__arrow,
.anchor-nav__item:nth-child(2) .anchor-nav__link.is-active .anchor-nav__arrow {
	background: var(--c-accent);
	color: #fff;
}

.anchor-nav__item:nth-child(3) .anchor-nav__link:hover,
.anchor-nav__item:nth-child(3) .anchor-nav__link.is-active {
	color: var(--c-gold-d);
}

.anchor-nav__item:nth-child(3) .anchor-nav__link:hover .anchor-nav__arrow,
.anchor-nav__item:nth-child(3) .anchor-nav__link.is-active .anchor-nav__arrow {
	background: var(--c-gold);
	color: #fff;
}

.anchor-nav__body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.anchor-nav__label {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--c-text);
	line-height: 1.3;
	white-space: nowrap;
}

.anchor-nav__sub {
	font-family: var(--f-serif);
	font-size: 10px;
	letter-spacing: 0.3em;
	color: var(--c-text-mute);
	line-height: 1;
}

.anchor-nav__link.is-active .anchor-nav__label {
	color: var(--c-primary-d);
}

.anchor-nav__arrow {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #fff;
	color: var(--c-primary);
	display: grid;
	place-items: center;
	font-size: 14px;
	font-weight: 700;
	box-shadow: 0 2px 6px rgba(85, 55, 40, 0.1);
	transition: transform 0.2s ease, background 0.2s ease;
}

.anchor-nav__link:hover .anchor-nav__arrow,
.anchor-nav__link.is-active .anchor-nav__arrow {
	background: var(--c-primary);
	color: #fff;
	transform: translateY(2px);
}

/* ==========================================================
   COMMON SECTION
========================================================== */
.main {
	position: relative;
}

.section {
	padding: 96px 0 80px;
	position: relative;
}

.section--soft {
	background: var(--c-bg-soft);
}

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

.section__head {
	text-align: center;
	margin-bottom: 56px;
}

.section__kicker {
	font-family: var(--f-serif);
	letter-spacing: 0.35em;
	font-size: 13px;
	color: var(--c-primary);
	margin-bottom: 14px;
}

.section__title {
	font-family: var(--f-serif);
	font-weight: 900;
	font-size: clamp(26px, 4vw, 38px);
	letter-spacing: 0.08em;
	color: var(--c-text);
	line-height: 1.4;
	position: relative;
	display: inline-block;
	padding-bottom: 20px;
}

.section__title::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 48px;
	height: 3px;
	background: var(--c-primary);
	border-radius: 3px;
}

.section__desc {
	margin-top: 28px;
	color: var(--c-text-sub);
	font-size: 15px;
	line-height: 2;
}

/* Section-specific accent colors (メリハリ) */
.section--charm .section__kicker {
	color: var(--c-accent);
}

.section--charm .section__title::after {
	background: var(--c-accent);
}

.section--spots .section__kicker {
	color: var(--c-ink);
}

.section--spots .section__title::after {
	background: linear-gradient(90deg, var(--c-ink), var(--c-accent));
}

.section--faq .section__kicker {
	color: var(--c-gold-d);
}

.section--faq .section__title::after {
	background: var(--c-gold);
}

/* ==========================================================
   TABS
========================================================== */
.tabs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	background: var(--c-bg-card);
	padding: 10px;
	border-radius: 16px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--c-border-l);
	margin-bottom: 40px;
}

.tabs__btn {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 20px;
	border-radius: 12px;
	color: var(--c-text-sub);
	text-align: left;
	transition: all 0.2s ease;
	position: relative;
	overflow: hidden;
}

.tabs__btn:hover {
	background: #fff6ec;
	color: var(--c-primary-d);
}

.tabs__btn.is-active {
	background: var(--c-primary);
	color: #fff;
	box-shadow: 0 6px 18px rgba(226, 125, 92, 0.3);
}

.tabs__btn:nth-child(2).is-active {
	background: var(--c-accent);
	box-shadow: 0 6px 18px rgba(74, 144, 164, 0.3);
}

.tabs__btn:nth-child(3).is-active {
	background: linear-gradient(135deg, var(--c-primary), var(--c-gold-d));
	box-shadow: 0 6px 18px rgba(212, 165, 68, 0.3);
}

.tabs__btn:nth-child(2):hover {
	color: var(--c-accent-d);
	background: #eaf4f5;
}

.tabs__btn:nth-child(3):hover {
	color: var(--c-gold-d);
	background: #fbf3de;
}

.tabs__btn-num {
	font-family: var(--f-serif);
	font-size: 22px;
	font-weight: 700;
	opacity: 0.7;
	line-height: 1;
	flex: 0 0 auto;
}

.tabs__btn.is-active .tabs__btn-num {
	opacity: 1;
}

.tabs__btn-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.tabs__btn-title {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.3;
}

.tabs__btn-sub {
	font-size: 11px;
	letter-spacing: 0.12em;
	opacity: 0.75;
	line-height: 1;
}

/* ==========================================================
   COURSE
========================================================== */
.course-list {
	display: block;
}

.course {
	background: var(--c-bg-card);
	border-radius: var(--radius);
	padding: 48px clamp(24px, 4vw, 56px);
	box-shadow: var(--shadow-md);
	border: 1px solid var(--c-border-l);
	position: relative;
}

.course[hidden] {
	display: none;
}

.course--combo {
	background: linear-gradient(180deg, #fff7ec 0%, #ffffff 40%);
	border-color: var(--c-primary-l);
}

.course__ribbon {
	position: absolute;
	top: -14px;
	right: 32px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	padding: 9px 22px;
	border-radius: 999px;
	box-shadow: 0 6px 18px rgba(85, 55, 40, 0.15);
}

.course__ribbon--am {
	background: linear-gradient(135deg, #e6a26a, #d88652);
}

.course__ribbon--pm {
	background: linear-gradient(135deg, #7fb3b9, #4f868b);
}

.course__ribbon--full {
	background: linear-gradient(135deg, #e27d5c, #c5634a);
}

.course__head {
	margin-bottom: 28px;
}

.course__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}

.course__badge {
	display: inline-block;
	padding: 5px 13px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.course__badge--am {
	background: #fff1e4;
	color: var(--c-primary-d);
	border: 1px solid #ffd7b8;
}

.course__badge--pm {
	background: #eaf2f3;
	color: var(--c-accent-d);
	border: 1px solid #c9e0e2;
}

.course__badge--full {
	background: var(--c-primary);
	color: #fff;
}

.course__badge--guide {
	background: #fff;
	color: var(--c-text-sub);
	border: 1px solid var(--c-border);
}

.course__title {
	font-family: var(--f-serif);
	font-weight: 700;
	font-size: clamp(24px, 3.2vw, 32px);
	letter-spacing: 0.05em;
	margin-bottom: 8px;
}

.course__subtitle {
	color: var(--c-text-sub);
	font-size: 14.5px;
}

/* ----- Course Gallery (2枚並びのイメージ) ----- */
.course__gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 32px;
}

.course__gallery-item {
	margin: 0;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 12px;
	background: var(--c-border-l);
	box-shadow: var(--shadow-sm);
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course__gallery-item:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.course__gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.course__gallery-item:hover img {
	transform: scale(1.04);
}

/* ----- Highlights ----- */
.highlights {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-bottom: 32px;
	padding: 24px;
	background: linear-gradient(135deg, #fff6ec, #fff2e2);
	border-radius: 14px;
	border: 1px dashed var(--c-primary-l);
}

.highlight {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 6px;
	padding: 8px 6px;
	position: relative;
}

.highlight:not(:last-child)::after {
	content: "";
	position: absolute;
	right: -7px;
	top: 15%;
	bottom: 15%;
	width: 1px;
	background: var(--c-primary-l);
	opacity: 0.6;
}

.highlight__icon {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	background: #fff;
	color: var(--c-primary);
	border-radius: 50%;
	box-shadow: 0 3px 8px rgba(226, 125, 92, 0.15);
}

.highlight:nth-child(2) .highlight__icon {
	color: var(--c-accent);
	box-shadow: 0 3px 8px rgba(74, 144, 164, 0.18);
}

.highlight:nth-child(3) .highlight__icon {
	color: var(--c-gold-d);
	box-shadow: 0 3px 8px rgba(212, 165, 68, 0.2);
}

.highlight:nth-child(4) .highlight__icon {
	color: var(--c-ink);
	box-shadow: 0 3px 8px rgba(45, 71, 88, 0.18);
}

.highlight__icon svg {
	width: 22px;
	height: 22px;
}

.highlight__label {
	font-size: 11px;
	letter-spacing: 0.12em;
	color: var(--c-text-sub);
	font-weight: 700;
}

.highlight__value {
	font-family: var(--f-serif);
	font-size: 16px;
	font-weight: 700;
	color: var(--c-text);
	letter-spacing: 0.03em;
	line-height: 1.3;
}

/* ----- Meta ----- */
.course__meta {
	display: grid;
	gap: 14px;
	padding: 20px clamp(16px, 2.5vw, 28px);
	background: var(--c-bg);
	border-radius: var(--radius-sm);
	margin-bottom: 32px;
}

.course__meta-row {
	display: grid;
	grid-template-columns: 84px 1fr;
	align-items: center;
	gap: 16px;
}

.course__meta-row dt {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.15em;
	color: var(--c-primary-d);
	padding: 4px 0 4px 10px;
	border-left: 3px solid var(--c-primary);
}

.course__meta-row dd {
	margin: 0;
	font-size: 15px;
}

.course__prices {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 18px;
}

.course__price {
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
	font-size: 14px;
	color: var(--c-text-sub);
}

.course__price em {
	font-style: normal;
	font-size: 12px;
	color: var(--c-text-mute);
}

.course__price b {
	font-family: var(--f-serif);
	font-size: 25px;
	color: var(--c-text-price);
	font-weight: 900;
}

.course__schedule-label {
	font-family: var(--f-serif);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.3em;
	color: var(--c-primary-d);
	padding-left: 14px;
	border-left: 4px solid var(--c-primary);
	margin-bottom: 20px;
}

/* ===== Timeline ===== */
.timeline {
	position: relative;
	margin: 0 0 28px;
	padding: 4px 0 4px 28px;
}

.timeline::before {
	content: "";
	position: absolute;
	left: 8px;
	top: 24px;
	bottom: 24px;
	width: 2px;
	background: linear-gradient(to bottom, var(--c-primary-l), var(--c-border));
}

.timeline__item {
	position: relative;
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 14px;
	align-items: center;
	padding: 6px 0;
	font-size: 15px;
}

.timeline__item::before {
	content: "";
	position: absolute;
	left: -25px;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
	height: 10px;
	background: #fff;
	border: 2px solid var(--c-primary-l);
	border-radius: 50%;
}

.timeline__item--pin::before {
	background: var(--c-primary);
	border-color: var(--c-primary);
	box-shadow: 0 0 0 4px #fff3e9;
	width: 12px;
	height: 12px;
	left: -26px;
}

/* 発着点（駅前・ココウォーク）はサムネ非表示 */
.timeline__item--pin .timeline__thumb {
	display: none;
}

.timeline__item--pin .timeline__card {
	padding: 10px 18px;
}

.timeline__item--drive::before {
	border-style: dashed;
	opacity: 0.6;
	width: 8px;
	height: 8px;
	left: -24px;
}

.timeline__time {
	font-family: var(--f-serif);
	font-weight: 700;
	color: var(--c-primary-d);
	letter-spacing: 0.04em;
	font-size: 15px;
	text-align: right;
	padding-right: 4px;
}

.timeline__item--drive .timeline__time {
	color: var(--c-text-mute);
}

.timeline__card {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 10px 16px;
	background: #fffaf2;
	border: 1px solid var(--c-border-l);
	border-radius: 12px;
	transition: background 0.2s ease;
}

.timeline__item--drive .timeline__card,
.timeline__card--compact {
	background: transparent;
	border: 1px dashed var(--c-border);
	padding: 8px 14px;
}

.timeline__thumb {
	flex: 0 0 auto;
	width: 52px;
	height: 52px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 6px rgba(85, 55, 40, 0.1);
	background: var(--c-border-l);
}

.timeline__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.timeline__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	min-width: 0;
}

.timeline__spot {
	color: var(--c-text);
	font-weight: 700;
	font-size: 15px;
}

.timeline__tag {
	font-style: normal;
	font-size: 11.5px;
	padding: 3px 9px;
	border-radius: 5px;
	background: #f7eadc;
	color: var(--c-primary-d);
	font-weight: 700;
	letter-spacing: 0.04em;
}

.timeline__tag--drive {
	background: #eef2f2;
	color: var(--c-accent-d);
}

.timeline__tag--start {
	background: var(--c-primary);
	color: #fff;
}

.timeline__tag--end {
	background: var(--c-accent);
	color: #fff;
}

.timeline-group {
	margin-bottom: 24px;
}

.timeline-group__label {
	font-family: var(--f-serif);
	font-size: 15px;
	font-weight: 700;
	color: var(--c-primary-d);
	padding: 10px 0 10px 12px;
	border-left: 4px solid var(--c-primary);
	background: #fff6ec;
	border-radius: 0 8px 8px 0;
	margin-bottom: 10px;
}

.timeline-group__label+.timeline {
	margin-bottom: 32px;
}

/* Course CTA */
.course__cta {
	display: block;
	width: fit-content;
	margin-left: auto;
	align-items: center;
	padding: 16px 36px;
	background: var(--c-bg-card);
	border: 2px solid var(--c-primary);
	color: var(--c-primary-d);
	border-radius: 999px;
	font-weight: 700;
	font-size: 15px;
	transition: all 0.2s ease;
	box-shadow: 0 4px 14px rgba(226, 125, 92, 0.15);
	margin-left: auto;
}

.course__cta:hover {
	background: var(--c-primary);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(226, 125, 92, 0.35);
}

.course__cta--primary {
	background: var(--c-primary);
	color: #fff;
}

.course__cta--primary:hover {
	background: var(--c-primary-d);
}

.course__cta-arrow {
	transition: transform 0.2s ease;
}

.course__cta:hover .course__cta-arrow {
	transform: translateX(4px);
}

/* ==========================================================
   CHARM
========================================================== */
.charm-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
	margin-bottom: 72px;
}

.charm {
	background: var(--c-bg-card);
	border-radius: var(--radius);
	padding: 36px 28px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--c-border-l);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.charm:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.charm__icon {
	width: 56px;
	height: 56px;
	color: var(--c-primary);
	margin-bottom: 18px;
	background: #fff3e9;
	border-radius: 14px;
	display: grid;
	place-items: center;
	padding: 10px;
}

.charm:nth-child(2) .charm__icon {
	color: var(--c-accent);
	background: #e4f1f3;
}

.charm:nth-child(3) .charm__icon {
	color: var(--c-gold-d);
	background: #fbf1d6;
}

.charm:nth-child(2) .charm__title {
	color: var(--c-accent-d);
}

.charm:nth-child(3) .charm__title {
	color: var(--c-gold-d);
}

.charm__title {
	font-family: var(--f-serif);
	font-weight: 700;
	font-size: 18px;
	line-height: 1.6;
	color: var(--c-text);
	margin-bottom: 14px;
	letter-spacing: 0.03em;
}

.charm__text {
	font-size: 14.5px;
	line-height: 2;
	color: var(--c-text-sub);
}

/* ===== Usecase ===== */
.usecase {
	background: var(--c-bg-card);
	border-radius: var(--radius);
	padding: clamp(32px, 5vw, 56px);
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--c-border-l);
	margin-bottom: 72px;
}

.usecase__head {
	text-align: center;
	margin-bottom: 36px;
}

.usecase__kicker {
	color: var(--c-primary);
	font-size: 13px;
	letter-spacing: 0.25em;
	font-family: var(--f-serif);
	margin-bottom: 10px;
}

.usecase__title {
	font-family: var(--f-serif);
	font-size: clamp(20px, 2.6vw, 26px);
	font-weight: 700;
	letter-spacing: 0.06em;
}

.usecase__list {
	display: grid;
	gap: 24px;
}

.usecase__item {
	position: relative;
	padding: 24px 24px 24px 92px;
	background: var(--c-bg);
	border-radius: var(--radius-sm);
	border-left: 4px solid var(--c-primary-l);
}

.usecase__num {
	position: absolute;
	left: 22px;
	top: 22px;
	font-family: var(--f-serif);
	font-weight: 700;
	font-size: 36px;
	color: var(--c-primary);
	letter-spacing: 0.02em;
	line-height: 1;
}

.usecase__item:nth-child(2) {
	border-left-color: var(--c-accent-l);
}

.usecase__item:nth-child(2) .usecase__num {
	color: var(--c-accent);
}

.usecase__item:nth-child(3) {
	border-left-color: var(--c-gold-l);
}

.usecase__item:nth-child(3) .usecase__num {
	color: var(--c-gold-d);
}

.usecase__item-title {
	font-family: var(--f-serif);
	font-size: 17px;
	font-weight: 700;
	color: var(--c-text);
	margin-bottom: 10px;
	line-height: 1.5;
}

.usecase__item p {
	font-size: 14.5px;
	line-height: 2;
	color: var(--c-text-sub);
}

.usecase__item p b {
	color: var(--c-primary-d);
	background: linear-gradient(transparent 60%, #ffe5d0 60%);
	padding: 0 2px;
}

/* ===== Voice ===== */
.voice__head {
	text-align: center;
	margin-bottom: 36px;
}

.voice__kicker {
	color: var(--c-accent-d);
	font-size: 13px;
	letter-spacing: 0.35em;
	font-family: var(--f-serif);
	margin-bottom: 10px;
}

.voice__title {
	font-family: var(--f-serif);
	font-size: clamp(20px, 2.6vw, 26px);
	font-weight: 700;
	letter-spacing: 0.06em;
}

.voice__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.voice__card {
	position: relative;
	background: var(--c-bg-card);
	border-radius: var(--radius);
	padding: 32px 24px 22px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--c-border-l);
}

.voice__card::before {
	content: "\201C";
	position: absolute;
	top: -8px;
	left: 16px;
	font-family: var(--f-serif);
	font-size: 56px;
	color: var(--c-accent-l);
	line-height: 1;
}

.voice__text {
	font-size: 14.5px;
	line-height: 2;
	color: var(--c-text);
	margin-bottom: 14px;
}

.voice__name {
	font-size: 12px;
	color: var(--c-text-mute);
	letter-spacing: 0.1em;
	padding-top: 12px;
	border-top: 1px dashed var(--c-border);
}

/* ==========================================================
   SPOTS
========================================================== */
.spots {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

.spot {
	background: var(--c-bg-card);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--c-border-l);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
}

.spot:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.spot__thumb {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--c-border-l);
}

.spot__thumb-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
	display: block;
}

.spot__thumb::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.5) 100%);
	z-index: 1;
}

.spot__thumb-label {
	position: absolute;
	left: 14px;
	bottom: 14px;
	z-index: 2;
	font-family: var(--f-serif);
	font-size: 12px;
	letter-spacing: 0.15em;
	color: #fff;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.spot__body {
	padding: 20px 20px 24px;
}

.spot__title {
	font-family: var(--f-serif);
	font-weight: 700;
	font-size: 16px;
	color: var(--c-ink);
	margin-bottom: 10px;
	letter-spacing: 0.04em;
	padding-left: 10px;
	border-left: 3px solid var(--c-accent);
}

.spot__title small {
	font-size: 11px;
	color: var(--c-text-mute);
	letter-spacing: 0.05em;
	font-weight: 500;
}

.spot__desc {
	font-size: 13px;
	line-height: 1.9;
	color: var(--c-text-sub);
}

/* ==========================================================
   FAQ
========================================================== */
.section--faq {
	padding-bottom: 200px;
}

.faq {
	display: grid;
	gap: 14px;
	max-width: 840px;
	margin: 0 auto;
}

.faq__item {
	background: var(--c-bg-card);
	border-radius: var(--radius-sm);
	border: 1px solid var(--c-border-l);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}

.faq__item details[open] {
	background: #fffaf3;
}

.faq__item summary {
	list-style: none;
	cursor: pointer;
	padding: 20px 60px 20px 60px;
	position: relative;
	font-weight: 700;
	font-size: 15.5px;
	color: var(--c-text);
	line-height: 1.6;
	transition: background 0.15s ease;
}

.faq__item summary::-webkit-details-marker {
	display: none;
}

.faq__item summary::before {
	content: "Q";
	position: absolute;
	left: 22px;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--c-gold);
	color: #fff;
	font-family: var(--f-serif);
	font-weight: 700;
	display: grid;
	place-items: center;
	font-size: 14px;
}

.faq__icon {
	position: absolute;
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
}

.faq__icon::before,
.faq__icon::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 16px;
	height: 2px;
	background: var(--c-gold-d);
	border-radius: 2px;
	transform: translate(-50%, -50%);
	transition: transform 0.25s ease;
}

.faq__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item details[open] .faq__icon::after {
	transform: translate(-50%, -50%) rotate(0deg);
}

.faq__a {
	padding: 4px 60px 22px 60px;
	font-size: 14.5px;
	line-height: 2;
	color: var(--c-text-sub);
	position: relative;
}

.faq__a::before {
	content: "A";
	position: absolute;
	left: 22px;
	top: 2px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--c-accent);
	color: #fff;
	font-family: var(--f-serif);
	font-weight: 700;
	display: grid;
	place-items: center;
	font-size: 14px;
}

/* ==========================================================
   ANCHOR FAB (mobile floating menu) — 768px以下で表示
========================================================== */
.anchor-fab {
	display: none;
}

@media (max-width: 768px) {

	/* sticky なアンカーをモバイルでは非表示にしてFABに切替 */
	.anchor-nav {
		display: none;
	}

	.anchor-fab {
		display: block;
		position: fixed;
		left: 16px;
		bottom: calc(20px + env(safe-area-inset-bottom));
		z-index: 110;
		transition: bottom 0.35s cubic-bezier(.2, .7, .2, 1);
	}

	.anchor-fab--with-cta {
		bottom: calc(100px + env(safe-area-inset-bottom));
	}

	.anchor-fab__btn {
		width: 60px;
		height: 60px;
		border-radius: 50%;
		background: linear-gradient(135deg, var(--c-primary), var(--c-primary-d));
		color: #fff;
		box-shadow: 0 10px 24px rgba(226, 125, 92, 0.45);
		display: grid;
		place-items: center;
		position: relative;
		transition: transform 0.25s ease, box-shadow 0.25s ease;
	}

	.anchor-fab__btn:active {
		transform: scale(0.94);
	}

	.anchor-fab--open .anchor-fab__btn {
		background: linear-gradient(135deg, var(--c-ink), var(--c-accent-d));
		box-shadow: 0 10px 24px rgba(45, 71, 88, 0.45);
	}

	.anchor-fab__icon {
		position: relative;
		width: 22px;
		height: 16px;
	}

	.anchor-fab__icon span {
		position: absolute;
		left: 0;
		right: 0;
		height: 2px;
		background: #fff;
		border-radius: 2px;
		transition: transform 0.3s cubic-bezier(.2, .7, .2, 1), opacity 0.2s ease, top 0.3s ease;
	}

	.anchor-fab__icon span:nth-child(1) {
		top: 0;
	}

	.anchor-fab__icon span:nth-child(2) {
		top: 7px;
	}

	.anchor-fab__icon span:nth-child(3) {
		top: 14px;
	}

	.anchor-fab--open .anchor-fab__icon span:nth-child(1) {
		top: 7px;
		transform: rotate(45deg);
	}

	.anchor-fab--open .anchor-fab__icon span:nth-child(2) {
		opacity: 0;
	}

	.anchor-fab--open .anchor-fab__icon span:nth-child(3) {
		top: 7px;
		transform: rotate(-45deg);
	}

	.anchor-fab__caption {
		position: absolute;
		bottom: -22px;
		left: 50%;
		transform: translateX(-50%);
		font-size: 10px;
		letter-spacing: 0.15em;
		color: var(--c-text-sub);
		font-weight: 700;
		white-space: nowrap;
		text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
	}

	.anchor-fab--open .anchor-fab__caption {
		opacity: 0;
	}

	/* Popup menu */
	.anchor-fab__menu {
		position: absolute;
		left: 0;
		bottom: calc(100% + 14px);
		min-width: 280px;
		background: #fff;
		border-radius: 16px;
		padding: 10px;
		box-shadow: 0 24px 50px rgba(85, 55, 40, 0.25);
		border: 1px solid var(--c-border-l);
		opacity: 0;
		transform: translateY(12px) scale(0.96);
		transform-origin: bottom left;
		pointer-events: none;
		transition: opacity 0.22s ease, transform 0.28s cubic-bezier(.2, .7, .2, 1);
		display: grid;
		gap: 4px;
	}

	.anchor-fab--open .anchor-fab__menu {
		opacity: 1;
		transform: translateY(0) scale(1);
		pointer-events: auto;
	}

	.anchor-fab__menu::after {
		content: "";
		position: absolute;
		left: 22px;
		bottom: -6px;
		width: 12px;
		height: 12px;
		background: #fff;
		border-right: 1px solid var(--c-border-l);
		border-bottom: 1px solid var(--c-border-l);
		transform: rotate(45deg);
	}

	.anchor-fab__link {
		display: flex;
		align-items: center;
		gap: 14px;
		padding: 12px 14px;
		border-radius: 10px;
		color: var(--c-text);
		transition: background 0.15s ease;
	}

	.anchor-fab__link:active {
		background: var(--c-bg);
	}

	.anchor-fab__link.is-active {
		background: var(--c-bg);
	}

	.anchor-fab__link.is-active .anchor-fab__label {
		color: var(--c-primary-d);
	}

	.anchor-fab__item:nth-child(2) .anchor-fab__link.is-active .anchor-fab__label {
		color: var(--c-accent-d);
	}

	.anchor-fab__item:nth-child(3) .anchor-fab__link.is-active .anchor-fab__label {
		color: var(--c-gold-d);
	}

	.anchor-fab__num {
		font-family: var(--f-serif);
		font-size: 20px;
		font-weight: 900;
		color: var(--c-primary);
		flex: 0 0 auto;
		line-height: 1;
		width: 32px;
		text-align: center;
	}

	.anchor-fab__item:nth-child(2) .anchor-fab__num {
		color: var(--c-accent);
	}

	.anchor-fab__item:nth-child(3) .anchor-fab__num {
		color: var(--c-gold-d);
	}

	.anchor-fab__text {
		display: flex;
		flex-direction: column;
		gap: 2px;
		min-width: 0;
	}

	.anchor-fab__label {
		font-size: 14px;
		font-weight: 700;
		letter-spacing: 0.03em;
		line-height: 1.3;
	}

	.anchor-fab__sub {
		font-size: 9px;
		letter-spacing: 0.25em;
		color: var(--c-text-mute);
		line-height: 1;
		font-weight: 700;
	}
}

/* ==========================================================
   FLOATING CTA (40%スクロールで出現)
========================================================== */
.floating-cta {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100;
	padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
	transform: translateY(110%);
	opacity: 0;
	pointer-events: none;
	transition: transform 0.4s cubic-bezier(.2, .7, .2, 1), opacity 0.3s ease;
}

.floating-cta.is-visible {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}

.floating-cta__inner {
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 14px 20px;
	background: var(--c-bg-card);
	border-radius: 14px;
	box-shadow: 0 14px 40px rgba(85, 55, 40, 0.2);
	border: 1px solid var(--c-border-l);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.floating-cta__text {
	min-width: 0;
}

.floating-cta__kicker {
	font-size: 11px;
	letter-spacing: 0.2em;
	color: var(--c-primary);
	font-family: var(--f-serif);
	font-weight: 700;
	margin-bottom: 2px;
}

.floating-cta__lead {
	font-weight: 700;
	font-size: 15px;
	color: var(--c-text);
	line-height: 1.3;
}

.floating-cta__btn {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 26px;
	background: var(--c-primary);
	color: #fff;
	border-radius: 999px;
	font-weight: 700;
	font-size: 15px;
	box-shadow: 0 8px 20px rgba(226, 125, 92, 0.4);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	white-space: nowrap;
}

.floating-cta__btn:hover {
	background: var(--c-primary-d);
	transform: translateY(-2px);
	box-shadow: 0 12px 26px rgba(226, 125, 92, 0.5);
}

/* ==========================================================
   RESPONSIVE
========================================================== */
@media (max-width: 1100px) {

	.spots {
		grid-template-columns: repeat(4, 1fr);
	}

	.highlights {
		grid-template-columns: repeat(2, 1fr);
		gap: 18px 24px;
	}

	.highlight:not(:last-child)::after {
		display: none;
	}
}

@media (max-width: 960px) {
	.anchor-nav__heading {
		display: none;
	}

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

@media (max-width: 820px) {
	.spots {
		grid-template-columns: repeat(3, 1fr);
	}

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

@media (max-width: 768px) {
	:root {
		--nav-h: 70px;
	}

	.section {
		padding: 72px 0 60px;
	}

	.section__title {
		font-size: clamp(24px, 4vw, 38px);
	}

	.section__inner {
		padding: 0 16px;
	}

	.section--faq {
		padding-bottom: 180px;
	}

	.section__head {
		margin-bottom: 44px;
	}

	.hero {
		min-height: 480px;
		height: 80vh;
	}

	.hero__overlay {
		padding: 0 16px;
	}

	.hero__inner {
		padding: 36px 20px;
	}

	.hero__brand {
		gap: 10px;
		padding: 8px 16px;
		margin-bottom: 28px;
	}

	.hero__brand-ja {
		font-size: 12px;
		letter-spacing: 0.15em;
	}

	.hero__brand-en {
		font-size: 9px;
		letter-spacing: 0.25em;
	}

	.hero__brand-divider {
		height: 10px;
	}

	.hero__headline {
		gap: 10px;
		margin-bottom: 28px;
	}

	.hero__headline-lead {
		padding-bottom: 10px;
		letter-spacing: 0.15em;
	}

	.hero__headline-lead::after {
		width: 32px;
	}

	.hero__desc {
		gap: 10px;
		letter-spacing: 0.2em;
	}

	.hero__desc-rule {
		width: 24px;
	}

	.hero__inner::before,
	.hero__inner::after {
		width: 20px;
		height: 20px;
	}

	.tabs__btn {
		padding: 14px 16px;
	}

	.tabs__btn-num {
		font-size: 18px;
	}

	.tabs__btn-title {
		font-size: 14px;
	}

	.course {
		padding: 36px 20px;
	}

	.course__gallery {
		gap: 8px;
		margin-bottom: 24px;
	}

	.course__gallery-item {
		border-radius: 10px;
	}

	.course__price b {
		font-size: 16px;
	}

	.course__ribbon {
		right: 14px;
		font-size: 12px;
		padding: 6px 14px;
	}

	.course__meta-row {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.course__meta-row dt {
		justify-self: start;
	}

	.course__cta {
		display: flex;
		justify-content: space-between;
		width: 100%;
	}

	.timeline__item {
		grid-template-columns: 54px 1fr;
		gap: 10px;
		font-size: 14px;
	}

	.timeline__time {
		font-size: 13px;
	}

	.timeline__card {
		padding: 8px 12px;
		gap: 10px;
	}

	.timeline__thumb {
		width: 44px;
		height: 44px;
	}

	.timeline__spot {
		font-size: 14px;
	}

	.usecase__item {
		padding: 22px 20px 22px 20px;
	}

	.usecase__num {
		position: static;
		display: inline-block;
		font-size: 22px;
		background: var(--c-primary);
		color: #fff;
		padding: 2px 12px;
		border-radius: 999px;
		margin-bottom: 10px;
	}

	.usecase__item:nth-child(2) .usecase__num {
		background: var(--c-accent);
		color: #fff;
	}

	.usecase__item:nth-child(3) .usecase__num {
		background: var(--c-gold);
		color: #fff;
	}

	.faq__item summary {
		padding: 18px 50px 18px 54px;
		font-size: 14.5px;
	}

	.faq__item summary::before {
		left: 16px;
		width: 24px;
		height: 24px;
		font-size: 13px;
	}

	.faq__icon {
		right: 18px;
	}

	.faq__a {
		padding: 0 20px 20px 54px;
		font-size: 14px;
	}

	.faq__a::before {
		left: 16px;
		width: 24px;
		height: 24px;
		font-size: 13px;
	}

	.floating-cta__inner {
		padding: 10px 14px 10px 16px;
		gap: 10px;
	}

	.floating-cta__kicker {
		font-size: 10px;
		margin-bottom: 0;
	}

	.floating-cta__lead {
		font-size: 13px;
	}

	.floating-cta__btn {
		padding: 12px 18px;
		font-size: 13px;
	}
}

@media (max-width: 540px) {
	.spots {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}

	.highlights {
		padding: 18px;
	}
}

@media (max-width: 420px) {
	.hero__headline-main {
		font-size: 41px;
	}

	.hero__brand {
		flex-wrap: wrap;
		justify-content: center;
	}

	.course__prices {
		flex-direction: column;
		gap: 4px;
	}

	.floating-cta__text .floating-cta__kicker {
		display: none;
	}

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

	.highlight {
		flex-direction: row;
		justify-content: flex-start;
		text-align: left;
		gap: 12px;
	}

	.highlight__icon {
		width: 38px;
		height: 38px;
	}

	.highlight__icon svg {
		width: 18px;
		height: 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	* {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}