/* ===== About セクション テック風 ===== */
#about {
	position: relative;
	margin: 0;
	padding: 80px 4vw 50px;
	background: linear-gradient(135deg, #e8f4fd 0%, #d0ebff 40%, #e1f0fc 100%);
	overflow: hidden;
}
#about::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 20% 50%, rgba(27,159,255,0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(100,200,255,0.08) 0%, transparent 40%);
	pointer-events: none;
}
#about .about-inner {
	position: relative;
	z-index: 1;
}
#about h2 {
	margin: 0 0 25px;
	padding: 0;
	font-size: 28px;
	font-weight: 500;
	line-height: 1.5em;
	letter-spacing: .1em;
	text-align: center;
	color: #1a3a5c;
}
#about .about-desc {
	margin: 0 auto 40px;
	padding: 0;
	max-width: 700px;
	font-size: 16px;
	font-weight: 400;
	line-height: 2em;
	letter-spacing: .05em;
	text-align: center;
	color: #3a5a7a;
}
#about .about-features {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin: 0 auto 40px;
	max-width: 700px;
}
#about .about-feature {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}
#about .about-feature-icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	color: #1B9FFF;
	background: rgba(27,159,255,0.12);
	border: 1px solid rgba(27,159,255,0.25);
	border-radius: 16px;
	transition: all 0.3s ease;
}
#about .about-feature:hover .about-feature-icon {
	background: rgba(27,159,255,0.2);
	border-color: rgba(27,159,255,0.6);
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(27,159,255,0.2);
}
#about .about-feature-label {
	font-size: 13px;
	font-weight: 500;
	color: #4a6a8a;
	letter-spacing: 0.05em;
}
#about .about-diagram {
	display: block;
	width: 50%;
	max-width: 600px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	filter: none;
}

@media screen and (max-width: 768px) {
	#about {
		padding: 50px 4vw 30px;
	}
	#about .about-features {
		gap: 15px;
	}
	#about .about-feature-icon {
		width: 50px;
		height: 50px;
		font-size: 22px;
	}
	#about .about-feature-label {
		font-size: 11px;
	}
	#about .about-desc {
		font-size: 4vw;
		text-align: left;
	}
	#about .about-diagram {
		width: 80%;
	}
}

/* ===== 活用シーン ===== */
#scene {
	margin: 0;
	padding: 50px 4vw;
	background: #f8fbff;
}
#scene h2 {
	display: block;
	width: 100%;
	margin: 0 auto 30px;
	padding: 0;
	font-size: 28px;
	font-weight: 500;
	line-height: 1.5em;
	text-align: center;
}
#scene .scene-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}
#scene .scene-grid li {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 22%;
	padding: 30px 15px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.06);
	text-align: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#scene .scene-grid li:hover {
	transform: translateY(-4px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
#scene .scene-grid li .scene-icon {
	font-size: 40px;
	margin-bottom: 12px;
}
#scene .scene-grid li:nth-child(1) .scene-icon {
	color: #FF9800;
}
#scene .scene-grid li:nth-child(2) .scene-icon {
	color: #2196F3;
}
#scene .scene-grid li:nth-child(3) .scene-icon {
	color: #4CAF50;
}
#scene .scene-grid li:nth-child(4) .scene-icon {
	color: #9C27B0;
}
#scene .scene-grid li h3 {
	margin: 0 0 8px;
	padding: 0;
	font-size: 16px;
	font-weight: 600;
	color: #333;
	line-height: 1.4em;
}
#scene .scene-grid li p {
	margin: 0;
	padding: 0;
	font-size: 13px;
	color: #666;
	line-height: 1.6em;
}

/* ===== プラン カード化 ===== */
#plan .plan-cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	width: 100%;
	max-width: 960px;
	margin: 20px auto 0;
	padding: 0;
	list-style: none;
}
#plan .plan-cards li {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 17%;
	padding: 30px 10px 25px;
	background: #fff;
	border: 2px solid #e0e0e0;
	border-radius: 12px;
	text-align: center;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
