/* CRM サービスのスタイル */

.service-page {
	font-family: 'Noto Sans JP', sans-serif;
	color: #333;
}

/* ヒーローセクション */
.service-hero {
	background: linear-gradient(135deg, #3498db, #2980b9);
	color: #fff;
	padding: 100px 0 80px;
	text-align: center;
	margin-bottom: 60px;
}

.service-hero h1 {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 30px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service-type-badge {
	display: inline-block;
	background-color: rgba(255, 255, 255, 0.2);
	padding: 5px 15px;
	border-radius: 20px;
	margin-bottom: 20px;
	font-weight: 500;
}

.service-description {
	max-width: 800px;
	margin: 0 auto;
	font-size: 18px;
	line-height: 1.8;
}

/* サービスの特徴セクション */
.service-features {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.feature-icon {
	color: #3498db;
}

/* プロセスセクション */
.process-step .step-number {
	background-color: #3498db;
}

/* メリットセクション */
.benefit-item h3 {
	border-left-color: #3498db;
}

/* お問い合わせセクション */
.service-contact {
	background-color: #2980b9;
}

.contact-button .btn {
	background-color: #3498db;
}

.contact-button .btn:hover {
	background-color: #2980b9;
}

/* キマルーム CRM サービスのスタイル */

/* 共通スタイル */
.service-crm-page {
	font-family: 'Noto Sans JP', sans-serif;
	color: #333;
	overflow-x: hidden;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

h2 {
	font-size: 32px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 40px;
}

/* メインビジュアル */
.service-crm-mainvisual {
	background-color: #f7f7f7;
	position: relative;
	min-height: 350px;
	display: flex;
	align-items: center;
	padding: 60px 0;
}

.mainvisual-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.mainvisual-text {
	flex: 1;
	min-width: 300px;
	padding-right: 20px;
}

.service-logo {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.service-logo img,
.service-logo-img {
	height: 60px;
	width: auto;
	margin-right: 10px;
}

/* ズーム150%対応 */
html.zoomed-150 .service-logo .service-logo-img,
html.zoomed-150 .service-crm-page .service-logo img,
html.zoomed-150 .service-crm-mainvisual .service-logo img {
	height: 60px !important;
	width: auto !important;
}

/* 高ズーム対応 */
html.zoomed-high .service-logo .service-logo-img,
html.zoomed-high .service-crm-page .service-logo img,
html.zoomed-high .service-crm-mainvisual .service-logo img {
	height: 60px !important;
	width: auto !important;
}

.service-logo span {
	font-size: 14px;
	color: #666;
	white-space: nowrap;
}

.mainvisual-text h1 {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 20px;
}

.mainvisual-text p {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 30px;
}

.mainvisual-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.btn-contact-mainvisual,
.btn-request-mainvisual {
	display: inline-flex;
	align-items: center;
	padding: 10px 20px;
	border-radius: 5px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-contact-mainvisual {
	background-color: #3498db;
	color: #fff;
}

.btn-request-mainvisual {
	background-color: #fff;
	color: #3498db;
	border: 1px solid #3498db;
}

.btn-contact-mainvisual:hover,
.btn-request-mainvisual:hover {
	opacity: 0.9;
}

.btn-contact-mainvisual svg,
.btn-request-mainvisual svg {
	margin-left: 8px;
}

.btn-request-mainvisual svg circle {
	fill: #3498db;
}

.mainvisual-image {
	flex: 1;
	max-width: 500px;
	text-align: center;
}

.mainvisual-image img {
	max-width: 100%;
	height: auto;
}

/* クライアント一覧セクション */
.client-section {
	padding: 60px 0;
	background-color: #fff;
}

.client-container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 15px;
}

.client-container h2 {
	margin-bottom: 50px;
}

.client-img {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 30px;
}

.client-img img {
	max-height: 60px;
	width: auto;
}

.client-img img:hover {
	filter: grayscale(0);
	opacity: 1;
}

/* 問題解決セクション */
.service-crm-problem {
	padding: 80px 0;
	background-color: #fff;
}

.problem-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	margin-top: 40px;
}

.problem-item {
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
	flex: 1;
	min-width: 280px;
	max-width: 350px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.problem-title {
	background-color: #3498db;
	color: #fff;
	padding: 15px;
	font-weight: 700;
	font-size: 18px;
	text-align: center;
}

.problem-content {
	padding: 20px;
}

.problem-image {
	text-align: center;
	margin-bottom: 15px;
}

.problem-image img {
	max-width: 150px;
	height: auto;
}

.problem-desc {
	font-size: 15px;
	line-height: 1.5;
	color: #666;
}

/* 機能紹介セクション */
.service-crm-features {
	padding: 80px 0;
	background-color: #fff;
}

.features-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-top: 40px;
}

.feature-item {
	flex: 1;
	min-width: 210px;
	max-width: calc(33.33% - 20px); /* CRMは3カラムレイアウト */
	background-color: #3498db; /* CRMカラー */
	color: #fff;
	border-radius: 10px;
	padding: 25px;
	box-shadow: 0 5px 20px rgba(52, 152, 219, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	margin-bottom: 20px;
}

.feature-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.feature-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 10px 25px rgba(41, 128, 185, 0.3);
}

.feature-title {
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 15px;
	text-align: center;
	position: relative;
}

.feature-comment {
	font-size: 14px;
	line-height: 1.5;
	color: #666;
	margin-bottom: 15px;
	min-height: 60px;
}

.feature-image {
	text-align: center;
	margin-bottom: 15px;
}

.feature-image img {
	max-width: 100%;
	height: auto;
	border-radius: 5px;
}

.feature-detail-btn {
	display: inline-flex;
	align-items: center;
	color: #3498db;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
}

.feature-detail-btn svg {
	margin-left: 5px;
	width: 12px;
	height: 12px;
}

/* 機能詳細セクション */
.feature-details {
	margin-top: 50px;
}

.feature-detail {
	background-color: #fff;
	border-radius: 10px;
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	display: flex;
	align-items: flex-start;
}

.feature-number {
	width: 50px;
	height: 50px;
	background-color: #3498db;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 700;
	margin-right: 20px;
	flex-shrink: 0;
}

.feature-content {
	flex: 1;
}

.feature-detail-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #333;
}

.feature-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 20px;
}

.feature-text {
	flex: 1;
	min-width: 300px;
}

.feature-text .bold {
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 15px;
	color: #3498db;
}

.feature-text span {
	font-size: 15px;
	line-height: 1.7;
	color: #555;
}

.feature-text .note {
	font-size: 12px;
	color: #888;
	margin-top: 15px;
}

.feature-detail-img {
	max-width: 400px;
	width: 100%;
	height: auto;
	border-radius: 5px;
}

.back-to-top {
	display: inline-flex;
	align-items: center;
	color: #666;
	font-size: 14px;
	text-decoration: none;
	margin-top: 15px;
}

.back-to-top::before {
	content: '←';
	margin-right: 5px;
}

/* 便利機能カードレイアウト */
.service-crm-functions {
	padding: 80px 0;
	background-color: #f7f7f7;
}

.functions-card-wrap {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.functions-card {
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

.functions-card:hover {
	transform: translateY(-5px);
}

.functions-card-image {
	height: 180px;
	overflow: hidden;
}

.functions-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.functions-card:hover .functions-card-image img {
	transform: scale(1.05);
}

.functions-card-content {
	padding: 20px;
}

.functions-card-content h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #3498db;
}

.functions-card-content p {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
}

/* キマルームシリーズとの連動セクション */
.service-crm-linkage {
	padding: 80px 0;
	background-color: #fff;
}

.linkage-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	margin-top: 40px;
}

.linkage-item {
	background-color: #f7f7f7;
	border-radius: 10px;
	padding: 30px;
	flex: 1;
	min-width: 280px;
	max-width: 350px;
	/* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
	display: flex;
	flex-direction: column;
}

.linkage-image {
	text-align: center;
	margin-bottom: 20px;
}

.linkage-image img {
	max-width: 150px;
	height: auto;
}

.linkage-title-wrapper {
	margin-bottom: 15px;
}

.linkage-title {
	font-size: 18px;
	font-weight: 700;
	color: #3498db;
	line-height: 1.4;
}

.linkage-comment-wrapper {
	margin-bottom: 20px;
	flex-grow: 1;
}

.linkage-comment {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
}

.linkage-btn {
	display: inline-block;
	padding: 10px 20px;
	background-color: #3498db;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 500;
	text-align: center;
	transition: background-color 0.3s ease;
}

.linkage-btn:hover {
	background-color: #2980b9;
}

/* 導入事例セクション */
.service-crm-casestudy {
	padding: 80px 0;
	background-color: #f7f7f7;
}

.casestudy-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	margin-top: 40px;
}

.casestudy-item {
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
	flex: 1;
	min-width: 300px;
	max-width: 380px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.casestudy-image {
	height: 200px;
	overflow: hidden;
}

.casestudy-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.casestudy-item:hover .casestudy-image img {
	transform: scale(1.05);
}

.casestudy-content {
	padding: 20px;
}

.company-logo {
	text-align: center;
	margin-bottom: 15px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.company-logo img {
	max-height: 100%;
	max-width: 100%;
}

.company-logo h3 {
	font-size: 20px;
	font-weight: 700;
	color: #3498db;
}

.casestudy-comment {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
	margin-bottom: 15px;
	min-height: 90px;
}

.casestudy-comment div {
	margin-bottom: 5px;
}

.casestudy-company {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.company-name {
	font-weight: 700;
	color: #333;
}

.manager-name {
	font-size: 14px;
	color: #888;
}

.casestudy-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-bottom: 15px;
}

.tag {
	display: inline-block;
	background-color: #e0f2fe;
	color: #3498db;
	padding: 3px 10px;
	border-radius: 3px;
	font-size: 12px;
}

.casestudy-btn {
	display: block;
	padding: 10px 0;
	background-color: #3498db;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 500;
	text-align: center;
	transition: background-color 0.3s ease;
}

.casestudy-btn:hover {
	background-color: #2980b9;
}

.no-cases {
	text-align: center;
	color: #888;
	font-size: 16px;
	padding: 30px 0;
}

/* レスポンシブ対応 */
@media (max-width: 991px) {
	.feature-item {
		max-width: 100%;
	}

	.mainvisual-text,
	.mainvisual-image {
		flex: 100%;
		max-width: 100%;
		padding-right: 0;
	}

	.mainvisual-text {
		margin-bottom: 30px;
	}

	.mainvisual-text h1 {
		font-size: 32px;
	}

	h2 {
		font-size: 28px;
	}

	.feature-detail-title {
		font-size: 22px;
	}

	.feature-wrapper {
		flex-direction: column;
	}

	.linkage-item {
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	.service-crm-mainvisual {
		padding: 40px 0;
	}

	.mainvisual-text h1 {
		font-size: 28px;
	}

	.mainvisual-buttons {
		flex-direction: column;
	}

	.btn-contact-mainvisual,
	.btn-request-mainvisual {
		width: 100%;
		justify-content: center;
	}

	h2 {
		font-size: 24px;
	}

	.feature-detail {
		flex-direction: column;
	}

	.feature-number {
		margin-bottom: 15px;
	}
}

@media (max-width: 480px) {
	.problem-item,
	.casestudy-item {
		min-width: 100%;
	}

	.client-img img {
		max-height: 40px;
	}
}

/* サービスの特徴セクション */
.service-features {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.feature-icon {
	color: #3498db;
}

/* プロセスセクション */
.process-step .step-number {
	background-color: #3498db;
}

/* メリットセクション */
.benefit-item h3 {
	border-left-color: #3498db;
}

/* お問い合わせセクション */
.service-contact {
	background-color: #2980b9;
}

.contact-button .btn {
	background-color: #3498db;
}

.contact-button .btn:hover {
	background-color: #2980b9;
}

/* キマルーム CRM サービスのスタイル */

/* 共通スタイル */
.service-crm-page {
	font-family: 'Noto Sans JP', sans-serif;
	color: #333;
	overflow-x: hidden;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

h2 {
	font-size: 32px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 40px;
}

/* メインビジュアル */
.service-crm-mainvisual {
	background-color: #f7f7f7;
	position: relative;
	min-height: 350px;
	display: flex;
	align-items: center;
	padding: 60px 0;
}

.mainvisual-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.mainvisual-text {
	flex: 1;
	min-width: 300px;
	padding-right: 20px;
}

.service-logo {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.service-logo img {
	max-height: 100px;
	margin-right: 10px;
}

.service-logo span {
	font-size: 14px;
	color: #666;
	white-space: nowrap;
}

.mainvisual-text h1 {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 20px;
}

.mainvisual-text p {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 30px;
}

.mainvisual-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.btn-contact-mainvisual,
.btn-request-mainvisual {
	display: inline-flex;
	align-items: center;
	padding: 10px 20px;
	border-radius: 5px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-contact-mainvisual {
	/* background-color: #3498db; */
	background-color: #5cb531;
	color: #fff;
}

.btn-request-mainvisual {
	background-color: #fff;
	color: #3498db;
	border: 1px solid #3498db;
}

.btn-contact-mainvisual:hover,
.btn-request-mainvisual:hover {
	opacity: 0.9;
}

.btn-contact-mainvisual svg,
.btn-request-mainvisual svg {
	margin-left: 8px;
}

.btn-request-mainvisual svg circle {
	fill: #3498db;
}

.mainvisual-image {
	flex: 1;
	max-width: 500px;
	text-align: center;
}

.mainvisual-image img {
	max-width: 100%;
	height: auto;
}

/* クライアント一覧セクション */
.client-section {
	padding: 60px 0;
	background-color: #fff;
}

.client-container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 15px;
}

.client-container h2 {
	margin-bottom: 50px;
}

.client-img {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 30px;
}

.client-img img {
	max-height: 60px;
	width: auto;
}

.client-img img:hover {
	/* filter: grayscale(0); */
	opacity: 1;
}

.problem-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	margin-top: 40px;
}

.problem-item {
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
	flex: 1;
	min-width: 280px;
	max-width: 350px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.problem-title {
	background-color: #3498db;
	color: #fff;
	padding: 15px;
	font-weight: 700;
	font-size: 18px;
	text-align: center;
}

.problem-content {
	padding: 20px;
}

.problem-image {
	text-align: center;
	margin-bottom: 15px;
}

.problem-image img {
	max-width: 150px;
	height: auto;
}

.problem-desc {
	font-size: 15px;
	line-height: 1.5;
	color: #666;
}

/* 機能紹介セクション */
.service-crm-features {
	padding: 80px 0;
	background-color: #fff;
}

.features-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-top: 40px;
}

.feature-item {
	flex: 1;
	min-width: 280px;
	max-width: calc(33.33% - 20px); /* CRMは3カラムレイアウト */
	background-color: #3498db; /* CRMカラー */
	color: #fff;
	border-radius: 10px;
	padding: 25px;
	box-shadow: 0 5px 20px rgba(52, 152, 219, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	margin-bottom: 20px;
}

.feature-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.feature-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 10px 25px rgba(41, 128, 185, 0.3);
}

.feature-title {
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 15px;
	text-align: center;
	position: relative;
}

.feature-title::after {
	content: '';
	position: absolute;
	bottom: -7px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 2px;
	background-color: rgba(255, 255, 255, 0.4);
}

.feature-comment {
	font-size: 15px;
	line-height: 1.5;
	color: #f7f7f7;
	margin-bottom: 15px;
	min-height: 60px;
}

.feature-image {
	text-align: center;
	margin-bottom: 15px;
}

.feature-image img {
	max-width: 100%;
	height: auto;
	border-radius: 5px;
}

.feature-detail-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background-color: rgba(255, 255, 255, 0.2);
	color: #fff;
	padding: 12px;
	border-radius: 30px;
	cursor: pointer;
	margin-top: auto;
	font-weight: 500;
	text-decoration: none;
	transition: background-color 0.3s ease, transform 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-detail-btn:hover {
	background-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-3px);
}

.feature-detail-btn svg {
	transition: transform 0.3s ease;
}

.feature-detail-btn:hover svg {
	transform: translateY(3px);
}

/* 機能詳細セクション */
.feature-details {
	margin-top: 50px;
}

.feature-detail {
	background-color: #fff;
	border-radius: 10px;
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	display: flex;
	align-items: flex-start;
}

.feature-number {
	width: 50px;
	height: 50px;
	background-color: #3498db;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 700;
	margin-right: 20px;
	flex-shrink: 0;
}

.feature-content {
	flex: 1;
}

.feature-detail-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #333;
}

.feature-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 20px;
}

.feature-text {
	flex: 1;
	min-width: 300px;
}

.feature-text .bold {
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 15px;
	color: #3498db;
}

.feature-text span {
	font-size: 15px;
	line-height: 1.7;
	color: #555;
}

.feature-text .note {
	font-size: 12px;
	color: #888;
	margin-top: 15px;
}

.feature-detail-img {
	max-width: 400px;
	width: 100%;
	height: auto;
	border-radius: 5px;
}

.back-to-top {
	display: inline-block;
	background-color: #f2f2f2;
	color: #333;
	padding: 10px 20px;
	border-radius: 30px;
	text-decoration: none;
	margin-top: 30px;
	font-weight: 500;
	transition: background-color 0.3s ease, transform 0.3s ease;
	display: flex;
	align-items: center;
	width: fit-content;
}

.back-to-top::before {
	content: '↑';
	margin-right: 8px;
	font-size: 14px;
}

/* 便利機能カードレイアウト */
.service-crm-functions {
	padding: 80px 0;
	background-color: #f7f7f7;
}

.functions-card-wrap {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.functions-card {
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

.functions-card:hover {
	transform: translateY(-5px);
}

.functions-card-image {
	height: 180px;
	overflow: hidden;
}

.functions-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.functions-card:hover .functions-card-image img {
	transform: scale(1.05);
}

.functions-card-content {
	padding: 20px;
}

.functions-card-content h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #3498db;
}

.functions-card-content p {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
}

/* キマルームシリーズとの連動セクション */
.service-crm-linkage {
	padding: 80px 0;
	background-color: #fff;
}

.linkage-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 40px;
}

.linkage-item {
	background-color: #f7f7f7;
	border-radius: 10px;
	padding: 30px;
	flex: 1;
	min-width: 280px;
	max-width: 350px;
	/* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
	display: flex;
	flex-direction: column;
}

.linkage-image {
	text-align: center;
	margin-bottom: 20px;
}

.linkage-image img {
	max-width: 150px;
	height: auto;
}

.linkage-title-wrapper {
	margin-bottom: 15px;
}

.linkage-title {
	font-size: 18px;
	font-weight: 700;
	color: #3498db;
	line-height: 1.4;
}

.linkage-comment-wrapper {
	margin-bottom: 20px;
	flex-grow: 1;
}

.linkage-comment {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
}

.linkage-btn {
	display: inline-block;
	padding: 10px 20px;
	background-color: #3498db;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 500;
	text-align: center;
	transition: background-color 0.3s ease;
}

.linkage-btn:hover {
	background-color: #2980b9;
}

/* 導入事例セクション */
.service-crm-casestudy {
	padding: 80px 0;
	background-color: #f7f7f7;
}

.casestudy-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	margin-top: 40px;
}

.casestudy-item {
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
	flex: 1;
	min-width: 300px;
	max-width: 380px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.casestudy-image {
	height: 200px;
	overflow: hidden;
}

.casestudy-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.casestudy-item:hover .casestudy-image img {
	transform: scale(1.05);
}

.casestudy-content {
	padding: 20px;
}

.company-logo {
	text-align: center;
	margin-bottom: 15px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.company-logo img {
	max-height: 100%;
	max-width: 100%;
}

.company-logo h3 {
	font-size: 20px;
	font-weight: 700;
	color: #3498db;
}

.casestudy-comment {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
	margin-bottom: 15px;
	min-height: 90px;
}

.casestudy-comment div {
	margin-bottom: 5px;
}

.casestudy-company {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.company-name {
	font-weight: 700;
	color: #333;
}

.manager-name {
	font-size: 14px;
	color: #888;
}

.casestudy-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-bottom: 15px;
}

.tag {
	display: inline-block;
	background-color: #e0f2fe;
	color: #3498db;
	padding: 3px 10px;
	border-radius: 3px;
	font-size: 12px;
}

.casestudy-btn {
	display: block;
	padding: 10px 0;
	background-color: #3498db;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 500;
	text-align: center;
	transition: background-color 0.3s ease;
}

.casestudy-btn:hover {
	background-color: #2980b9;
}

.no-cases {
	text-align: center;
	color: #888;
	font-size: 16px;
	padding: 30px 0;
}

/* レスポンシブ対応 */
@media (max-width: 991px) {
	.feature-item {
		max-width: 100%;
	}

	.mainvisual-text,
	.mainvisual-image {
		flex: 100%;
		max-width: 100%;
		padding-right: 0;
	}

	.mainvisual-text {
		margin-bottom: 30px;
	}

	.mainvisual-text h1 {
		font-size: 32px;
	}

	h2 {
		font-size: 28px;
	}

	.feature-detail-title {
		font-size: 22px;
	}

	.feature-wrapper {
		flex-direction: column;
	}

	.linkage-item {
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	.service-crm-mainvisual {
		padding: 40px 0;
	}

	.mainvisual-text h1 {
		font-size: 28px;
	}

	.mainvisual-buttons {
		flex-direction: column;
	}

	.btn-contact-mainvisual,
	.btn-request-mainvisual {
		width: 100%;
		justify-content: center;
	}

	h2 {
		font-size: 24px;
	}

	.feature-detail {
		flex-direction: column;
	}

	.feature-number {
		margin-bottom: 15px;
	}
}

@media (max-width: 480px) {
	.problem-item,
	.casestudy-item {
		min-width: 100%;
	}

	.client-img img {
		max-height: 40px;
	}
}
