/* =========================================================
   LifeBridge Corporate Theme — main.css v2
   デザインシステム：温かみのあるクリーム背景 / 白の角丸カード /
   英語アイキャッチ＋日本語見出し / 丸アイコン矢印のピルボタン / 丸い山型フッター
   ========================================================= */

:root {
	--lb-bg: #f6f3ed;          /* クリーム背景 */
	--lb-white: #ffffff;
	--lb-primary: #3f9fd8;     /* メインブルー（功有会のグリーンに相当する使い方） */
	--lb-primary-dark: #2b7db3;/* 英語見出し・アクセント */
	--lb-primary-soft: #e3f1fa;
	--lb-text: #3c3835;        /* 温かみのある墨色 */
	--lb-text-sub: #706962;
	--lb-border: #e7e0d6;
	--lb-r-sm: 8px;
	--lb-r-md: 16px;
	--lb-r-lg: 24px;
	--lb-r-xl: 32px;
	--lb-maxw: 1080px;
	--lb-font: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

/* ---------- リセット・ベース ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.lenis, html.lenis body { scroll-behavior: auto !important; } /* Lenis有効時は競合するため無効化 */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation: none !important; transition: none !important; }
}
html, body { overflow-x: clip; }
body {
	margin: 0;
	font-family: var(--lb-font);
	color: var(--lb-text);
	background: var(--lb-bg);
	line-height: 2;
	font-size: 15.5px;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--lb-primary); outline-offset: 3px; border-radius: 4px; }
h1, h2, h3 { line-height: 1.6; margin: 0; font-weight: 700; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; }

/* ---------- 英語アイキャッチ＋日本語見出し ---------- */
.lb-eyebrow {
	display: block;
	color: var(--lb-primary-dark);
	font-weight: 700;
	font-size: 0.82rem;
	letter-spacing: 0.1em;
	margin-bottom: 6px;
}
.lb-heading { font-size: clamp(1.5rem, 3.2vw, 1.9rem); font-weight: 700; letter-spacing: 0.04em; }

/* ---------- ピル型ボタン（丸アイコン矢印付き） ---------- */
.lb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 0.9em 1.1em 0.9em 1.4em;
	border-radius: var(--lb-r-sm);
	font-weight: 700;
	font-size: 0.88rem;
	letter-spacing: 0.04em;
	background: var(--lb-primary);
	color: var(--lb-white);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lb-btn::after {
	content: "\203A";
	flex-shrink: 0;
	width: 1.35em;
	height: 1.35em;
	border-radius: 50%;
	background: var(--lb-white);
	color: var(--lb-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1em;
	line-height: 1;
	padding-bottom: 0.1em;
	transition: transform 0.2s ease;
}
.lb-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(63, 159, 216, 0.3); }
.lb-btn:hover::after { transform: scale(1.15); }
.lb-btn--dark { background: var(--lb-primary); color: var(--lb-white); }
.lb-btn--light { background: var(--lb-white); color: var(--lb-text); }
.lb-btn--light::after { background: var(--lb-primary); color: var(--lb-white); }
.lb-btn--light:hover { box-shadow: 0 8px 20px rgba(60, 56, 53, 0.12); }

/* ---------- ヘッダー ---------- */
.lb-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 100;
	background: rgba(246, 243, 237, 0.9);
	backdrop-filter: blur(10px);
}
.lb-header__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 96px 0 24px;
	height: 72px;
	display: flex;
	align-items: center;
	gap: 32px;
}
.lb-logo-text { font-weight: 700; font-size: 1.1rem; letter-spacing: 0.03em; display: flex; align-items: center; gap: 6px; }
.lb-logo-mark { color: var(--lb-primary); }
.lb-header .custom-logo { max-height: 44px; width: auto; }

.lb-nav { margin-left: auto; }
.lb-nav__list { display: flex; gap: 30px; align-items: center; }
.lb-nav__list a { font-size: 0.85rem; font-weight: 500; transition: color 0.2s ease; }
.lb-nav__list a:hover { color: var(--lb-primary-dark); }
.lb-header__cta { flex-shrink: 0; font-size: 0.8rem; padding: 0.7em 0.9em 0.7em 1.2em; }
.lb-menu-toggle { display: none; }

/* ---------- ヒーロー（角丸の大きなカード） ---------- */
.lb-hero-wrap { padding: 96px 16px 0; }
.lb-hero {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	min-height: 560px;
	display: flex;
	align-items: center;
	border-radius: var(--lb-r-xl);
	overflow: hidden;
	background: linear-gradient(135deg, #a8dcf5 0%, #5cb2e2 55%, #3684b8 100%); /* 画像未設定時 */
	background-size: cover;
	background-position: center;
	color: var(--lb-white);
	padding: 80px clamp(24px, 6vw, 72px);
}
.lb-hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(20,60,90,0.12) 0%, rgba(20,60,90,0.38) 100%);
}
.lb-hero__inner { position: relative; max-width: var(--lb-maxw); margin: 0 auto; width: 100%; }
.lb-hero__title {
	font-size: clamp(1.9rem, 4.6vw, 3rem);
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.55;
	margin-bottom: 32px;
	text-shadow: 0 2px 20px rgba(10, 40, 60, 0.3);
}
.lb-hero__label { font-weight: 700; font-size: 0.9rem; letter-spacing: 0.12em; margin-bottom: 10px; }
.lb-hero__body {
	max-width: 600px;
	font-size: 0.9rem;
	line-height: 2.15;
	margin-bottom: 32px;
	background: rgba(255,255,255,0.92);
	color: var(--lb-text);
	border-radius: var(--lb-r-md);
	padding: 24px 28px;
}

/* ---------- 汎用セクション ---------- */
.lb-section { max-width: var(--lb-maxw); margin: 0 auto; padding: 100px 24px 0; }
.lb-section__head { text-align: center; margin-bottom: 64px; }
.lb-section__title { font-size: clamp(1.5rem, 3.2vw, 1.9rem); font-weight: 700; letter-spacing: 0.05em; }
.lb-section__sub { color: var(--lb-text-sub); margin: 10px 0 0; font-size: 0.88rem; }

/* ---------- 事業紹介 3ブロック ---------- */
.lb-feature {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
	background: var(--lb-white);
	border: 1px solid var(--lb-border);
	border-radius: var(--lb-r-lg);
	padding: clamp(28px, 4vw, 56px);
	margin-bottom: 32px;
}
.lb-feature:last-child { margin-bottom: 0; }
.lb-feature--reverse .lb-feature__img { order: 2; }
.lb-feature--reverse .lb-feature__text { order: 1; }
.lb-feature__img img,
.lb-feature__img .lb-img-placeholder {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--lb-r-md);
}
.lb-feature__num { color: var(--lb-primary-dark); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.08em; margin-bottom: 2px; }
.lb-feature__title { font-size: clamp(1.2rem, 2.4vw, 1.45rem); font-weight: 700; letter-spacing: 0.04em; margin-bottom: 20px; }
.lb-feature__body { font-size: 0.88rem; color: var(--lb-text-sub); line-height: 2.1; }

.lb-list li { position: relative; padding-left: 1.5em; margin-bottom: 10px; font-size: 0.9rem; }
.lb-list li::before {
	content: "";
	position: absolute;
	left: 0; top: 0.72em;
	width: 0.55em; height: 0.55em;
	border-radius: 50%;
	background: var(--lb-primary);
}
.lb-list--detail li { margin-bottom: 18px; }
.lb-list--detail strong { display: block; font-weight: 700; }
.lb-list--detail span { display: block; font-size: 0.83rem; color: var(--lb-text-sub); line-height: 1.9; }

