/**
 * Smart Life — テキストリンク・ボタンリンクの共通デザイン
 * 優先度: primary > secondary > ghost > line
 * 読み込み順: smart-life.css / sla-inner.css の後（最終上書き）
 */

/* ==================================================================
   テキストリンク — section__foot / sla-btn--minimal と同一
   ================================================================== */

body.smartlife-branded {
	--sla-text-link-size: 0.9375rem;
}

body.smartlife-branded .sla-link,
body.smartlife-branded .about-feature__link:not(.sla-btn),
body.smartlife-branded .course-feature__link:not(.sla-btn),
body.smartlife-branded .line-invite__link:not(.sla-btn),
body.smartlife-branded .line-final__link:not(.sla-btn),
body.smartlife-branded .hero-fv__ghost:not(.sla-btn),
body.smartlife-branded .outcomes-section__link,
body.smartlife-branded .text-link:not(.sla-link--inline),
body.smartlife-branded .news-article-nav__link,
body.smartlife-branded .guide-section__foot a:not(.sla-btn),
body.smartlife-branded .about-section__foot a:not(.sla-btn),
body.smartlife-branded .outcomes-section__foot a:not(.sla-btn) {
	display: inline-grid;
	grid-template-columns: auto auto;
	column-gap: 0.45rem;
	row-gap: 0.35rem;
	align-items: center;
	padding: 0.35rem 0;
	font-size: var(--sla-text-link-size);
	font-weight: 700;
	line-height: 1.45;
	color: var(--ink);
	text-decoration: none;
	border: none;
	transition: color 0.2s var(--ease);
}

body.smartlife-branded .sla-link::before,
body.smartlife-branded .about-feature__link:not(.sla-btn)::before,
body.smartlife-branded .course-feature__link:not(.sla-btn)::before,
body.smartlife-branded .line-invite__link:not(.sla-btn)::before,
body.smartlife-branded .line-final__link:not(.sla-btn)::before,
body.smartlife-branded .hero-fv__ghost:not(.sla-btn)::before,
body.smartlife-branded .outcomes-section__link::before,
body.smartlife-branded .text-link:not(.sla-link--inline)::before,
body.smartlife-branded .news-article-nav__link::before,
body.smartlife-branded .guide-section__foot a:not(.sla-btn)::before,
body.smartlife-branded .about-section__foot a:not(.sla-btn)::before,
body.smartlife-branded .outcomes-section__foot a:not(.sla-btn)::before {
	content: "";
	grid-column: 1 / -1;
	grid-row: 2;
	height: 2px;
	background: var(--ink);
	transition: background 0.22s var(--ease);
}

body.smartlife-branded .sla-link::after,
body.smartlife-branded .about-feature__link:not(.sla-btn)::after,
body.smartlife-branded .course-feature__link:not(.sla-btn)::after,
body.smartlife-branded .line-invite__link:not(.sla-btn)::after,
body.smartlife-branded .line-final__link:not(.sla-btn)::after,
body.smartlife-branded .hero-fv__ghost:not(.sla-btn)::after,
body.smartlife-branded .outcomes-section__link::after,
body.smartlife-branded .text-link:not(.sla-link--inline)::after,
body.smartlife-branded .news-article-nav__link::after,
body.smartlife-branded .guide-section__foot a:not(.sla-btn)::after,
body.smartlife-branded .about-section__foot a:not(.sla-btn)::after,
body.smartlife-branded .outcomes-section__foot a:not(.sla-btn)::after {
	content: "→";
	grid-column: 2;
	grid-row: 1;
	font-family: var(--font-en);
	font-size: 1em;
	font-weight: 700;
	color: inherit;
	transition: transform 0.28s var(--ease);
}

body.smartlife-branded .sla-link:hover,
body.smartlife-branded .about-feature__link:not(.sla-btn):hover,
body.smartlife-branded .course-feature__link:not(.sla-btn):hover,
body.smartlife-branded .line-invite__link:not(.sla-btn):hover,
body.smartlife-branded .line-final__link:not(.sla-btn):hover,
body.smartlife-branded .hero-fv__ghost:not(.sla-btn):hover,
body.smartlife-branded .outcomes-section__link:hover,
body.smartlife-branded .text-link:not(.sla-link--inline):hover,
body.smartlife-branded .news-article-nav__link:hover,
body.smartlife-branded .guide-section__foot a:not(.sla-btn):hover,
body.smartlife-branded .about-section__foot a:not(.sla-btn):hover,
body.smartlife-branded .outcomes-section__foot a:not(.sla-btn):hover {
	color: var(--sla-btn);
}

body.smartlife-branded .sla-link:hover::before,
body.smartlife-branded .about-feature__link:not(.sla-btn):hover::before,
body.smartlife-branded .course-feature__link:not(.sla-btn):hover::before,
body.smartlife-branded .line-invite__link:not(.sla-btn):hover::before,
body.smartlife-branded .line-final__link:not(.sla-btn):hover::before,
body.smartlife-branded .hero-fv__ghost:not(.sla-btn):hover::before,
body.smartlife-branded .outcomes-section__link:hover::before,
body.smartlife-branded .text-link:not(.sla-link--inline):hover::before,
body.smartlife-branded .news-article-nav__link:hover::before,
body.smartlife-branded .guide-section__foot a:not(.sla-btn):hover::before,
body.smartlife-branded .about-section__foot a:not(.sla-btn):hover::before,
body.smartlife-branded .outcomes-section__foot a:not(.sla-btn):hover::before {
	background: var(--sla-btn);
}

