/* セールスイネーブルメントページのスタイル */

/* メインビジュアルセクション */
#mainvisual {
	margin-bottom: 0;
}

/* #mainvisual .heading .title .ff_outfit {
	font-size: 46px;
	line-height: 1.2;
}

#mainvisual .heading .title .ja {
	font-size: 16px;
	margin-top: 8px;
}

@media screen and (max-width: 768px) {
	#mainvisual .heading .title .ff_outfit {
		font-size: 32px;
		line-height: 1.3;
	}

	#mainvisual .heading .title .ja {
		font-size: 14px;
		margin-top: 6px;
	}

	#mainvisual .image {
		margin-top: 20px;
	}
} */

/* スタイルセクション */
section.sales-enablement {
	position: relative;
	/* padding: 80px 0; */
	color: #333;
}

section.sales-enablement .inner1200 {
	padding: 0 20px;
	max-width: 1200px;
	margin: 0 auto;
}

section.sales-enablement .heading {
	margin-bottom: 50px;
}

section.sales-enablement .heading .title .en {
	margin-bottom: 15px;
	color: #0c2657;
}

section.sales-enablement .heading .title .ja h2 {
	color: #0c2657;
}

section.sales-enablement .description {
	margin-bottom: 40px;
	font-size: 18px;
}

/* フローチャート */
section.sales-enablement .flow-chart {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

section.sales-enablement .flow-item {
	margin-bottom: 10px;
	position: relative;
}

section.sales-enablement .flow-content {
	background: linear-gradient(136deg, rgb(61 161 220 / 80%) 0%, #06296a 100%);
	padding: 25px;
	border-radius: 8px;
	color: #fff;
}

section.sales-enablement .flow-content h3 {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.6;
	color: #fff;
	margin: 0;
	padding: 10px;
}

section.sales-enablement .flow-arrow {
	position: relative;
	height: 30px;
	margin: 15px auto;
}

section.sales-enablement .flow-arrow:after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 0;
	height: 0;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	border-top: 15px solid #0c2657;
}

/* チームメンバーセクション */
section.sales-enablement .team-members-section {
	/* margin-top: 80px; */
	padding: 0 20px;
	/* background-color: #0c2657; */
	border-radius: 15px;
	/* padding: 60px 20px; */
}

section.sales-enablement .se-professional-team-heading {
	margin-bottom: 50px;
}

section.sales-enablement .se-team-members {
	position: relative;
	margin: 50px auto;
	width: 100%;
	max-width: 1200px;
	z-index: 2;
	padding: 0;
}

section.sales-enablement .se-team-members-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	padding: 0;
	/* max-width: 1000px; */
	margin: 0 auto;
}

section.sales-enablement .se-member-card {
	flex: 0 0 auto;
	width: 100%;
	background-color: #fff;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: row;
	margin-bottom: 0;
}

/* section.sales-enablement .se-member-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
} */

section.sales-enablement .se-member-photo {
	position: relative;
	width: 320px;
	flex-shrink: 0;
	height: auto;
	overflow: hidden;
}

/* section.sales-enablement .se-member-photo::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.05);
	transition: background 0.3s ease;
} */

section.sales-enablement .se-member-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

/* section.sales-enablement .se-member-card:hover .se-member-photo img {
	transform: scale(1.05);
} */

section.sales-enablement .se-member-info {
	padding: 35px;
	color: #0c2657;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	width: calc(100% - 320px);
}

section.sales-enablement .se-member-name {
	font-size: 20px;
	margin-bottom: 4px;
	font-weight: bold;
}

section.sales-enablement .se-member-name .en-name {
	font-size: 14px;
	margin-left: 8px;
	color: #666;
	font-weight: normal;
}

section.sales-enablement .se-member-position {
	font-size: 16px;
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(12, 38, 87, 0.1);
}

section.sales-enablement .se-member-description {
	font-size: 14px;
	margin-bottom: 18px;
	line-height: 1.6;
}

section.sales-enablement .se-member-career {
	font-size: 13px;
	color: #555;
	line-height: 1.6;
}

section.sales-enablement .se-member-career h4 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 6px;
	margin-top: 12px;
	color: #0c2657;
	position: relative;
	padding-left: 12px;
}

section.sales-enablement .se-member-career h4::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 5px;
	background-color: #0c2657;
	border-radius: 50%;
}

section.sales-enablement .se-member-career p {
	margin-bottom: 10px;
	font-size: 13px;
	line-height: 1.6;
	padding-left: 12px;
	word-break: break-word;
	overflow-wrap: break-word;
}

section.sales-enablement .se-professional-link {
	margin-top: 50px;
}

section.sales-enablement .se-professional-link a {
	display: inline-block;
	padding: 15px 40px;
	background: #fff;
	color: #0c2657;
	border-radius: 50px;
	position: relative;
	font-size: 16px;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	text-decoration: none;
}