/* ---------- CTA（角丸のブルーカード） ---------- */
.lb-cta { max-width: var(--lb-maxw); margin: 100px auto 0; padding: 0 24px; }
.lb-cta__inner {
	background: var(--lb-primary);
	color: var(--lb-white);
	border-radius: var(--lb-r-lg);
	padding: clamp(40px, 6vw, 64px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}
.lb-cta__title { font-size: clamp(1.2rem, 2.6vw, 1.55rem); font-weight: 700; letter-spacing: 0.04em; margin-bottom: 10px; }
.lb-cta__sub { font-size: 0.86rem; margin: 0; opacity: 0.95; }
.lb-cta .lb-btn--light { white-space: nowrap; }

/* ---------- 当社の強み（番号＋英語ラベル付き白カード） ---------- */
.lb-strengths {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	max-width: 920px;
	margin: 0 auto;
}
.lb-strength {
	background: var(--lb-white);
	border: 1px solid var(--lb-border);
	border-radius: var(--lb-r-lg);
	padding: 36px 40px 40px;
}
.lb-strength__meta {
	display: flex;
	justify-content: space-between;
	color: var(--lb-primary-dark);
	font-weight: 700;
	font-size: 0.82rem;
	letter-spacing: 0.08em;
	margin-bottom: 20px;
}
.lb-strength__img img,
.lb-strength__img .lb-img-placeholder {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	border-radius: var(--lb-r-md);
	margin-bottom: 24px;
}
.lb-strength__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 14px; letter-spacing: 0.04em; text-align: center; }
.lb-strength__body { font-size: 0.84rem; color: var(--lb-text-sub); line-height: 2; }

/* ---------- 仲間募集（白の大カード） ---------- */
.lb-recruit { max-width: var(--lb-maxw); margin: 100px auto 0; padding: 0 24px; }
.lb-recruit__inner {
	background: var(--lb-white);
	border: 1px solid var(--lb-border);
	border-radius: var(--lb-r-lg);
	padding: clamp(32px, 5vw, 64px);
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 56px;
	align-items: center;
}
.lb-recruit__title { font-size: clamp(1.5rem, 3.2vw, 1.9rem); font-weight: 700; letter-spacing: 0.05em; margin-bottom: 24px; }
.lb-recruit__body { font-size: 0.88rem; color: var(--lb-text-sub); line-height: 2.1; }
.lb-recruit__body--em { font-weight: 700; color: var(--lb-text); margin-bottom: 28px; }
.lb-recruit__img img,
.lb-recruit__img .lb-img-placeholder {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--lb-r-md);
}

/* ---------- 提携会社 ---------- */
.lb-partner { max-width: 720px; margin: 0 auto; padding: 100px 24px 120px; }
.lb-partner .lb-section__head { margin-bottom: 32px; }
.lb-partner__card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	background: var(--lb-white);
	border: 1px solid var(--lb-border);
	border-radius: var(--lb-r-md);
	padding: 26px 32px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
a.lb-partner__card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(60, 56, 53, 0.1); }
.lb-partner__name { font-weight: 700; font-size: 1rem; display: block; }
.lb-partner__sub { display: block; font-size: 0.78rem; color: var(--lb-text-sub); margin-top: 2px; }
.lb-arrow {
	flex-shrink: 0;
	width: 1.6em; height: 1.6em;
	border-radius: 50%;
	background: var(--lb-primary);
	color: var(--lb-white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	line-height: 1;
	padding-bottom: 0.1em;
}
.lb-arrow--dark { background: var(--lb-primary); color: var(--lb-white); }

/* ---------- プレフッター（白カード2枚） ---------- */
.lb-prefooter { padding: 0 24px; }
.lb-prefooter__inner {
	max-width: var(--lb-maxw);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}
.lb-prefooter__card {
	background: var(--lb-white);
	border: 1px solid var(--lb-border);
	border-radius: var(--lb-r-md);
	color: var(--lb-text);
	padding: 30px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lb-prefooter__card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(60, 56, 53, 0.1); }
.lb-prefooter__title { display: block; font-weight: 700; font-size: 1.05rem; margin-bottom: 2px; }
.lb-prefooter__title-en { color: var(--lb-primary-dark); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; display: block; }
.lb-prefooter__sub { display: block; font-size: 0.8rem; color: var(--lb-text-sub); }
.lb-badge {
	display: inline-block;
	background: var(--lb-primary);
	color: var(--lb-white);
	font-size: 0.66rem;
	font-weight: 700;
	padding: 2px 10px;
	border-radius: 999px;
	vertical-align: middle;
	margin-left: 8px;
}

/* ---------- フッター（丸い山型ブロブ） ---------- */
.lb-footer { margin-top: 100px; overflow: hidden; }
.lb-footer__inner {
	max-width: var(--lb-maxw);
	margin: 0 auto;
	padding: 56px 24px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.lb-footer__logo { font-weight: 700; letter-spacing: 0.12em; font-size: 1rem; }
.lb-footer__list { display: flex; flex-wrap: wrap; gap: 8px 26px; }
.lb-footer__list a { font-size: 0.78rem; color: var(--lb-text-sub); transition: color 0.2s ease; }
.lb-footer__list a:hover { color: var(--lb-primary-dark); }
.lb-footer__blob {
	background: var(--lb-primary);
	border-radius: 50% 50% 0 0 / 90px 90px 0 0;
	margin: 40px -10vw 0;
	padding: 56px 10vw 28px;
	color: var(--lb-white);
	text-align: center;
}
.lb-footer__blob-copy { font-size: 0.74rem; letter-spacing: 0.06em; opacity: 0.95; }
.lb-footer__blob-logo { font-weight: 700; letter-spacing: 0.14em; margin-bottom: 6px; font-size: 0.95rem; }

/* ---------- 下層ページ ---------- */
.lb-pagehero-wrap { padding: 96px 16px 0; }
.lb-pagehero {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	min-height: 260px;
	display: flex;
	align-items: center;
	border-radius: var(--lb-r-xl);
	overflow: hidden;
	padding: 48px clamp(24px, 6vw, 72px);
	background: linear-gradient(120deg, #b5e0f5 0%, #5cb2e2 50%, #3684b8 100%); /* 画像未設定時 */
	background-size: cover;
	background-position: center;
	color: var(--lb-white);
}
.lb-pagehero::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(20,60,90,0.3), rgba(20,60,90,0.05));
}
.lb-pagehero__inner { position: relative; z-index: 1; max-width: var(--lb-maxw); margin: 0 auto; width: 100%; }
.lb-pagehero__title { font-size: clamp(1.9rem, 4.6vw, 2.9rem); font-weight: 700; letter-spacing: 0.08em; }
.lb-pagehero__title--ja { font-size: clamp(1.6rem, 3.8vw, 2.4rem); }
.lb-pagehero__sub { font-size: 0.9rem; font-weight: 700; letter-spacing: 0.12em; margin: 10px 0 0; }

.lb-pagebody { padding: 56px 24px 100px; }
.lb-pagebody > * { max-width: 800px; margin-left: auto; margin-right: auto; }
.lb-pagebody--wide > * { max-width: var(--lb-maxw); }

.lb-card {
	background: var(--lb-white);
	border: 1px solid var(--lb-border);
	border-radius: var(--lb-r-lg);
	padding: 56px clamp(24px, 6vw, 72px);
}

.lb-breadcrumb { margin-top: 32px; font-size: 0.75rem; color: var(--lb-text-sub); display: flex; gap: 10px; align-items: center; }
.lb-breadcrumb a:hover { text-decoration: underline; }
.lb-breadcrumb__current { color: var(--lb-primary-dark); font-weight: 700; }

/* ---------- 会社概要 ---------- */
.lb-greeting {
	text-align: center;
	background: var(--lb-white);
	border: 1px solid var(--lb-border);
	border-radius: var(--lb-r-lg);
	padding: clamp(40px, 6vw, 72px);
	margin-bottom: 64px;
}
.lb-greeting .lb-section__title { margin-bottom: 36px; }
.lb-greeting__quote { max-width: 640px; margin: 0 auto 44px; font-weight: 700; line-height: 2.1; font-size: 0.98rem; }
.lb-greeting__portrait { max-width: 360px; margin: 0 auto 40px; }
.lb-greeting__portrait img,
.lb-greeting__portrait .lb-img-placeholder {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: var(--lb-r-md);
}
.lb-greeting__message { max-width: 560px; margin: 0 auto; text-align: left; font-size: 0.87rem; color: var(--lb-text-sub); line-height: 2.1; }
.lb-greeting__sign { text-align: right; color: var(--lb-text); font-weight: 700; margin-top: 24px; }

.lb-values { margin-bottom: 64px; }
.lb-values__title { text-align: center; color: var(--lb-primary-dark); font-size: 1rem; font-weight: 700; letter-spacing: 0.12em; margin-bottom: 4px; }
.lb-values__sub { text-align: center; font-weight: 700; font-size: clamp(1.2rem, 2.6vw, 1.5rem); margin-bottom: 44px; }
.lb-values__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 920px; margin: 0 auto; }
.lb-value-card {
	background: var(--lb-white);
	border: 1px solid var(--lb-border);
	border-radius: var(--lb-r-md);
	padding: 32px 36px;
}
.lb-value-card h3 { color: var(--lb-primary-dark); font-size: 1.02rem; font-weight: 700; margin-bottom: 12px; }
.lb-value-card p { font-size: 0.83rem; color: var(--lb-text-sub); line-height: 2; margin: 0; }