body.smartlife-branded .sla-link:hover::after,
body.smartlife-branded .about-feature__link:not(.sla-btn):hover::after,
body.smartlife-branded .course-feature__link:not(.sla-btn):hover::after,
body.smartlife-branded .line-invite__link:not(.sla-btn):hover::after,
body.smartlife-branded .line-final__link:not(.sla-btn):hover::after,
body.smartlife-branded .hero-fv__ghost:not(.sla-btn):hover::after,
body.smartlife-branded .outcomes-section__link:hover::after,
body.smartlife-branded .text-link:not(.sla-link--inline):hover::after,
body.smartlife-branded .news-article-nav__link:hover::after,
body.smartlife-branded .guide-section__foot a:not(.sla-btn):hover::after,
body.smartlife-branded .about-section__foot a:not(.sla-btn):hover::after,
body.smartlife-branded .outcomes-section__foot a:not(.sla-btn):hover::after {
	transform: translateX(4px);
}

body.smartlife-branded .sla-link:focus-visible,
body.smartlife-branded .news-article-nav__link:focus-visible,
body.smartlife-branded .guide-section__foot a:not(.sla-btn):focus-visible {
	outline: 2px solid var(--sla-btn);
	outline-offset: 3px;
	border-radius: 2px;
}

/* 下向き矢印（ヒーロー等） */
body.smartlife-branded .sla-link--arrow-down::after {
	content: "↓";
}

body.smartlife-branded .sla-link--arrow-down:hover::after {
	transform: translateY(3px);
}

/* 旧 modifier — 見た目は base と同一 */
body.smartlife-branded .sla-link--muted,
body.smartlife-branded .sla-link--arrow {
	font-size: var(--sla-text-link-size);
	font-weight: 700;
	color: var(--ink);
	border: none;
	padding: 0.35rem 0;
}

body.smartlife-branded .news-article-nav__link--sub {
	color: var(--ink);
}

/* 本文中インライン（矢印・下線ルールなし） */
body.smartlife-branded .sla-link--inline,
body.smartlife-branded .prose a:not(.sla-btn):not(.sla-link),
body.smartlife-branded .glossary-accordion-item__body a {
	display: inline;
	padding: 0;
	font-size: var(--sla-text-link-size);
	font-weight: 700;
	line-height: inherit;
	color: var(--sla-btn);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: rgba(103, 84, 74, 0.35);
}

body.smartlife-branded .sla-link--inline::before,
body.smartlife-branded .sla-link--inline::after,
body.smartlife-branded .prose a:not(.sla-btn):not(.sla-link)::before,
body.smartlife-branded .prose a:not(.sla-btn):not(.sla-link)::after,
body.smartlife-branded .glossary-accordion-item__body a::before,
body.smartlife-branded .glossary-accordion-item__body a::after {
	content: none;
	display: none;
}

body.smartlife-branded .sla-link--inline:hover,
body.smartlife-branded .prose a:not(.sla-btn):not(.sla-link):hover,
body.smartlife-branded .glossary-accordion-item__body a:hover {
	color: var(--sla-btn-hover);
	text-decoration-color: var(--sla-btn-hover);
}

/* ==================================================================
   ボタンリンク — 優先度別パターン
   ================================================================== */

body.smartlife-branded .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 12px 22px;
	border-radius: var(--radius-pill);
	font-family: var(--font-serif);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.35;
	text-decoration: none;
	border: 2px solid transparent;
	cursor: pointer;
	box-shadow: none;
	filter: none;
	transition:
		background 0.22s var(--ease),
		color 0.22s var(--ease),
		border-color 0.22s var(--ease),
		transform 0.24s var(--ease);
}

body.smartlife-branded .btn:focus-visible {
	outline: 2px solid var(--sla-accent);
	outline-offset: 3px;
}

body.smartlife-branded .btn:active {
	transform: scale(0.98);
}

/* 1. Primary — 最重要CV */
body.smartlife-branded .btn--primary {
	background: var(--sla-btn) !important;
	color: #fff !important;
	border-color: var(--sla-btn) !important;
	box-shadow: none !important;
}

body.smartlife-branded .btn--primary:hover {
	background: var(--sla-btn-hover) !important;
	border-color: var(--sla-btn-hover) !important;
	color: #fff !important;
	box-shadow: none !important;
	transform: translateY(-2px);
}

/* 2. Secondary — 補助アクション */
body.smartlife-branded .btn--secondary {
	background: var(--sla-btn) !important;
	color: #fff !important;
	border-color: var(--sla-btn) !important;
}

body.smartlife-branded .btn--secondary:hover {
	background: var(--sla-btn-hover) !important;
	border-color: var(--sla-btn-hover) !important;
	color: #fff !important;
	transform: translateY(-2px);
}

/* 3. Ghost — 第三優先・枠線のみ */
body.smartlife-branded .btn--ghost {
	background: transparent !important;
	color: var(--sla-btn) !important;
	border-color: var(--sla-btn) !important;
}

body.smartlife-branded .btn--ghost:hover {
	background: var(--sla-btn) !important;
	border-color: var(--sla-btn) !important;
	color: #fff !important;
	transform: translateY(-2px);
}

/* 4. LINE — 公式LINE専用 */
body.smartlife-branded .btn--line {
	background: var(--line) !important;
	color: #fff !important;
	border-color: var(--line) !important;
	box-shadow: 0 6px 16px rgba(6, 199, 85, 0.28) !important;
}