#plan .plan-cards li:hover {
	border-color: #1B9FFF;
	box-shadow: 0 4px 16px rgba(27,159,255,0.15);
}
#plan .plan-cards li .plan-icon {
	font-size: 28px;
	margin-bottom: 10px;
}
#plan .plan-cards li .plan-days {
	font-size: 28px;
	font-weight: 700;
	color: #1B9FFF;
	line-height: 1em;
	margin-bottom: 4px;
}
#plan .plan-cards li .plan-unit {
	font-size: 14px;
	color: #666;
}
#plan .plan-cards li.popular {
	border-color: #1B9FFF;
	background: linear-gradient(180deg, #f0f8ff 0%, #fff 100%);
	box-shadow: 0 4px 16px rgba(27,159,255,0.15);
}
#plan .plan-cards li.popular::before {
	content: "人気";
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	padding: 3px 14px;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	background: #FF6B35;
	border-radius: 20px;
	letter-spacing: 0.1em;
}

/* ===== 料金 改善 ===== */
#fee .fee-lead {
	display: block;
	max-width: 600px;
	margin: 0 auto 25px;
	padding: 0;
	font-size: 15px;
	color: #555;
	text-align: center;
	line-height: 1.8em;
}
/* ===== 機能画像背景 ===== */
#function ul.list li img {
	background: #ffffff;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}

/* ===== プラン適用シーン ===== */
#plan .plan-cards li .plan-use {
	margin-top: 8px;
	font-size: 11px;
	color: #888;
	line-height: 1.4em;
	letter-spacing: 0.02em;
}
#plan .plan-cards li.popular .plan-use {
	color: #1B9FFF;
}

/* ===== 注意事項ボックス ===== */
#fee .notice-box {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	max-width: 600px;
	margin: 25px auto 0;
	padding: 18px 24px;
	background: #f0f6fc;
	border: 1px solid #d4e5f7;
	border-radius: 10px;
}
#fee .notice-box-icon {
	font-size: 18px;
	color: #1B9FFF;
	margin-top: 2px;
	flex-shrink: 0;
}
#fee .notice-box ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: block;
	width: 100%;
}
#fee .notice-box li {
	display: block;
	margin: 0;
	padding: 3px 0;
	font-size: 12px;
	color: #5a7a9a;
	line-height: 1.6em;
	letter-spacing: 0.03em;
	width: 100%;
	background: none;
	text-align: left;
}

/* ===== CTA引導文 ===== */
.bt_cv-lead {
	margin: 0 0 20px;
	padding: 0;
	font-size: 16px;
	font-weight: 400;
	color: #555;
	text-align: center;
	line-height: 1.8em;
	letter-spacing: 0.05em;
}

/* ===== レスポンシブ ===== */
@media screen and (max-width: 768px) {
	#scene .scene-grid li {
		width: 44%;
		padding: 20px 10px;
	}
	#scene .scene-grid li .scene-icon {
		font-size: 32px;
	}
	#scene .scene-grid li h3 {
		font-size: 14px;
	}
	#plan .plan-cards li {
		width: 28%;
		padding: 20px 8px;
	}
	#plan .plan-cards li .plan-days {
		font-size: 22px;
	}
	#fee .fee-cta {
		width: 80%;
		font-size: 4vw;
	}
}

/* GPS Cloud List Fix */
#function ul.list,
#products ul.list {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	max-width: 900px;
}

#function ul.list li,
#products ul.list li {
	list-style: none;
	margin-bottom: 40px;
}

#products ul.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

#products ul.list li {
	width: 220px;
	padding: 20px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	text-align: center;
}

#products ul.list li h3 {
	color: #fff;
	background: #1B9FFF;
	padding: 10px;
	margin: -20px -20px 15px;
	border-radius: 8px 8px 0 0;
	font-size: 14px;
}

#products ul.list li h4 {
	color: #1B9FFF;
	font-size: 18px;
	margin-bottom: 10px;
}

#products ul.list li p {
	font-size: 13px;
	color: #666;
	line-height: 1.6;
	min-height: 80px;
}

#products ul.list li img {
	max-width: 150px;
	height: auto;
	margin: 15px auto;
}

#products ul.list li .bt {
	display: inline-block;
	padding: 8px 15px;
	background: #1B9FFF;
	color: #fff;
	border-radius: 5px;
	text-decoration: none;
	font-size: 13px;
}
