/* ===============================
   Service List Page - Redesign v2
   适配现有HTML结构
   =============================== */

/* ページタイトル */
.page_title {
	position: relative;
	padding: 80px 50px 60px;
	background: linear-gradient(135deg, rgba(10,92,158,0.92) 0%, rgba(27,159,255,0.85) 100%), url("/2024/assets/img/service/title.jpg") center center;
	background-blend-mode: overlay;
	background-size: cover;
	text-align: center;
}

.page_title .title-en {
	display: block;
	margin: 0 0 12px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.2em;
	color: rgba(255,255,255,0.6);
	text-transform: uppercase;
}

.page_title h1 {
	display: block;
	margin: 0 0 20px;
	font-size: 36px;
	font-weight: 600;
	letter-spacing: .12em;
	line-height: 1em;
	color: #fff;
}

.page_lead {
	display: block;
	margin: 0 auto;
	max-width: 700px;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.06em;
	line-height: 2em;
	color: rgba(255,255,255,0.9);
}

/* カテゴリナビ */
.service-nav {
	background: #0a5c9e;
	padding: 0;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.service-nav ul {
	display: flex;
	justify-content: center;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}
.service-nav li {
	flex: 1;
}
.service-nav a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 18px 15px;
	color: rgba(255,255,255,0.85);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-decoration: none;
	border-bottom: 3px solid transparent;
	transition: all 0.2s ease;
}
.service-nav a:hover {
	color: #fff;
	background: rgba(255,255,255,0.08);
	border-bottom-color: #fff;
}

/* サービス一覧 */
.service_list {
	padding: 70px 4vw 50px;
	background: #f6f8fa;
}
#cloud {
	background: #fff;
}
#camera {
	background: #f6f8fa;
}

.service_list h2 {
	display: block;
	margin: 0 auto 40px;
	font-size: 26px;
	font-weight: 600;
	color: #1a3a5c;
	letter-spacing: 0.08em;
	text-align: center;
	padding-bottom: 15px;
	border-bottom: none;
	position: relative;
	width: fit-content;
}

/* カードグリッド - 适配现有HTML */
.service_list ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.service_list li {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.06);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service_list li:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(27,159,255,0.12);
}

/* 图片在顶部 */
.service_list li img {
	display: block;
	width: 100%;
	height: 160px;
	object-fit: cover;
	order: -1;
}

/* 标题 */
.service_list li h3 {
	text-align: center;
	
	padding: 20px 20px 12px;
	font-size: 17px;
	font-weight: 600;
	color: #1a3a5c;
	letter-spacing: 0.03em;
	line-height: 1.4em;
	border-top: 3px solid #1B9FFF;
}

/* 描述 */
.service_list li p {
	flex: 1;
	border-radius: 25px;
	padding: 0 20px 15px;
	font-size: 13px;
	font-weight: 400;
	color: #6a8aaa;
	line-height: 1.8em;
}
.service_list li p br {
	display: none;
}

/* 链接按钮 */
.service_list li .bt {
	width: 160px;
	margin: 0 auto 15px;
	display: block;
	border-radius: 25px;
	padding: 14px 20px;
	font-size: 14px;
	font-weight: 500;
	color: #1B9FFF;
	text-align: center;
	background: #f0f7ff;
	border: none;
	text-decoration: none;
	transition: all 0.2s ease;
}
.service_list li .bt:hover {
	color: #fff;
	background: #1B9FFF;
}