body.smartlife-branded .btn--line:hover {
	background: #05b24c !important;
	border-color: #05b24c !important;
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(6, 199, 85, 0.32) !important;
}

/* サイズ */
body.smartlife-branded .btn--small {
	padding: 8px 16px;
	font-size: 13px;
	min-height: auto;
}

body.smartlife-branded .btn--large {
	padding: 14px 28px;
	font-size: 15px;
	min-height: 52px;
}

body.smartlife-branded .btn--block {
	width: 100%;
	justify-content: center;
	text-align: center;
	white-space: normal;
}

/* 矢印付きボタン */
body.smartlife-branded .btn--arrow::after {
	content: "→";
	font-family: var(--font-en);
	font-weight: 700;
	transition: transform 0.28s var(--ease);
}

body.smartlife-branded .btn--arrow:hover::after {
	transform: translateX(4px);
}

body.smartlife-branded .btn--arrow .btn__arrow,
body.smartlife-branded .btn--arrow .line-final__btn-arrow,
body.smartlife-branded .btn--arrow .line-invite__btn-arrow {
	font-family: var(--font-en);
	font-weight: 700;
	transition: transform 0.28s var(--ease);
}

body.smartlife-branded .btn--arrow:hover .btn__arrow,
body.smartlife-branded .btn--arrow:hover .line-final__btn-arrow,
body.smartlife-branded .btn--arrow:hover .line-invite__btn-arrow {
	transform: translateX(4px);
}

body.smartlife-branded .btn--arrow:has(.btn__arrow)::after,
body.smartlife-branded .btn--arrow:has(.line-final__btn-arrow)::after,
body.smartlife-branded .btn--arrow:has(.line-invite__btn-arrow)::after {
	content: none;
}

/* 旧ボタンクラス → 共通 btn へ統合 */
body.smartlife-branded .about-feature__btn:not(.sla-btn),
body.smartlife-branded .line-invite__btn:not(.sla-btn),
body.smartlife-branded .line-final__btn:not(.sla-btn) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	min-height: 52px;
	padding: 0.95rem 1.75rem;
	border-radius: var(--radius-pill);
	font-family: var(--font-serif);
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-decoration: none;
	border: 2px solid transparent;
	transition:
		background 0.22s var(--ease),
		transform 0.22s var(--ease);
}

body.smartlife-branded .about-feature__btn:not(.sla-btn) {
	background: var(--sla-btn);
	color: #fff;
	box-shadow: none;
}

body.smartlife-branded .about-feature__btn:not(.sla-btn):hover {
	background: var(--sla-btn-hover);
	transform: translateY(-2px);
	box-shadow: none;
}

body.smartlife-branded .line-invite__btn.btn--line:not(.sla-btn),
body.smartlife-branded .line-final__btn.btn--line:not(.sla-btn) {
	background: var(--line);
	color: #fff;
	border-color: var(--line);
	box-shadow: 0 14px 30px rgba(6, 199, 85, 0.3);
}

body.smartlife-branded .line-invite__btn.btn--line:not(.sla-btn):hover,
body.smartlife-branded .line-final__btn.btn--line:not(.sla-btn):hover {
	background: #05b24c;
	transform: translateY(-3px);
	box-shadow: 0 18px 36px rgba(6, 199, 85, 0.34);
}

body.smartlife-branded .line-invite__btn:not(.btn--line):not(.sla-btn),
body.smartlife-branded .line-final__btn:not(.btn--line):not(.sla-btn) {
	background: var(--sla-btn);
	color: #fff;
	border-color: var(--sla-btn);
	box-shadow: none;
}

body.smartlife-branded .line-invite__btn:not(.btn--line):not(.sla-btn):hover,
body.smartlife-branded .line-final__btn:not(.btn--line):not(.sla-btn):hover {
	background: var(--sla-btn-hover);
	border-color: var(--sla-btn-hover);
	transform: translateY(-2px);
	box-shadow: none;
}

body.smartlife-branded .line-final__btn:not(.sla-btn) {
	min-height: 56px;
	width: 100%;
	white-space: normal;
	text-align: center;
}

/* セクションフッターCTA */
body.smartlife-branded .section__foot {
	margin-top: clamp(1.75rem, 3vw, 2.5rem);
	text-align: center;
}

body.smartlife-branded .section__foot .btn {
	min-width: min(100%, 16rem);
}

body.smartlife-branded .about-section__foot {
	margin-top: 1.5rem;
	text-align: center;
}

/* ==================================================================
   入門講座（priority-courses）— choice-card / outcome-item と同一トンマナ
   ================================================================== */

body.smartlife-branded .section--entry-courses {
	padding-block: clamp(3rem, 6vw, 5rem);
	background: var(--cream);
}

body.smartlife-branded .entry-course-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.6rem);
	max-width: 60rem;
	margin-inline: auto;
}

body.smartlife-branded .entry-course-card {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	margin: 0;
	padding: 0;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: 0 10px 30px rgba(38, 31, 25, 0.06);
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	overflow: hidden;
	transition:
		transform 0.3s var(--ease),
		border-color 0.3s var(--ease);
}

body.smartlife-branded .entry-course-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 22px 46px rgba(38, 31, 25, 0.13);
	border-color: var(--green-light);
}

body.smartlife-branded .entry-course-card__media {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	padding: 0;
	overflow: hidden;
	background: var(--cream);
	line-height: 0;
}