.lb-about {
	background: var(--lb-white);
	border: 1px solid var(--lb-border);
	border-radius: var(--lb-r-lg);
	padding: clamp(32px, 5vw, 64px);
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 56px;
	align-items: start;
}
.lb-about__title { color: var(--lb-primary-dark); font-size: 1rem; font-weight: 700; letter-spacing: 0.12em; }
.lb-about__sub { font-weight: 700; font-size: clamp(1.2rem, 2.6vw, 1.5rem); margin: 2px 0 28px; }
.lb-about__table div { display: grid; grid-template-columns: 90px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px dashed var(--lb-border); font-size: 0.88rem; }
.lb-about__table dt { color: var(--lb-text-sub); }
.lb-about__table dd { margin: 0; }
.lb-about__img img,
.lb-about__img .lb-img-placeholder {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--lb-r-md);
}

/* ---------- サービス ---------- */
.lb-service-lead { text-align: center; margin-bottom: 48px; }
.lb-service-lead__eng { color: var(--lb-primary-dark); font-weight: 700; letter-spacing: 0.12em; font-size: 1rem; margin-bottom: 6px; }
.lb-service-lead__title { font-size: clamp(1.2rem, 2.6vw, 1.5rem); font-weight: 700; }
.lb-service-block { margin-bottom: 40px; }
.lb-service-block__title {
	text-align: center;
	font-size: clamp(1.3rem, 2.8vw, 1.6rem);
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 48px;
}
.lb-service-block__title::after {
	content: "";
	display: block;
	width: 48px; height: 4px;
	border-radius: 999px;
	background: var(--lb-primary);
	margin: 14px auto 0;
}
.lb-service-item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	margin-bottom: 48px;
}
.lb-service-item--reverse .lb-service-item__img { order: 2; }
.lb-service-item--reverse .lb-service-item__text { order: 1; }
.lb-service-item__img img,
.lb-service-item__img .lb-img-placeholder {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--lb-r-md);
}
.lb-service-item__num { font-weight: 700; color: var(--lb-primary-dark); letter-spacing: 0.08em; font-size: 0.85rem; margin-bottom: 2px; }
.lb-service-item__text h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 14px; }
.lb-service-item__text p { font-size: 0.85rem; color: var(--lb-text-sub); line-height: 2.05; margin: 0; }
.lb-service-block__cta { text-align: center; margin: 0; }

