@charset "UTF-8";
/*----------------------------------------------------
共通
----------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;600;800&family=Noto+Sans+JP:wght@300;400;700&display=swap');
		
:root {
	--ncxx-blue: #005bac;
	--ncxx-light-blue: #e6f0f7;
	--ncxx-accent: #f39800;
}

body { 
	font-family: 'Noto Sans JP', sans-serif;
	color: #333;
	line-height: 1.6;
}

.font-exo { font-family: 'Exo 2', sans-serif; }

.hero-gradient {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* ヘッダー全体のコンテナ */
.main-header {
	position: relative;
	width: 100%;
	height: 250px; /* 必要に応じて高さを調整してください */
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #000; /* 画像読み込み前のバックアップカラー */
}

/* 背景画像の設定 */
.header-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../img/header.png'); 
	background-size: cover;
	background-position: center;
	filter: brightness(0.7);
	z-index: 1;
}

/* テキストのスタイル */
.header-title {
	position: relative;
	z-index: 2;
	color: #ffffff;
	font-size: 2.5rem; /* サイズはお好みで */
	font-weight: bold;
	letter-spacing: 0.1em;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-title {
	//min-height: 50vh;
	min-height: 40vh;
}

.page-title p {
	margin-bottom: 0px;
}

.section-title {
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 30px;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 3px;
	background-color: var(--ncxx-blue);
}

.step-line::before {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	height: 100%;
	background: #dee2e6;
	z-index: 0;
}

.poc-card {
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
	border: 1px solid #eee;
}

.poc-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.1);
	border-color: var(--ncxx-blue);
}

.usecase-icon {
	width: 60px;
	height: 60px;
	background-color: var(--ncxx-light-blue);
	color: var(--ncxx-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin-bottom: 20px;
}

.bg-ncxx-blue { background-color: var(--ncxx-blue); }
.text-ncxx-blue { color: var(--ncxx-blue); }

#globalHeader .logo_wrap {
	width: 980px;
	height: 60px;
	box-sizing: border-box;
	margin: 0 auto;
	display: flex;
	display: -ms-flex;
	display: -webkit-flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-top: 0px;
}
#globalFooter {
	margin-top: 130px;
	padding-bottom: 53px;
}
#globalFooter .foot_inner {
	width: 1196px;
	margin: 0 auto;
	display: flex;
	display: -ms-flex;
	display: -webkit-flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#globalFooter .foot_inner .copyright {
	font-size: 1.4rem;
	letter-spacing: -0.025em;
	color: #0033A1;
}

@media screen and (max-width: 767px) {
	/* ヘッダー全体のコンテナ */
	.main-header {
		position: relative;
		width: 100%;
		height: 150px; /* 必要に応じて高さを調整してください */
		overflow: hidden;
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: #000; /* 画像読み込み前のバックアップカラー */
	}

	/* 背景画像の設定 */
	.header-bg {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-image: url('../img/header.png'); 
		background-size: cover;
		background-position: center;
		filter: brightness(0.7);
		z-index: 1;
	}

	/* テキストのスタイル */
	.header-title {
		position: relative;
		z-index: 2;
		color: #ffffff;
		font-size: 2rem; /* サイズはお好みで */
		font-weight: bold;
		letter-spacing: 0.1em;
		text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	}

	.page-title {
		//min-height: 70vh;
		min-height: 50vh;
	}

	#globalHeader .logo_wrap {
		width: 100vw;
		height: 63px;
		box-sizing: border-box;
		margin: 0 auto;
		display: block;
		padding-top: 10px;
		padding-left: 18px;
	}
	#globalHeader .logo_wrap .logo {
		width: 71.4vw;
	}
	#globalHeader .logo_wrap .logo img {
		width: 100%;
		height: auto;
	}
	#globalFooter {
		margin-top: 72px;
		padding-bottom: 25px;
	}
	#globalFooter .foot_inner {
		width: 100vw;
		margin: 0 auto;
		display: flex;
		display: -ms-flex;
		display: -webkit-flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	#globalFooter .foot_inner .foot_logo {
		width: 103px;
		margin-left: 20px;
	}
	#globalFooter .foot_inner .foot_logo img {
		width: 100%;
		height: auto;
	}
	#globalFooter .foot_inner .copyright {
		font-size: 0.8rem;
		letter-spacing: -0.025em;
		color: #0033A1;
		margin-right: 10px;
	}
} // @media screen and (max-width: 767px)