/* CTA */
.cta-section {
	padding: 70px 4vw;
	background: #f0f2f5;
	text-align: center;
}
.cta-section h2 {
	margin: 0 0 15px;
	font-size: 26px;
	font-weight: 600;
	color: #1a3a5c;
}
.cta-section p {
	margin: 0 auto 30px;
	max-width: 550px;
	font-size: 15px;
	color: #6a8aaa;
	line-height: 1.8em;
}
.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
}
.cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 18px 40px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 30px;
	text-decoration: none;
	transition: all 0.3s ease;
}
.cta-btn.primary {
	color: #fff;
	background: linear-gradient(135deg, #1B9FFF 0%, #0e7ed4 100%);
	box-shadow: 0 4px 15px rgba(27,159,255,0.3);
}
.cta-btn.primary:hover {
	transform: translateY(-2px);
}
.cta-btn.secondary {
	color: #1a3a5c;
	background: #fff;
	border: 2px solid #d0dbe6;
}
.cta-btn.secondary:hover {
	color: #1B9FFF;
	border-color: #1B9FFF;
}

/* スマホ */
@media screen and (max-width: 600px) {
.page_title {
	padding: 50px 4vw 40px;
}
.page_title .title-en {
	font-size: 11px;
}
.page_title h1 {
	font-size: 7vw;
}
.page_lead {
	font-size: 3.5vw;
	line-height: 1.8em;
}

.service-nav ul {
	flex-direction: column;
}
.service-nav a {
	padding: 14px 15px;
	font-size: 3.5vw;
	border-left: 3px solid transparent;
	border-bottom: none;
}

.service_list {
	padding: 50px 4vw 40px;
}
.service_list h2 {
	font-size: 5.5vw;
	margin-bottom: 30px;
}
.service_list ul {
	grid-template-columns: 1fr;
	gap: 20px;
}
.service_list li img {
	height: 45vw;
}
.service_list li h3 {
	text-align: center;
	font-size: 4.2vw;
	padding: 15px 15px 10px;
}
.service_list li p {
	font-size: 3.5vw;
	padding: 0 15px 12px;
}
.service_list li .bt {
	width: 160px;
	margin: 0 auto 15px;
	font-size: 3.8vw;
	padding: 12px 15px;
}

.cta-section {
	padding: 50px 4vw;
}
.cta-section h2 {
	font-size: 5vw;
}
.cta-buttons {
	flex-direction: column;
	align-items: center;
}
.cta-btn {
	width: 80%;
	justify-content: center;
	font-size: 4vw;
}
}

/* タブレット */
@media screen and (max-width: 900px) and (min-width: 601px) {
.service_list ul {
	grid-template-columns: repeat(2, 1fr);
}
}

/* Section Labels */
.service_list .section-label {
	display: block;
	margin: 0 auto 10px;
	font-size: 13px;
	font-weight: 600;
	color: #1B9FFF;
	letter-spacing: 0.2em;
	text-align: center;
	text-transform: uppercase;
}

/* Section Descriptions */
.section-desc {
	display: block;
	max-width: 600px;
	margin: 0 auto 40px;
	font-size: 15px;
	color: #6a8aaa;
	line-height: 1.9em;
	text-align: center;
	letter-spacing: 0.03em;
}
@media screen and (max-width: 600px) {
	.section-desc {
		font-size: 3.5vw;
		margin-bottom: 30px;
	}
}

/* Badges */
.service_list li {
	position: relative;
}
.badge {
	position: absolute;
	top: 12px;
	right: 12px;
	padding: 5px 12px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.05em;
	border-radius: 4px;
	z-index: 10;
}
.badge.hot {
	color: #fff;
	background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
	box-shadow: 0 2px 8px rgba(239,68,68,0.3);
}
.badge.recommend {
	color: #fff;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	box-shadow: 0 2px 8px rgba(16,185,129,0.3);
}

/* 手机端补充样式 */
@media screen and (max-width: 600px) {
.section-label {
	font-size: 10px;
	margin-bottom: 8px;
}
.badge {
	top: 8px;
	right: 8px;
	padding: 4px 10px;
	font-size: 10px;
}
.cta-section p {
	font-size: 3.5vw;
}
}

/* 行业标签 */
.industry-tags {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 auto 20px;
}
.industry-tags span {
	display: inline-block;
	padding: 6px 16px;
	font-size: 13px;
	font-weight: 500;
	color: #1B9FFF;
	background: #e8f4ff;
	border: 1px solid #c8e4ff;
	border-radius: 20px;
	letter-spacing: 0.03em;
}

/* 实绩数字 */
.highlight-stats {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin: 0 auto 35px;
}
.highlight-stats span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #1a3a5c;
}
.highlight-stats i {
	color: #10b981;
	font-size: 16px;
}

/* 手机端 */
@media screen and (max-width: 600px) {
.industry-tags {
	gap: 8px;
	margin-bottom: 15px;
}
.industry-tags span {
	padding: 5px 12px;
	font-size: 11px;
}
.highlight-stats {
	flex-direction: column;
	gap: 10px;
	margin-bottom: 25px;
}
.highlight-stats span {
	font-size: 12px;
	justify-content: center;
}
}

/* 滚动高亮 */
.service-nav a.active {
    color: #fff;
    background: rgba(255,255,255,0.15);
    border-bottom-color: #fff;
}

/* 卡片标题图标 */
.service_list li h3 i {
    color: #1B9FFF;
    margin-right: 6px;
    font-size: 0.9em;
}

.service_list h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #1B9FFF 0%, #10b981 100%);
    border-radius: 2px;
}

/* Hero微妙光晕 */
.page_title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}
.page_title > * {
    position: relative;
    z-index: 2;
}