/* ---------- お問い合わせ ---------- */
.lb-contact-card { text-align: center; }
.lb-contact-card__title { font-size: clamp(1.1rem, 2.4vw, 1.35rem); font-weight: 700; line-height: 1.9; margin-bottom: 18px; }
.lb-contact-card__note { font-size: 0.82rem; color: var(--lb-text-sub); line-height: 2; margin-bottom: 40px; }
.lb-contact-form { text-align: left; max-width: 560px; margin: 0 auto; }
.lb-contact-form label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 20px; }
.lb-contact-form label .req { color: #d1603d; }
.lb-contact-form input[type="text"],
.lb-contact-form input[type="email"],
.lb-contact-form input[type="tel"],
.lb-contact-form textarea {
	width: 100%;
	margin-top: 8px;
	padding: 13px 16px;
	border: 1px solid var(--lb-border);
	border-radius: var(--lb-r-sm);
	font-family: inherit;
	font-size: 0.95rem;
	background: var(--lb-bg);
}
.lb-contact-form input:focus, .lb-contact-form textarea:focus { outline: 2px solid var(--lb-primary); background: var(--lb-white); }
.lb-contact-form input[type="submit"], .lb-contact-form .wpcf7-submit {
	display: block;
	margin: 28px auto 0;
	background: var(--lb-primary);
	color: var(--lb-white);
	border: none;
	padding: 15px 56px;
	border-radius: var(--lb-r-sm);
	font-weight: 700;
	font-size: 0.92rem;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lb-contact-form input[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(63, 159, 216, 0.3); }
.lb-contact-form .wpcf7-acceptance { font-weight: 400; font-size: 0.8rem; }
.lb-contact-form .wpcf7-not-valid-tip { font-size: 0.75rem; }
.lb-contact-info { margin-top: 32px; padding: 24px; background: var(--lb-primary-soft); border-radius: var(--lb-r-md); font-size: 0.88rem; text-align: center; }
.lb-contact-info a { font-weight: 700; color: var(--lb-primary-dark); }

/* ---------- 特商法・ポリシー系 ---------- */
.lb-card .lb-doc-title { text-align: center; font-size: 1.15rem; font-weight: 700; margin: 0 0 40px; }
.lb-doc-box { border: 1px solid var(--lb-border); border-radius: var(--lb-r-md); padding: 40px clamp(20px, 5vw, 48px); max-width: 560px; margin: 0 auto; background: var(--lb-bg); }
.lb-doc-box dt { font-weight: 700; font-size: 0.95rem; margin: 26px 0 8px; }
.lb-doc-box dt:first-child { margin-top: 0; }
.lb-doc-box dd { margin: 0; font-size: 0.85rem; color: var(--lb-text-sub); line-height: 1.9; }
.lb-card h2.lb-doc-h { font-size: 1rem; font-weight: 700; margin: 2.4em 0 0.8em; color: var(--lb-primary-dark); }
.lb-card .lb-doc-body, .lb-card .lb-doc-body li { font-size: 0.85rem; color: var(--lb-text-sub); line-height: 2; }
.lb-card ul.lb-doc-list { list-style: none; padding-left: 0; }
.lb-card ul.lb-doc-list li { position: relative; padding-left: 1.3em; }
.lb-card ul.lb-doc-list li::before {
	content: "";
	position: absolute;
	left: 0; top: 0.75em;
	width: 0.5em; height: 0.5em;
	border-radius: 50%;
	background: var(--lb-primary);
}

/* ---------- 汎用固定ページ本文（page.php） ---------- */
.lb-page__content h2 { font-size: 1.2rem; margin: 2.2em 0 0.8em; }
.lb-page__content table { width: 100%; border-collapse: collapse; margin: 1.5em 0; }
.lb-page__content th, .lb-page__content td { border: 1px solid var(--lb-border); padding: 12px 16px; font-size: 0.88rem; text-align: left; vertical-align: top; }
.lb-page__content th { background: var(--lb-bg); width: 32%; font-weight: 700; }

/* ---------- 画像プレースホルダー ---------- */
.lb-img-placeholder {
	background: repeating-linear-gradient(45deg, #eee8de, #eee8de 12px, #e6dfd3 12px, #e6dfd3 24px);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #a89e91;
	font-size: 0.8rem;
	min-height: 240px;
	border-radius: var(--lb-r-md);
}

/* =========================================================
   レスポンシブ
   ========================================================= */
@media (max-width: 860px) {
	.lb-header__inner { height: 64px; padding: 0 76px 0 16px; gap: 12px; }
	.lb-nav { display: none; }
	.lb-header__cta { display: none; }

	.lb-hero-wrap, .lb-pagehero-wrap { padding-top: 76px; }
	.lb-hero { min-height: 480px; padding: 48px 24px; }
	.lb-hero__body { padding: 20px; }
	.lb-pagehero { min-height: 200px; padding: 40px 24px; }

	.lb-section { padding-top: 72px; }
	.lb-feature,
	.lb-feature--reverse { grid-template-columns: 1fr; gap: 24px; }
	.lb-feature--reverse .lb-feature__img { order: 0; }
	.lb-feature--reverse .lb-feature__text { order: 1; }
	.lb-cta { margin-top: 72px; }
	.lb-cta__inner { flex-direction: column; text-align: center; }
	.lb-strengths {
		display: flex;
		grid-template-columns: none;
		gap: 16px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scroll-padding: 0 24px;
		margin: 0 -24px; /* セクション左右余白を打ち消して端まで流す */
		padding: 4px 24px 16px;
		scrollbar-width: none;
	}
	.lb-strengths::-webkit-scrollbar { display: none; }
	.lb-recruit { margin-top: 72px; }
	.lb-recruit__inner { grid-template-columns: 1fr; gap: 32px; }
	.lb-recruit__img { order: -1; }
	.lb-partner { padding: 72px 24px 88px; }
	.lb-prefooter__inner { grid-template-columns: 1fr; }
	.lb-card { padding: 40px 22px; }
	.lb-greeting { padding: 40px 22px; }
	.lb-values__grid { grid-template-columns: 1fr; }
	.lb-about { grid-template-columns: 1fr; gap: 32px; padding: 32px 22px; }
	.lb-service-item,
	.lb-service-item--reverse { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
	.lb-service-item--reverse .lb-service-item__img { order: 0; }
	.lb-service-item--reverse .lb-service-item__text { order: 1; }
	.lb-footer__blob { border-radius: 50% 50% 0 0 / 48px 48px 0 0; }
}

/* =========================================================
   v3 追加：功有会風モーション・KV・メッセージ・メニュー
   ========================================================= */

/* ---------- スプリットテキスト ---------- */
.lb-split__ch {
	display: inline-block;
	opacity: 0;
	transform: translateY(0.6em);
	transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: calc(var(--i) * 0.035s);
}
.is-inview .lb-split__ch,
[data-split].is-inview .lb-split__ch { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .lb-split__ch { opacity: 1; transform: none; } }

/* ---------- スクロールリビール ---------- */
[data-reveal] {
	opacity: 0;
	transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--d, 0s);
}
[data-reveal="up"] { transform: translateY(28px); }
[data-reveal="rotate-l"] { transform: translateY(24px) rotate(-8deg); }
[data-reveal="rotate-r"] { transform: translateY(24px) rotate(8deg); }
[data-reveal="pop"] { transform: scale(0.85); }
[data-reveal].is-inview { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; } }

/* ---------- elastic ---------- */
.lb-elastic { transition: transform 0.45s cubic-bezier(0.22, 1.4, 0.36, 1); will-change: transform; }

/* ---------- パラパラ・イラストプレースホルダー ---------- */
.lb-parapara { position: relative; }
.lb-parapara > * { position: absolute; inset: 0; transition: opacity 0.05s; }
.lb-parapara > *:first-child { position: relative; }
.lb-illust {
	width: 100%;
	aspect-ratio: 1;
	border-radius: 50%;
	background: var(--lb-white);
	border: 2px dashed #d9cfc0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #b3a894;
	font-size: 0.62rem;
	letter-spacing: 0.06em;
	text-align: center;
	line-height: 1.5;
}

/* ---------- メニューボタン（Menu/Close 角丸スクエア） ---------- */
.lb-menubtn {
	position: fixed;
	top: 14px; right: 14px;
	z-index: 300;
	width: 60px; height: 60px;
	border: none;
	border-radius: var(--lb-r-sm);
	background: var(--lb-white);
	color: var(--lb-primary);
	box-shadow: 0 6px 20px rgba(60, 56, 53, 0.12);
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	font-family: inherit;
}
.lb-menubtn__bars { display: flex; flex-direction: column; gap: 4px; width: 22px; }
.lb-menubtn__bars span { height: 2.5px; border-radius: 2px; background: currentColor; }
.lb-menubtn__label--menu, .lb-menubtn__label--close { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.08em; }
.lb-menu-open .lb-menubtn { background: var(--lb-bg); }

/* ---------- フルスクリーンメニューオーバーレイ ---------- */
.lb-overlay {
	position: fixed;
	inset: 12px;
	z-index: 250;
	border-radius: var(--lb-r-xl);
	background: var(--lb-primary);
	color: var(--lb-white);
	opacity: 0;
	visibility: hidden;
	transform: scale(0.985);
	transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.45s;
	overflow: auto;
}
.lb-overlay.is-open { opacity: 1; visibility: visible; transform: scale(1); }
.lb-menu-open body { overflow: hidden; }
.lb-overlay__inner {
	min-height: 100%;
	padding: clamp(48px, 8vw, 96px) clamp(24px, 8vw, 110px);
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 56px;
	align-items: center;
}
.lb-overlay__nav { display: flex; flex-direction: column; gap: 4px; }
.lb-overlay__link {
	display: inline-block;
	font-size: clamp(1.4rem, 3.4vw, 2rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	padding: 8px 0;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: calc(var(--i) * 0.06s + 0.15s);
}
.lb-overlay.is-open .lb-overlay__link { opacity: 1; transform: none; }
.lb-overlay__link:hover { opacity: 0.75; }
.lb-overlay__sub { display: flex; flex-wrap: wrap; gap: 6px 22px; margin-top: 28px; }
.lb-overlay__sub a { font-size: 0.82rem; opacity: 0.85; }
.lb-overlay__sub a:hover { opacity: 1; text-decoration: underline; }
.lb-overlay__aside { border-left: 1px dashed rgba(255,255,255,0.4); padding-left: clamp(24px, 4vw, 56px); }
.lb-overlay__tel-label { font-weight: 700; font-size: 0.85rem; margin-bottom: 8px; }
.lb-overlay__tel { font-size: clamp(1.6rem, 3.4vw, 2.2rem); font-weight: 700; letter-spacing: 0.04em; display: inline-block; margin-bottom: 4px; }
.lb-overlay__hours { font-size: 0.82rem; opacity: 0.9; margin-bottom: 28px; }
.lb-overlay .lb-btn--light { width: 100%; margin-bottom: 12px; }

/* ---------- KV（横無限ループ＋ブロブコラージュ） ---------- */
.lb-kv { position: relative; padding: 72px 0 0; overflow: hidden; }
.lb-kv__mover { --kv-shift: 0px; }
.lb-kv__loop { position: relative; width: 100%; overflow: hidden; }
.lb-kv__track-wrap {
	display: flex;
	width: max-content;
	animation: lb-kv-loop 55s linear infinite;
	transform: translateX(calc(var(--kv-shift) * -1));
}
@keyframes lb-kv-loop { from { margin-left: 0; } to { margin-left: -1520px; } }
@media (prefers-reduced-motion: reduce) { .lb-kv__track-wrap { animation: none; } }
.lb-kv__track { position: relative; width: 1520px; height: 520px; flex-shrink: 0; }
.lb-kv__blob {
	position: absolute;
	overflow: hidden;
	background-size: cover;
	background-position: center;
}
.lb-kv__blob .lb-img-placeholder { width: 100%; height: 100%; min-height: 0; border-radius: 0; font-size: 0.66rem; }
/* 有機的なブロブ形状5種 */
.lb-blob--1 { border-radius: 58% 42% 55% 45% / 52% 55% 45% 48%; }
.lb-blob--2 { border-radius: 45% 55% 48% 52% / 60% 42% 58% 40%; }
.lb-blob--3 { border-radius: 52% 48% 60% 40% / 45% 58% 42% 55%; }
.lb-blob--4 { border-radius: 60% 40% 45% 55% / 55% 48% 52% 45%; }
.lb-blob--5 { border-radius: 44% 56% 58% 42% / 50% 44% 56% 50%; }
.lb-kv__illust { position: absolute; }

/* KVタイトルカード */
.lb-kv__title-wrap {
	position: absolute;
	top: clamp(84px, 12vw, 120px);
	right: clamp(16px, 6vw, 88px);
	z-index: 2;
}
.lb-kv__card {
	background: rgba(246, 243, 237, 0.95);
	border-radius: var(--lb-r-md);
	padding: clamp(24px, 3.5vw, 44px);
	display: flex;
	flex-direction: row-reverse;
	gap: clamp(20px, 3vw, 36px);
	box-shadow: 0 16px 48px rgba(60, 56, 53, 0.18);
}
.lb-kv__tagline {
	writing-mode: vertical-rl;
	font-size: clamp(1.7rem, 3.6vw, 2.5rem);
	font-weight: 700;
	letter-spacing: 0.18em;
	line-height: 1.5;
	margin: 0;
	color: var(--lb-text);
}
.lb-kv__copy {
	writing-mode: vertical-rl;
	font-size: 0.85rem;
	line-height: 2.4;
	letter-spacing: 0.1em;
	margin: 0;
	color: var(--lb-text-sub);
}
.lb-kv__scroll {
	position: fixed;
	left: 18px; bottom: 18px;
	z-index: 90;
	border: 1px solid var(--lb-text);
	border-radius: 999px;
	background: transparent;
	color: var(--lb-text);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	padding: 6px 16px;
	cursor: pointer;
	font-family: inherit;
}

/* ---------- ポエティックメッセージ ---------- */
.lb-msg { max-width: var(--lb-maxw); margin: 0 auto; padding: 140px 24px 0; position: relative; }
.lb-msg__line {
	display: block;
	font-size: clamp(1.05rem, 2.4vw, 1.45rem);
	font-weight: 400;
	line-height: 2.3;
	letter-spacing: 0.06em;
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.9s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--d, 0s);
}
.lb-msg__line.is-inview { opacity: 1; transform: none; }
.lb-msg__block { margin-bottom: 72px; position: relative; }
.lb-msg__block--indent1 { padding-left: clamp(24px, 12vw, 180px); }
.lb-msg__block--indent2 { padding-left: clamp(48px, 22vw, 320px); }
.lb-msg__last { font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 700; }
.lb-msg__illust { position: absolute; width: clamp(72px, 10vw, 130px); }

/* ---------- ニュース ---------- */
.lb-news { max-width: var(--lb-maxw); margin: 0 auto; padding: 100px 24px 0; }
.lb-news__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 44px; flex-wrap: wrap; gap: 16px; }
.lb-news__more { font-size: 0.85rem; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; }
.lb-news__more .lb-arrow { font-size: 0.85rem; width: 1.7em; height: 1.7em; }
.lb-news__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.lb-news-card { display: block; }
.lb-news-card__img,
.lb-news-card__img .lb-img-placeholder {
	width: 100%;
	aspect-ratio: 364 / 243;
	object-fit: cover;
	border-radius: var(--lb-r-md);
	overflow: hidden;
	min-height: 0;
}
.lb-news-card__title { font-size: 0.9rem; font-weight: 500; line-height: 1.8; margin: 16px 4px 12px; }
.lb-news-card:hover .lb-news-card__title { opacity: 0.6; transition: opacity 0.4s ease; }
.lb-news-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 4px; }
.lb-news-card__cat {
	background: var(--lb-white);
	border: 1px solid var(--lb-border);
	color: var(--lb-primary-dark);
	font-size: 0.7rem;
	font-weight: 700;
	border-radius: 999px;
	padding: 3px 14px;
}
.lb-news-card__date { font-size: 0.75rem; font-weight: 700; color: var(--lb-text-sub); letter-spacing: 0.04em; }

