/*
Theme Name: Lazorico
Theme URI: https://lazorico.com
Author: Lazorico
Author URI: https://lazorico.com
Description: Lazorico オリジナルWordPressテーマ
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lazorico
Tags: custom, responsive
*/

/* ===========================
   Reset & Base
=========================== */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
	font-size: 1rem;
	line-height: 1.7;
	color: #333;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

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

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

ul {
	list-style: none;
}

/* ===========================
   Layout
=========================== */
.container {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 20px;
}

/* SP専用改行（PCでは非表示） */
.sp-only { display: none; }
@media (max-width: 750px) {
	.sp-only { display: inline; }
}

.site-wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.site-main {
	flex: 1;
	padding: 60px 0;
}

.home .site-main,
.page-template-page-privacy .site-main,
.page-template-page-contact .site-main,
.page-template-page-about .site-main,
.page-template-page-partner .site-main,
.page-template-page-faq .site-main,
.page-template-page-flow .site-main,
.page-template-page-service .site-main,
.page-template-page-thanks .site-main,
.page-template-page-case .site-main,
.post-type-archive-news .site-main,
.single-news .site-main,
.post-type-archive-blog .site-main,
.tax-blog_cat .site-main,
.single-blog .site-main,
.post-type-archive-works .site-main,
.tax-works_cat .site-main,
.single-works .site-main {
	padding: 0;
}

.page-template-page-privacy .site-main > .container,
.page-template-page-contact .site-main > .container,
.page-template-page-about .site-main > .container,
.page-template-page-partner .site-main > .container,
.page-template-page-faq .site-main > .container,
.page-template-page-flow .site-main > .container,
.page-template-page-service .site-main > .container,
.page-template-page-thanks .site-main > .container,
.page-template-page-case .site-main > .container,
.post-type-archive-news .site-main > .container,
.single-news .site-main > .container,
.post-type-archive-blog .site-main > .container,
.tax-blog_cat .site-main > .container,
.single-blog .site-main > .container,
.post-type-archive-works .site-main > .container,
.tax-works_cat .site-main > .container,
.single-works .site-main > .container {
	max-width: none;
	padding: 0;
}

/* 細めコンテナ（文章ページ用） */
.container--narrow {
	max-width: 900px;
}

/* ===========================
   Header
=========================== */
.site-header {
	background-color: #fff;
	border-bottom: 1px solid #e0e0e0;
	position: sticky;
	top: 0;
	z-index: 200;
}

/* ロゴ＋ナビ */
.header-main .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	height: 60px;
}

/* ロゴ */
.site-branding {
	flex-shrink: 0;
}

.custom-logo-link img {
	height: 48px;
	width: auto;
	display: block;
}

