/*-------------------------------------*/
/* パンくずリスト（.c-breadcrumb）     */
/*-------------------------------------*/
.c-breadcrumb {
	background-color: rgb(0, 101, 180);
	color: #fff;
	height: 60px;
	box-sizing: border-box;
	display: flex;
	align-items: flex-end;
	padding: 0 0 15px 4em;
}
.c-breadcrumb__list {
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
/*	flex-wrap:wrap; */
}
.c-breadcrumb__item{
	white-space:nowrap;
}
.c-breadcrumb__item + .c-breadcrumb__item::before {
	content: ">";
	margin: 0 0.5em;
}
.c-breadcrumb__list:has(> .c-breadcrumb__item:nth-child(6)) .c-breadcrumb__item {
	letter-spacing: -0.03em;
	font-size: 0.95em;
}
.c-breadcrumb a {
	color: #fff;
	text-decoration: none;
}


/*-------------------------------------*/
/* ヒーローエリア（.c-hero）          */
/*-------------------------------------*/
.c-hero {
	position: relative;
	margin: 0;
	padding: 0;
 	overflow: hidden;
}
.c-hero__img {
	display: block;
	width: 100%;
	height: auto;
}
.c-hero__title {
	position: absolute;
	top: 50%;
	left: 50%;
	right: 1rem;
	transform: translateY(-50%);
	background-color: rgb(0, 101, 180);
	color: #fff;
	text-align: left;
	padding: 1.5rem 2rem;
	width: 50%;
}
.c-hero__title h1 {
  font-size: 2.25rem;
  line-height: 2.75rem;
  padding-right: 1.5rem;
  margin: 0;
}
/*  PSC-intelligence */
.c-hero2::before{
	content:"";
	position:absolute;
	inset:0;
	background-color: rgba(0,0,0,0.6);
	mix-blend-mode: multiply;
	z-index:1;
}
.c-hero2 {
	position: relative;
	margin: 0;
	padding: 0;
 	overflow: hidden;
	--subtitle-top: 50%;
}

.c-hero2__title {
	position: absolute;
	top: 35%;
	left: 40%;
	right: 1rem;
	transform: translateY(-50%);
	background-color: var(--color-nkblue);
	color: #fff;
	text-align: left;
	padding: 1.2rem 1.8rem;
	width: 60%;
	z-index:2;
}
.c-hero2__title h1 {
	font-size: 2.25rem;
	line-height: 2.5rem;
	padding-right: 1.5rem;
	margin: 0;
}
.c-hero2__subtitle{
	position:absolute;
	left:42%;
	right:1rem;
	top: var(--subtitle-top);
	color:#fff;
	font-weight:700;
	font-size:1.4rem;
	line-height:1.6;
	margin:0;
	z-index:2;
}
.c-hero2__doller{
	position:absolute;
	top:25%;
	bottom:25%;
	left:25%;
	aspect-ratio:1 / 1;
	z-index:2;
	transform: translateY(0);
}
.c-hero2__doller img#image-1{
	width:100%;
	height:100%;
	object-fit:contain;
	display:block;
}


/* ------------------------------------ */
/* ページごとのヒーロー画像上書き       */
/* 画像の格納先はURLのパス構造と同じ	*/
/* 大カテゴリに対応する接頭辞一覧		*/
/* About ClassNK: ac					*/
/* Products and Searvices: 	ps			*/
/* Certification Services:	cs			*/
/* Information Services: 	is			*/
/* Research:	rs						*/
/* ------------------------------------ */
 

@media screen and (max-width: 1200px) {
	.c-breadcrumb {
		height: auto;
		padding: 1rem 1rem;
		margin-bottom: 0;
		align-items: center;
	}
	.c-breadcrumb__list {
		display: none;
	}
	
	.c-hero__title {
		font-size: 1.2rem;
		padding: 0.5rem 1rem;
	}
	.p-ac-greeting .c-hero::before {
		padding-top: 60%;
	}

	.c-hero__title {
		font-size: 1.4rem;
		padding: 0.5rem 1rem;
	}
	.c-hero__title h1 {
		font-size: 1.5rem;
		line-height: 2rem;
		margin: 0;
	}
	.c-hero2__title {
		padding: 0.5rem 1rem;
	}
	.c-hero2__title h1 {
		font-size: 1.4rem;
		line-height: 2rem;
	}
	.c-hero2__subtitle{
		font-size:1.1rem;
		line-height:1.2;
	}
}

@media screen and (max-width: 768px) {
	.c-hero__title {
		font-size: 1.4rem;
	}
	.c-hero__title h1 {
		font-size: 1.4rem;
		line-height: 1.6rem;
		margin: 0;
	}
	.c-hero2{
		--subtitle-top: 48%; 
	}
	.c-hero2__title {
		top: 30%;
		left:33%;
		width:67%;
		padding: 0.3rem;
	}
	.c-hero2__title h1 {
		font-size: 1.4rem;
		line-height: 1.6rem;
		margin: 0;
		white-space: nowrap;
	}
	.c-hero2__subtitle{
		left:35%;
		font-size:0.8rem;
		line-height:1.1;
	}
	.c-hero2__doller{
		left: 17%;
		top: 28%;
		bottom: 20%;
	}

}
@media screen and (max-width: 480px) {
	.c-hero__title {
		font-size: 1.2rem;
		padding: 0.5rem;
	}
	.c-hero__title h1 {
		font-size: 1.2rem;
		line-height: 1.4rem;
		margin: 0;
	}
	.c-hero2__title h1 {
		font-size: 1rem;
		line-height: 1.2rem;
		margin: 0;
	}
	.c-hero2__subtitle{
		left: 35%;
		font-size: 0.6rem;
		line-height: 1.1;
	}

}