/* ---------- フッターの波＋ブロブ内イラスト ---------- */
.lb-footer__wave { display: block; width: 100%; height: auto; margin-bottom: -1px; }
.lb-footer__blob { position: relative; }
.lb-footer__blob .lb-illust { position: absolute; background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.5); color: rgba(255,255,255,0.85); }

@media (max-width: 860px) {
	.lb-overlay__inner { grid-template-columns: 1fr; gap: 40px; align-content: start; padding-top: 88px; }
	.lb-overlay__aside { border-left: none; border-top: 1px dashed rgba(255,255,255,0.4); padding-left: 0; padding-top: 28px; }
	.lb-menubtn { width: 52px; height: 52px; top: 10px; right: 10px; }
	.lb-kv__track { height: 380px; }
	.lb-kv__title-wrap {
		position: absolute;
		top: 50%;
		right: 12px;
		left: auto;
		transform: translateY(-50%);
		z-index: 3;
		margin: 0;
		display: block;
	}
	.lb-msg { padding-top: 96px; }
	.lb-msg__block--indent1 { padding-left: 24px; }
	.lb-msg__block--indent2 { padding-left: 48px; }
	.lb-news__grid { grid-template-columns: 1fr; gap: 40px; }
}

.lb-kv__blob img { width: 100%; height: 100%; object-fit: cover; }
.lb-msg__illust .lb-illust, .lb-kv__illust .lb-illust { font-size: 0.58rem; }

/* =========================================================
   v3.1 レスポンシブ強化
   ========================================================= */
@media (max-width: 860px) {
	/* KV：全体をスケールダウンしてループを維持 */
	.lb-kv { padding-top: 64px; }
	.lb-kv__loop { height: 380px; }
	.lb-kv__track-wrap { transform: scale(0.72); transform-origin: left top; }
	.lb-kv__track { height: 520px; }
	.lb-kv__card { padding: 20px 22px; gap: 18px; }
	.lb-kv__scroll { left: 12px; bottom: 12px; padding: 5px 13px; font-size: 0.62rem; }

	/* メッセージ */
	.lb-msg { padding-top: 80px; }
	.lb-msg__line { line-height: 2.15; }
	.lb-msg__illust { width: clamp(60px, 16vw, 90px); }

	/* ニュース：メタの余白 */
	.lb-news { padding-top: 72px; }
	.lb-news__head { margin-bottom: 32px; }

	/* CTA・提携・プレフッターのタップ領域 */
	.lb-cta .lb-btn--light { width: 100%; justify-content: space-between; }
	.lb-partner__card { padding: 22px 20px; }
	.lb-prefooter__card { padding: 24px 20px; }

	/* フッターブロブ：イラスト枠を整理 */
	.lb-footer { margin-top: 72px; }
	.lb-footer__blob { padding-top: 72px; padding-bottom: 24px; }
	.lb-footer__blob .lb-illust:nth-of-type(2),
	.lb-footer__blob .lb-illust:nth-of-type(4) { display: none; }
	.lb-footer__blob .lb-illust { width: 58px !important; bottom: auto !important; top: 8px; }

	/* オーバーレイ内ボタン */
	.lb-overlay { inset: 8px; border-radius: var(--lb-r-lg); }
}

@media (max-width: 480px) {
	.lb-kv__loop { height: 300px; }
	.lb-kv__track-wrap { transform: scale(0.56); }
	.lb-kv__tagline { font-size: 1.45rem; letter-spacing: 0.14em; }
	.lb-kv__copy { font-size: 0.76rem; line-height: 2.1; }
	.lb-strength { padding: 28px 22px 32px; }
	.lb-msg__block--indent1 { padding-left: 16px; }
	.lb-msg__block--indent2 { padding-left: 32px; }
	.lb-overlay__link { font-size: 1.3rem; }
}

/* タブレット（861〜1080px）：2カラム維持しつつ余白調整 */
@media (min-width: 861px) and (max-width: 1080px) {
	.lb-feature { gap: 36px; }
	.lb-recruit__inner { gap: 36px; }
	.lb-news__grid { gap: 20px; }
}


/* =========================================================
   v3.2 メニューボタン・ヘッダー挙動の仕上げ
   ========================================================= */

/* スクロール時：ヘッダーがふわっと退避し、Menuボタンだけ残る */
.lb-header {
	transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.4s;
}
.lb-scrolled .lb-header {
	opacity: 0;
	visibility: hidden;
	transform: translateY(-12px);
	pointer-events: none;
}
.lb-menu-open .lb-header { opacity: 0; visibility: hidden; pointer-events: none; }