.site-title {
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

.site-title a:hover {
	opacity: 0.75;
}

/* 電話＋LINE（上段） */
.header-contact {
	display: flex;
	align-items: center;
	gap: 16px;
}

.header-contact__tel {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.9rem;
	font-weight: 700;
	color: #1c5c99;
	white-space: nowrap;
	transition: opacity 0.2s;
}

.header-contact__tel svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.header-contact__tel:hover {
	opacity: 0.75;
}

.header-contact__line {
	display: flex;
	align-items: center;
	gap: 6px;
	background-color: #06c755;
	color: #fff;
	font-size: 0.85rem;
	font-weight: 700;
	padding: 5px 14px;
	border-radius: 4px;
	white-space: nowrap;
	transition: opacity 0.2s;
}

.header-contact__line svg {
	width: 17px;
	height: 17px;
	flex-shrink: 0;
}

.header-contact__line:hover {
	opacity: 0.85;
}

/* ナビ（PC） */
.global-nav ul {
	display: flex;
	align-items: center;
	gap: 24px;
	white-space: nowrap;
}

.global-nav a {
	font-size: 1rem;
	font-weight: 500;
	transition: color 0.2s;
}

.global-nav a:hover {
	color: #2884da;
}

/* お問い合わせだけボタン風（オレンジ） */
.global-nav .menu-item-contact > a {
	display: inline-block;
	background: #F59E0B;
	color: #fff;
	padding: 9px 22px;
	border-radius: 999px;
	font-weight: 700;
	transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.global-nav .menu-item-contact > a:hover {
	background: #d98708;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35);
}

/* ドロップダウン */
.global-nav .menu-item-has-children {
	position: relative;
}

.global-nav .sub-menu {
	display: none;
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	border-radius: 4px;
	padding: 8px 0;
	flex-direction: column;
	gap: 0;
	min-width: 220px;
	z-index: 300;
}

.global-nav .menu-item-has-children:hover .sub-menu {
	display: flex;
}

.global-nav .menu-item-has-children > a {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.global-nav .nav-caret,
.nav-drawer .nav-caret {
	width: 13px;
	height: 13px;
	flex-shrink: 0;
}

.global-nav .menu-item-has-children > a::after {
	content: '';
	position: absolute;
	bottom: -12px;
	left: 0;
	width: 100%;
	height: 12px;
}

.global-nav .sub-menu li {
	width: 100%;
}

.global-nav .sub-menu a {
	display: block;
	padding: 10px 20px;
	font-size: 0.85rem;
	color: #333;
	white-space: nowrap;
}

.global-nav .sub-menu a:hover {
	background: #edf5fc;
	color: #2884da;
}

/* ハンバーガーボタン */
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	flex-shrink: 0;
}

.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background-color: #1c5c99;
	border-radius: 2px;
	transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ドロワーナビ（SP） */
.nav-drawer {
	display: none;
	position: fixed;
	top: 0;
	right: -100%;
	width: min(320px, 85vw);
	height: 100%;
	background: #fff;
	z-index: 400;
	overflow-y: auto;
	transition: right 0.3s ease;
	padding: 60px 0 24px;
	box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

.nav-drawer.is-open {
	right: 0;
}

.nav-drawer__nav ul {
	display: flex;
	flex-direction: column;
}

.nav-drawer__nav > ul > li > a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	font-size: 0.95rem;
	font-weight: 600;
	color: #1c5c99;
	border-bottom: 1px solid #f0f0f0;
}

.nav-drawer__nav .sub-menu {
	background: #edf5fc;
}

.nav-drawer__nav .sub-menu a {
	display: block;
	padding: 11px 28px 11px 40px;
	font-size: 0.85rem;
	color: #444;
	border-bottom: 1px solid #eef0f5;
}

.nav-drawer__contact {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 28px 28px 0;
}

.nav-drawer__contact .header-contact__tel {
	font-size: 1rem;
}

.nav-drawer__contact .header-contact__line {
	justify-content: center;
	padding: 10px;
	font-size: 0.9rem;
}

.nav-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 350;
}

.nav-overlay.is-open {
	display: block;
}


/* ===========================
   Footer
=========================== */
.site-footer {
	background-color: #31353f;
	color: #e2e8f0;
	padding: 64px 0 0;
}

.footer__inner {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	column-gap: 80px;
	row-gap: 40px;
	padding-bottom: 56px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

/* ナビの2カラムを footer__inner のグリッドに直接流し込む */
.footer__nav {
	display: contents;
}

.footer__logo {
	font-size: 1.2rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 16px;
}

.footer__brand .custom-logo-link img,
.footer__logo-img {
	height: 54px;
	width: auto;
	display: block;
	margin-bottom: 16px;
}
.footer__brand .custom-logo-link img {
	filter: brightness(0) invert(1);
}

.footer__desc {
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: 12px;
}

.footer__address {
	font-size: 13px;
	line-height: 1.7;
	color: #cbd5e1;
	margin-bottom: 24px;
}

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

.footer__tel {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 1.4rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.05em;
}

.footer__tel-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.footer__hours {
	font-size: 0.78rem;
	color: #cbd5e1;
}

.footer__col {
	width: max-content;
	max-width: 100%;
}

.footer__col-title {
	font-size: 0.85rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 16px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__col ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer__col a {
	font-size: 14px;
	color: #e2e8f0;
	transition: color 0.2s;
}

.footer__col a:hover {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
}

.footer__legal {
	display: flex;
	gap: 20px;
}

.footer__legal a {
	font-size: 0.78rem;
	color: #cbd5e1;
	transition: color 0.2s;
}

.footer__legal a:hover {
	color: #fff;
}

.copyright {
	font-size: 0.78rem;
	color: #cbd5e1;
}

/* ===========================
   Posts / Content
=========================== */
.entry-title {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 16px;
}

.entry-content {
	line-height: 1.9;
}

.entry-content p {
	margin-bottom: 1.2em;
}

/* ===========================
   Buttons
=========================== */
.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 42px;
	border-radius: 999px;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.4;
	cursor: pointer;
	text-decoration: none;
	border: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn:hover {
	filter: brightness(1.05);
}

.btn__arrow {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	transition: transform 0.25s ease;
}

.btn:hover .btn__arrow {
	transform: translateX(4px);
}

.btn--primary {
	background: linear-gradient(45deg, #2884da 0, #0fc9f7 60%, #2dd4bf 100%);
	color: #fff;
	box-shadow: 0 8px 22px rgba(40, 132, 218, 0.32);
}

.btn--primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 30px rgba(40, 132, 218, 0.42);
}

/* アクセント（MV・CTAのボタンのみ） */
.btn--accent {
	background: #F59E0B;
	color: #fff;
	box-shadow: 0 8px 22px rgba(245, 158, 11, 0.35);
}

.btn--accent:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 30px rgba(245, 158, 11, 0.45);
}

.btn--outline {
	border: 2px solid #2884da;
	color: #2884da;
	background-color: transparent;
}

.btn--outline:hover {
	transform: translateY(-3px);
	background-color: #2884da;
	color: #fff;
	box-shadow: 0 12px 26px rgba(40, 132, 218, 0.3);
}

.btn--outline-white {
	border: 2px solid rgba(255, 255, 255, 0.9);
	color: #fff;
	background-color: transparent;
}

.btn--outline-white:hover {
	transform: translateY(-3px);
	background-color: #fff;
	color: #1c5c99;
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.btn--lg {
	padding: 20px 60px;
	font-size: 1.1rem;
}

/* ===========================
   Section Common
=========================== */

/* トップページ：外側コンテナの幅制限を外してセクション背景をフル幅にする */
.home .site-main > .container {
	max-width: none;
	padding: 0;
}

.section {
	position: relative;
	padding: 110px 0 80px;
	overflow: hidden;
}

/* セクション内コンテンツを装飾より前面に */
.section > .container {
	position: relative;
	z-index: 1;
}

.section--gray {
	background-color: #f7f7f7;
}


.section__head {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: 36px;
	padding: 28px 0;
	z-index: 0;
}

/* トップページのみ高さを確保（段違い見出し用） */
.home .section__head {
	margin-bottom: 56px;
	min-height: 240px;
}

/* 見出し背景の平行四辺形（左右交互・固定サイズで統一） */
.section__head--skew::before {
	content: '';
	position: absolute;
	top: 24px;
	z-index: -1;
	width: 360px;
	height: 124px;
	background: linear-gradient(90deg, #cfeaf4 0%, #d6eef8 100%);
	transform: skewX(-12deg);
	border-radius: 4px;
}

.section__head--left::before {
	left: 50%;
	margin-left: -380px;
	transform: skewX(12deg);
	background: linear-gradient(270deg, #cfeaf4 0%, #d6eef8 100%);
}

.section__head--right::before {
	left: 50%;
	margin-left: 20px;
	transform: skewX(-12deg);
}

/* 大きな日本語（主役・上） */
.section__title {
	order: -1;
	display: block;
	font-size: clamp(1.9rem, 4vw, 3rem);
	font-weight: 800;
	letter-spacing: 0.04em;
	line-height: 1.3;
	color: #4a4a4a;
	margin-bottom: 14px;
}

/* 小さな英字ラベル（両サイドにライン・下） */
.section__en {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	font-size: clamp(0.9rem, 1.6vw, 1.1rem);
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #2884da;
	line-height: 1.5;
	margin-bottom: 0;
}

.section__en::before,
.section__en::after {
	content: '';
	width: 32px;
	height: 2px;
	background: #2884da;
	flex-shrink: 0;
}

.section__lead {
	font-size: 16px;
	color: #333;
	line-height: 1.9;
	margin-top: 34px;
}

.section__en--light {
	color: #c5d5f0;
}

.section__head--light .contact-cta__title {
	margin-bottom: 6px;
}

/* ===========================
   Hero
=========================== */
.hero {
	position: relative;
	background-color: #1c5c99;
	background-image: linear-gradient(135deg, rgba(28, 92, 153, 0.55) 0%, rgba(40, 132, 218, 0.5) 100%), url('assets/img/hero.jpg');
	background-size: cover;
	background-position: center;
	color: #fff;
	padding: 130px 0;
	text-align: center;
}

/* MV動画 */
.hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.hero__video-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(135deg, rgba(28, 92, 153, 0.55) 0%, rgba(40, 132, 218, 0.5) 100%);
}

.hero__inner {
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

.hero__label {
	display: inline-block;
	background-color: #2884da;
	color: #fff;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	padding: 4px 16px;
	border-radius: 2px;
	margin-bottom: 24px;
}

.hero__title {
	font-size: clamp(2.2rem, 5.5vw, 3.6rem);
	font-weight: 800;
	line-height: 1.45;
	letter-spacing: 0.02em;
	margin-bottom: 28px;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero__sub {
	font-size: 1.05rem;
	font-weight: 500;
	line-height: 1.9;
	color: #fff;
	margin-bottom: 44px;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.hero__cta {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ===========================
   Promise (お約束)
=========================== */

.promise__grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	align-items: start;
	padding-bottom: 70px;
}

/* 背景の大きな英字ウォーターマーク（左基準・右へはみ出す） */
.promise__watermark,
.svc__watermark {
	position: absolute;
	left: 0;
	bottom: 0;
	font-size: clamp(8rem, 24vw, 22rem);
	font-weight: 900;
	letter-spacing: 0.02em;
	line-height: 0.9;
	color: #2884da;
	-webkit-text-stroke: 3px #2884da;
	opacity: 0.08;
	white-space: nowrap;
	z-index: 0;
	pointer-events: none;
}


.promise__card {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 56px 30px 40px;
	background: #fff;
	box-shadow: 0 10px 40px rgba(28, 43, 70, 0.08);
	transition: transform 0.2s, box-shadow 0.2s;
}

/* カードを段違いに配置 */
.promise__card:nth-child(3) { margin-top: 40px; }
.promise__card:nth-child(4) { margin-top: 80px; }

.promise__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 48px rgba(28, 43, 70, 0.14);
}

/* 左上の番号タグ（斜め＋右へ伸びるライン） */
.promise__num {
	position: absolute;
	top: 24px;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 96px;
	height: 51px;
	padding: 0 24px 0 36px;
	background: linear-gradient(120deg, #1c5c99 0%, #2884da 100%);
	color: #fff;
	font-size: 1.425rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	clip-path: polygon(0 0, 100% 0, calc(100% - 18px) 100%, 0 100%);
}

.promise__num::after {
	content: '';
	position: absolute;
	left: calc(100% + 2px);
	top: 50%;
	width: 100vw;
	max-width: 70%;
	height: 1px;
	background: linear-gradient(90deg, #2884da, rgba(40, 132, 218, 0));
}

.promise__icon {
	width: 150px;
	height: 150px;
	margin: 16px auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #2884da;
}

.promise__icon svg {
	width: 92px;
	height: 92px;
}

.promise__card-title {
	font-size: 1.4rem;
	font-weight: 800;
	color: #2884da;
	line-height: 1.5;
	margin-bottom: 20px;
}

.promise__card-text {
	font-size: 15px;
	color: #555;
	line-height: 1.9;
	text-align: left;
}

/* 代表メッセージ（バナー型） */
.message {
	position: relative;
	margin-top: 88px;
	padding: 64px 40px;
	border-radius: 16px;
	overflow: hidden;
	background-color: #1c5c99;
	background-size: cover;
	background-position: center;
	text-align: center;
}

.message__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(28, 92, 153, 0.6) 0%, rgba(40, 132, 218, 0.5) 100%);
	z-index: 0;
}

.message__inner {
	position: relative;
	z-index: 1;
	color: #fff;
}

.message__lead {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.8;
	margin-bottom: 14px;
	opacity: 0.95;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.message__text {
	font-size: clamp(1.3rem, 2.4vw, 1.7rem);
	font-weight: 800;
	line-height: 1.7;
	margin-bottom: 0;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.message__text strong {
	color: #7fd3ff;
}

/* ===========================
   Strengths
=========================== */
.strengths__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.strength-card {
	text-align: center;
	padding: 40px 24px;
	border: 1px solid #e8e8e8;
	border-radius: 8px;
	background-color: #fff;
}

.strength-card__icon {
	font-size: 2.4rem;
	font-weight: 700;
	color: #2884da;
	margin-bottom: 16px;
}

.strength-card__title {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 12px;
}

.strength-card__text {
	font-size: 0.9rem;
	color: #666;
	line-height: 1.8;
}

/* ===========================
   Services
=========================== */
.services__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

/* ===========================
   Services Section (TOP) - GIG style
=========================== */
.svc {
	position: relative;
	padding: 110px 0 80px;
	overflow: hidden;
}

/* 背景の斜めグレー装飾 */
.svc__bg,
.skew-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.svc__bg::before,
.svc__bg::after,
.skew-bg::before,
.skew-bg::after {
	content: '';
	position: absolute;
	background: #edf5fc;
	transform: skewX(-12deg);
}

.svc__bg::before,
.skew-bg::before {
	top: -80px;
	left: -5%;
	width: 55%;
	height: 420px;
	background: linear-gradient(90deg, #d2e1f3 0%, #cfeaf4 100%);
}

.svc__bg::after,
.skew-bg::after {
	bottom: -120px;
	right: -10%;
	width: 50%;
	height: 500px;
	background: #edf5fc;
}

/* 反転バージョン（左右を入れ替え・skewも反転して鏡像に） */
.skew-bg--flip::before {
	left: auto;
	right: -5%;
	transform: skewX(12deg);
	background: linear-gradient(270deg, #d2e1f3 0%, #cfeaf4 100%);
}

.skew-bg--flip::after {
	right: auto;
	left: -10%;
	transform: skewX(12deg);
}

/* 下の平行四辺形を非表示（縦幅が小さいエリア用） */
.skew-bg--no-bottom::after {
	display: none;
}

.svc__container {
	position: relative;
	z-index: 1;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 20px;
}

.svc__grid {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px 56px;
	align-items: start;
	padding-bottom: 70px;
}

/* 見出し */
.svc__col {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

/* 右カラムを少し下げて段違いに */
.svc__col--right {
	margin-top: 120px;
}

/* カード */
.svc-card {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: stretch;
	background: #fff;
	box-shadow: 0 10px 40px rgba(28, 43, 70, 0.08);
	padding: 36px 36px 36px 0;
	margin-left: 48px;
	text-decoration: none;
	color: inherit;
	transition: transform 0.25s, box-shadow 0.25s;
}

.svc-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 48px rgba(28, 43, 70, 0.14);
}

/* 左にはみ出す画像 */
.svc-card__img {
	flex-shrink: 0;
	width: 44%;
	margin: -28px 32px -28px -48px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #edf5fc;
	box-shadow: 0 8px 24px rgba(28, 43, 70, 0.18);
	min-height: 240px;
}

.svc-card__img--web {
	background-image: linear-gradient(135deg, #1c5c99 0%, #2884da 100%);
}

.svc-card__img--renewal {
	background-image: linear-gradient(135deg, #1c5c99 0%, #2884da 100%);
}

.svc-card__img--support {
	background-image: linear-gradient(135deg, #1c5c99 0%, #1c5c99 100%);
}

.svc-card__img--partner {
	background-image: linear-gradient(135deg, #2884da 0%, #0fc9f7 100%);
}

.svc-card__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1;
	min-width: 0;
}

.svc-card__label {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background: linear-gradient(45deg, #2884da 0, #0fc9f7 60%, #2dd4bf 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: #2884da;
	margin-bottom: 10px;
}

.svc-card__title {
	font-size: clamp(1.25rem, 2vw, 1.6rem);
	font-weight: 800;
	letter-spacing: 0.02em;
	color: #4a4a4a;
	line-height: 1.4;
	margin-bottom: 18px;
}

.svc-card__text {
	font-size: 15px;
	color: #64748b;
	line-height: 1.9;
	margin-bottom: 20px;
}

/* 矢印（線＋矢じり） */
.svc-card__arrow {
	position: relative;
	display: block;
	width: 56px;
	height: 1px;
	background: #31353f;
	margin-left: auto;
}

.svc-card__arrow::after {
	content: '';
	position: absolute;
	right: 0;
	top: -3px;
	width: 8px;
	height: 8px;
	border-top: 1px solid #31353f;
	border-right: 1px solid #31353f;
	transform: rotate(45deg);
}

.svc-card:hover .svc-card__arrow {
	background: #2884da;
}

.svc-card:hover .svc-card__arrow::after {
	border-color: #2884da;
}

.section__more {
	text-align: center;
	margin-top: 48px;
}

.service-card {
	background-color: #fff;
	border-radius: 8px;
	padding: 36px 28px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.service-card__title {
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 2px solid #2884da;
}

.service-card__text {
	font-size: 0.9rem;
	color: #555;
	line-height: 1.8;
	margin-bottom: 20px;
}

.service-card__price {
	font-size: 1.1rem;
	font-weight: 700;
	color: #2884da;
}

/* ===========================
   Works
=========================== */
.works {
	padding-bottom: 64px;
	background: linear-gradient(135deg, #f5f8f9 0%, #e9f0f2 100%);
}

/* 矢印で1枚ずつ動くスライダー */
.works-slider {
	position: relative;
	display: flex;
	align-items: center;
	gap: 16px;
	max-width: 1180px;
	margin: 0 auto 48px;
	padding: 0 20px;
}

.works-slider__viewport {
	overflow: hidden;
	flex: 1;
	min-width: 0;
	padding: 10px 4px 28px;
}

.works-slider__track {
	display: flex;
	gap: 32px;
	transition: transform 0.5s ease;
}

.works-slider__arrow {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: none;
	background: #fff;
	color: #2884da;
	box-shadow: 0 4px 14px rgba(28, 43, 70, 0.12);
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}

.works-slider__arrow:hover {
	background: #2884da;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(40, 132, 218, 0.3);
}

.works-slider__arrow svg {
	width: 22px;
	height: 22px;
}

.work-card {
	display: block;
	flex: 0 0 calc((100% - 64px) / 3); /* PC：3枚ぴったり（gap32×2） */
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 14px rgba(28, 43, 70, 0.08);
	text-decoration: none;
	color: inherit;
	background: #fff;
	transition: transform 0.2s, box-shadow 0.2s;
}

.work-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(28, 43, 70, 0.14);
}

.work-card__thumb {
	width: 100%;
	aspect-ratio: 4 / 3.8;
	background-size: cover;
	background-position: center;
}

.work-card__thumb--1 {
	background: linear-gradient(135deg, #1c5c99 0%, #2884da 100%);
}

.work-card__thumb--2 {
	background: linear-gradient(135deg, #2884da 0%, #0fc9f7 100%);
}

.work-card__thumb--3 {
	background: linear-gradient(135deg, #1c5c99 0%, #1c5c99 100%);
}

.work-card__body {
	padding: 20px 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.work-card__title {
	font-size: 1.02rem;
	font-weight: 700;
	color: #31353f;
	margin-bottom: 4px;
}

.work-card__cat {
	font-size: 0.82rem;
	color: #2884da;
	font-weight: 600;
}

.work-card__arrow {
	position: relative;
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border: 1.5px solid #2884da;
	border-radius: 50%;
}

.work-card__arrow::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 7px;
	height: 7px;
	border-top: 1.5px solid #2884da;
	border-right: 1.5px solid #2884da;
	transform: translate(-65%, -50%) rotate(45deg);
}

.work-card:hover .work-card__arrow {
	background: #2884da;
}

.work-card:hover .work-card__arrow::after {
	border-color: #fff;
}

/* ===========================
   Banners (FLOW / FAQ)
=========================== */
/* それぞれ背景画像＋中央線で2分割 */
.banners {
	position: relative;
	overflow: hidden;
}

.banners .container {
	max-width: none;
	padding: 0;
}

.banners__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.banner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 320px;
	padding: 72px 44px;
	background-color: #1c5c99;
	background-size: cover;
	background-position: center;
	text-decoration: none;
	color: #fff;
}

/* 暗幕（背景画像の上） */
.banner::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background: rgba(20, 30, 45, 0.4);
	transition: background 0.3s ease;
}

/* ホバーで黒めの色が乗る */
.banner:hover::before {
	background: rgba(0, 0, 0, 0.55);
}

/* FLOWは右側が見えるように表示位置を調整 */
.banner--flow {
	background-position: right center;
}

/* 中央の区切り線 */
.banner + .banner {
	border-left: 1px solid rgba(255, 255, 255, 0.4);
}

.banner__body {
	position: relative;
	z-index: 1;
	text-align: left;
}

.banner__title {
	font-size: clamp(1.4rem, 2.6vw, 2rem);
	font-weight: 800;
	letter-spacing: 0.04em;
	line-height: 1.3;
	margin-bottom: 6px;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.banner__en {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.9;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.banner__text {
	font-size: 15px;
	line-height: 1.7;
	margin-top: 12px;
	opacity: 0.95;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

/* 白丸に矢印が乗る */
.banner__arrow {
	position: relative;
	z-index: 1;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: #fff;
	border-radius: 50%;
	color: #2884da;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner__arrow svg {
	width: 20px;
	height: 20px;
}

.banner:hover .banner__arrow {
	transform: translateX(4px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* ===========================
   Latest (お知らせ / ブログ)
=========================== */
/* ブログ・お知らせは1グループとして間隔を詰める */
.latest--blog-section {
	padding-bottom: 64px;
}

/* ブログ：左1件大きめ＋右3件縦並び */
.blog-feature {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 32px;
	align-items: stretch;
}

.blog-feature__main {
	display: block;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 14px rgba(28, 43, 70, 0.08);
	transition: transform 0.2s, box-shadow 0.2s;
}

.blog-feature__main:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(28, 43, 70, 0.14);
}

.blog-feature__thumb {
	display: block;
	width: 100%;
	aspect-ratio: 1200 / 630;
	background-size: cover;
	background-position: center;
}

.blog-feature__body {
	display: block;
	padding: 24px 26px;
}

.blog-feature__title {
	display: block;
	font-size: 1.3rem;
	font-weight: 700;
	color: #31353f;
	line-height: 1.5;
	margin-bottom: 12px;
}

.blog-feature__excerpt {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
	font-size: 0.88rem;
	color: #64748b;
	line-height: 1.9;
}

.blog-feature__list {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	gap: 16px;
}

.blog-feature__item {
	display: flex;
	gap: 18px;
	text-decoration: none;
	color: inherit;
	align-items: stretch;
	flex: 1;
	min-height: 0;
	transition: opacity 0.2s;
}

.blog-feature__item:hover {
	opacity: 0.78;
}

.blog-feature__item-thumb {
	flex-shrink: 0;
	width: 180px;
	aspect-ratio: 1200 / 630;
	border-radius: 8px;
	background-size: cover;
	background-position: center;
	box-shadow: 0 6px 18px rgba(28, 43, 70, 0.12);
}

.blog-feature__item-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.blog-feature__item-title {
	display: block;
	font-size: 16px;
	font-weight: 700;
	color: #31353f;
	line-height: 1.5;
	margin-bottom: 6px;
}

.blog-feature__item-excerpt {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	overflow: hidden;
	font-size: 14px;
	color: #64748b;
	line-height: 1.7;
}

.latest--news-section {
	padding-bottom: 64px;
	background: linear-gradient(135deg, #f5f8f9 0%, #e9f0f2 100%);
}

.latest__list {
	list-style: none;
}

.latest__item {
	border-bottom: 1px solid #e3e8ef;
}

.latest__item a {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 4px;
	text-decoration: none;
	color: #31353f;
	transition: color 0.2s;
}

.latest__item a:hover {
	color: #2884da;
}

.latest__date {
	flex-shrink: 0;
	font-size: 16px;
	font-weight: 600;
	color: #888;
}

/* お知らせ（背景#e9f0f2）の視認性調整 */
.latest--news-section .latest__item {
	border-bottom-color: #c5d3d8;
}

.latest--news-section .latest__date {
	color: #2884da;
}

.latest__item-title {
	font-size: 16px;
	line-height: 1.6;
}

/* ブログ：3カラムのカード型 */
.latest__grid-blog {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 28px;
}

.latest__item--blog {
	border-bottom: none;
}

.latest__item--blog a {
	flex-direction: column;
	align-items: stretch;
	gap: 14px;
	padding: 0;
}

.latest__item--blog .latest__thumb {
	width: 100%;
	height: 180px;
	border-radius: 10px;
}

.latest__item--blog .latest__item-title {
	font-size: 0.98rem;
	font-weight: 600;
	line-height: 1.6;
}

.latest__thumb {
	flex-shrink: 0;
	width: 80px;
	height: 56px;
	border-radius: 6px;
	background-size: cover;
	background-position: center;
}

.latest__thumb--1 {
	background: linear-gradient(135deg, #1c5c99 0%, #2884da 100%);
}

.latest__thumb--2 {
	background: linear-gradient(135deg, #2884da 0%, #0fc9f7 100%);
}

/* お知らせ：中央寄せリスト */
.latest--news-section .latest__list {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* ===========================
   CTA
=========================== */
.cta {
	background: linear-gradient(135deg, #1c5c99 0%, #2884da 100%);
	color: #fff;
	padding: 80px 0;
	text-align: center;
}

.cta__title {
	font-size: clamp(1.5rem, 3.5vw, 2.2rem);
	font-weight: 800;
	margin-bottom: 20px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.cta__text {
	font-size: 16px;
	line-height: 1.9;
	margin-bottom: 36px;
}

.cta__text strong {
	font-weight: 800;
	color: #ffe082;
}

.cta__buttons {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 64px;
}

.cta__mail {
	background: #F59E0B;
	color: #fff;
	font-size: 18px;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.cta__mail:hover {
	background: #F59E0B;
	color: #fff;
	transform: translateY(-3px);
	filter: none;
}

.cta__line {
	background: #06c755;
	color: #fff;
	font-size: 18px;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.cta__line:hover {
	background: #06c755;
	color: #fff;
	transform: translateY(-3px);
	filter: none;
}

.cta__tel-lead {
	font-size: 15px;
	opacity: 0.9;
	margin-bottom: 4px;
}

.cta__tel {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	font-weight: 800;
	color: #fff;
	text-decoration: none;
	letter-spacing: 0.02em;
	margin-bottom: 4px;
}

.cta__icon {
	width: 1em;
	height: 1em;
	flex-shrink: 0;
}

.cta__mail .cta__icon,
.cta__line .cta__icon {
	width: 28px;
	height: 28px;
}

.cta__hours {
	font-size: 15px;
	opacity: 0.85;
}

/* ===========================
   News
=========================== */
.news__list {
	max-width: 800px;
	margin: 0 auto;
}

.news__item {
	display: flex;
	align-items: baseline;
	gap: 24px;
	padding: 18px 0;
	border-bottom: 1px solid #e0e0e0;
}

.news__item:first-child {
	border-top: 1px solid #e0e0e0;
}

.news__date {
	flex-shrink: 0;
	font-size: 0.85rem;
	color: #888;
}

.news__link {
	font-size: 0.95rem;
	color: #333;
	transition: color 0.2s;
}

.news__link:hover {
	color: #2884da;
}

.news__item--empty {
	color: #999;
	font-size: 0.9rem;
}

/* ===========================
   Contact CTA
=========================== */
.contact-cta {
	background-color: #1c5c99;
	color: #fff;
	text-align: center;
}

.contact-cta__title {
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 20px;
}

.contact-cta__sub {
	font-size: 0.95rem;
	color: #c5d5f0;
	line-height: 1.9;
	margin-bottom: 36px;
}

.contact-cta__buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn--line {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: #06c755;
	color: #fff;
}

.btn--line:hover {
	opacity: 0.85;
}

/* ===========================
   Floating CTA
=========================== */
.floating-cta-group {
	position: fixed;
	bottom: 32px;
	right: 28px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 500;
}

.floating-cta {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
	color: #fff;
	border-radius: 12px;
	padding: 16px 24px;
	text-decoration: none;
	transition: transform 0.2s, box-shadow 0.2s;
	width: 220px;
}

.floating-cta:hover {
	transform: translateY(-3px);
	color: #fff;
}

.floating-cta--consult {
	background: linear-gradient(135deg, #1c5c99 0%, #2884da 100%);
	box-shadow: 0 6px 20px rgba(28, 92, 153, 0.35);
}

.floating-cta--consult:hover {
	box-shadow: 0 10px 28px rgba(28, 92, 153, 0.45);
}

.floating-cta--line {
	background-color: #06c755;
	box-shadow: 0 6px 20px rgba(6, 199, 85, 0.35);
}

.floating-cta--line:hover {
	box-shadow: 0 10px 28px rgba(6, 199, 85, 0.45);
}

.floating-cta--tel {
	background-color: #444;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.floating-cta--tel:hover {
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.floating-cta__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.floating-cta__icon svg {
	width: 28px;
	height: 28px;
}

.floating-cta__text {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: left;
	letter-spacing: 0.02em;
	white-space: nowrap;
}

/* ===========================
   下層ページ（MV / パンくず / 本文）
=========================== */
.page-hero {
	position: relative;
	background-color: #1c5c99;
	background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('assets/img/hero.jpg');
	background-size: cover;
	background-position: center;
	overflow: hidden;
	padding: 88px 0;
	text-align: center;
	color: #fff;
}

.page-hero__inner {
	position: relative;
	z-index: 1;
}

.page-hero__en {
	display: block;
	font-size: clamp(2.4rem, 6vw, 4rem);
	font-weight: 900;
	letter-spacing: 0.06em;
	line-height: 1;
	text-transform: uppercase;
	opacity: 0.9;
	margin-bottom: 12px;
}

.page-hero__title {
	font-size: clamp(1.1rem, 2vw, 1.4rem);
	font-weight: 700;
	letter-spacing: 0.1em;
}

/* パンくず */
.breadcrumb {
	background: #edf5fc;
	padding: 14px 0;
	font-size: 13px;
}

.breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	color: #64748b;
}

.breadcrumb__list li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.breadcrumb__list li:not(:last-child)::after {
	content: '\203A';
	color: #94a3b8;
}

.breadcrumb__list a {
	color: #2884da;
	transition: opacity 0.2s;
}

.breadcrumb__list a:hover {
	opacity: 0.7;
}

/* 本文ページ */
.page-content {
	padding: 80px 0 100px;
}

/* 本文エディタの出力スタイル */
.doc h2 {
	font-size: 1.2rem;
	font-weight: 800;
	color: #4a4a4a;
	margin: 72px 0 16px;
	padding-bottom: 14px;
	padding-left: 16px;
	border-bottom: 1px solid #e3e8ef;
	border-left: 4px solid;
	border-image: linear-gradient(45deg, #2884da 0, #0fc9f7 60%, #2dd4bf 100%) 1;
	line-height: 1.5;
}

.doc h3 {
	font-size: 1.05rem;
	font-weight: 700;
	color: #4a4a4a;
	margin: 56px 0 12px;
}

.doc h2:first-child,
.doc h3:first-child,
.doc p:first-child {
	margin-top: 0;
}

.doc p {
	font-size: 16px;
	line-height: 2;
	color: #333;
	margin-bottom: 20px;
}

.doc a {
	color: #F59E0B;
	text-decoration: underline;
}
.doc a:hover {
	color: #d98708;
}

.doc ul,
.doc ol {
	margin: 0 0 24px;
	padding-left: 4px;
	list-style: none;
}

/* JIN:R ボックス内のリストは下マージン不要 */
.doc .b--jinr-box ul,
.doc .b--jinr-box ol {
	margin: 0;
}

.doc ul li,
.doc ol li {
	position: relative;
	padding-left: 22px;
	font-size: 16px;
	line-height: 1.9;
	color: #333;
	margin-bottom: 6px;
}

.doc ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.7em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #2dd4bf;
}

.doc ol {
	counter-reset: doc-ol;
}

.doc ol li {
	counter-increment: doc-ol;
}

.doc ol li::before {
	content: counter(doc-ol);
	position: absolute;
	left: 0;
	top: 0.1em;
	color: #2884da;
	font-weight: 700;
	font-size: 0.85rem;
}

/* ===========================
   お問い合わせ（電話・LINE）
=========================== */
.contact-lead {
	text-align: center;
	margin-bottom: 48px;
}

.contact-lead p {
	font-size: 16px;
	line-height: 2;
	color: #333;
}

.contact-methods {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	margin-bottom: 0;
}

.contact-method {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	text-align: center;
	padding: 48px 32px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(28, 43, 70, 0.08);
}

.contact-method__label {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 1.3rem;
	font-weight: 800;
	color: #31353f;
	margin-bottom: 8px;
}

.contact-method__label::before,
.contact-method__label::after {
	content: '';
	width: 28px;
	height: 2px;
	background: #2884da;
}

/* 電話：CTAと同じ大きな番号＋アイコン */
.contact-method__tel {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: clamp(1.7rem, 4vw, 2.7rem);
	font-weight: 800;
	color: #2884da;
	letter-spacing: 0.02em;
	text-decoration: none;
	white-space: nowrap;
}

.contact-method__tel .cta__icon {
	width: 32px;
	height: 32px;
}

.contact-method__note {
	font-size: 15px;
	color: #64748b;
}

/* メール問い合わせエリア：全幅の背景色 */
.contact-mail {
	background: linear-gradient(135deg, #eef4f8 0%, #e4edf2 100%);
	padding: 72px 0 88px;
}

.contact-mail .section__head {
	min-height: 0;
	margin-bottom: 28px;
}

/* フォーム部分は白パネルで分かりやすく */
.contact-form__body {
	margin-top: 0;
	background: #fff;
	border-radius: 12px;
	padding: 36px;
	box-shadow: 0 8px 26px rgba(28, 43, 70, 0.06);
}

/* ===========================
   Contact Form 7
=========================== */
.contact-form__body .wpcf7-form p {
	margin-bottom: 28px;
}

/* ラベル */
.contact-form__body label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	font-weight: 700;
	color: #31353f;
	line-height: 1.6;
	margin-bottom: 4px;
}

/* 必須項目のラベルにバッジ */
.contact-form__body label.required::after {
	content: '必須';
	display: inline-block;
	padding: 3px 10px;
	font-size: 0.7rem;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	background: #F59E0B;
	border-radius: 4px;
}

/* 入力欄共通 */
.contact-form__body input[type="text"],
.contact-form__body input[type="email"],
.contact-form__body input[type="tel"],
.contact-form__body input[type="url"],
.contact-form__body input[type="number"],
.contact-form__body input[type="date"],
.contact-form__body select,
.contact-form__body textarea {
	width: 100%;
	margin-top: 2px;
	padding: 14px 16px;
	font-size: 16px;
	font-family: inherit;
	color: #333;
	background: #f7fafc;
	border: 1px solid #d7e0e8;
	border-radius: 10px;
	transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
	-webkit-appearance: none;
	appearance: none;
}

.contact-form__body textarea {
	min-height: 160px;
	resize: vertical;
	line-height: 1.8;
}

.contact-form__body input:focus,
.contact-form__body select:focus,
.contact-form__body textarea:focus {
	outline: none;
	background: #fff;
	border-color: #2884da;
	box-shadow: 0 0 0 3px rgba(40, 132, 218, 0.15);
}

.contact-form__body ::placeholder {
	color: #9aa7b2;
}

.contact-form__body .wpcf7-not-valid-tip {
	color: #e3342f;
}

.contact-form__body .wpcf7-not-valid-tip {
	font-size: 0.82rem;
	margin-top: 6px;
}

/* チェックボックス・ラジオ */
.contact-form__body .wpcf7-list-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 6px 18px 6px 0;
	font-weight: 500;
}

/* 送信ボタン（サイト共通ボタンのグラデ） */
.contact-form__body .wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 260px;
	margin-top: 8px;
	padding: 16px 42px;
	border: none;
	border-radius: 999px;
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: #fff;
	background: linear-gradient(45deg, #2884da 0, #0fc9f7 60%, #2dd4bf 100%);
	box-shadow: 0 8px 22px rgba(40, 132, 218, 0.32);
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
}

.contact-form__body .wpcf7-submit:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 30px rgba(40, 132, 218, 0.42);
}

/* 送信ボタンの段落を中央に */
.contact-form__body .wpcf7-form p:has(.wpcf7-submit) {
	text-align: center;
	margin-top: 36px;
}

/* reCAPTCHA等の注釈 */
.contact-form__body .desc {
	font-size: 0.78rem;
	line-height: 1.7;
	color: #64748b;
	text-align: center;
	margin-top: 20px;
}

/* パートナーLPは左寄せ */
.lp-contact .contact-form__body .desc {
	text-align: left;
}

/* 送信中スピナー位置 */
.contact-form__body .wpcf7-spinner {
	margin: 0 0 0 12px;
}

/* 応答メッセージ */
.contact-form__body .wpcf7-response-output {
	margin: 24px 0 0;
	padding: 14px 18px;
	border-radius: 8px;
	font-size: 0.9rem;
}

/* ===========================
   ブログ（一覧＋サイドバー）
=========================== */
.blog-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 48px;
	align-items: start;
}

.blog-main { min-width: 0; }

.blog-main__cat-label {
	font-size: 16px;
	font-weight: 700;
	color: #31353f;
	margin-bottom: 20px;
}

/* 記事カード（縦並び） */
.blog-cards {
	display: flex;
	flex-direction: column;
	gap: 24px;
	min-width: 0;
}

.blog-card {
	display: grid;
	grid-template-columns: clamp(240px, 32%, 300px) 1fr;
	gap: 0;
	align-items: stretch;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 14px rgba(28, 43, 70, 0.08);
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(28, 43, 70, 0.14);
}

.blog-card__thumb {
	width: 100%;
	min-height: 100%;
	aspect-ratio: 1200 / 630;
	background-size: cover;
	background-position: center;
}

.blog-card__thumb--placeholder {
	background: linear-gradient(135deg, #1c5c99 0%, #0fc9f7 100%);
}

.blog-card__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 18px 22px;
	min-width: 0;
}

.blog-card__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
}

.blog-card__date {
	font-size: 13px;
	font-weight: 700;
	color: #2884da;
}

.blog-card__cat {
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(45deg, #2884da 0, #0fc9f7 60%, #2dd4bf 100%);
	padding: 2px 12px;
	border-radius: 999px;
	letter-spacing: 0.04em;
}

.blog-card__title {
	font-size: 18px;
	font-weight: 700;
	color: #31353f;
	line-height: 1.5;
	margin-bottom: 8px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
	min-height: calc(1em * 1.5 * 2);
}

.blog-card__excerpt {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	overflow: hidden;
	font-size: 14px;
	color: #64748b;
	line-height: 1.8;
}

/* サイドバー */
.blog-sidebar {
	display: flex;
	flex-direction: column;
	gap: 32px;
	position: sticky;
	top: 90px;
	align-self: start;
	transition: top 0.3s ease;
}

/* サイドバーは画面幅が狭い時（レイアウトが1カラム化する時）は sticky を解除 */
@media (max-width: 1151px) {
	.blog-sidebar { position: static; transition: none; }
}

.blog-widget__title {
	font-size: 16px;
	font-weight: 800;
	color: #31353f;
	padding-bottom: 10px;
	margin-bottom: 16px;
	border-bottom: 2px solid #2884da;
}

.blog-search {
	display: flex;
	border: 1px solid #d7e0e8;
	border-radius: 8px;
	overflow: hidden;
}

.blog-search__input {
	flex: 1;
	min-width: 0;
	border: none;
	padding: 11px 14px;
	font-size: 14px;
	font-family: inherit;
}

.blog-search__input:focus {
	outline: none;
}

.blog-search__btn {
	flex-shrink: 0;
	width: 46px;
	border: none;
	background: #2884da;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.blog-widget__list {
	list-style: none;
}

.blog-widget__list li {
	border-bottom: 1px solid #eef0f5;
}

.blog-widget__list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 10px 4px;
	font-size: 14px;
	color: #333;
	transition: color 0.2s;
}

.blog-widget__list a:hover {
	color: #2884da;
}

.blog-widget__count {
	font-size: 12px;
	color: #94a3b8;
}

/* 月別アーカイブは1行表示 */
.blog-widget__archives li a {
	display: inline-block;
	width: auto;
	padding: 10px 4px;
}

.blog-widget__archives li {
	padding-right: 4px;
	font-size: 14px;
	color: #94a3b8;
}

.blog-widget__posts {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.blog-widget__posts a {
	display: flex;
	gap: 12px;
	align-items: center;
	text-decoration: none;
	color: inherit;
}

.blog-widget__thumb {
	flex-shrink: 0;
	width: 96px;
	aspect-ratio: 1200 / 630;
	border-radius: 6px;
	background-size: cover;
	background-position: center;
}

.blog-widget__thumb--placeholder {
	background: linear-gradient(135deg, #1c5c99 0%, #0fc9f7 100%);
}

.blog-widget__post-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.blog-widget__post-date {
	font-size: 12px;
	font-weight: 700;
	color: #2884da;
	margin-bottom: 2px;
}

.blog-widget__post-title {
	font-size: 14px;
	line-height: 1.5;
	color: #333;
}

.blog-widget__posts a:hover .blog-widget__post-title {
	color: #2884da;
}

/* 詳細のカテゴリバッジ */
.post-single__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	line-height: 1;
}

.post-single__meta .post-single__date {
	margin-bottom: 0;
	line-height: 1;
}

.post-single__cat {
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	background: #64748b;
	padding: 3px 12px;
	border-radius: 999px;
}

/* ===========================
   お知らせ詳細（single）
=========================== */
.post-single__head {
	padding-bottom: 24px;
	margin-bottom: 32px;
	border-bottom: 1px solid #e3e8ef;
}

.post-single__date {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: #2884da;
	letter-spacing: 0.04em;
	margin-bottom: 12px;
}

.post-single__title {
	font-size: clamp(1.4rem, 2.6vw, 1.9rem);
	font-weight: 800;
	color: #31353f;
	line-height: 1.5;
}

.post-single__thumb {
	margin-bottom: 32px;
}

.post-single__thumb img {
	width: 100%;
	height: auto;
	border-radius: 12px;
}

.post-single__back {
	text-align: center;
	margin-top: 56px;
}

/* ===========================
   お知らせ一覧（アーカイブ）
=========================== */
.news-list {
	list-style: none;
	border-top: 1px solid #e3e8ef;
}

.news-list__item {
	border-bottom: 1px solid #e3e8ef;
}

.news-list__item a {
	display: flex;
	align-items: baseline;
	gap: 24px;
	padding: 22px 6px;
	text-decoration: none;
	color: #333;
	transition: color 0.2s, background 0.2s;
}

.news-list__item a:hover {
	color: #2884da;
	background: #f5f8fb;
}

.news-list__date {
	flex-shrink: 0;
	font-size: 16px;
	font-weight: 700;
	color: #2884da;
	letter-spacing: 0.04em;
}

.news-list__title {
	font-size: 16px;
	line-height: 1.7;
}

.news-list__empty {
	text-align: center;
	color: #64748b;
	padding: 40px 0;
}

/* ページネーション */
.pagination {
	margin-top: 48px;
}

.pagination .nav-links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border-radius: 8px;
	border: 1px solid #d7e0e8;
	font-size: 14px;
	font-weight: 700;
	color: #31353f;
	text-decoration: none;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.pagination .page-numbers:hover {
	border-color: #2884da;
	color: #2884da;
}

.pagination .page-numbers.current {
	background: #2884da;
	border-color: #2884da;
	color: #fff;
}

.pagination .page-numbers.dots {
	border: none;
}

/* ===========================
   Lazoricoについて
=========================== */
.about-greeting__body p {
	font-size: 16px;
	line-height: 2.1;
	color: #333;
	margin-bottom: 22px;
}

.about-greeting__body p:last-child {
	margin-bottom: 0;
}

/* ごあいさつ下の写真2枚 */
.about-photos {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 44px;
}

.about-photos__item {
	aspect-ratio: 4 / 3;
	border-radius: 14px;
	background-color: #edf5fc;
	background-size: cover;
	background-position: center;
	box-shadow: 0 12px 30px rgba(28, 43, 70, 0.1);
}


/* 事業所概要：背景に薄いグラデ */
.about-overview {
	background: linear-gradient(135deg, #f5f8f9 0%, #e9f0f2 100%);
}

.about-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(28, 43, 70, 0.08);
}

.about-table th,
.about-table td {
	text-align: left;
	padding: 18px 24px;
	border-bottom: 1px solid #e3e8ef;
	font-size: 16px;
	line-height: 1.8;
	vertical-align: top;
}

.about-table tr:last-child th,
.about-table tr:last-child td {
	border-bottom: none;
}

.about-table th {
	width: 30%;
	font-weight: 700;
	color: #31353f;
	background: #f5f8fb;
	white-space: nowrap;
}

.about-table td {
	color: #333;
}

/* メンバー紹介（横並び・紹介文付き） */
.member-list {
	display: flex;
	flex-direction: column;
	gap: 28px;
	max-width: 880px;
	margin: 0 auto;
}

.member-row {
	display: grid;
	grid-template-columns: 160px 1fr;
	gap: 32px;
	align-items: center;
	background: #fff;
	border-radius: 16px;
	padding: 28px 32px;
	box-shadow: 0 10px 40px rgba(28, 43, 70, 0.08);
}

.member-row__photo {
	width: 160px;
	height: 160px;
	border-radius: 12px;
	background-color: #edf5fc;
	background-size: cover;
	background-position: center;
}

.member-row__role {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	background: #2884da;
	padding: 3px 12px;
	border-radius: 999px;
	margin-bottom: 12px;
}

.member-row__name {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 1.3rem;
	font-weight: 800;
	color: #31353f;
	margin-bottom: 12px;
}

.member-row__en {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: #94a3b8;
}

.member-row__bio {
	font-size: 15px;
	line-height: 1.9;
	color: #555;
}

/* ===========================
   Responsive
=========================== */

/* タブレット：3列 → 2列 */
@media (max-width: 1151px) {
	.strengths__grid {
		grid-template-columns: repeat(2, 1fr);
	}

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

	.partner-help__inner {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.partner-stat {
		max-width: 320px;
		margin: 0 auto;
	}

	.member-row {
		grid-template-columns: 130px 1fr;
		gap: 24px;
		padding: 24px;
	}

	.member-row__photo {
		width: 130px;
		height: 130px;
	}

	.work-card {
		flex: 0 0 calc((100% - 32px) / 2); /* タブレット：2枚ぴったり */
	}

	.services__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.latest__grid-blog {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer__nav {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}

	.hero {
		padding: 80px 0;
	}

	.section,
	.svc {
		padding: 80px 0;
	}
}

/* ブログ：950px以下でサイドバーを下に */
@media (max-width: 950px) {
	.blog-layout {
		grid-template-columns: 1fr;
		gap: 56px;
	}
}

/* スマホ：2列 → 1列 */
/* ヘッダーナビ：1050px以下でSP版（ドロワー）に切替 */
@media (max-width: 1050px) {
	.global-nav {
		display: none;
	}
	.nav-toggle {
		display: flex;
	}
	.nav-drawer {
		display: block;
	}
}

@media (max-width: 750px) {
	.strengths__grid,
	.services__grid {
		grid-template-columns: 1fr;
	}

	/* OUR VALUE：SPは1カラム・中央寄せ */
	.promise__grid {
		grid-template-columns: 1fr;
		max-width: 480px;
		margin: 0 auto;
	}
	.promise__card:nth-child(2),
	.promise__card:nth-child(3),
	.promise__card:nth-child(4) {
		margin-top: 0;
	}

	/* サービス：SPで1カラム＋段差解除 */
	.svc__grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.svc__col--right {
		margin-top: 0;
	}

	/* フッター：SPで1カラム */
	.footer__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	/* パートナーページ：1カラム化 */
	.trouble-grid,
	.feature-grid {
		grid-template-columns: 1fr;
	}

	/* ブログカード：SPは左サムネ＋右テキストの横並び（TOPと統一） */
	.blog-card {
		grid-template-columns: clamp(140px, 42vw, 190px) 1fr;
		gap: 0;
	}
	.blog-card__thumb {
		min-height: 100%;
	}
	.blog-card__body {
		padding: 12px 14px;
	}

	.member-row {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
		gap: 18px;
	}

	.member-row__name {
		justify-content: center;
	}

	.about-table th {
		width: 34%;
		padding: 14px;
		font-size: 0.88rem;
	}

	.about-table td {
		padding: 14px;
		font-size: 0.9rem;
	}

	.page-hero {
		padding: 40px 0;
	}
	.page-hero__en {
		font-size: 32px;
		margin-bottom: 8px;
	}
	.page-hero__title {
		font-size: 15px;
	}

	.breadcrumb {
		padding: 10px 0;
		font-size: 11px;
	}

	.page-content {
		padding: 40px 0 56px;
	}

	.contact-methods {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.contact-mail {
		padding: 48px 0 56px;
	}

	.contact-form__body {
		padding: 22px 18px;
	}

	/* 制作実績スライダー（SP：中央寄せ＋左右peek） */
	.works-slider {
		gap: 0;
		padding: 0 14%;
		margin-bottom: 28px;
		overflow: hidden;
	}
	.works-slider__arrow {
		display: none;
	}
	.works-slider__viewport {
		overflow: visible;
		padding: 0;
	}
	.works-slider__track {
		gap: 12px;
	}
	.work-card {
		flex: 0 0 100%; /* 親(=viewport)幅にフィット。左右はslider paddingで両サイドpeek */
		border-radius: 10px;
	}
	.work-card__thumb {
		aspect-ratio: 16 / 10;
	}
	.work-card__body {
		padding: 14px 16px;
		gap: 12px;
	}
	.work-card__title {
		font-size: 14px;
		margin-bottom: 2px;
	}
	.work-card__cat {
		font-size: 12px;
	}
	.work-card__arrow {
		width: 28px;
		height: 28px;
	}
	.work-card__arrow::after {
		width: 6px;
		height: 6px;
	}

	.banners__row {
		grid-template-columns: 1fr;
		border-left: none;
		border-right: none;
	}

	.banner {
		min-height: 0;
		padding: 28px 20px;
		gap: 16px;
	}
	.banner + .banner {
		border-left: none;
		border-top: 1px solid rgba(255, 255, 255, 0.4);
	}
	.banner__title {
		font-size: 22px;
		margin-bottom: 4px;
	}
	.banner__en {
		font-size: 12px;
		letter-spacing: 0.14em;
	}
	.banner__text {
		font-size: 14px;
		line-height: 1.7;
		margin-top: 8px;
	}
	.banner__arrow {
		width: 36px;
		height: 36px;
	}
	.banner__arrow svg {
		width: 16px;
		height: 16px;
	}

	.section__head,
	.home .section__head {
		min-height: 0;
		margin-bottom: 40px;
		padding: 20px 0;
	}

	.section__lead {
		margin-top: 60px;
		font-size: 14px;
		text-align: left;
	}

	.section__title {
		font-size: 22px;
		margin-bottom: 10px;
	}

	.section__en {
		font-size: 12px;
		letter-spacing: 0.14em;
		gap: 10px;
	}
	.section__en::before,
	.section__en::after {
		width: 20px;
		height: 1px;
	}

	/* 見出しの平行四辺形は画面幅追従（左右で対称・余白を確保） */
	.section__head--skew::before {
		width: auto;
		left: auto;
		right: auto;
		margin-left: 0;
		height: 52px;
		top: 8px;
	}
	.section__head--left::before {
		left: -30px;
		right: 54%;
	}
	.section__head--right::before {
		right: -30px;
		left: 54%;
	}

	.latest__grid-blog {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	/* ブログ：SPは3件とも横並び統一 */
	.blog-feature {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.blog-feature__main {
		display: flex;
		gap: 14px;
		background: transparent;
		border-radius: 0;
		box-shadow: none;
		overflow: visible;
		align-items: center;
	}
	.blog-feature__thumb {
		flex-shrink: 0;
		width: clamp(110px, 35vw, 160px);
		aspect-ratio: 1200 / 630;
		border-radius: 8px;
		box-shadow: 0 6px 18px rgba(28, 43, 70, 0.12);
	}
	.blog-feature__body {
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 0;
		min-width: 0;
	}
	.blog-feature__title {
		font-size: 14px;
		margin-bottom: 6px;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		line-clamp: 2;
		overflow: hidden;
	}
	.blog-feature__excerpt {
		font-size: 12px;
		line-height: 1.7;
		-webkit-line-clamp: 1;
		line-clamp: 1;
	}
	.blog-feature__list {
		gap: 16px;
	}
	.blog-feature__item {
		gap: 14px;
		align-items: center;
	}
	/* 3件目までを表示（メイン1件＋リスト2件） */
	.blog-feature__list .blog-feature__item:nth-child(n+3) {
		display: none;
	}
	.blog-feature__item-thumb {
		width: clamp(110px, 35vw, 160px);
		aspect-ratio: 1200 / 630;
	}
	.blog-feature__item-title {
		font-size: 14px;
	}
	.blog-feature__item-excerpt {
		font-size: 12px;
	}

	.message {
		padding: 48px 22px;
		margin-top: 30px;
	}
	.message__lead {
		font-size: 13px;
	}
	.message__text {
		font-size: 18px;
	}

	/* サービス／制作実績／ブログ（SP調整） */
	.svc .section__head,
	.works .section__head,
	.latest--blog-section .section__head {
		margin-bottom: 20px;
	}
	.svc__grid {
		gap: 32px;
		padding-bottom: 0;
	}
	.svc__col {
		gap: 32px;
	}

	.svc-card {
		flex-direction: column;
		padding: 0 0 24px;
		margin-left: 0;
	}

	.svc-card__img {
		width: auto;
		margin: 0 0 20px;
		min-height: 160px;
	}

	.svc-card__body {
		padding: 0 20px;
	}

	.btn {
		font-size: 15px;
		padding: 14px 32px;
		min-width: 240px;
	}

	.svc-card__label {
		font-size: 12px;
		margin-bottom: 8px;
	}
	.svc-card__title {
		font-size: 17px;
		margin-bottom: 12px;
	}
	.svc-card__text {
		font-size: 14px;
		line-height: 1.8;
		margin-bottom: 16px;
	}
	.svc-card__arrow {
		width: 44px;
	}

	.section__more {
		margin-top: 32px;
	}


	/* フッター（SP調整） */
	.site-footer {
		padding: 40px 0 0;
	}
	.footer__inner {
		row-gap: 28px;
		padding-bottom: 32px;
	}
	.footer__logo {
		font-size: 1.05rem;
		margin-bottom: 12px;
	}
	.custom-logo-link img {
		height: 40px;
	}
	.footer__brand .custom-logo-link img,
	.footer__logo-img {
		height: 40px;
		margin-bottom: 12px;
	}
	.footer__desc {
		font-size: 13px;
		line-height: 1.7;
		margin-bottom: 16px;
	}
	.footer__tel {
		font-size: 21px;
	}
	.footer__hours {
		font-size: 12px;
	}
	.footer__col-title {
		font-size: 13px;
		margin-bottom: 12px;
		padding-bottom: 8px;
	}
	.footer__col ul {
		gap: 8px;
	}
	.footer__col a {
		font-size: 13px;
	}
	.footer__nav {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
	.footer__bottom {
		flex-direction: column;
		gap: 8px;
		text-align: center;
		padding: 14px 0 16px;
	}
	.footer__legal a,
	.copyright {
		font-size: 11px;
	}

	/* フローティングCTA：SPは画面下フル幅バー */
	.floating-cta-group {
		bottom: 0;
		right: 0;
		left: 0;
		flex-direction: row;
		gap: 0;
		z-index: 500;
	}
	.floating-cta {
		flex: 1 1 0;
		width: auto;
		justify-content: center;
		gap: 8px;
		padding: 14px 8px;
		border-radius: 0;
		font-size: 14px;
		font-weight: 700;
		box-shadow: none !important;
	}
	.floating-cta:hover {
		transform: none;
	}
	/* SPではフッターbottomが被らないよう下余白確保 */
	.site-footer {
		padding-bottom: 64px;
	}


	.hero {
		padding: 60px 0;
	}

	.section,
	.svc {
		padding: 40px 0;
	}

	.latest--news-section .section__head {
		margin-bottom: 20px;
	}
	.latest__item a {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
		padding: 12px 4px;
	}
	.latest__date {
		font-size: 12px;
	}
	.latest__item-title {
		font-size: 14px;
		line-height: 1.6;
	}
	.latest--news-section .latest__list .latest__item:nth-child(n+4) {
		display: none;
	}

	/* 共通CTA（SP調整） */
	.cta {
		padding: 40px 0;
	}
	.cta__title {
		font-size: 19px;
		margin-bottom: 14px;
	}
	.cta__text {
		font-size: 14px;
		line-height: 1.8;
		margin-bottom: 24px;
	}
	.cta__buttons {
		flex-direction: column;
		align-items: center;
		gap: 12px;
		margin-bottom: 32px;
	}
	.cta__mail,
	.cta__line {
		font-size: 15px;
	}
	.cta__mail .cta__icon,
	.cta__line .cta__icon {
		width: 20px;
		height: 20px;
	}
	.cta__tel-lead {
		font-size: 12px;
	}
	.cta__tel {
		font-size: 24px;
		gap: 8px;
	}
	.cta__hours {
		font-size: 12px;
	}

	/* 背景の大きな平行四辺形（SP縮小） */
	.svc__bg::before,
	.skew-bg::before {
		top: -40px;
		width: 55%;
		height: 200px;
	}
	.svc__bg::after,
	.skew-bg::after {
		bottom: -60px;
		width: 55%;
		height: 220px;
	}

	/* OUR VALUE（SP調整） */
	.promise__grid {
		gap: 20px;
		padding-bottom: 0;
	}
	.promise__card {
		padding: 36px 20px 28px;
	}
	.promise__num {
		min-width: 72px;
		height: 40px;
		padding: 0 18px 0 24px;
		font-size: 16px;
	}
	.promise__icon {
		width: 100px;
		height: 100px;
		margin: 12px auto 14px;
	}
	.promise__icon svg {
		width: 64px;
		height: 64px;
	}
	.promise__card-title {
		font-size: 18px;
		margin-bottom: 14px;
	}
	.promise__card-text {
		font-size: 14px;
		line-height: 1.8;
	}
	.promise__watermark,
	.svc__watermark {
		display: none;
	}

	.hero {
		padding: 56px 0;
	}

	.hero__label {
		font-size: 0.75rem;
		padding: 3px 12px;
		margin-bottom: 18px;
	}

	.hero__title {
		font-size: 1.6rem;
		line-height: 1.5;
		margin-bottom: 20px;
	}

	.hero__sub {
		font-size: 14px;
		line-height: 1.8;
		margin-bottom: 28px;
	}

	.hero__cta {
		flex-direction: column;
		align-items: center;
		gap: 12px;
	}

	.hero__cta .btn--lg {
		width: auto;
		min-width: 0;
		padding: 12px 24px;
		font-size: 15px;
	}
}

/* ===========================
   外注パートナー LP
=========================== */
.lp { color: #31353f; }

.lp-container {
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 24px;
}
.lp-container--narrow { max-width: 800px; }

.lp-section { padding: 96px 0; }

.lp-head { text-align: center; margin-bottom: 56px; }
.lp-head__en {
	display: block;
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	background: linear-gradient(45deg, #2884da 0, #0fc9f7 60%, #2dd4bf 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 12px;
}
.lp-head__title {
	font-size: clamp(1.6rem, 3.4vw, 2.4rem);
	font-weight: 800;
	color: #31353f;
	line-height: 1.4;
}
.lp-head__title::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	margin: 18px auto 0;
	border-radius: 999px;
	background: linear-gradient(45deg, #2884da 0, #0fc9f7 60%, #2dd4bf 100%);
}
.lp-accent { color: #2884da; }

.lp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 42px;
	border-radius: 999px;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
	transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}
.lp-btn svg { width: 18px; height: 18px; transition: transform 0.2s; }
.lp-btn--primary {
	background: linear-gradient(45deg, #2884da 0, #0fc9f7 60%, #2dd4bf 100%);
	color: #fff;
	box-shadow: 0 10px 28px rgba(40, 132, 218, 0.35);
}
.lp-btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(40, 132, 218, 0.45); }
.lp-btn--primary:hover svg { transform: translateX(4px); }
.lp-btn--ghost {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, 0.6);
}
.lp-btn--ghost:hover { background: #fff; color: #1c5c99; }
.lp-btn--plan {
	width: 100%;
	margin-top: auto;
	background: #fff;
	color: #2884da;
	border: 1.5px solid #2884da;
	font-size: 0.95rem;
	padding: 13px 24px;
}
.lp-btn--plan:hover { background: #2884da; color: #fff; }

/* ① ファーストビュー（背景フル活用型） */
.lp-hero {
	position: relative;
	color: #fff;
	background: #0d3a66;
	overflow: hidden;
}
.lp-hero__bg {
	position: absolute; inset: 0; z-index: 0;
	background-image: var(--lp-hero-img, none);
	background-size: cover; background-position: center;
	opacity: 1;
}
/* 可読性のためのオーバーレイ（薄め・左だけ軽く暗く） */
.lp-hero::after {
	content: '';
	position: absolute; inset: 0; z-index: 0;
	background: linear-gradient(100deg, rgba(10, 35, 60, 0.62) 0%, rgba(13, 58, 102, 0.42) 45%, rgba(13, 58, 102, 0.15) 100%);
}
.lp-hero .lp-container { position: relative; z-index: 1; }
.lp-hero__grid {
	display: grid;
	grid-template-columns: 1fr;
	padding: 80px 0 96px;
}
.lp-hero__body { max-width: 640px; }
.lp-hero__eyebrow {
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	padding: 6px 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.15);
	margin-bottom: 22px;
}
.lp-hero__title {
	font-size: clamp(1.7rem, 3.6vw, 2.7rem);
	overflow-wrap: anywhere;
	font-weight: 900;
	line-height: 1.45;
	margin-bottom: 22px;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}
.lp-hero__title .lp-accent { color: #7fe9d8; }
.lp-hero__sub { font-size: 16px; line-height: 1.95; opacity: 0.96; margin-bottom: 34px; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25); }
.lp-hero__cta { display: flex; flex-wrap: wrap; gap: 16px; }
/* 背景フル活用型では右のビジュアルボックスは非表示 */
.lp-hero__visual { display: none; }

.lp-trustbar {
	position: relative; z-index: 1;
	background: linear-gradient(100deg, #0d3a66 0%, #1c5c99 55%, #2884da 100%);
	box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.2);
}
.lp-trustbar__list { display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; }
.lp-trustbar__list li {
	display: flex; flex-direction: column; align-items: center; gap: 4px;
	padding: 24px 12px; text-align: center;
}
.lp-trustbar__list li:not(:last-child) { border-right: 1px solid rgba(255, 255, 255, 0.15); }
.lp-trustbar__num { font-size: 1.9rem; font-weight: 900; line-height: 1; color: #fff; }
.lp-trustbar__num small { font-size: 13px; font-weight: 700; margin-left: 2px; }
.lp-trustbar__label { font-size: 13px; opacity: 0.85; }

/* ② お悩み */
.lp-trouble { background: #f4f8fa; }
.lp-trouble__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.lp-trouble__card {
	display: flex; flex-direction: column; align-items: center; text-align: center;
	gap: 16px; padding: 36px 22px;
	background: #fff; border-radius: 14px; box-shadow: 0 10px 30px rgba(28, 43, 70, 0.07);
}
.lp-trouble__icon {
	display: flex; align-items: center; justify-content: center;
	width: 58px; height: 58px; border-radius: 16px;
	color: #2884da; background: #eaf3fc;
}
.lp-trouble__icon svg { width: 28px; height: 28px; }
.lp-trouble__text { font-size: 15px; font-weight: 600; line-height: 1.8; color: #31353f; }
.lp-trouble__bridge { text-align: center; font-size: clamp(1.2rem, 2.6vw, 1.7rem); font-weight: 800; margin-top: 56px; }

/* 悩み→解決のブリッジ帯 */
.lp-bridge {
	position: relative;
	background: linear-gradient(120deg, #0d3a66 0%, #1c5c99 50%, #2884da 100%);
	color: #fff;
	text-align: center;
	padding: 56px 0;
}
/* 上から悩みカードへ続く下向き矢印 */
.lp-bridge__arrow {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 26px solid transparent;
	border-right: 26px solid transparent;
	border-top: 22px solid #f4f8fa;
}
.lp-bridge__lead {
	font-size: 16px;
	font-weight: 600;
	opacity: 0.95;
	margin-bottom: 14px;
}
.lp-bridge__main {
	font-size: clamp(1.4rem, 3.2vw, 2.1rem);
	font-weight: 900;
	line-height: 1.5;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}
.lp-bridge__accent { color: #7fe9d8; }

/* 担当者の声（吹き出し） */
.lp-voice__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px 40px;
}
.lp-voice {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}
.lp-voice__avatar {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	color: #fff;
	box-shadow: 0 8px 20px rgba(28, 43, 70, 0.15);
}
.lp-voice__avatar svg { width: 34px; height: 34px; }
.lp-voice--1 .lp-voice__avatar { background: linear-gradient(135deg, #2884da 0%, #0fc9f7 100%); }
.lp-voice--2 .lp-voice__avatar { background: linear-gradient(135deg, #1c5c99 0%, #2884da 100%); }
.lp-voice--3 .lp-voice__avatar { background: linear-gradient(135deg, #0fc9f7 0%, #2dd4bf 100%); }
.lp-voice--4 .lp-voice__avatar { background: linear-gradient(135deg, #2884da 0%, #2dd4bf 100%); }

.lp-voice__bubble {
	position: relative;
	flex: 1;
	background: #fff;
	border-radius: 14px;
	padding: 22px 24px;
	box-shadow: 0 10px 30px rgba(28, 43, 70, 0.08);
}
/* 吹き出しのしっぽ（左向き・少し鋭く） */
.lp-voice__bubble::before {
	content: '';
	position: absolute;
	top: 22px;
	left: -12px;
	width: 0;
	height: 0;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-right: 13px solid #fff;
}
.lp-voice__quote {
	position: relative;
	font-size: 17px;
	font-weight: 800;
	color: #1c5c99;
	line-height: 1.6;
	margin-bottom: 10px;
}
.lp-voice__text {
	position: relative;
	font-size: 15px;
	line-height: 1.9;
	color: #5a6678;
}

/* ③ ジグザグ */
.lp-zigzag { display: flex; flex-direction: column; gap: 64px; }
.lp-zz { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.lp-zz--rev .lp-zz__body { order: 2; }
.lp-zz__num {
	display: block; font-size: 3rem; font-weight: 900; line-height: 1; margin-bottom: 14px;
	background: linear-gradient(45deg, #2884da 0, #0fc9f7 60%, #2dd4bf 100%);
	-webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.lp-zz__title { font-size: clamp(1.3rem, 2.6vw, 1.7rem); font-weight: 800; color: #31353f; margin-bottom: 16px; line-height: 1.5; }
.lp-zz__text { font-size: 16px; line-height: 2; color: #5a6678; }
.lp-zz__figure {
	aspect-ratio: 4 / 3; border-radius: 16px;
	background-color: #edf5fc; background-size: cover; background-position: center;
	box-shadow: 0 20px 44px rgba(28, 43, 70, 0.12);
}

/* ④ 業務範囲 */
.lp-scope { background: #f4f8fa; }
.lp-scope__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lp-scope__card {
	position: relative; text-align: center; padding: 38px 24px;
	background: #fff; border-radius: 14px; border: 2px solid transparent;
	box-shadow: 0 10px 30px rgba(28, 43, 70, 0.07);
	transition: transform 0.2s, box-shadow 0.2s;
}
.lp-scope__card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(28, 43, 70, 0.13); }
.lp-scope__card.is-strong { border-color: #2dd4bf; background: linear-gradient(180deg, #ffffff 0%, #f0fbf9 100%); }
.lp-scope__badge {
	position: absolute; top: 14px; right: 14px;
	font-size: 12px; font-weight: 700; color: #fff; background: #2dd4bf;
	padding: 3px 10px; border-radius: 999px;
}
.lp-scope__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 48px; height: 48px; border-radius: 50%;
	color: #fff; background: linear-gradient(135deg, #2884da 0%, #2dd4bf 100%); margin-bottom: 16px;
}
.lp-scope__icon svg { width: 24px; height: 24px; }
.lp-scope__name { font-size: 18px; font-weight: 800; color: #31353f; margin-bottom: 8px; }
.lp-scope__note { font-size: 14px; line-height: 1.85; color: #64748b; text-align: left; }

/* ⑤ 依頼形態 */
.lp-plans__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.lp-plan {
	position: relative; display: flex; flex-direction: column;
	padding: 40px 30px; background: #fff; border: 1px solid #e3e8ef; border-radius: 16px;
	box-shadow: 0 10px 30px rgba(28, 43, 70, 0.06);
}
.lp-plan.is-recommend { border-color: #2884da; box-shadow: 0 20px 50px rgba(40, 132, 218, 0.2); transform: translateY(-8px); }
.lp-plan__badge {
	position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
	font-size: 13px; font-weight: 700; color: #fff;
	background: linear-gradient(45deg, #2884da, #2dd4bf);
	padding: 6px 20px; border-radius: 999px; white-space: nowrap;
}
.lp-plan__name { font-size: 20px; font-weight: 800; color: #31353f; text-align: center; margin-bottom: 6px; }
.lp-plan__for { font-size: 14px; color: #64748b; text-align: center; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px dashed #d7e0e8; }
.lp-plan__list { list-style: none; margin-bottom: 28px; }
.lp-plan__list li { position: relative; padding-left: 26px; font-size: 15px; line-height: 1.7; color: #333; margin-bottom: 12px; }
.lp-plan__list li::before {
	content: ''; position: absolute; left: 0; top: 5px; width: 16px; height: 16px; border-radius: 50%;
	background-color: #2dd4bf;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
	background-size: 11px; background-repeat: no-repeat; background-position: center;
}

/* ⑥ 流れ（縦タイムライン） */
.lp-timeline { list-style: none; max-width: 760px; margin: 0 auto; }
.lp-tl {
	position: relative;
	display: grid;
	grid-template-columns: 52px 1fr;
	gap: 24px;
	padding-bottom: 32px;
}
/* 縦のつなぎ線 */
.lp-tl::before {
	content: '';
	position: absolute;
	left: 25px;
	top: 52px;
	bottom: -4px;
	width: 2px;
	background: #d7e4ef;
}
.lp-tl:last-child { padding-bottom: 0; }
.lp-tl:last-child::before { display: none; }

.lp-tl__num {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	font-size: 1.05rem;
	font-weight: 800;
	color: #fff;
	background: linear-gradient(135deg, #2884da 0%, #2dd4bf 100%);
	box-shadow: 0 6px 16px rgba(40, 132, 218, 0.3);
}
.lp-tl__body {
	background: #fff;
	border-radius: 14px;
	padding: 22px 26px;
	box-shadow: 0 8px 24px rgba(28, 43, 70, 0.07);
}
.lp-tl__head {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 10px;
}
.lp-tl__name { font-size: 18px; font-weight: 800; color: #1c5c99; }
.lp-tl__badge {
	font-size: 13px;
	font-weight: 700;
	color: #2884da;
	background: #eaf3fc;
	padding: 4px 12px;
	border-radius: 999px;
}
.lp-tl__text { font-size: 15px; line-height: 1.9; color: #5a6678; }

.lp-flow__tools { margin-top: 40px; text-align: center; font-size: 15px; color: #5a6678; background: #eaf3fc; border-radius: 12px; padding: 18px; }
.lp-flow__tools strong { color: #2884da; }

/* ⑦ 実績 */
.lp-cases { background: #f4f8fa; }
.lp-cases__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lp-case { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 10px 30px rgba(28, 43, 70, 0.07); transition: transform 0.2s, box-shadow 0.2s; }
.lp-case:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(28, 43, 70, 0.13); }
.lp-case__thumb { aspect-ratio: 16 / 10; background-color: #edf5fc; background-size: cover; background-position: center; }
.lp-case__body { padding: 24px; }
.lp-case__cat { font-size: 16px; font-weight: 800; color: #31353f; margin-bottom: 6px; }
.lp-case__meta { font-size: 13px; color: #2884da; font-weight: 700; margin-bottom: 14px; }
.lp-case__role { font-size: 14px; color: #333; margin-bottom: 10px; }
.lp-case__role span { display: inline-block; font-size: 12px; font-weight: 700; color: #64748b; background: #eef2f6; padding: 2px 8px; border-radius: 4px; margin-right: 8px; }
.lp-case__comment { font-size: 15px; line-height: 1.8; color: #5a6678; }
.lp-cases__note { margin-top: 24px; text-align: center; font-size: 13px; color: #94a3b8; }

/* ⑧ 料金 */
.lp-price__table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 10px 30px rgba(28, 43, 70, 0.07); }
.lp-price__table thead th { background: linear-gradient(135deg, #1c5c99 0%, #2884da 100%); color: #fff; font-size: 15px; font-weight: 700; padding: 16px 20px; text-align: left; }
.lp-price__table td { padding: 18px 20px; border-bottom: 1px solid #eef2f6; font-size: 16px; color: #333; }
.lp-price__table tr:last-child td { border-bottom: none; }
.lp-price__amount { font-weight: 800; color: #2884da; font-size: 18px; }
.lp-price__note { margin-top: 18px; font-size: 13px; color: #94a3b8; text-align: center; }
.lp-price__cta { margin-top: 32px; text-align: center; }

/* ⑨ 体制 */
/* PRICE以降を白／グレー交互に（FLOW白→PRICE灰→TRUST白→FAQ灰） */
.lp-price { background: #f4f8fa; }
.lp-faq { background: #f4f8fa; }
.lp-trust__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.lp-trust__card { display: flex; gap: 20px; align-items: flex-start; padding: 32px; background: #fff; border-radius: 14px; box-shadow: 0 10px 30px rgba(28, 43, 70, 0.07); }
.lp-trust__icon { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 14px; color: #fff; background: linear-gradient(135deg, #2884da 0%, #2dd4bf 100%); }
.lp-trust__icon svg { width: 26px; height: 26px; }
.lp-trust__title { font-size: 18px; font-weight: 800; color: #31353f; margin-bottom: 8px; }
.lp-trust__text { font-size: 15px; line-height: 1.9; color: #5a6678; }

/* ⑩ FAQ */
.lp-accordion { display: flex; flex-direction: column; gap: 14px; }
.lp-acc { background: #fff; border-radius: 12px; box-shadow: 0 6px 20px rgba(28, 43, 70, 0.06); overflow: hidden; }
.lp-acc__q { display: flex; align-items: center; gap: 14px; width: 100%; padding: 22px 24px; background: none; border: none; cursor: pointer; text-align: left; font-size: 16px; font-weight: 700; color: #31353f; font-family: inherit; }
.lp-acc__qmark { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 8px; font-size: 14px; font-weight: 800; color: #fff; background: linear-gradient(135deg, #2884da 0%, #2dd4bf 100%); }
.lp-acc__qtext { flex: 1; line-height: 1.6; }
.lp-acc__icon { flex-shrink: 0; position: relative; width: 16px; height: 16px; }
.lp-acc__icon::before, .lp-acc__icon::after { content: ''; position: absolute; background: #2884da; transition: transform 0.25s; }
.lp-acc__icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
.lp-acc__icon::after { top: 0; left: 7px; width: 2px; height: 16px; }
.lp-acc.is-open .lp-acc__icon::after { transform: scaleY(0); }
.lp-acc__a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.lp-acc__a-inner { display: flex; gap: 14px; padding: 0 24px 24px; }
.lp-acc__amark { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 8px; font-size: 14px; font-weight: 800; color: #2884da; background: #edf5fc; }
.lp-acc__a-inner p { font-size: 15px; line-height: 1.9; color: #5a6678; }

/* ⑪ クロージング */
.lp-contact { position: relative; color: #fff; background-color: #0d3a66; background-image: var(--lp-hero-img, none); background-size: cover; background-position: center; overflow: hidden; }
/* 背景写真に濃いブルーオーバーレイを重ねる */
.lp-contact::after { content: ''; position: absolute; inset: 0; z-index: 0; background: linear-gradient(120deg, rgba(13, 58, 102, 0.94) 0%, rgba(20, 74, 130, 0.88) 55%, rgba(40, 132, 218, 0.82) 100%); }
.lp-contact__bg { position: absolute; top: -30%; right: -8%; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(45, 212, 191, 0.35) 0%, rgba(45, 212, 191, 0) 70%); z-index: 1; }
.lp-contact .lp-container { position: relative; z-index: 2; }
.lp-contact__head { text-align: center; margin-bottom: 44px; }
.lp-contact__title { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 900; margin-bottom: 16px; }
.lp-contact__lead { font-size: 16px; line-height: 1.9; opacity: 0.95; }
.lp-contact__panel { background: #fff; color: #333; border-radius: 18px; padding: 44px; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2); }
.lp-contact__alt { text-align: center; margin-top: 32px; }
.lp-contact__tel { display: inline-flex; align-items: center; gap: 10px; font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 800; color: #fff; text-decoration: none; }
.lp-contact__tel svg { width: 26px; height: 26px; }
.lp-contact__alt-note { display: block; font-size: 0.82rem; opacity: 0.85; margin-top: 8px; }
/* フォームはお問い合わせページと同じ .contact-form__body スタイルを流用 */
.lp-contact__panel .contact-form__body { text-align: left; }

/* ===========================
   TOP：制作実績（数字＋対応領域）
=========================== */
.top-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}
.top-stat {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 10px 30px rgba(28, 43, 70, 0.07);
	padding: 32px 20px 24px;
	text-align: center;
	border-top: 4px solid #2884da;
}
.top-stat__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	color: #fff;
	background: linear-gradient(135deg, #2884da 0%, #2dd4bf 100%);
	margin-bottom: 10px;
}
.top-stat__icon svg { width: 22px; height: 22px; }
.top-stat__label {
	font-size: 13px;
	font-weight: 700;
	color: #64748b;
	letter-spacing: 0.06em;
	margin-bottom: 6px;
}
.top-stat__num {
	font-size: 52px;
	font-weight: 900;
	color: #2884da;
	line-height: 1;
	letter-spacing: -0.01em;
}
.top-stat__num small {
	font-size: 12px;
	font-weight: 700;
	color: #64748b;
	margin-left: 4px;
}

.top-scopes {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	margin-bottom: 40px;
}
.top-scope {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	background: #fff;
	border-radius: 12px;
	padding: 20px 22px;
	box-shadow: 0 8px 24px rgba(28, 43, 70, 0.06);
}
.top-scope__icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 8px;
	color: #fff;
	background: linear-gradient(135deg, #2884da 0%, #2dd4bf 100%);
}
.top-scope__icon svg { width: 18px; height: 18px; }
.top-scope__name {
	font-size: 16px;
	font-weight: 800;
	color: #31353f;
	margin-bottom: 4px;
	line-height: 1.5;
}
.top-scope__note {
	font-size: 13px;
	line-height: 1.8;
	color: #64748b;
}

@media (max-width: 980px) {
	.top-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 750px) {
	.top-stats { gap: 12px; margin-bottom: 24px; }
	.top-stat { padding: 22px 12px 18px; border-radius: 12px; }
	.top-stat__icon { width: 36px; height: 36px; margin-bottom: 8px; }
	.top-stat__icon svg { width: 18px; height: 18px; }
	.top-stat__label { font-size: 11px; margin-bottom: 6px; }
	.top-stat__num { font-size: 36px; }
	.top-stat__num small { font-size: 11px; }
	.top-scopes { grid-template-columns: 1fr; gap: 12px; margin-bottom: 28px; }
	.top-scope { padding: 14px 16px; gap: 12px; }
	.top-scope__icon { width: 30px; height: 30px; }
	.top-scope__name { font-size: 14px; }
	.top-scope__note { font-size: 13px; }
}

/* ===========================
   制作事例ページ（case）
=========================== */
.case-intro { padding: 32px 0; }
.case-stats { padding-top: 48px; }
.case-intro__text {
	text-align: center;
	font-size: 15px;
	line-height: 2;
	color: #5a6678;
}

/* 数字サマリ */
.case-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.case-stat {
	position: relative;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 10px 30px rgba(28, 43, 70, 0.07);
	padding: 32px 22px 24px;
	text-align: center;
	border-top: 4px solid #2884da;
}
.case-stat__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	color: #fff;
	background: linear-gradient(135deg, #2884da 0%, #2dd4bf 100%);
	margin-bottom: 10px;
}
.case-stat__icon svg { width: 22px; height: 22px; }
.case-stat__label {
	font-size: 13px;
	font-weight: 700;
	color: #64748b;
	letter-spacing: 0.06em;
	margin-bottom: 6px;
}
.case-stat__num {
	font-size: 52px;
	font-weight: 900;
	color: #2884da;
	line-height: 1;
	margin-bottom: 8px;
	letter-spacing: -0.01em;
}
.case-stat__num small {
	font-size: 12px;
	font-weight: 700;
	color: #64748b;
	margin-left: 4px;
	letter-spacing: 0.04em;
}
.case-stat__note {
	font-size: 12px;
	line-height: 1.7;
	color: #64748b;
}

/* 対応領域 */
.case-scope__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.case-scope__card {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	background: #fff;
	border-radius: 12px;
	padding: 22px 22px;
	box-shadow: 0 8px 24px rgba(28, 43, 70, 0.06);
}
.case-scope__icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 8px;
	color: #fff;
	background: linear-gradient(135deg, #2884da 0%, #2dd4bf 100%);
}
.case-scope__icon svg { width: 18px; height: 18px; }
.case-scope__name {
	font-size: 16px;
	font-weight: 800;
	color: #31353f;
	margin-bottom: 4px;
	line-height: 1.5;
}
.case-scope__note {
	font-size: 13px;
	line-height: 1.8;
	color: #64748b;
}

/* 匿名ケース */
.case-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.case-card {
	position: relative;
	background: #fff;
	border-radius: 14px;
	padding: 26px 28px;
	box-shadow: 0 10px 30px rgba(28, 43, 70, 0.07);
	border-top: 4px solid var(--case-color, #2884da);
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.case-card__head {
	display: flex;
	gap: 14px;
	align-items: center;
}
.case-card__icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 12px;
	color: #fff;
	background: var(--case-color, #2884da);
}
.case-card__icon svg { width: 24px; height: 24px; }
.case-card__head-body { flex: 1; min-width: 0; }
.case-card__num {
	display: inline-block;
	font-size: 11px;
	font-weight: 800;
	color: var(--case-color, #2884da);
	letter-spacing: 0.1em;
	margin-bottom: 4px;
}
.case-card__industry {
	font-size: 16px;
	font-weight: 800;
	color: #31353f;
	line-height: 1.4;
}
.case-card__meta {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-top: 14px;
	border-top: 1px dashed #e3e8ef;
}
.case-card__row {
	display: grid;
	grid-template-columns: 78px 1fr;
	gap: 12px;
	align-items: start;
}
.case-card__row dt {
	font-size: 11px;
	font-weight: 800;
	color: #64748b;
	background: #f5f8fb;
	padding: 3px 8px;
	border-radius: 4px;
	text-align: center;
	line-height: 1.6;
	align-self: start;
	margin-top: 2px;
	letter-spacing: 0.04em;
}
.case-card__row dd {
	font-size: 13px;
	line-height: 1.7;
	color: #31353f;
}
.case-card__point {
	font-size: 14px;
	line-height: 1.85;
	color: #5a6678;
	padding: 14px 16px;
	background: #f7fafd;
	border-radius: 8px;
}
.case-list__note {
	margin-top: 24px;
	font-size: 13px;
	line-height: 1.8;
	color: #64748b;
	text-align: center;
}

@media (max-width: 980px) {
	.case-stats__grid { grid-template-columns: repeat(2, 1fr); }
	.case-scope__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 750px) {
	.case-intro { padding-top: 24px; }
	.case-intro__text { font-size: 14px; line-height: 1.9; text-align: left; }
	.case-stats__grid { gap: 12px; }
	.case-stat { padding: 20px 12px; border-radius: 12px; }
	.case-stat__label { font-size: 11px; margin-bottom: 6px; }
	.case-stat__num { font-size: 28px; }
	.case-stat__num small { font-size: 11px; }
	.case-stat__note { font-size: 11px; }
	.case-scope__grid { grid-template-columns: 1fr; gap: 12px; }
	.case-scope__card { padding: 14px 16px; gap: 12px; }
	.case-scope__icon { width: 30px; height: 30px; }
	.case-scope__name { font-size: 14px; }
	.case-scope__note { font-size: 13px; }
	.case-cards { grid-template-columns: 1fr; gap: 14px; }
	.case-card { padding: 20px; border-radius: 12px; gap: 12px; }
	.case-card__icon { width: 40px; height: 40px; }
	.case-card__icon svg { width: 20px; height: 20px; }
	.case-card__industry { font-size: 15px; }
	.case-card__num { font-size: 10px; }
	.case-card__row { grid-template-columns: 66px 1fr; gap: 10px; }
	.case-card__row dt { font-size: 10px; padding: 2px 6px; }
	.case-card__row dd { font-size: 13px; line-height: 1.7; }
	.case-card__point { font-size: 13px; padding: 12px 14px; line-height: 1.8; }
	.case-list__note { margin-top: 16px; font-size: 12px; text-align: left; }
	.case-stat { padding: 22px 12px 18px; }
	.case-stat__icon { width: 36px; height: 36px; margin-bottom: 8px; }
	.case-stat__icon svg { width: 18px; height: 18px; }
	.case-stat__num { font-size: 36px; }
}

/* ===========================
   送信完了ページ（thanks）
=========================== */
.thanks-card {
	max-width: 640px;
	margin: 0 auto;
	padding: 56px 48px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(28, 43, 70, 0.1);
	text-align: center;
}
.thanks-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	margin: 0 auto 24px;
	border-radius: 50%;
	color: #fff;
	background: linear-gradient(135deg, #2884da 0%, #2dd4bf 100%);
	box-shadow: 0 10px 24px rgba(40, 132, 218, 0.3);
}
.thanks-card__icon svg { width: 36px; height: 36px; }
.thanks-card__title {
	font-size: clamp(1.4rem, 2.6vw, 1.9rem);
	font-weight: 800;
	color: #31353f;
	line-height: 1.5;
	margin-bottom: 16px;
}
.thanks-card__lead {
	font-size: 15px;
	line-height: 1.9;
	color: #5a6678;
	margin-bottom: 28px;
}
/* 次のステップ（フロー） */
.thanks-steps {
	text-align: left;
	background: #eef5fc;
	border-radius: 12px;
	padding: 24px 26px;
	margin-bottom: 24px;
}
.thanks-steps__label {
	display: inline-block;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	color: #2884da;
	background: #fff;
	padding: 4px 12px;
	border-radius: 999px;
	margin-bottom: 16px;
}
.thanks-steps__list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.thanks-steps__item {
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 14px;
	align-items: start;
}
.thanks-steps__num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	font-size: 13px;
	font-weight: 800;
	color: #fff;
	background: linear-gradient(135deg, #2884da 0%, #2dd4bf 100%);
}
.thanks-steps__text {
	font-size: 14px;
	line-height: 1.85;
	color: #31353f;
	padding-top: 6px;
}

.thanks-card__urgent {
	font-size: 14px;
	line-height: 1.85;
	color: #31353f;
	text-align: left;
	padding: 14px 18px;
	border-left: 3px solid #F59E0B;
	background: #fff8ec;
	border-radius: 0 8px 8px 0;
	margin-bottom: 12px;
}
.thanks-card__urgent strong { color: #d98708; }
.thanks-card__tel {
	font-weight: 800;
	color: #d98708;
	text-decoration: underline;
}
.thanks-card__tel:hover { opacity: 0.8; }
.thanks-card__sub {
	font-size: 12px;
	color: #64748b;
	text-align: left;
	margin-bottom: 28px;
}
.thanks-card__actions { display: flex; justify-content: center; }

@media (max-width: 750px) {
	.thanks-card {
		padding: 32px 20px;
		border-radius: 12px;
	}
	.thanks-card__icon {
		width: 56px;
		height: 56px;
		margin-bottom: 18px;
	}
	.thanks-card__icon svg { width: 28px; height: 28px; }
	.thanks-card__title {
		font-size: 18px;
		margin-bottom: 12px;
	}
	.thanks-card__lead {
		font-size: 14px;
		line-height: 1.8;
		margin-bottom: 20px;
		text-align: left;
	}
	.thanks-steps {
		padding: 16px 16px 18px;
		margin-bottom: 20px;
	}
	.thanks-steps__label { font-size: 11px; margin-bottom: 12px; }
	.thanks-steps__item { grid-template-columns: 28px 1fr; gap: 10px; }
	.thanks-steps__num { width: 28px; height: 28px; font-size: 12px; }
	.thanks-steps__text { font-size: 13px; padding-top: 4px; line-height: 1.8; }
	.thanks-card__urgent { font-size: 13px; padding: 12px 14px; }
	.thanks-card__sub { font-size: 11px; margin-bottom: 20px; }
}

/* LP レスポンシブ */
@media (max-width: 980px) {
	.lp-hero__grid { padding: 56px 0 64px; }
	.lp-trouble__grid { grid-template-columns: repeat(2, 1fr); }
	.lp-voice__grid { grid-template-columns: 1fr; gap: 22px; }
	.lp-scope__grid { grid-template-columns: repeat(2, 1fr); }
	.lp-plans__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
	.lp-plan.is-recommend { transform: none; }
	.lp-cases__grid { grid-template-columns: repeat(2, 1fr); }
	.lp-zz { grid-template-columns: 1fr; gap: 24px; }
	.lp-zz--rev .lp-zz__body { order: 0; }
	.lp-zz__figure { order: -1; }
}

@media (max-width: 750px) {
	/* パートナーLP（SP調整） */
	.lp-section { padding: 48px 0; }
	.lp-head { margin-bottom: 24px; }
	.lp-head__en { font-size: 12px; letter-spacing: 0.14em; }
	.lp-head__title { font-size: 20px; }

	.lp-hero__grid { padding: 40px 0 48px; }
	.lp-hero__eyebrow { font-size: 12px; }
	.lp-hero__title { font-size: 22px; margin-bottom: 14px; }
	.lp-hero__sub { font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
	.lp-hero__cta { flex-direction: column; align-items: stretch; gap: 12px; }

	.lp-btn { font-size: 15px; padding: 14px 32px; min-width: 240px; width: auto; }
	.lp-btn svg { width: 16px; height: 16px; }
	.lp-hero__cta { align-items: center; }

	.lp-trustbar__list { grid-template-columns: repeat(2, 1fr); }
	.lp-trustbar__list li:nth-child(2) { border-right: none; }
	.lp-trustbar__list li:nth-child(1),
	.lp-trustbar__list li:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.15); }
	.lp-trustbar__list li { padding: 20px 12px; }
	.lp-trustbar__num { font-size: 24px; }
	.lp-trustbar__num small { font-size: 11px; }
	.lp-trustbar__label { font-size: 11px; }

	.lp-voice__grid { grid-template-columns: 1fr; gap: 16px; }
	.lp-voice__text { font-size: 13px; line-height: 1.8; }
	.lp-voice__quote { font-size: 14px; }

	.lp-bridge__lead { font-size: 14px; }
	.lp-bridge__main { font-size: 20px; }

	.lp-zz { grid-template-columns: 1fr; gap: 16px; }
	.lp-zz--rev .lp-zz__body { order: 0; }
	.lp-zz__figure { order: -1; }
	.lp-zz__title { font-size: 18px; margin-bottom: 10px; }
	.lp-zz__text { font-size: 14px; line-height: 1.8; }
	.lp-zz__num { font-size: 28px; }

	.lp-scope__grid { grid-template-columns: 1fr; gap: 12px; }
	.lp-scope__name { font-size: 16px; }
	.lp-scope__note { font-size: 13px; line-height: 1.75; }
	.lp-scope__strong { font-size: 13px; margin-top: 20px; }
	.lp-scope__badge { font-size: 11px; }
	.lp-scope__icon { width: 36px; height: 36px; }
	.lp-scope__icon svg { width: 20px; height: 20px; }

	.lp-flow__tools { margin-top: 24px; font-size: 13px; padding: 14px; line-height: 1.7; text-align: left; }

	.lp-cases__grid { grid-template-columns: 1fr; }

	.lp-price__table thead th,
	.lp-price__table td { font-size: 13px; padding: 12px 12px; }
	.lp-price__amount { font-size: 14px; }
	.lp-price__note { font-size: 12px; margin-top: 12px; text-align: left; }
	.lp-price__cta { margin-top: 24px; }

	.lp-trust__grid { grid-template-columns: 1fr; gap: 14px; }
	.lp-trust__card { padding: 18px; gap: 14px; }
	.lp-trust__icon { width: 40px; height: 40px; }
	.lp-trust__icon svg { width: 20px; height: 20px; }
	.lp-trust__title { font-size: 15px; }
	.lp-trust__text { font-size: 13px; line-height: 1.8; }

	.lp-contact__head { margin-bottom: 24px; }
	.lp-contact__title { font-size: 20px; margin-bottom: 10px; }
	.lp-contact__lead { font-size: 14px; line-height: 1.8; }
	.lp-contact__panel { padding: 20px 16px; border-radius: 14px; }
	.lp-contact__formnote { font-size: 13px; margin-bottom: 16px; line-height: 1.7; }

	/* お問い合わせフォーム（SP調整） */
	.contact-form__body { padding: 18px 14px; border-radius: 10px; }
	.contact-form__body .wpcf7-form p { margin-bottom: 16px; }
	.contact-form__body label { font-size: 14px; gap: 8px; }
	.contact-form__body label.required::after { font-size: 10px; padding: 2px 8px; }
	.contact-form__body input[type="text"],
	.contact-form__body input[type="email"],
	.contact-form__body input[type="tel"],
	.contact-form__body input[type="url"],
	.contact-form__body input[type="number"],
	.contact-form__body input[type="date"],
	.contact-form__body select,
	.contact-form__body textarea {
		padding: 10px 12px;
		font-size: 14px;
		border-radius: 8px;
	}
	.contact-form__body textarea { min-height: 120px; }
	.contact-form__body .wpcf7-submit {
		min-width: 240px;
		padding: 12px 24px;
		font-size: 15px;
	}
	.contact-form__body .wpcf7-form p:has(.wpcf7-submit) {
		margin-top: 20px;
	}
}

/* パートナーLP：タブレット領域は980pxで一部維持 */
@media (max-width: 980px) and (min-width: 751px) {
	.lp-trouble__grid { grid-template-columns: repeat(2, 1fr); }
	.lp-scope__grid { grid-template-columns: repeat(2, 1fr); }
	.lp-cases__grid { grid-template-columns: repeat(2, 1fr); }
}

.lp-scope__strong { margin-top: 28px; text-align: center; font-size: 15px; color: #5a6678; }
.lp-scope__strong strong { color: #2884da; }
.lp-contact__formnote { margin-bottom: 22px; font-size: 14px; font-weight: 700; color: #2884da; text-align: center; }

.lp-hero__line { display: block; }
@media (min-width: 981px) {
	.lp-hero__line { white-space: nowrap; }
}

/* ===========================
   制作実績 一覧（アーカイブ）
=========================== */
.works-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	list-style: none;
	margin-bottom: 44px;
}

.works-filter a {
	display: inline-block;
	padding: 9px 22px;
	border-radius: 999px;
	border: 1px solid #d7e0e8;
	font-size: 14px;
	font-weight: 700;
	color: #5a6678;
	text-decoration: none;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.works-filter a:hover {
	border-color: #2884da;
	color: #2884da;
}

.works-filter a.is-active {
	background: linear-gradient(45deg, #2884da 0, #0fc9f7 60%, #2dd4bf 100%);
	border-color: transparent;
	color: #fff;
}

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

.works-card {
	display: block;
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(28, 43, 70, 0.08);
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s, box-shadow 0.2s;
}

.works-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 42px rgba(28, 43, 70, 0.14);
}

.works-card__thumb {
	display: block;
	aspect-ratio: 4 / 3;
	background-color: #edf5fc;
	background-size: cover;
	background-position: center;
}

.works-card__body {
	display: block;
	padding: 20px 22px 24px;
}

.works-card__cat {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	background: #64748b;
	padding: 3px 12px;
	border-radius: 999px;
	margin-bottom: 12px;
}

.works-card__title {
	display: block;
	font-size: 16px;
	font-weight: 700;
	color: #31353f;
	line-height: 1.6;
}

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

@media (max-width: 600px) {
	.works-grid { grid-template-columns: 1fr; }
}

/* ===========================
   FAQページ（カテゴリ別）
=========================== */
.faq-group { margin-bottom: 48px; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group__title {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 1.25rem;
	font-weight: 800;
	color: #4a4a4a;
	margin-bottom: 20px;
	padding-left: 16px;
	border-left: 4px solid;
	border-image: linear-gradient(45deg, #2884da 0, #0fc9f7 60%, #2dd4bf 100%) 1;
	line-height: 1.5;
}

/* 制作の流れページ 導入文 */
.flow-intro {
	text-align: center;
	font-size: 16px;
	line-height: 2;
	color: #333;
	margin-bottom: 48px;
}

/* ===========================
   サービスページ（下層）
=========================== */
.page-content--intro { padding-bottom: 0; }
.svcp-intro {
	font-size: 1rem;
	line-height: 2.1;
	color: #333;
	text-align: center;
}

/* 提供サービス：テキスト＋画像を交互に */
.svc-details {
	display: flex;
	flex-direction: column;
	gap: 80px;
}
.svc-detail {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: start;
	scroll-margin-top: 90px;
}
.svc-detail--rev .svc-detail__body { order: 2; }
.svc-detail__en {
	display: block;
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 0.14em;
	background: linear-gradient(45deg, #2884da 0, #0fc9f7 60%, #2dd4bf 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 8px;
}
.svc-detail__name {
	font-size: clamp(1.3rem, 2.4vw, 1.6rem);
	font-weight: 800;
	color: #31353f;
	line-height: 1.5;
	margin-bottom: 16px;
}
.svc-detail__text {
	font-size: 16px;
	line-height: 2;
	color: #5a6678;
}
/* POINT（Lazoricoの強み）ボックス */
.svc-detail__point {
	margin-top: 20px;
	padding: 20px 22px;
	background: #eef5fc;
	border-radius: 12px;
	border: 1px solid #bcd6ef;
}
.svc-detail__point-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}
.svc-detail__point-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 8px;
	color: #fff;
	background: linear-gradient(45deg, #2884da 0, #0fc9f7 60%, #2dd4bf 100%);
}
.svc-detail__point-icon svg { width: 18px; height: 18px; }
.svc-detail__point-label {
	font-size: 16px;
	font-weight: 800;
	color: #2884da;
}
.svc-detail__point-text {
	font-size: 15px;
	line-height: 1.95;
	color: #31353f;
}
.svc-detail__figure {
	aspect-ratio: 16 / 10;
	border-radius: 16px;
	background-color: #edf5fc;
	background-size: cover;
	background-position: center;
	box-shadow: 0 16px 40px rgba(28, 43, 70, 0.12);
}

/* 料金ブロック（見出し） */
.svc-block { margin-bottom: 56px; }
.svc-block:last-of-type { margin-bottom: 0; }
.svc-block__title {
	font-size: 1.3rem;
	font-weight: 800;
	color: #4a4a4a;
	margin-bottom: 22px;
	padding-bottom: 14px;
	padding-left: 16px;
	border-bottom: 1px solid #e3e8ef;
	border-left: 4px solid;
	border-image: linear-gradient(45deg, #2884da 0, #0fc9f7 60%, #2dd4bf 100%) 1;
	line-height: 1.5;
}
.svcp-price__table thead th {
	background: #1c5c99;
	color: #fff;
	width: auto;
	white-space: nowrap;
}
.svcp-price__table tbody th {
	background: #6ba0d4;
	color: #fff;
	white-space: nowrap;
}
.svcp-price__amount { font-weight: 800; color: #2884da; font-size: 18px; }
.svc-note {
	margin-top: 16px;
	font-size: 13px;
	line-height: 1.8;
	color: #64748b;
}

/* 関連リンク */
/* 料金エリアを薄グレーに（提供サービスは白） */
.svc-price {
	background: linear-gradient(135deg, #f5f8f9 0%, #e9f0f2 100%);
}

/* 料金内の関連リンクは上に余白 */
.svc-price .svc-links {
	margin-top: 56px;
}

/* 関連リンク（カード型） */
.svc-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.svc-linkcard {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 20px 22px;
	background: #fff;
	border: 1px solid #e8edf2;
	border-radius: 12px;
	text-decoration: none;
	color: #31353f;
	box-shadow: 0 6px 18px rgba(28, 43, 70, 0.05);
	transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.svc-linkcard:hover {
	transform: translateY(-3px);
	border-color: transparent;
	box-shadow: 0 14px 32px rgba(28, 43, 70, 0.12);
}
.svc-linkcard__icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	color: #fff;
	background: linear-gradient(135deg, #2884da 0%, #2dd4bf 100%);
}
.svc-linkcard__icon svg { width: 22px; height: 22px; }
.svc-linkcard__label {
	flex: 1;
	font-size: 16px;
	font-weight: 700;
}
.svc-linkcard__arrow {
	flex-shrink: 0;
	display: flex;
	color: #2884da;
	transition: transform 0.2s;
}
.svc-linkcard__arrow svg { width: 18px; height: 18px; }
.svc-linkcard:hover .svc-linkcard__arrow { transform: translateX(4px); }

@media (max-width: 700px) {
	.svc-links { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
	.svc-detail { grid-template-columns: 1fr; gap: 18px; }
	.svc-detail--rev .svc-detail__body { order: 0; }
	.svc-detail__figure { order: -1; }
}

/* タブレット域：画像と本文を縦中央揃え */
@media (min-width: 751px) and (max-width: 1100px) {
	.svc-detail { align-items: center; }
}

/* サービスページ（SP調整） */
@media (max-width: 750px) {
	.svc-services .section__head,
	.svc-price .section__head {
		margin-bottom: 20px;
	}
	.svc-details {
		gap: 40px;
	}
	.svc-detail__en {
		font-size: 13px;
		margin-bottom: 4px;
	}
	.svc-detail__name {
		font-size: 18px;
		margin-bottom: 12px;
	}
	.svc-detail__text {
		font-size: 14px;
		line-height: 1.8;
	}
	.svc-detail__point {
		margin-top: 16px;
		padding: 16px 16px;
	}
	.svc-detail__point-head {
		gap: 8px;
		margin-bottom: 8px;
	}
	.svc-detail__point-icon {
		width: 26px;
		height: 26px;
	}
	.svc-detail__point-icon svg {
		width: 15px;
		height: 15px;
	}
	.svc-detail__point-label {
		font-size: 14px;
	}
	.svc-detail__point-text {
		font-size: 14px;
		line-height: 1.8;
	}

	.svcp-price__amount {
		font-size: 15px;
	}
	.svcp-price__table td {
		vertical-align: middle;
	}
	.svc-note {
		font-size: 12px;
		line-height: 1.7;
	}

	.svc-price .svc-links {
		margin-top: 32px;
	}
	.svc-linkcard {
		gap: 12px;
		padding: 14px 16px;
	}
	.svc-linkcard__icon {
		width: 36px;
		height: 36px;
	}
	.svc-linkcard__icon svg {
		width: 18px;
		height: 18px;
	}
	.svc-linkcard__label {
		font-size: 14px;
	}
	.svc-linkcard__arrow svg {
		width: 16px;
		height: 16px;
	}

	/* 制作の流れページ（SP調整） */
	.flow-intro {
		text-align: left;
		font-size: 14px;
		line-height: 1.8;
		margin-bottom: 24px;
	}
	.lp-tl {
		gap: 14px;
		padding-bottom: 22px;
	}
	.lp-tl::before {
		left: 19px;
		top: 42px;
	}
	.lp-tl__num {
		width: 40px;
		height: 40px;
		font-size: 14px;
	}
	.lp-tl__body {
		padding: 14px 16px;
		border-radius: 12px;
	}
	.lp-tl__head {
		gap: 8px;
		margin-bottom: 6px;
	}
	.lp-tl__name {
		font-size: 16px;
	}
	.lp-tl__badge {
		font-size: 11px;
		padding: 2px 10px;
	}
	.lp-tl__text {
		font-size: 14px;
		line-height: 1.8;
	}

	/* よくあるご質問（SP調整） */
	.faq-group {
		margin-bottom: 32px;
	}
	.faq-group__title {
		font-size: 17px;
		gap: 8px;
		padding-left: 12px;
		margin-bottom: 14px;
	}
	.lp-accordion {
		gap: 10px;
	}
	.lp-acc__q {
		padding: 14px 16px;
		gap: 10px;
		font-size: 14px;
		align-items: flex-start;
	}
	.lp-acc__qmark {
		margin-top: 1px;
	}
	.lp-acc__qmark,
	.lp-acc__amark {
		width: 24px;
		height: 24px;
		font-size: 12px;
	}
	.lp-acc__icon {
		width: 14px;
		height: 14px;
	}
	.lp-acc__icon::before {
		top: 6px;
		width: 14px;
	}
	.lp-acc__icon::after {
		left: 6px;
		height: 14px;
	}
	.lp-acc__a-inner {
		gap: 10px;
		padding: 0 16px 16px;
	}
	.lp-acc__a-inner p {
		font-size: 14px;
		line-height: 1.8;
	}

	/* 制作実績アーカイブ／single（SP調整） */
	.works-filter { gap: 6px; margin-bottom: 24px; }
	.works-filter a { padding: 5px 14px; font-size: 12px; }
	.works-grid { grid-template-columns: 1fr; gap: 20px; }
	.works-card__body { padding: 14px 16px 16px; }
	.works-card__cat { font-size: 11px; margin-bottom: 8px; padding: 2px 10px; }
	.works-card__title { font-size: 14px; line-height: 1.5; }

	/* 記事本文/固定ページ本文（.doc）SP調整：本文14px、見出しマージン圧縮 */
	.doc p { font-size: 14px; line-height: 1.9; margin-bottom: 14px; }
	.doc h2 { font-size: 17px; margin: 40px 0 12px; padding-bottom: 10px; padding-left: 12px; }
	.doc h3 { font-size: 15px; margin: 28px 0 10px; }
	.doc ul,
	.doc ol { margin: 0 0 16px; }
	.doc ul li,
	.doc ol li { font-size: 14px; line-height: 1.8; padding-left: 18px; }

	/* お知らせ／制作実績詳細（SP調整） */
	.post-single__head { padding-bottom: 16px; margin-bottom: 20px; }
	.post-single__title { font-size: 18px; }
	.post-single__date { font-size: 12px; margin-bottom: 8px; }
	.post-single__thumb { margin-bottom: 20px; }
	.post-single__back { margin-top: 32px; }
	.post-single__cat { font-size: 11px; padding: 2px 10px; }

	/* Lazoricoについて（SP調整） */
	.about-greeting .section__head,
	.about-overview .section__head,
	.about-members .section__head {
		margin-bottom: 20px;
	}
	.about-greeting__body p {
		font-size: 14px;
		line-height: 1.9;
		margin-bottom: 16px;
	}
	.about-photos { grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
	.about-overview { }
	.about-table th,
	.about-table td { padding: 12px 14px; font-size: 13px; line-height: 1.7; }
	.about-table th { width: 36%; }
	.member-list { gap: 20px; }
	.member-row {
		grid-template-columns: 1fr;
		gap: 14px;
		padding: 20px;
		justify-items: center;
		text-align: center;
	}
	.member-row__photo { width: 120px; height: 120px; }
	.member-row__role { font-size: 11px; margin-bottom: 10px; }
	.member-row__name { font-size: 18px; justify-content: center; margin-bottom: 8px; gap: 8px; }
	.member-row__en { font-size: 11px; }
	.member-row__bio { font-size: 13px; line-height: 1.8; text-align: left; width: 100%; }

	/* ブログ・コラム（SP調整） */
	.blog-layout { gap: 32px; }
	.blog-main__cat-label { font-size: 14px; margin-bottom: 12px; }
	.blog-cards { gap: 12px; }
	.blog-card { border-radius: 10px; }
	.blog-card__meta { gap: 8px; margin-bottom: 4px; }
	.blog-card__date { font-size: 11px; }
	.blog-card__cat { font-size: 10px; padding: 1px 8px; }
	.blog-card__title { font-size: 14px; margin-bottom: 4px; -webkit-line-clamp: 2; line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; min-height: calc(1em * 1.5 * 2); }
	.blog-card__excerpt { font-size: 12px; line-height: 1.6; -webkit-line-clamp: 1; line-clamp: 1; }
	.blog-widget__title { font-size: 14px; margin-bottom: 12px; }
	.blog-search__input,
	.blog-search__btn { font-size: 13px; }
	/* サイドバー：最新記事はSPで3件のみ */
	.blog-widget__posts li:nth-child(n+4) { display: none; }

	/* お知らせ（SP調整） */
	.news-list__item a {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
		padding: 14px 4px;
	}
	.news-list__date { font-size: 12px; }
	.news-list__title { font-size: 14px; line-height: 1.6; }

	/* お問い合わせ（SP調整） */
	.contact-lead { text-align: left; margin-bottom: 24px; }
	.contact-lead p { font-size: 14px; line-height: 1.8; }
	.contact-form__body .desc { text-align: left; font-size: 11px; }
	.contact-methods { gap: 16px; }
	.contact-method {
		padding: 28px 20px;
		gap: 10px;
		border-radius: 12px;
	}
	.contact-method__label { font-size: 16px; gap: 8px; margin-bottom: 4px; }
	.contact-method__label::before,
	.contact-method__label::after { width: 20px; }
	.contact-method__tel { font-size: 24px; gap: 8px; }
	.contact-method__tel .cta__icon { width: 22px; height: 22px; }
	.contact-method__note { font-size: 12px; }
	.contact-mail { padding: 40px 0 48px; }
	.contact-mail .section__head { margin-bottom: 20px; }

	/* ページネーション（SP調整） */
	.pagination { margin-top: 28px; }
	.pagination .page-numbers {
		min-width: 34px;
		height: 34px;
		font-size: 12px;
		padding: 0 8px;
	}
}

/* 制作の流れ・よくあるご質問：aboutのoverviewと同じ背景色 */
.page-template-page-flow .page-content,
.page-template-page-faq .page-content {
	background: linear-gradient(135deg, #f5f8f9 0%, #e9f0f2 100%);
}

/* ===========================
   旧JIN:Rブロック互換CSS
   （移行前記事の見た目補完）
=========================== */

/* 見出し（h2） */
.doc .jinr-heading {
	position: relative;
	padding: 14px 20px;
	background: #edf5fc;
	border-left: 4px solid #2884da;
	border-radius: 0 8px 8px 0;
	margin: 72px 0 16px;
}
.doc h3.jinr-heading {
	margin-top: 56px;
}

/* マーカー装飾 */
.doc .d--marker1 {
	background: linear-gradient(transparent 60%, #ffec8b 60%);
	padding: 0 2px;
}
.doc .d--marker2 {
	background: linear-gradient(transparent 60%, #ffd6e4 60%);
	padding: 0 2px;
}

/* テキストカラー（jinr-d--text-color と user-colorX の組み合わせ） */
.doc .jinr-d--text-color { color: inherit; }
.doc .jinr-d--text-color.d--user-color1 { color: #2884da; }
.doc .jinr-d--text-color.d--user-color2 { color: #F59E0B; }
.doc .jinr-d--text-color.d--user-color3 { color: #2dd4bf; }

/* フォントサイズ（d--fontsize-XXpx） */
.doc .d--fontsize-12px { font-size: 12px; }
.doc .d--fontsize-14px { font-size: 14px; }
.doc .d--fontsize-16px { font-size: 16px; }
.doc .d--fontsize-18px { font-size: 18px; }
.doc .d--fontsize-20px { font-size: 20px; }
.doc .d--fontsize-24px { font-size: 24px; }

/* リスト */
.doc .jinr-list {
	list-style: none;
	padding-left: 4px;
}
.doc .jinr-list li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 6px;
}
.doc .jinr-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.7em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #2dd4bf;
}

/* シンプルボックス */
.doc .b--jinr-box {
	padding: 22px 26px;
	border-radius: 12px;
	margin: 24px 0;
	background: #f5f8fb;
	border: 1px solid #dee6ee;
}
.doc .d--simple-box5 { background: #edf5fc; border-color: #bcd6ef; }
.doc .d--simple-box6 { background: #fff7e6; border-color: #f5d99a; }
.doc .d--simple-box9 { background: #eef9f5; border-color: #b8e5d5; }

/* アイコンボックス */
.doc .b--jinr-iconbox {
	position: relative;
	padding: 24px 26px 22px;
	margin: 32px 0 24px;
	background: #fff;
	border: 1px solid #dee6ee;
	border-radius: 12px;
}
.doc .a--jinr-iconbox,
.doc .d--heading-iconbox1,
.doc .d--simple-iconbox5 {
	display: inline-block;
	padding: 4px 14px;
	background: #2884da;
	color: #fff;
	font-weight: 700;
	border-radius: 999px;
	font-size: 13px;
	margin-bottom: 10px;
}

/* 吹き出し */
.doc .b--jinr-fukidashi {
	position: relative;
	background: #f5f8fb;
	padding: 16px 20px;
	border-radius: 12px;
	margin: 24px 0;
}

/* タイムライン */
.doc .b--jinr-timeline { margin: 24px 0; }
.doc .c--timeline-item {
	position: relative;
	padding: 12px 0 12px 24px;
	border-left: 2px solid #cfe0f0;
	margin-left: 6px;
}
.doc .a--timeline-label {
	display: inline-block;
	background: #2884da;
	color: #fff;
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 13px;
	margin-bottom: 8px;
}

/* JIN:R互換 追加調整 */
/* bold の効きを保証（色クラス指定で font-weight が上書きされる問題を回避） */
.doc .d--bold,
.doc strong.d--bold,
.doc .jinr-d--text-color.d--bold { font-weight: 800 !important; }

/* シンプルボックスの内部余白調整（下スペース削除） */
.doc .b--jinr-box > *:last-child,
.doc .b--jinr-box p:last-child { margin-bottom: 0; }
.doc .b--jinr-box p { margin-bottom: 10px; }

/* 画像の下スペース（自然な余白） */
.doc figure.wp-block-image,
.doc .wp-block-image { margin: 24px 0; }
.doc .wp-block-image img { display: block; }

/* アイコンボックス（レイアウト整え） */
.doc .b--jinr-iconbox {
	position: relative;
	padding: 28px 26px 22px;
	margin: 40px 0 24px;
	background: #fff;
	border: 1px solid #cfe0f0;
	border-radius: 12px;
}
.doc .b--jinr-iconbox > *:first-child { margin-top: 0; }
.doc .b--jinr-iconbox > *:last-child { margin-bottom: 0; }
.doc .a--jinr-iconbox,
.doc .d--heading-iconbox1,
.doc .d--simple-iconbox5 {
	position: absolute;
	top: -14px;
	left: 20px;
	display: inline-flex;
	align-items: center;
	padding: 6px 16px;
	background: linear-gradient(45deg, #2884da 0, #0fc9f7 60%, #2dd4bf 100%);
	color: #fff;
	font-weight: 700;
	border-radius: 999px;
	font-size: 13px;
	margin: 0;
	white-space: nowrap;
}

/* タイムラインを見やすく */
.doc .b--jinr-timeline {
	list-style: none;
	margin: 32px 0;
	padding: 0;
}
.doc .c--timeline-item,
.doc .b--jinr-timeline > li {
	position: relative;
	padding: 6px 0 22px 32px;
	margin: 0;
	border-left: none;
}
.doc .b--jinr-timeline > li::before {
	content: '';
	position: absolute;
	left: 9px;
	top: 8px;
	bottom: -8px;
	width: 2px;
	background: #cfe0f0;
}
.doc .b--jinr-timeline > li:last-child::before { display: none; }
.doc .b--jinr-timeline > li::after {
	content: '';
	position: absolute;
	left: 3px;
	top: 8px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid #2884da;
}
.doc .b--jinr-timeline .a--timeline-label {
	display: inline-block;
	background: #2884da;
	color: #fff;
	padding: 4px 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 8px;
}
.doc .b--jinr-timeline .c--timeline-body,
.doc .b--jinr-timeline .a--timeline-content { padding: 0; }

/* JIN:R タイムライン（実構造に合わせて調整・上書き） */
.doc .b--jinr-timeline {
	margin: 32px 0;
	padding: 0;
}
.doc .o--timeline-list {
	position: relative;
	padding-left: 6px;
}
.doc .b--jinr-timeline .c--timeline-item {
	position: relative;
	padding: 0 0 24px 32px;
	margin: 0;
	border-left: none;
	list-style: none;
}
.doc .b--jinr-timeline .c--timeline-item:last-child { padding-bottom: 0; }

/* 縦のつなぎ線 */
.doc .b--jinr-timeline .c--timeline-item::before {
	content: '';
	position: absolute;
	left: 9px;
	top: 8px;
	bottom: -4px;
	width: 2px;
	background: #cfe0f0;
}
.doc .b--jinr-timeline .c--timeline-item:last-child::before { display: none; }

/* ドット */
.doc .b--jinr-timeline .a--timeline-step {
	position: absolute;
	left: 0;
	top: 2px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid #2884da;
}
.doc .b--jinr-timeline .a--timeline-step-text { display: none; }

/* 見出し部分（横並び） */
.doc .b--jinr-timeline .c--timeline-heading {
	position: static;
	margin-bottom: 6px;
}

/* ラベル */
.doc .b--jinr-timeline .a--timeline-label {
	display: inline-block;
	background: none;
	color: #31353f;
	padding: 0;
	border-radius: 0;
	font-size: 16px;
	font-weight: 800;
	margin: 0;
}

/* 本文 */
.doc .b--jinr-timeline .c--timeline-contents { padding: 0; }
.doc .b--jinr-timeline .a--timeline-text { font-size: 15px; color: #5a6678; line-height: 1.9; }
.doc .b--jinr-timeline .a--timeline-text p { margin: 0; }
.doc .b--jinr-timeline .a--timeline-text:empty { display: none; }

/* ===========================
   吹き出し（ブロックパターン）
=========================== */
.doc .laz-fukidashi.laz-fukidashi {
	margin: 28px 0;
	padding: 0;
	background: transparent;
	border: none;
}
/* WPが挟む __inner-container に対して flex を適用 */
.doc .laz-fukidashi > .wp-block-group__inner-container {
	display: flex !important;
	flex-direction: row !important;
	align-items: flex-start !important;
	flex-wrap: nowrap !important;
	gap: 20px;
}
.doc .laz-fukidashi--right > .wp-block-group__inner-container {
	flex-direction: row-reverse !important;
}

/* 左サイド（画像＋名前）縦積み */
.doc .laz-fukidashi__side.laz-fukidashi__side {
	flex-shrink: 0;
	width: 84px;
	padding: 0;
	background: transparent;
	border: none;
	margin: 0;
}
.doc .laz-fukidashi__side > .wp-block-group__inner-container {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	gap: 6px;
}
/* __text をflexアイテムとして伸ばす */
.doc .laz-fukidashi__text {
	flex: 1 1 auto;
	min-width: 0;
}

/* アバター */
.doc .laz-fukidashi__avatar { margin: 0; }
.doc .laz-fukidashi__avatar img {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #cfe0f0;
	background: #edf5fc;
	display: block;
}

/* 名前 */
.doc .laz-fukidashi__name {
	font-size: 13px;
	font-weight: 700;
	color: #2884da;
	margin: 0;
	line-height: 1.4;
	text-align: center;
	word-break: keep-all;
}

/* 吹き出し */
.doc .laz-fukidashi__text {
	position: relative;
	flex: 1;
	min-width: 0;
	background: #eef5fc;
	border: 2px solid #bcd6ef;
	border-radius: 12px;
	padding: 16px 20px;
	margin: 0;
	font-size: 15px;
	line-height: 1.9;
	color: #333;
}

/* しっぽ */
.doc .laz-fukidashi__text::before,
.doc .laz-fukidashi__text::after {
	content: '';
	position: absolute;
	top: 22px;
	width: 0;
	height: 0;
	border-top: 9px solid transparent;
	border-bottom: 9px solid transparent;
}
.doc .laz-fukidashi--left .laz-fukidashi__text::before {
	left: -14px;
	border-right: 14px solid #bcd6ef;
}
.doc .laz-fukidashi--left .laz-fukidashi__text::after {
	left: -11px;
	border-right: 14px solid #eef5fc;
}
.doc .laz-fukidashi--right .laz-fukidashi__text::before {
	right: -14px;
	border-left: 14px solid #bcd6ef;
}
.doc .laz-fukidashi--right .laz-fukidashi__text::after {
	right: -11px;
	border-left: 14px solid #eef5fc;
}

/* .doc 汎用スタイルとの干渉防止 */
.doc .laz-fukidashi .wp-block-image,
.doc .laz-fukidashi figure { margin: 0; }
.doc .laz-fukidashi p { margin: 0; }

/* SP */
@media (max-width: 600px) {
	.doc .laz-fukidashi > .wp-block-group__inner-container { gap: 14px; }
	.doc .laz-fukidashi__side.laz-fukidashi__side { width: 64px; }
	.doc .laz-fukidashi__avatar img { width: 56px; height: 56px; }
	.doc .laz-fukidashi__text { padding: 14px 16px; }
}