body.smartlife-branded .entry-course-card__thumb-bg {
	display: none;
}

body.smartlife-branded .entry-course-card__media::after {
	content: none;
}

body.smartlife-branded .entry-course-card__thumb {
	position: static;
	z-index: auto;
	display: block;
	width: 100%;
	height: auto;
	max-width: none;
	max-height: none;
	object-fit: unset;
	object-position: center;
}

body.smartlife-branded .entry-course-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 0.55rem;
	min-width: 0;
	padding: clamp(1rem, 2vw, 1.25rem);
}

body.smartlife-branded .entry-course-card__heading {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	flex-wrap: wrap;
}

body.smartlife-branded .entry-course-card__title {
	margin: 0;
	color: var(--ink);
	font-family: var(--font-serif);
	font-size: clamp(1.05rem, 1.6vw, 1.25rem);
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: 0.01em;
}

body.smartlife-branded .entry-course-card__arrow {
	flex: 0 0 auto;
	font-family: var(--font-en);
	font-weight: 700;
	color: var(--green);
	transition: transform 0.28s var(--ease);
}

body.smartlife-branded .entry-course-card:hover .entry-course-card__arrow {
	transform: translateX(5px);
}

body.smartlife-branded .entry-course-card__desc {
	margin: 0;
	color: var(--ink-mid);
	font-size: 0.88rem;
	line-height: 1.75;
}

@media (max-width: 760px) {
	body.smartlife-branded .entry-course-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* ==================================================================
   学び方ガイド（learning-journey）— 左: ステップ / 右: ボタン
   ================================================================== */

body.smartlife-branded .guide-section--journey .guide-section__body {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	grid-template-rows: repeat(3, auto);
	gap: 0.75rem clamp(1.25rem, 3vw, 2.5rem);
	align-items: stretch;
	width: 100%;
	max-width: none;
	margin-inline: 0;
}

body.smartlife-branded .guide-section--journey .guide-section__aside {
	grid-column: 2;
	grid-row: 1 / -1;
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	min-width: 0;
	align-self: stretch;
}

body.smartlife-branded .guide-section--journey .guide-aside-block {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	height: 100%;
	min-height: 0;
}

body.smartlife-branded .guide-section--journey .guide-aside-block + .guide-aside-block {
	padding-top: 0;
	border-top: none;
}

body.smartlife-branded .guide-section__aside {
	min-width: 0;
}

body.smartlife-branded .guide-section__aside-kicker {
	margin: 0 0 0.85rem;
	font-family: var(--font-en);
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.3em;
	color: var(--green-deep);
}

body.smartlife-branded .guide-section__lead--footer {
	margin-top: 0.85rem;
}

body.smartlife-branded .guide-section__supplement--aside {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: flex-start;
	gap: clamp(1rem, 2vw, 1.35rem);
	margin: 0;
	max-width: none;
	width: 100%;
}

body.smartlife-branded .guide-aside-block + .guide-aside-block {
	padding-top: clamp(1rem, 2vw, 1.25rem);
	border-top: 1px solid var(--border);
}

body.smartlife-branded .guide-aside-block .guide-section__aside-kicker {
	margin-bottom: 0.65rem;
}

body.smartlife-branded .guide-aside-item {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

body.smartlife-branded .guide-aside-item__title {
	margin: 0;
	font-family: var(--font-serif);
	font-size: clamp(0.92rem, 1.3vw, 1rem);
	font-weight: 700;
	line-height: 1.45;
	color: var(--ink);
	text-wrap: pretty;
}

body.smartlife-branded .guide-aside-item__subtitle {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--green-deep);
}

body.smartlife-branded .guide-aside-item__desc {
	margin: 0;
	padding-inline: 0;
	font-size: 0.78rem;
	font-weight: 400;
	line-height: 1.65;
	color: var(--ink-mid);
	text-wrap: pretty;
}

body.smartlife-branded .guide-aside-item .sla-btn {
	margin-top: 0.15rem;
}

body.smartlife-branded .guide-aside-item .sla-btn--slide {
	padding-inline: 1.15rem;
}

body.smartlife-branded .guide-section__supplement--aside .sla-btn {
	width: 100%;
}

body.smartlife-branded .guide-grid--steps {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	max-width: none;
	margin-inline: 0;
	padding: 0;
	position: relative;
}

body.smartlife-branded .guide-section--journey .guide-grid.guide-grid--steps {
	display: grid;
	grid-column: 1;
	grid-row: 1 / -1;
	grid-template-rows: subgrid;
	grid-row: span 3;
	gap: 0;
}

body.smartlife-branded .guide-section--journey .guide-section__supplement--aside {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	gap: 0;
	margin: 0;
	max-width: none;
	width: 100%;
}

body.smartlife-branded .guide-grid--steps::before,
body.smartlife-branded .guide-section--journey .guide-grid::before {
	display: none;
}

body.smartlife-branded .guide-card--link {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	column-gap: clamp(0.85rem, 2vw, 1.25rem);
	align-items: center;
	min-height: auto;
	padding: clamp(1rem, 2vw, 1.25rem) clamp(1.1rem, 2vw, 1.35rem);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: #fff;
	color: var(--ink);
	text-decoration: none;
	text-align: left;
	box-shadow: none;
	transform: none;
	transition:
		background 0.22s var(--ease),
		border-color 0.22s var(--ease);
}

body.smartlife-branded .guide-grid--cols-3 .guide-card--link {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	color: var(--ink);
}

body.smartlife-branded .guide-card--link:hover {
	border-color: var(--green-light);
	background: #fff;
	transform: none;
	box-shadow: none;
	color: var(--ink);
}

body.smartlife-branded .guide-card__main {
	grid-column: 1;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	min-width: 0;
}

body.smartlife-branded .guide-card--link .guide-card__label {
	margin: 0;
	font-family: var(--font-en);
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #006c01;
}

body.smartlife-branded .guide-card--link .guide-card__title {
	margin: 0;
	font-family: var(--font-serif);
	font-size: clamp(0.95rem, 1.35vw, 1.0625rem);
	font-weight: 700;
	line-height: 1.55;
	color: var(--ink);
}

body.smartlife-branded .guide-grid--cols-3 .guide-card--link .guide-card__go {
	align-self: flex-end;
	margin-top: auto;
}

body.smartlife-branded .guide-card--link .guide-card__desc {
	margin: 0;
	font-size: 0.82rem;
	font-weight: 400;
	line-height: 1.65;
	color: var(--ink-mid);
	text-wrap: pretty;
}

body.smartlife-branded .guide-card--link .guide-card__go {
	grid-column: 2;
	font-family: var(--font-en);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--sla-btn);
	transition: transform 0.28s var(--ease);
}