/* メニューボタン：ヘッダーと縦位置を揃え、ホバーで色反転 */
.lb-menubtn {
	top: 12px;
	transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.45s cubic-bezier(0.22, 1.4, 0.36, 1);
}
.lb-menubtn:hover {
	background: var(--lb-primary);
	color: var(--lb-white);
	box-shadow: 0 10px 26px rgba(63, 159, 216, 0.35);
}
.lb-menu-open .lb-menubtn {
	background: var(--lb-bg);
	color: var(--lb-primary);
	box-shadow: none;
}
.lb-menu-open .lb-menubtn:hover { background: var(--lb-white); }

/* バー → × のモーフ */
.lb-menubtn__bars { position: relative; height: 14px; justify-content: center; }
.lb-menubtn__bars span {
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
	transform-origin: center;
}
.lb-menu-open .lb-menubtn__bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.lb-menu-open .lb-menubtn__bars span:nth-child(2) { opacity: 0; transform: scaleX(0.4); }
.lb-menu-open .lb-menubtn__bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Scrollピル：KVを過ぎたらフェードアウト */
.lb-kv__scroll { transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s; }
.lb-kv__scroll.is-hidden { opacity: 0; visibility: hidden; transform: translateY(8px); }
.lb-kv__scroll:hover { background: var(--lb-text); color: var(--lb-bg); }

@media (max-width: 860px) {
	.lb-menubtn { top: 8px; right: 8px; }
}

/* =========================================================
   v4：4事業構成（事業内容カード・強み3列・サービスグループ）
   ========================================================= */
.lb-biz {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}
.lb-biz-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	background: var(--lb-white);
	border: 1px solid var(--lb-border);
	border-radius: var(--lb-r-lg);
	padding: 36px 40px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lb-biz-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(60, 56, 53, 0.1); }
.lb-biz-card__meta {
	display: flex;
	justify-content: space-between;
	color: var(--lb-primary-dark);
	font-weight: 700;
	font-size: 0.82rem;
	letter-spacing: 0.08em;
}
.lb-biz-card__title { font-size: 1.25rem; font-weight: 700; letter-spacing: 0.04em; }
.lb-biz-card__body { font-size: 0.86rem; color: var(--lb-text-sub); line-height: 2; margin: 0; flex: 1; }
.lb-biz-card__more {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--lb-primary-dark);
	margin-top: 6px;
}
.lb-biz-card__more .lb-arrow { font-size: 0.8rem; width: 1.7em; height: 1.7em; transition: transform 0.25s ease; }
.lb-biz-card:hover .lb-biz-card__more .lb-arrow { transform: translateX(4px); }

.lb-strengths--3 { grid-template-columns: repeat(3, 1fr); max-width: var(--lb-maxw); gap: 24px; }
.lb-strengths--3 .lb-strength { padding: 30px 30px 34px; }
.lb-strength__body small { font-size: 0.72rem; color: #a09788; }

/* サービスページ：グループ見出し＋アンカーピル */
.lb-service-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 28px; }
.lb-service-nav a {
	background: var(--lb-white);
	border: 1px solid var(--lb-border);
	border-radius: 999px;
	padding: 8px 22px;
	font-size: 0.82rem;
	font-weight: 700;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.lb-service-nav a:hover { background: var(--lb-primary); color: var(--lb-white); transform: translateY(-2px); }
.lb-service-group {
	text-align: center;
	font-size: clamp(1.35rem, 3vw, 1.7rem);
	font-weight: 700;
	letter-spacing: 0.05em;
	margin: 88px 0 8px;
	scroll-margin-top: 90px;
}
.lb-service-group:first-of-type { margin-top: 0; }
.lb-service-group .lb-eyebrow { margin-bottom: 2px; }
.lb-service-group__lead { text-align: center; color: var(--lb-text-sub); font-size: 0.88rem; margin: 0 0 36px; }

@media (max-width: 860px) {
	.lb-biz { grid-template-columns: 1fr; gap: 16px; }
	.lb-biz-card { padding: 28px 24px; }
	.lb-strengths--3 { grid-template-columns: none; }
	.lb-strengths .lb-strength {
		flex: 0 0 82%;
		scroll-snap-align: center;
		margin: 0;
	}
	.lb-service-nav { gap: 8px; }
	.lb-service-nav a { padding: 7px 16px; font-size: 0.78rem; }
	.lb-service-group { margin-top: 64px; scroll-margin-top: 72px; }
}
@media (min-width: 861px) and (max-width: 1080px) {
	.lb-strengths--3 { gap: 16px; }
	.lb-strengths--3 .lb-strength { padding: 26px 22px 30px; }
}

/* =========================================================
   v4.1 メインサービスを主役に
   ========================================================= */
.lb-biz-featured {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: clamp(28px, 4vw, 56px);
	align-items: center;
	background: var(--lb-white);
	border: 2px solid var(--lb-primary);
	border-radius: var(--lb-r-lg);
	padding: clamp(28px, 4.5vw, 56px);
	margin-bottom: 56px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lb-biz-featured:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(63, 159, 216, 0.18); }
.lb-biz-featured__title { font-size: clamp(1.5rem, 3.2vw, 2rem); font-weight: 700; letter-spacing: 0.04em; margin: 6px 0 16px; }
.lb-biz-featured__body { font-size: 0.9rem; color: var(--lb-text-sub); line-height: 2.05; }
.lb-biz-featured__list { margin: 0 0 26px; }
.lb-biz-featured__list li {
	position: relative;
	padding-left: 1.5em;
	font-size: 0.86rem;
	margin-bottom: 8px;
	font-weight: 500;
}
.lb-biz-featured__list li::before {
	content: "";
	position: absolute;
	left: 0; top: 0.7em;
	width: 0.55em; height: 0.55em;
	border-radius: 50%;
	background: var(--lb-primary);
}
.lb-biz-featured__img img,
.lb-biz-featured__img .lb-img-placeholder {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--lb-r-md);
}
.lb-biz-featured__btn { pointer-events: none; } /* カード全体がリンクのため */

.lb-biz-sublabel {
	text-align: center;
	font-weight: 700;
	font-size: 1.05rem;
	margin: 0 0 28px;
}
.lb-biz-sublabel .lb-eyebrow { margin-bottom: 0; }
.lb-biz--3 { grid-template-columns: repeat(3, 1fr); }
.lb-biz--3 .lb-biz-card { padding: 30px 28px; }
.lb-biz--3 .lb-biz-card__title { font-size: 1.1rem; }
.lb-biz--3 .lb-biz-card__body { font-size: 0.82rem; }

@media (max-width: 860px) {
	.lb-biz-featured { grid-template-columns: 1fr; gap: 20px; padding: 26px 22px; margin-bottom: 44px; }
	.lb-biz-featured__img { order: -1; }
	.lb-biz--3 { grid-template-columns: 1fr; }
}
@media (min-width: 861px) and (max-width: 1080px) {
	.lb-biz--3 { gap: 16px; }
	.lb-biz--3 .lb-biz-card { padding: 24px 20px; }
}

/* =========================================================
   v5：モーション増強
   ========================================================= */

/* ---------- ふわふわ浮遊（イラスト・KVブロブ） ---------- */
@keyframes lb-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes lb-float-r { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-8px) rotate(3deg); } }
.lb-illust, .lb-kv__illust { animation: lb-float 5s ease-in-out infinite; }
.lb-kv__illust:nth-of-type(odd) .lb-illust,
.lb-msg__illust .lb-illust { animation: lb-float-r 6s ease-in-out infinite; }
.lb-kv__illust:nth-of-type(2) { animation-delay: 1.2s; }
.lb-kv__illust:nth-of-type(3) { animation-delay: 2.4s; }
.lb-kv__illust:nth-of-type(4) { animation-delay: 0.6s; }
.lb-footer__blob .lb-illust:nth-of-type(2) { animation-delay: 1.5s; }
.lb-footer__blob .lb-illust:nth-of-type(3) { animation-delay: 0.8s; }

