@charset "UTF-8";
/*****************************************************
　サービスページ専用スタイル
　common.css の変数・命名規則を踏襲
*****************************************************/

/* ===== Service intro（ヒーローリード文） ===== */
.service-intro{
	padding:150px 70px 0;
	max-width:1250px;
}
.service-intro .display{
	font-size:48px;font-size:4.8rem;
	font-weight:700;
	line-height:1.5;
	margin:0 0 30px;
	letter-spacing:.01em;
}
.service-intro .lede{
	font-size:16px;font-size:1.6rem;
	color:var(--text-basic);
	max-width:920px;
}
.service-intro .lede p{
	line-height:1.8;
	margin:0 0 20px;
}
.service-intro .lede p:last-child{margin-bottom:0;}

/* ===== Section head（Service / サービス） ===== */
.service-info{
	margin-top:100px;
	max-width:1250px;
}
.service-head{margin:0 0 30px;}
.service-head .eyebrow{
	justify-content:flex-start;
	margin-bottom:10px;
}
.service-head h1{
	font-size:28px;font-size:2.8rem;
	font-weight:500;
	margin:0;
}

/* ===== Service block（大カード） ===== */
.service-list{
	display:flex;
	flex-direction:column;
	gap:40px;
	margin-bottom:40px;
}
.service-block{
	background:var(--card-bg);
	border-radius:var(--radius-lg);
	padding:30px;
}
.service-block h2{
	font-size:24px;font-size:2.4rem;
	font-weight:700;
	margin:0 0 18px;
}
.service-block .desc{
	font-size:16px;font-size:1.6rem;
	color:var(--text-basic);
	line-height:1.68;
	margin:0 0 24px;
}

.service-meta{
	display:flex;
	flex-wrap:wrap;
	gap:12px 28px;
	margin:0 0 30px;
}
.meta-item{
	display:inline-flex;align-items:center;gap:10px;
}
.meta-label{
	background:#214b73;
	color:#fff;
	font-size:12px;font-size:1.2rem;
	font-weight:600;
	padding:4px 14px;
	border-radius:var(--radius-lg);
	flex-shrink:0;
}
.meta-value{
	font-size:14px;font-size:1.4rem;
	color:var(--text-basic);
	font-weight:600;
}

.bullets-detail{margin:0 0 34px;padding:0;}
.bullets-detail li{
	list-style:none;
	padding-left:16px;
	position:relative;
	margin-bottom:18px;
}
.bullets-detail li:last-child{margin-bottom:0;}
.bullets-detail li::before{
	content:"・";
	position:absolute;left:-2px;top:0;
	color:var(--text-muted);
}
.bullets-detail .bullet-title{
	display:block;
	font-size:16px;font-size:1.6rem;
	font-weight:700;
	margin-bottom:4px;
}
.bullets-detail .bullet-desc{
	display:block;
	font-size:14px;font-size:1.4rem;
	color:var(--text-secondary);
	line-height:1.7;
}

.works-label{
	font-size:14px;font-size:1.4rem;
	font-weight:600;
	color:var(--text-basic);
	margin:0 0 16px;
}
.service-work-row{
	display:flex;
	align-items:stretch;
	gap:20px;
}
.service-work-row .work-card{
	display:flex;
	min-height:170px;
	/*max-width:770px;
	width:74%;*/
	width:calc(100% - 190px - 20px);
	flex-shrink:0;
}
.service-work-row .work-card .work-photo{
	/*max-width:260px;*/
	width:36%;
}
.service-work-row .work-card .work-body{
	width:calc(100% - 36%);
}
.service-work-row .work-card .work-body .category span{
	background:var(--accent-lightblue);
	border-radius:50px;
	color:#fff;
	display:inline-block;
	font-size:12px;font-size:1.2rem;font-weight:600;
	line-height:2;
	padding:0 2em;
}
.service-work-row .work-card .work-body{
	border:1px solid #fff;
	border-left:none;
	border-radius:0 var(--radius-lg) var(--radius-lg) 0;
}
.service-work-row .work-card .work-body h4{
	font-size:20px;font-size:2.0rem;font-weight:700;
	line-height:1.4;
	margin:13px 0 0;
}
.service-work-row .work-card .work-body .company{
	font-size:16px;font-size:1.6rem;font-weight:600;
	line-height:1.4;
	margin:10px 0 0;
}
.service-work-cta{
	flex:1;
	display:flex;align-items:flex-end;justify-content:center;gap:12px;
	width:190px;
}
.service-work-cta a{
	display:block;
	background:var(--accent-lightblue);
	color:#fff;
	border-radius:var(--radius-lg);
	font-size:16px;font-size:1.6rem;
	font-weight:600;
	padding:15px 20px;
	line-height:1.4;
	transition:opacity .2s ease;
}
.service-work-cta a:hover{opacity:.85;}


/* ===== スポット支援 / セミナー（簡易カード） ===== */
.service-simple-grid{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:24px;
	margin-bottom:24px;
}
.service-simple-card{
	background:var(--card-bg);
	border-radius:var(--radius-lg);
	padding:36px;
}
.service-simple-card h2{
	font-size:24px;font-size:2.4rem;
	font-weight:700;
	margin:0 0 16px;
}
.service-simple-card .desc{
	font-size:16px;font-size:1.6rem;
	color:var(--text-basic);
	line-height:1.68;
	margin:0 0 20px;
}
.bullets-simple{margin:0;padding:0;}
.bullets-simple li{
	list-style:none;
	display:flex;align-items:flex-end;justify-content:space-between;gap:12px;
	font-size:16px;font-size:1.6rem;
	font-weight:700;
	padding-left:16px;
	position:relative;
	line-height:1.68;
	margin-bottom:10px;
}
.bullets-simple li:last-child{margin-bottom:0;}
.bullets-simple li::before{
	content:"・";
	position:absolute;left:-2px;top:0;
	color:var(--text-muted);
}
.bullets-simple .etc{
	font-weight:400;
	color:var(--text-muted);
	flex-shrink:0;
}

/* ===== 導入実績 / よくある質問 ナビカード ===== */
.service-nav-grid{
	display:flex;
	grid-template-columns:1fr 1fr;
	gap:2%;
	margin:150px auto 0;
	max-width:1000px;
	width:100%;
}
.service-nav-card{
	max-width:490px;
	width:49%;
}
.service-nav-card img{
	border-radius:var(--radius-lg);
	overflow:hidden;
}

/* ===================================================
	 Responsive: <=1024px -> 縦積み
=================================================== */
@media (max-width:1024px){
	.service-intro{padding:50px 26px 0;}
	.service-intro .display{font-size:clamp(24px,6vw,32px);margin-bottom:24px;}

	.service-info{margin-top:70px;}

	.service-block{padding:30px 24px;}
	.service-block h2{font-size:20px;}

	.service-work-row{flex-direction:column;}
	.service-work-row .work-card{max-width:none;width:100%;}
	.service-work-row .work-card .work-photo{max-width:none;}
	.service-work-cta{width:auto;margin-left:auto;}

	.service-simple-grid{grid-template-columns:1fr;}
	.service-nav-grid{flex-direction:column;gap:20px;}
	.service-nav-card{max-width:none;width:100%;}
	.service-nav-card img{margin:0 auto;}
}

@media (max-width:520px){
	.service-intro{padding:44px 20px 0;}
	.service-block{padding:24px 18px;}
	.service-meta{gap:10px 20px;}
	.service-simple-card{padding:26px 22px;}
}