body.smartlife-branded .guide-card--link:hover .guide-card__go {
	transform: translateX(4px);
}

/* 下部サプリメント — 左バッジ + 説明 + 右ボタン（行全体リンク） */
body.smartlife-branded .guide-section__supplement--rows {
	padding: 0;
}

body.smartlife-branded .guide-supplement-row {
	display: grid;
	grid-template-columns: 2.15rem minmax(0, 1fr) auto;
	column-gap: clamp(0.85rem, 2vw, 1.25rem);
	align-items: center;
	padding: 1rem 0.5rem 1rem 0.35rem;
	border-top: 1px solid var(--border);
	color: inherit;
	text-decoration: none;
	transition: background 0.22s var(--ease);
}

body.smartlife-branded .guide-supplement-row:first-child {
	border-top: none;
	padding-top: 0.25rem;
}

body.smartlife-branded .guide-supplement-row:hover {
	background: rgba(255, 255, 255, 0.72);
	color: inherit;
}

body.smartlife-branded .guide-supplement-row__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.15rem;
	height: 2.15rem;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--sla-btn);
	color: var(--ink);
	font-size: 0.62rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
}

body.smartlife-branded .guide-supplement-row:hover .guide-supplement-row__badge {
	background: var(--sla-btn-pale);
}

body.smartlife-branded .guide-supplement-row__desc {
	font-size: 0.82rem;
	font-weight: 400;
	line-height: 1.65;
	color: var(--ink-mid);
	text-wrap: pretty;
}

body.smartlife-branded .guide-supplement-row__btn {
	pointer-events: none;
	flex-shrink: 0;
}

body.smartlife-branded .guide-supplement-row .sla-btn--slide {
	padding-left: 1rem;
}

body.smartlife-branded .guide-section__supplement:not(.guide-section__supplement--rows):not(.guide-section__supplement--aside) .sla-btn--slide,
body.smartlife-branded .guide-section__supplement:not(.guide-section__supplement--rows):not(.guide-section__supplement--aside) .sla-btn--stack {
	flex: 1 1 14rem;
	min-width: min(100%, 14rem);
	max-width: 100%;
}

body.smartlife-branded .guide-section__supplement:not(.guide-section__supplement--rows):not(.guide-section__supplement--aside) .sla-btn--stack {
	flex-basis: 16rem;
}

/* 用語集・LINE サプリメント導線 */
body.smartlife-branded .guide-section__supplement {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: clamp(0.75rem, 1.5vw, 1rem);
	width: 100%;
	max-width: none;
	margin: clamp(1.75rem, 3vw, 2.5rem) 0 0;
}

body.smartlife-branded .guide-section__supplement.guide-section__supplement--rows {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: flex-start;
	gap: 0.75rem;
	width: 100%;
	max-width: none;
}

body.smartlife-branded .guide-supplement-card {
	display: flex;
	flex: 1 1 14rem;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.35rem;
	min-width: min(100%, 14rem);
	padding: clamp(1rem, 1.8vw, 1.2rem) clamp(1.1rem, 2vw, 1.35rem);
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: 0 8px 24px rgba(38, 31, 25, 0.06);
	text-decoration: none;
	transition:
		transform 0.28s var(--ease),
		border-color 0.28s var(--ease);
}

body.smartlife-branded .guide-supplement-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 40px rgba(38, 31, 25, 0.12);
	border-color: var(--green-light);
}

body.smartlife-branded .guide-supplement-card__kicker {
	font-family: var(--font-en);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: var(--ink-mid);
}

body.smartlife-branded .guide-supplement-card__title {
	font-family: var(--font-serif);
	font-size: clamp(0.92rem, 1.3vw, 1rem);
	font-weight: 700;
	line-height: 1.45;
	color: var(--ink);
}

body.smartlife-branded .guide-supplement-card__arrow {
	align-self: flex-end;
	margin-top: 0.15rem;
	font-family: var(--font-en);
	font-weight: 700;
	color: var(--sla-btn);
	transition: transform 0.28s var(--ease);
}

body.smartlife-branded .guide-supplement-card:hover .guide-supplement-card__arrow {
	transform: translateX(4px);
}