/* ---------- KVブロブ：ゆっくり形が変わるモーフィング ---------- */
@keyframes lb-morph-1 {
	0%,100% { border-radius: 58% 42% 55% 45% / 52% 55% 45% 48%; }
	50%     { border-radius: 45% 55% 48% 52% / 55% 45% 55% 45%; }
}
@keyframes lb-morph-2 {
	0%,100% { border-radius: 45% 55% 48% 52% / 60% 42% 58% 40%; }
	50%     { border-radius: 55% 45% 58% 42% / 45% 55% 42% 58%; }
}
@keyframes lb-morph-3 {
	0%,100% { border-radius: 52% 48% 60% 40% / 45% 58% 42% 55%; }
	50%     { border-radius: 42% 58% 45% 55% / 55% 45% 58% 42%; }
}
.lb-blob--1 { animation: lb-morph-1 11s ease-in-out infinite; }
.lb-blob--2 { animation: lb-morph-2 13s ease-in-out infinite; }
.lb-blob--3 { animation: lb-morph-3 10s ease-in-out infinite; }
.lb-blob--4 { animation: lb-morph-2 12s ease-in-out infinite reverse; }
.lb-blob--5 { animation: lb-morph-1 14s ease-in-out infinite reverse; }

/* ---------- 画像のマスクワイプ出現 ---------- */
[data-mask] {
	clip-path: inset(12% 6% 12% 6% round 24px);
	opacity: 0;
	transition: clip-path 1.1s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease;
	transition-delay: var(--d, 0.1s);
}
[data-mask].is-inview { clip-path: inset(0 0 0 0 round 16px); opacity: 1; }

/* ---------- ホバーで写真ズーム ---------- */
.lb-feature__img, .lb-strength__img, .lb-recruit__img, .lb-news-card__img,
.lb-biz-featured__img, .lb-service-item__img {
	overflow: hidden;
	border-radius: var(--lb-r-md);
}
.lb-feature__img img, .lb-strength__img img, .lb-recruit__img img, .lb-news-card__img img,
.lb-biz-featured__img img, .lb-service-item__img img,
.lb-feature__img .lb-img-placeholder, .lb-strength__img .lb-img-placeholder,
.lb-recruit__img .lb-img-placeholder, .lb-news-card__img .lb-img-placeholder,
.lb-biz-featured__img .lb-img-placeholder, .lb-service-item__img .lb-img-placeholder {
	transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.lb-feature:hover .lb-feature__img img, .lb-feature:hover .lb-feature__img .lb-img-placeholder,
.lb-strength:hover .lb-strength__img img, .lb-strength:hover .lb-strength__img .lb-img-placeholder,
.lb-news-card:hover .lb-news-card__img img, .lb-news-card:hover .lb-news-card__img .lb-img-placeholder,
.lb-biz-featured:hover .lb-biz-featured__img img, .lb-biz-featured:hover .lb-biz-featured__img .lb-img-placeholder,
.lb-service-item:hover .lb-service-item__img img, .lb-service-item:hover .lb-service-item__img .lb-img-placeholder {
	transform: scale(1.06);
}

/* ---------- マーキー（流れるアウトライン文字） ---------- */
.lb-marquee {
	overflow: hidden;
	padding: 72px 0 0;
	user-select: none;
	pointer-events: none;
}
.lb-marquee__track {
	display: flex;
	width: max-content;
	animation: lb-marquee 26s linear infinite;
}
@keyframes lb-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.lb-marquee__unit {
	display: flex;
	align-items: center;
	gap: 48px;
	padding-right: 48px;
	white-space: nowrap;
	font-weight: 900;
	font-size: clamp(3rem, 8vw, 6rem);
	line-height: 1.2;
	letter-spacing: 0.04em;
	color: transparent;
	-webkit-text-stroke: 1.5px #cfe4f2;
}
.lb-marquee__unit .lb-marquee__dot {
	width: 0.35em; height: 0.35em;
	border-radius: 50%;
	background: var(--lb-primary);
	opacity: 0.5;
	-webkit-text-stroke: 0;
}
.lb-marquee__unit em { font-style: normal; color: var(--lb-primary); -webkit-text-stroke: 0; opacity: 0.16; }

/* ---------- CTAカード：漂う装飾 ---------- */
.lb-cta__inner { position: relative; overflow: hidden; }
.lb-cta__inner::before,
.lb-cta__inner::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	pointer-events: none;
}
.lb-cta__inner::before {
	width: 220px; height: 220px;
	top: -80px; right: 12%;
	animation: lb-float 7s ease-in-out infinite;
}
.lb-cta__inner::after {
	width: 130px; height: 130px;
	bottom: -50px; left: 6%;
	animation: lb-float-r 9s ease-in-out infinite;
}
.lb-cta__text, .lb-cta .lb-btn { position: relative; z-index: 1; }

/* ---------- パララックス ---------- */
[data-parallax] { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
	.lb-illust, .lb-kv__illust,
	.lb-blob--1, .lb-blob--2, .lb-blob--3, .lb-blob--4, .lb-blob--5,
	.lb-marquee__track,
	.lb-cta__inner::before, .lb-cta__inner::after { animation: none !important; }
	[data-mask] { clip-path: none; opacity: 1; }
}
@media (max-width: 860px) {
	.lb-marquee { padding-top: 56px; }
	.lb-marquee__unit { gap: 28px; padding-right: 28px; }
}

/* =========================================================
   v6：実イラスト組み込み
   ========================================================= */
.lb-illust-img { width: 100%; height: auto; display: block; }
.lb-kv__illust .lb-illust-img,
.lb-msg__illust .lb-illust-img { animation: lb-float-r 6s ease-in-out infinite; filter: drop-shadow(0 4px 10px rgba(60,56,53,0.08)); }
.lb-philosophy-illust { max-width: 220px; margin: 0 auto 28px; }
.lb-philosophy-illust .lb-illust-img { animation: lb-float 6s ease-in-out infinite; }
.lb-footer__illust { position: absolute; }
.lb-footer__illust .lb-illust-img { animation: lb-float 5s ease-in-out infinite; opacity: 0.95; }
.lb-footer__illust:nth-of-type(2) .lb-illust-img { animation-delay: 1.4s; }
.lb-footer__illust:nth-of-type(3) .lb-illust-img { animation-delay: 0.7s; }
.lb-footer__illust:nth-of-type(4) .lb-illust-img { animation-delay: 2.1s; }
@media (max-width: 860px) {
	.lb-footer__illust:nth-of-type(2),
	.lb-footer__illust:nth-of-type(4) { display: none; }
	.lb-footer__illust { width: 58px !important; bottom: auto !important; top: 10px; }
	.lb-philosophy-illust { max-width: 150px; }
}
@media (prefers-reduced-motion: reduce) { .lb-illust-img { animation: none !important; } }

/* =========================================================
   v7：追従波型CTAバー
   ========================================================= */
.lb-stickybar {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 90;
	transform: translateY(110%);
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
	pointer-events: none;
}
.lb-stickybar.is-show { transform: translateY(0); pointer-events: auto; }
.lb-menu-open .lb-stickybar { transform: translateY(110%); }

/* 波：横に2周期分の波をループさせて「波打つ」動きに */
.lb-stickybar__waves { overflow: hidden; height: 64px; margin-bottom: -1px; }
.lb-stickybar__wave {
	display: block;
	width: 200%;
	height: 64px;
	animation: lb-wave-slide 7s linear infinite;
}
@keyframes lb-wave-slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.lb-stickybar__inner {
	background: #3f9fd8;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(16px, 4vw, 40px);
	padding: 10px 16px calc(14px + env(safe-area-inset-bottom, 0px));
	color: var(--lb-white);
}
.lb-stickybar__tel { display: flex; flex-direction: column; line-height: 1.4; }
.lb-stickybar__tel-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; opacity: 0.9; }
.lb-stickybar__tel-num { font-size: clamp(1.05rem, 2.6vw, 1.3rem); font-weight: 700; letter-spacing: 0.04em; }
.lb-stickybar__btn { font-size: 0.84rem; padding: 0.7em 1em 0.7em 1.3em; }