section.sales-enablement .se-professional-link a:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

section.sales-enablement .se-professional-link a::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	width: 6px;
	height: 6px;
	border-top: 2px solid #0c2657;
	border-right: 2px solid #0c2657;
	transform: translateY(-50%) rotate(45deg);
}

/* レスポンシブ調整 */
@media screen and (max-width: 768px) {
	section.sales-enablement {
		/* padding: 40px 0; */
	}

	section.sales-enablement .inner1200 {
		padding: 0 15px;
	}

	section.sales-enablement .heading {
		margin-bottom: 30px;
	}

	section.sales-enablement .heading .title .en {
		font-size: 20px;
		margin-bottom: 10px;
	}

	section.sales-enablement .heading .title .ja h2 {
		font-size: 22px;
	}

	section.sales-enablement .description {
		font-size: 16px;
		margin-bottom: 30px;
	}

	section.sales-enablement .flow-content {
		padding: 15px;
	}

	section.sales-enablement .flow-content h3 {
		font-size: 14px;
		padding: 8px;
		line-height: 1.5;
		text-align: center;
		word-break: break-all;
		overflow-wrap: break-word;
		white-space: normal;
		max-width: 100%;
		box-sizing: border-box;
	}

	section.sales-enablement .flow-arrow {
		height: 20px;
		margin: 10px auto;
	}

	section.sales-enablement .flow-arrow:after {
		border-left: 10px solid transparent;
		border-right: 10px solid transparent;
		border-top: 10px solid #0c2657;
	}

	section.sales-enablement .team-members-section {
		/* margin-top: 40px; */
		/* padding: 40px 15px; */
		width: 100%;
		box-sizing: border-box;
	}

	section.sales-enablement .se-team-members {
		margin: 30px auto;
		width: 100%;
		box-sizing: border-box;
	}

	section.sales-enablement .se-team-members-grid {
		gap: 25px;
		/* padding: 0 15px; */
		box-sizing: border-box;
	}

	section.sales-enablement .se-member-card {
		flex-direction: column;
		width: 100%;
		box-sizing: border-box;
	}

	section.sales-enablement .se-member-photo {
		width: 100%;
		height: 300px;
	}

	section.sales-enablement .se-member-info {
		width: 100%;
		padding: 20px;
		box-sizing: border-box;
	}

	section.sales-enablement .se-member-name {
		font-size: 16px;
	}

	section.sales-enablement .se-member-name .en-name {
		font-size: 12px;
		margin-left: 6px;
	}

	section.sales-enablement .se-member-position {
		font-size: 14px;
		margin-bottom: 8px;
		padding-bottom: 8px;
		word-break: break-all;
		overflow-wrap: break-word;
		white-space: normal;
		max-width: 100%;
		box-sizing: border-box;
		width: 100%;
	}

	section.sales-enablement .se-member-description {
		font-size: 13px;
		margin-bottom: 12px;
		word-break: break-all;
		overflow-wrap: break-word;
		white-space: normal;
		max-width: 100%;
		box-sizing: border-box;
		width: 100%;
	}

	section.sales-enablement .se-member-career {
		font-size: 12px;
	}

	section.sales-enablement .se-member-career h4 {
		font-size: 13px;
		margin-bottom: 4px;
		margin-top: 8px;
	}

	section.sales-enablement .se-member-career p {
		font-size: 12px;
		margin-bottom: 8px;
		padding-left: 8px;
		word-break: break-all;
		overflow-wrap: break-word;
		white-space: normal;
		max-width: 100%;
		box-sizing: border-box;
		width: 100%;
	}
}

/* タブレット対応 */
@media screen and (min-width: 521px) and (max-width: 768px) {
	section.sales-enablement .se-team-members-grid {
		gap: 30px;
		padding: 0;
	}

	section.sales-enablement .se-member-card {
		flex-direction: column;
	}

	section.sales-enablement .se-member-photo {
		width: 100%;
		height: 220px;
	}

	section.sales-enablement .se-member-info {
		width: 100%;
		padding: 25px;
	}

	section.sales-enablement .team-members-section {
		padding: 50px 15px;
	}
}

/* 中間サイズ対応 */
@media screen and (min-width: 769px) and (max-width: 1024px) {
	section.sales-enablement .se-team-members-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	section.sales-enablement .se-member-photo {
		width: 300px;
	}

	section.sales-enablement .se-member-info {
		width: calc(100% - 300px);
		padding: 30px;
	}

	section.sales-enablement .team-members-section {
		padding: 50px 15px;
	}
}

.gradient-box {
	background: linear-gradient(135deg, rgba(173, 216, 230, 0.8) 0%, rgba(135, 206, 235, 0.8) 100%);
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