body.smartlife-branded .guide-supplement-card--line {
	background: linear-gradient(135deg, #fff 0%, rgba(6, 199, 85, 0.08) 100%);
	border-color: rgba(6, 199, 85, 0.35);
}

body.smartlife-branded .guide-supplement-card--line .guide-supplement-card__kicker {
	color: var(--line);
}

body.smartlife-branded .guide-supplement-card--line:hover {
	border-color: var(--line);
	box-shadow: 0 18px 40px rgba(6, 199, 85, 0.18);
}

body.smartlife-branded .guide-supplement-card--glossary:hover {
	border-color: var(--green-mid);
}

@media (max-width: 900px) {
	body.smartlife-branded .guide-section--journey .guide-section__body {
		grid-template-columns: 1fr;
		grid-template-rows: none;
		align-items: stretch;
		gap: clamp(1.25rem, 3vw, 2rem);
	}

	body.smartlife-branded .guide-section--journey .guide-grid,
	body.smartlife-branded .guide-section--journey .guide-section__aside,
	body.smartlife-branded .guide-section--journey .guide-section__supplement--aside {
		grid-column: auto;
		grid-row: auto;
		display: flex;
		flex-direction: column;
		gap: 0.75rem;
	}

	body.smartlife-branded .guide-section--journey .guide-aside-block + .guide-aside-block {
		padding-top: clamp(1rem, 2vw, 1.25rem);
		border-top: 1px solid var(--border);
	}

	body.smartlife-branded .guide-section--journey .guide-section__aside {
		width: 100%;
		max-width: none;
		margin-inline: 0;
	}
}

@media (max-width: 1024px) {
	body.smartlife-branded .guide-grid--cols-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: none;
	}
}

@media (max-width: 760px) {
	body.smartlife-branded .guide-supplement-row {
		grid-template-columns: 2.15rem minmax(0, 1fr);
		grid-template-rows: auto auto;
		row-gap: 0.65rem;
		align-items: start;
	}

	body.smartlife-branded .guide-supplement-row__btn {
		grid-column: 1 / -1;
		justify-self: stretch;
		width: 100%;
	}

	body.smartlife-branded .guide-supplement-row .sla-btn--slide,
	body.smartlife-branded .guide-supplement-row .sla-btn--stack {
		width: 100%;
	}
}

@media (max-width: 560px) {
	body.smartlife-branded .guide-grid--cols-4 {
		grid-template-columns: minmax(0, 1fr);
		max-width: 20rem;
	}

	body.smartlife-branded .guide-section__supplement {
		flex-direction: column;
		align-items: stretch;
	}

	body.smartlife-branded .guide-supplement-card {
		min-width: 0;
	}
}

/* ==================================================================
   SLA Button System — 参考デザイン 01〜06
   ================================================================== */

body.smartlife-branded .sla-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	position: relative;
	font-family: var(--font-serif);
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	border: 2px solid transparent;
	box-shadow: none;
	line-height: 1.35;
	letter-spacing: 0.04em;
	transition:
		background 0.22s var(--ease),
		color 0.22s var(--ease),
		border-color 0.22s var(--ease),
		transform 0.22s var(--ease);
}

body.smartlife-branded .sla-btn:focus-visible {
	outline: 2px solid var(--sla-accent);
	outline-offset: 3px;
}

body.smartlife-branded .sla-btn:active {
	transform: scale(0.98);
}

body.smartlife-branded .sla-btn__label {
	display: block;
}

/* トーン */
body.smartlife-branded .sla-btn--line {
	background: var(--line);
	color: #fff;
	border-color: var(--line);
}

body.smartlife-branded .sla-btn--line,
body.smartlife-branded .sla-btn--line .sla-btn__sub,
body.smartlife-branded .sla-btn--line .sla-btn__label,
body.smartlife-branded .sla-btn--line .sla-btn__icon {
	color: #fff;
}

body.smartlife-branded .sla-btn--line:hover {
	background: #05b24c;
	border-color: #05b24c;
	color: #fff;
}

body.smartlife-branded .sla-btn--brand {
	background: var(--sla-btn);
	color: #fff;
	border-color: var(--sla-btn);
}

body.smartlife-branded .sla-btn--brand,
body.smartlife-branded .sla-btn--brand .sla-btn__sub,
body.smartlife-branded .sla-btn--brand .sla-btn__label,
body.smartlife-branded .sla-btn--brand .sla-btn__icon {
	color: #fff;
}

body.smartlife-branded .sla-btn--brand:hover {
	background: var(--sla-btn-hover);
	border-color: var(--sla-btn-hover);
	color: #fff;
}

body.smartlife-branded .sla-btn--dark {
	background: #1a1614;
	color: #fff;
	border-color: #1a1614;
}

body.smartlife-branded .sla-btn--dark,
body.smartlife-branded .sla-btn--dark .sla-btn__sub,
body.smartlife-branded .sla-btn--dark .sla-btn__label,
body.smartlife-branded .sla-btn--dark .sla-btn__icon {
	color: #fff;
}

body.smartlife-branded .sla-btn--dark:hover {
	background: #2e2723;
	border-color: #2e2723;
	color: #fff;
}

body.smartlife-branded .sla-btn--outline {
	background: #fff;
	color: var(--ink);
	border-color: var(--sla-btn);
}

body.smartlife-branded .sla-btn--outline:hover {
	background: var(--sla-btn-pale);
	border-color: var(--sla-btn-hover);
	color: var(--ink);
}

body.smartlife-branded .sla-btn--block {
	width: 100%;
	max-width: 100%;
}