@media (max-width: 860px) {
	.lb-stickybar__inner { gap: 12px; padding-top: 8px; }
	.lb-stickybar__btn { font-size: 0.78rem; }
	/* Scrollピルと重なるため、バー表示中の下部余白 */
	.lb-kv__scroll { bottom: 14px; }
}
@media (prefers-reduced-motion: reduce) { .lb-stickybar__wave { animation: none; } }

/* v7.1：CTAバー常時表示に伴う調整 */
.lb-kv__scroll { bottom: 96px; } /* バーと重ならない位置へ */
@media (max-width: 860px) { .lb-kv__scroll { bottom: 92px; } }

/* v7.2：極小幅（〜380px）でのCTAバー最適化 */
@media (max-width: 380px) {
	.lb-stickybar__inner { gap: 10px; padding-left: 10px; padding-right: 10px; }
	.lb-stickybar__tel-label { font-size: 0.6rem; }
	.lb-stickybar__tel-num { font-size: 0.95rem; }
	.lb-stickybar__btn { font-size: 0.72rem; padding: 0.65em 0.8em 0.65em 1em; gap: 10px; }
}

/* =========================================================
   v8：メッセージセクションにブロブ写真
   ========================================================= */
.lb-msg__photo {
	position: absolute;
	width: clamp(180px, 22vw, 280px);
	aspect-ratio: 1;
	overflow: hidden;
	z-index: -1;
	opacity: 0.95;
}
.lb-msg__photo--sm { width: clamp(120px, 11vw, 150px); }
.lb-msg__photo img { width: 100%; height: 100%; object-fit: cover; }
.lb-msg__block { z-index: 0; }
.lb-msg__photo.lb-blob--2 { animation: lb-morph-2 14s ease-in-out infinite; }
.lb-msg__photo.lb-blob--4 { animation: lb-morph-2 12s ease-in-out infinite reverse; }
.lb-msg__photo.lb-blob--5 { animation: lb-morph-1 15s ease-in-out infinite reverse; }

@media (max-width: 860px) {
	/* モバイル：浮遊をやめて本文の下に流し込む（重なり構造的にゼロ） */
	.lb-msg__photo,
	.lb-msg__photo--sm {
		position: static;
		display: block;
		width: min(58vw, 220px);
		margin: 18px 0 4px auto; /* 右寄せ */
		opacity: 1;
		z-index: 0;
		transform: none !important;
	}
	.lb-msg__photo--sm { margin-left: 0; margin-right: auto; } /* 2枚目は左寄せで交互に */
}

/* v8.1：狭幅で書類イラストが1行目と接触するのを解消（さらに上へ退避） */
@media (max-width: 860px) {
	.lb-msg { padding-top: 110px; } /* イラスト分の余白を上に確保 */
	.lb-msg__block:first-child .lb-msg__illust { top: -78px !important; right: 4% !important; }
}


/* v8.2：追従バーの波を拡大（モバイルでも視認できるサイズに） */
@media (max-width: 860px) {
	.lb-stickybar__waves, .lb-stickybar__wave { height: 54px; }
}

/* v8.2：480px帯で橋渡りイラストが文字に接触する問題の恒久対策
   （モバイルは絶対配置をやめて本文末尾の静的フローに） */
@media (max-width: 860px) {
	.lb-msg__block--indent2 .lb-msg__illust {
		position: static;
		width: 68px;
		margin: 12px 6px 0 auto;
	}
}

/* =========================================================
   v9：お知らせ 個別・一覧
   ========================================================= */
.lb-single { max-width: 800px; }
.lb-single__meta { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.lb-single__cat {
	background: var(--lb-primary);
	color: var(--lb-white);
	font-size: 0.72rem;
	font-weight: 700;
	border-radius: 999px;
	padding: 4px 16px;
}
.lb-single__date { font-size: 0.82rem; font-weight: 700; color: var(--lb-text-sub); letter-spacing: 0.04em; }
.lb-single__title {
	font-size: clamp(1.4rem, 3.2vw, 2rem);
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.03em;
	margin-bottom: 28px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--lb-border);
}
.lb-single__thumb { margin-bottom: 32px; }
.lb-single__thumb img { width: 100%; height: auto; border-radius: var(--lb-r-md); }
.lb-single__body { font-size: 0.95rem; line-height: 2.1; color: var(--lb-text); }
.lb-single__body p { margin-bottom: 1.5em; }
.lb-single__body h2 { font-size: 1.25rem; margin: 1.8em 0 0.8em; }
.lb-single__body h3 { font-size: 1.1rem; margin: 1.6em 0 0.7em; }
.lb-single__body ul, .lb-single__body ol { margin: 0 0 1.5em 1.5em; }
.lb-single__body a { color: var(--lb-primary-dark); text-decoration: underline; }
.lb-single__body img { max-width: 100%; height: auto; border-radius: var(--lb-r-sm); }

.lb-single__nav {
	max-width: 800px;
	margin: 40px auto 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
.lb-single__navlink {
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--lb-text-sub);
	transition: color 0.2s ease;
}
.lb-single__navlink:hover { color: var(--lb-primary-dark); }
.lb-single__navlink--list {
	background: var(--lb-white);
	border: 1px solid var(--lb-border);
	border-radius: 999px;
	padding: 10px 24px;
	color: var(--lb-text);
}
.lb-single__navlink--list:hover { background: var(--lb-primary); color: var(--lb-white); border-color: var(--lb-primary); }

/* お知らせ一覧のページネーション */
.lb-pagination { margin-top: 48px; text-align: center; }
.lb-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px; height: 40px;
	padding: 0 8px;
	margin: 0 4px;
	border-radius: var(--lb-r-sm);
	background: var(--lb-white);
	border: 1px solid var(--lb-border);
	font-weight: 700;
	font-size: 0.85rem;
	transition: background 0.2s ease, color 0.2s ease;
}
.lb-pagination .page-numbers.current { background: var(--lb-primary); color: var(--lb-white); border-color: var(--lb-primary); }
.lb-pagination a.page-numbers:hover { background: var(--lb-primary-soft); }

@media (max-width: 860px) {
	.lb-single__nav { flex-wrap: wrap; justify-content: center; }
}


/* v9.1：メッセージ最終ブロックの補強（署名・CTA） */
.lb-msg__block--last { padding-bottom: 20px; }
.lb-msg__sign {
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.08em;
	color: var(--lb-text);
	margin: 28px 0 0;
	opacity: 0;
	transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.22,1,0.36,1);
	transition-delay: var(--d, 0s);
	transform: translateY(20px);
}
.lb-msg__sign::before {
	content: "";
	display: inline-block;
	width: 32px; height: 2px;
	background: var(--lb-primary);
	vertical-align: middle;
	margin-right: 14px;
}
.lb-msg__sign.is-inview { opacity: 1; transform: none; }
.lb-msg__cta {
	margin-top: 24px;
	opacity: 0;
	transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.22,1,0.36,1);
	transition-delay: var(--d, 0s);
	transform: translateY(20px);
}
.lb-msg__cta.is-inview { opacity: 1; transform: none; }
@media (max-width: 860px) {
	.lb-msg__block--last { padding-bottom: 8px; }
	.lb-msg__cta { display: inline-flex; }
}

/* v9.2：強みカルーセルのスワイプ導線（モバイルのみ） */
.lb-strengths-hint { display: none; }
@media (max-width: 860px) {
	.lb-strengths-hint {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		font-size: 0.72rem;
		font-weight: 700;
		color: var(--lb-text-sub);
		letter-spacing: 0.06em;
		margin-top: 4px;
	}
	.lb-strengths-hint::before,
	.lb-strengths-hint::after {
		content: "";
		width: 20px; height: 1px;
		background: var(--lb-border);
	}
}


/* v9.3：代表イラスト（正方形・水彩）を美しく表示 */
.lb-greeting__portrait { max-width: 320px; }
.lb-greeting__portrait img,
.lb-greeting__portrait .lb-img-placeholder {
	aspect-ratio: 1 / 1;
	object-fit: contain;
	background: linear-gradient(180deg, #f6f9fc 0%, #eef5fb 100%);
	border-radius: var(--lb-r-lg);
	padding: 8px;
}