body.smartlife-branded .sla-btn--compact.sla-btn--stack {
	min-height: 2.75rem;
	padding: 0.45rem 1rem 0.45rem 1.15rem;
	font-size: 0.88rem;
}

body.smartlife-branded .sla-btn--compact .sla-btn__sub {
	font-size: 0.62rem;
}

body.smartlife-branded .sla-btn--compact .sla-btn__icon {
	width: 1.45rem;
	height: 1.45rem;
	font-size: 0.5rem;
}

/* 01 — サブテキストをボタン内へ */
body.smartlife-branded .sla-btn--stack {
	min-height: 3.75rem;
	padding: 0.6rem 1.15rem 0.55rem 1.35rem;
	border-radius: var(--radius-pill);
	border-bottom-width: 4px;
}

body.smartlife-branded .sla-btn--stack.sla-btn--line {
	border-bottom-color: #048a38;
}

body.smartlife-branded .sla-btn--stack.sla-btn--brand {
	border-bottom-color: #4a3b33;
}

body.smartlife-branded .sla-btn--stack.sla-btn--dark {
	border-bottom-color: #000;
}

body.smartlife-branded .sla-btn__stack {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.12rem;
	flex: 1;
	min-width: 0;
	text-align: center;
}

body.smartlife-branded .sla-btn__sub {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	opacity: 0.92;
	white-space: nowrap;
}

body.smartlife-branded .sla-btn__sub::before {
	content: "\\ ";
	opacity: 0.75;
}

body.smartlife-branded .sla-btn__sub::after {
	content: " /";
	opacity: 0.75;
}

body.smartlife-branded .sla-btn--stack .sla-btn__label {
	font-size: clamp(0.88rem, 1.4vw, 1rem);
}

body.smartlife-branded .sla-btn__icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.65rem;
	height: 1.65rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.22);
	font-size: 0;
	line-height: 0;
	color: inherit;
}

body.smartlife-branded .sla-btn__icon::before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	margin-left: 2px;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 6px solid currentColor;
}

body.smartlife-branded .sla-btn__icon--tone {
	background: var(--sla-btn);
	color: #fff;
}

body.smartlife-branded .sla-btn__icon--tone::before {
	border-left-color: #fff;
}

body.smartlife-branded .sla-btn__icon--dark {
	background: #1a1614;
	color: #fff;
}

body.smartlife-branded .sla-btn__icon--dark::before {
	border-left-color: #fff;
}

/* 02 — 吹き出し */
body.smartlife-branded .sla-btn--bubble {
	min-height: 3.25rem;
	padding: 0.85rem 1.25rem 0.65rem;
	margin-top: 0.85rem;
	border-radius: var(--radius-pill);
}

body.smartlife-branded .sla-btn__bubble {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -55%);
	padding: 0.2rem 0.75rem;
	background: #fff;
	border: 2px solid var(--sla-btn);
	border-radius: var(--radius-pill);
	color: var(--sla-btn);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

body.smartlife-branded .sla-btn__bubble::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -6px;
	width: 10px;
	height: 10px;
	background: #fff;
	border-right: 2px solid var(--sla-btn);
	border-bottom: 2px solid var(--sla-btn);
	transform: translateX(-50%) rotate(45deg);
}

/* 03 — 左上リボン */
body.smartlife-branded .sla-btn--ribbon {
	min-height: 3.25rem;
	padding: 0.85rem 1.25rem 0.65rem 1.1rem;
	margin-top: 0.55rem;
	border-radius: var(--radius-pill);
	overflow: visible;
}

body.smartlife-branded .sla-btn__ribbon {
	position: absolute;
	top: 0;
	left: 0.85rem;
	transform: translateY(-50%);
	padding: 0.22rem 0.65rem;
	background: var(--sla-btn);
	border-radius: 4px;
	color: #fff;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	white-space: nowrap;
}

/* 04 — 矢印グラデーション */
body.smartlife-branded .sla-btn--chevron {
	min-height: 3.5rem;
	padding: 0;
	border-radius: 0.65rem;
	overflow: hidden;
	border: none;
	background: transparent;
}

body.smartlife-branded .sla-btn--chevron.sla-btn--brand {
	background: linear-gradient(
		100deg,
		#8a7268 0%,
		#8a7268 42%,
		var(--sla-btn) 42%,
		var(--sla-btn) 100%
	);
}

body.smartlife-branded .sla-btn--chevron.sla-btn--line {
	background: linear-gradient(
		100deg,
		#3dd976 0%,
		#3dd976 42%,
		var(--line) 42%,
		var(--line) 100%
	);
}

body.smartlife-branded .sla-btn__chevron-sub,
body.smartlife-branded .sla-btn__chevron-main {
	display: flex;
	align-items: center;
	min-height: 3.5rem;
	padding: 0.65rem 1rem;
}

body.smartlife-branded .sla-btn__chevron-sub {
	flex: 0 0 42%;
	justify-content: center;
	font-size: 0.72rem;
	font-weight: 700;
	text-align: center;
	color: #fff;
}

body.smartlife-branded .sla-btn__chevron-main {
	flex: 1;
	justify-content: space-between;
	gap: 0.75rem;
	padding-right: 1.15rem;
	color: #fff;
}

body.smartlife-branded .sla-btn--chevron .sla-btn__label {
	font-size: clamp(0.85rem, 1.3vw, 0.95rem);
}

body.smartlife-branded .sla-btn--chevron .sla-btn__icon {
	background: rgba(255, 255, 255, 0.22);
}

/* 05 — スライド型 */
body.smartlife-branded .sla-btn--slide {
	min-height: 3.35rem;
	padding: 0.35rem 1.15rem 0.35rem 0.35rem;
	border-radius: var(--radius-pill);
	gap: 0.85rem;
}

body.smartlife-branded .sla-btn--slide.sla-btn--outline {
	background: #fff;
	border-color: var(--sla-btn);
	color: var(--ink);
}

body.smartlife-branded .sla-btn--slide.sla-btn--line {
	background: #fff;
	border-color: var(--line);
	color: var(--ink);
}

body.smartlife-branded .sla-btn--slide .sla-btn__label {
	flex: 1;
	text-align: left;
	font-size: clamp(0.85rem, 1.3vw, 0.95rem);
}

body.smartlife-branded .sla-btn__badge {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.85rem;
	height: 2.85rem;
	border-radius: 50%;
	background: var(--sla-btn);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
}

body.smartlife-branded .sla-btn--slide.sla-btn--line .sla-btn__badge {
	background: var(--line);
}

body.smartlife-branded .sla-btn--slide.sla-btn--brand .sla-btn__badge {
	background: #fff;
	color: var(--sla-btn);
	border: 2px solid var(--sla-btn);
}

body.smartlife-branded .sla-btn__badge--sm {
	width: auto;
	min-width: 2.35rem;
	height: 2.35rem;
	padding: 0 0.55rem;
	border-radius: 999px;
	font-size: 0.65rem;
}

body.smartlife-branded .sla-btn__arrow {
	flex-shrink: 0;
	font-family: var(--font-en);
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--sla-btn);
	transition: transform 0.28s var(--ease);
}

body.smartlife-branded .sla-btn--slide.sla-btn--line .sla-btn__arrow {
	color: var(--line);
}

body.smartlife-branded .sla-btn--slide.sla-btn--brand .sla-btn__arrow {
	color: #fff;
}

body.smartlife-branded .sla-btn--slide:hover .sla-btn__arrow {
	transform: translateX(4px);
}

/* 06 — ボタン感を抑えたリンク */
body.smartlife-branded .sla-btn--minimal {
	display: inline-flex;
	min-height: auto;
	padding: 0.35rem 0;
	border: none;
	background: transparent;
	color: var(--ink);
	gap: 0.75rem;
	border-radius: 0;
}

body.smartlife-branded .sla-btn--minimal:hover {
	color: var(--sla-btn);
	background: transparent;
	transform: none;
}

body.smartlife-branded .sla-btn--minimal .sla-btn__badge--sm {
	background: var(--sla-btn);
	color: #fff;
}

body.smartlife-branded .sla-btn__minimal-body {
	display: inline-flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.35rem;
	flex: 0 1 auto;
	min-width: 0;
}

body.smartlife-branded .sla-btn__minimal-row {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
}

body.smartlife-branded .sla-btn--minimal .sla-btn__label {
	font-size: var(--sla-text-link-size);
	font-weight: 700;
	text-align: left;
}

body.smartlife-branded .sla-btn--minimal .sla-btn__arrow {
	font-size: 1rem;
	color: inherit;
	transition: transform 0.28s var(--ease);
}

body.smartlife-branded .sla-btn--minimal:hover .sla-btn__arrow {
	transform: translateX(4px);
}

body.smartlife-branded .sla-btn__rule {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--ink);
	transition: background 0.22s var(--ease);
}

body.smartlife-branded .sla-btn--minimal:hover .sla-btn__rule {
	background: var(--sla-btn);
}

/* カード内 span ボタン（ネストリンク回避） */
body.smartlife-branded a .sla-btn {
	pointer-events: none;
}

body.smartlife-branded .choice-guide__foot .sla-btn--slide {
	width: min(100%, 26rem);
	margin-inline: auto;
}

body.smartlife-branded .hero-fv__actions .sla-btn--stack,
body.smartlife-branded .line-final__actions .sla-btn--stack.line-final__btn {
	min-height: 4rem;
	padding: 0.6rem 1.65rem 0.55rem;
	width: 100%;
}

body.smartlife-branded .line-final__actions .sla-btn--stack.line-final__btn .sla-btn__label {
	white-space: nowrap;
}

body.smartlife-branded .about-feature__actions .sla-btn--stack {
	min-width: min(100%, 18rem);
}

body.smartlife-branded .section__foot .sla-btn--minimal {
	margin-inline: auto 0;
}

body.smartlife-branded .hero-fv__actions .sla-btn--minimal.hero-fv__ghost {
	align-self: center;
}

body.smartlife-branded .about-feature__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 1rem;
}

body.smartlife-branded .about-feature__actions .sla-btn--chevron {
	flex: 1 1 100%;
}

/* ==================================================================
   Shadow-free policy — ドロップシャドウ廃止（フラットデザイン）
   ================================================================== */
body.smartlife-branded,
body.smartlife-branded *,
body.smartlife-branded *::before,
body.smartlife-branded *::after {
	box-shadow: none !important;
	text-shadow: none !important;
}

body.smartlife-branded *:focus-visible {
	outline: 2px solid var(--green-mid);
	outline-offset: 3px;
}

/* マウスクリック後のフォーカス枠を非表示（キーボード操作は :focus-visible で表示） */
body.smartlife-branded *:focus:not(:focus-visible) {
	outline: none !important;
}
