/***********************************
	スライドショー
 **********************************/
#dP {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
}

.slideshow-container {
	position: relative;
	width: 100%;
	max-width:1280px;
	margin:0 auto;
	background-color: #0065B4;
	overflow: hidden;

}

@media screen and (min-width:1281px){
	html, body{
		overflow-x: hidden;
	}
/*
	#dP {
		background: linear-gradient(to bottom, white calc(100% - 1px), #0065B4 0);
	}
*/
	.slideshow-container{
		overflow:visible;
	}
	.slideshow-container::before {
		content: "";
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 3840px;
		height: 100%;
		background-color: #0065B4;
		z-index: -1;
	}
	
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
	flex:0 0 100%;
  min-width: 100%;
  box-sizing: border-box;
}

.slide img {
	width: 100%;
	height: auto;
	display: block;
	z-index: 5;
}

.p-dots {
	text-align: center;
	position: absolute;
	bottom: 6%;
	width: 100%;
}

.c-dot {
	height: 14px;
	width: 14px;
	margin: 8px;
	background-color: rgba(200, 201, 202, 0.7);
	border-radius: 50%;
	display: inline-block;
	cursor: pointer;
}

.c-dot.active {
	background-color: rgba(20, 46, 141, 0.7);
}
	
.c-stop {
	height: 30px;
	width: 30px;
	padding: 0;
	border-radius: 50%;
	margin-left: 11px;
	
    cursor: pointer;
    font-size: 12px;
	line-height: 2.0em;
    color: #fff;
    user-select: none;
    display: inline-block;
}

.c-stop__pause {
	background: url("/hp/common_image/top/slideshow/slider_pause.png");
	background-repeat: no-repeat;
	background-size: 30px 30px;
	background-position: left top;
	filter: opacity(0.5);
}
.c-stop__rep {
	background: url("/hp/common_image/top/slideshow/slider_rep.png");
	background-repeat: no-repeat;
	background-size: 30px 30px;
	background-position: left top;
	filter: opacity(0.5);
}


.p-arrows {
	position: absolute;
	top: calc(52% - 40px);
	width: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
}

.c-prev,
.c-next {
	display: block;
	height: 30px;
	width: 30px;
	background-color: rgba(0, 0, 0, 0.5); 
	border-radius: 40px;
	padding: 4px;
	margin: 0 20px;
	
	cursor: pointer;
	color: #fff;
	font-size: 20px;
	line-height: 30px;
	font-weight: 100;
	user-select: none;
	text-align: center;
}

.c-prev:hover,
.c-next:hover {
	color: #1699b6;
}
@media screen and (max-width:768px) {
	.p-dots {
		bottom: 2%;
	}
	.c-dot {
		height: 10px;
		width: 10px;
		margin: 8px 5px;
	}

	.p-arrows {
		top: calc(50%);
	}
	.c-prev,
	.c-next {
		height: 25px;
		width: 25px;
		border-radius: 30px;
		padding: 2.5px;
		margin: 0 17.5px;
		font-size: 15px;
		line-height: 25px;
	}

}
/*================= 1281px 以上で左右スライドを暗く ================*/
@media screen and (min-width:1281px){
	.slide.is-current img{
		filter:none;
		opacity:1;
	}

	/* 左右の見切れスライド */
	.slide.is-adjacent {
		position: relative;           /* 擬似要素用 */
		overflow: hidden;
		height: 540px;
	}
	.slide.is-adjacent img {
		position: relative;
		height: 541px;
		opacity: 0.3;                 /* やや透過 */
	}
	.slide.is-adjacent::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #E6F3F8;
/*
		border-bottom: 1px solid #0065B4;
		box-sizing: border-box;
 */
		pointer-events: none;
	}

}
/***********************************
	スライドショーSP
 **********************************/
#dPSP {
	width: 100%;
	max-width: 768px;
	margin: 0 auto;
}

.slideshow-container_sp {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
}

.slides_sp {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide_sp {
  position: relative;
	overflow: hidden;
  min-width: 100%;
  box-sizing: border-box;
}

.slide_sp img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
	z-index: 5;
}

.p-dots_sp {
	text-align: center;
	position: absolute;
	bottom: 6%;
	width: 100%;
}

.c-dot_sp {
	height: 14px;
	width: 14px;
	margin: 8px;
	background-color: rgba(200, 201, 202, 0.7);
	border-radius: 50%;
	display: inline-block;
	cursor: pointer;
}

.c-dot_sp.active {
	background-color: rgba(20, 46, 141, 0.7);
}
	
.c-stop_sp {
	height: 30px;
	width: 30px;
	padding: 0;
	border-radius: 50%;
	margin-left: 11px;
	
    cursor: pointer;
    font-size: 12px;
	line-height: 2.0em;
    color: #fff;
    user-select: none;
    display: inline-block;
}

.p-arrows_sp {
	position: absolute;
	top: calc(50% - 40px);
	width: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
}

.c-prev_sp,
.c-next_sp {
	display: block;
	height: 30px;
	width: 30px;
	background-color: rgba(0, 0, 0, 0.5); 
	border-radius: 40px;
	padding: 4px;
	margin: 0 20px;
	
	cursor: pointer;
	color: #fff;
	font-size: 20px;
	line-height: 30px;
	font-weight: 100;
	user-select: none;
	text-align: center;
}

.c-prev_sp:hover,
.c-next_sp:hover {
	color: #1699b6;
}
@media screen and (max-width:768px) {
	.p-dots_sp {
		bottom: 2%;
	}
	.c-dot_sp {
		height: 10px;
		width: 10px;
		margin: 8px 5px;
	}

	.p-arrows_sp {
		top: calc(50%);
	}
	.c-prev_sp,
	.c-next_sp {
		height: 25px;
		width: 25px;
		border-radius: 30px;
		padding: 2.5px;
		margin: 0 17.5px;
		font-size: 15px;
		line-height: 25px;
	}

	#dP {
		display: none!important;
	}
	#dPSP {
		display: block!important;
	}
}
@media screen and (min-width:769px) {
	#dPSP {
		display: none!important;
	}
	#dP {
		display: block;
	}
}







/***********************************
	パネルリンク：ClassNK Customer Hub等
 **********************************/
section#mL {
	display: block;
	padding: 0 20px 70px 20px;
	background-color: #0065B4;
	color: #FFFFFF;
}

#mL .p-memLinks {
	display: flex;
	gap: 0px 90px;
	justify-content: center;
	flex-wrap: wrap;
}

#mL .p-memLinks dl {
	background-color: #FFFFFF;
	border-radius: 0 20px 0 0;
	padding: 20px;
	width: 510px;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
	text-align: center;
}

#mL .p-memLinks dl dt {
  font-weight: bold;
  margin-bottom: 10px;
  color: #0065B4;
}
#mL .p-memLinks dl.c-memR2 dt {
	font-size: 28px;
	line-height: 32px;
}
#mL .p-memLinks dl.c-memR2 dt span {
  font-weight: bold;
	font-size: 20px;
	line-height: 32px;
}
@media screen and (max-width:768px) {
	/* ClassNK Customer Hubはモバイルでは非表示 */
	#mL .p-memLinks dl.c-memR2 {
		display: none;
	}
	#cch {
		display: none;
	}
}

#mL .p-memLinks dl.c-memR1 dt {
	font-size: 32px;
	line-height: 2.0em;
}

/* Button Links */
#mL .p-memLinks dl dd {
  display: inline-block;
  margin: 5px 15px;
}

#mL .p-memLinks dl dd a {
  display: inline-block;
  padding: 10px 30px;
  font-size: 20px;
	line-height: 1.4em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
	cursor: pointer;
	min-width: 8.0em;
}

/* LOGIN Button */
.c-color__db { 
  background-color: #0065B4;
  color: #FFFFFF;
}

/* REGISTER Button */
#mL .p-memLinks dl dd a {
  background-color: #A5D8E6;
  color: #0065B4;
}

/* Hover Effects */
#mL .p-memLinks dl dd a:hover {
  opacity: 0.8;
}







/* 📌 4列レイアウト */
#mL .p-primaryLinks {
	position: relative;
	top: -20px;
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 1400px;
	margin: auto;
}

/* 📌 各コンテンツボックス */
#mL .p-primaryLinks .c-primaryItem,
#mL .p-primaryLinks--tab .c-primaryItem {
	position: relative;
	background-color: #FFFFFF;
	border-radius: 0 20px 0 0;
	padding: 5px 10px;
	width: 280px;
	height: 160px;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
	text-align: center;
}

/* 📌 カテゴリ名 */
#mL .p-primaryLinks .c-primaryItem__title,
#mL .p-primaryLinks--tab .c-primaryItem__title {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 10px 0;
	height: 46px;
	color: #0065B4;
	font-size: 20px;
	line-height: 1.6rem;
	font-weight: bold;
}
#mL .p-primaryLinks .c-primaryItem__title span,
#mL .p-primaryLinks--tab .c-primaryItem__title span{
	font-size: 16px;
}
#mL .p-primaryLinks .c-primaryItem__image,
#mL .p-primaryLinks--tab .c-primaryItem__image {
	margin: 0 auto;
	width: 280px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}
#mL .p-primaryLinks .c-primaryItem__image img,
#mL .p-primaryLinks--tab .c-primaryItem__image img {
	width: 240px;
	height: auto;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}
#mL .p-primaryLinks .c-primaryItem__image a:hover img {
    transform: scale(1.06);
}

@media screen and (max-width: 1320px) and (min-width: 1201px) {
	section#mL {
		padding: 0 15px 70px 15px;
	}
	#mL .p-primaryLinks {
		gap: 10px;
	}
	#mL .p-primaryLinks .c-primaryItem{
		padding: 5px 0;
		width: 280px;
		height: 160px;
	}

}


@media screen and (max-width: 768px) {
	section#mL {
		padding: 0 10px 50px 10px;
	}


	#mL .p-primaryLinks {
		justify-content: center;
	}
}



/* タブ表示はSPのみ */
.p-primaryLinks--tab {
	display: none;
	position: relative;
	padding: 0 15px 30px 15px;
	text-align: center;
	z-index: 10;
}

/* タブナビゲーション */
.c-tabNav {
	display: flex;
	width: clamp(300px, 100%, 320px);
	padding: 0;
	justify-content: space-between;
	margin: 0 auto;
	overflow: hidden;
}
.c-tabNav li {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	width: 25%;
	padding: 4px;
	cursor: pointer;
	color: #0065B4;
	font-size: 12px;
	font-weight: bold;
	line-height: 18px;
	background: #a5d8e6;
	list-style: none;
}
.c-tabNav li.is-active {
	color: #0065B4;
	background: #fff;
}

/* パネルエリア */
.c-tabPanel {
	display: none;
	position: relative;
	margin: 0 auto;
	background-color: #FFFFFF;
	padding: 6px 10px;
	width: calc(clamp(300px, 100%, 320px) - 20px);
	height: 160px;
	box-shadow: none; 
	text-align: center;
}
.c-tabPanel.is-active {
	display: block;
}
.c-tabLink {
	display: block;
	background: #0065B4;
	color: #fff;
	padding: 12px;
	margin: 10px auto;
	max-width: 200px;
	border-radius: 4px;
	font-weight: bold;
	text-decoration: none;
}
.c-tabLink.register {
	background: #a5d8e6;
	color: #0065B4;
}
.c-primaryItem__linkStack {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 10px;
}

.c-primaryItem__link {
	background-color: #0065B4;
	color: #FFFFFF;
	width: 200px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
	border-radius: 4px;
	transition: opacity 0.3s ease;
}
.c-primaryItem .c-primaryItem__link a,
.c-tabPanel .c-primaryItem__link a{
	font-size: 20px;
	line-height: 1.4em;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	display: block;
	width: 100%;
}
.c-primaryItem .c-primaryItem__link:hover,
.c-tabPanel .c-primaryItem__link:hover{
  opacity: 0.8;
}
.c-primaryItem .c-primaryItem__link--register,
.c-tabPanel .c-primaryItem__link--register {
	background-color: #A5D8E6;
	color: #0065B4;
}
@media screen and (max-width: 680px) {
	#mL .p-primaryLinks {
		display: none;
	}
	.p-primaryLinks--tab {
		display: block;
	}
}




/* QuickLinks Section */
#mL .p-Links {
	padding-top: 20px;
}

#mL .p-Links ul {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	list-style: none;
	padding: 0;
	margin: 0 auto;
	justify-content: center;
	max-width: 1200px;
}

#mL .p-Links ul li {
  position: relative;
  background-color: #FFFFFF;
  border-radius: 0 12px 0 0;
  width: 250px;
  padding: 15px;
  height: 30px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#mL .p-Links ul li:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

#mL .p-Links ul li a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  color: #0065B4;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  padding: 15px;
  z-index: 2; 
}

#mL .p-Links ul li a.p-text--2lines {
	line-height: 1.5em;
	top: -5px;
}


@media screen and (max-width: 680px) {
	.p-primaryLinks--tab {
		padding: 30px 0;
	}
	.c-tabNav {
		width: clamp(300px, 100%, 380px);
	}
	.c-tabPanel {
		width: calc(clamp(300px, 100%, 380px) - 20px);
	}
	#mL .p-Links {
		padding-top: 0;
	}
	#mL .p-Links ul {
		gap: 10px;
	}


	#mL .p-Links ul li {
		width: clamp(140px, calc(50% - 10px), 200px);
		min-height: 44px;
		padding: 14px 0;
		display: flex;
		font-size: 13px;
		align-items: center;
		justify-content: center;
		text-align: center;
	}


	#mL .p-Links ul li a {
		position: static;
		width: 100%;
		padding: 14px 0;
		line-height: 1.2;
		font-size: 13px;
	}


}
@media screen and (max-width: 468px) {

	#mL .p-Links ul li,
	#mL .p-Links ul li a  {
		width: clamp(140px, calc(50% - 5px), 200px);
		padding: 14px 0;
	}
}



/***********************************
	新着サービス
 **********************************/
#nS {
	display: block;
	width: 100%;
	margin: 0 auto;
	padding: 50px 0;
}

#nS .p-nS {
	max-width: 1238px;
	margin: 0 auto;
}
@media screen and  (min-width: 1000px) and (max-width: 1300px) {
	#nS .p-nS, #nS .p-topics {
		width: calc(clamp(1000px, 100%, 1300px) - 62px);
	}
}

@media screen and (max-width:1000px) {#nS .p-nS, #nS .p-topics { padding: 0 10px; }}
@media screen and (max-width:768px) {#nS .p-nS, #nS .p-topics { padding: 0 6px; }}

#nS h3 {
/*
	font-size: 54px;
 */
 	font-size: 32px;
	line-height: 2.0em;
	margin: 0;
	font-weight: normal;
	text-align: center;
	color: #0065B4;
}

#nS dl {
	margin: 0;
	padding: 0;
}

#nS dl dt {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 8px;
	grid-row-gap: 4px;
	margin: 0 15px;
	padding: 0;
}

#nS dl dt a {
	display: block;
	width: calc(25% - 6px);
	padding: 7px 0 6px 0;
	border-bottom: 5px solid #0065b4;
	
	font-size: 24px;
	line-height: 2.0em;
	color: #fff;
	background-color: #0065b4;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	
	/* 背景色、文字色、拡大のアニメーション */
	transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, text-shadow 0.3s ease-in-out, transform 0.2s ease-in-out;
}
@media screen and (max-width:1000px) {
	#nS dl dt a {
		font-size: 21px;
		width: calc(50% - 4px);
	}
}
@media screen and (max-width: 480px) {
	#nS dl dt {
		column-gap: 4px;
		grid-row-gap: 4px;
		margin: 0 5px;
	}


	#nS dl dt a {
		padding: 0;
		font-size: 16px;
/*		width: calc(100% - 0px); */
	}
}

#nS dl dt .c-topic__true {
    background-color: #bbdde6;
	color: #0065b4;
	text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
	cursor: default;
}
#nS dl dd.visible_non { display: none;}

#nS dl dt .c-topic__1:hover, 
#nS dl dt .c-topic__2:hover, 
#nS dl dt .c-topic__3:hover, 
#nS dl dt .c-topic__4:hover {
	color: #0065b4;
    background-color: #bbdde6;
	
	/* 疑似的なボールド化 */
	text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.6);
}





#nS dl dd {
	margin: 3px 0 0 0;
	padding: 10px 1rem;
}

#nS dl dd a {
	display: block;
	text-decoration: none;
	
	padding: 0 0 10px 0;
}
#nS dl dd a:hover {
	border-radius: 10px;
	box-shadow: 0 0 5px gray;
}
#nS dl dd a:hover span.c-xont {
	color: #0065b4;
}

#nS .c-date {
	position: relative;
	display: inline-block;
	margin-left: 15px;
	margin-right: 15px;
}
#nS .c-date span {
	font-size: 14px;
	line-height: 2.0em;
	padding-top: 8px;
	padding-bottom: 6px;
	padding-right: 0.5em;
}
#nS .c-news span::before {
	position: absolute;
	content: 'News & Events';
	font-size: 10px;
	line-height: 14px;
	text-align: center;
	width: 9em;	
	height: 14px;
	top: 9px;
	left: 100%;
	margin-left: 2px; 
	
	background-color: #0065b4; 
	color: #fff;
}
#nS .c-press span::before {
	position: absolute;
	content: 'Press Release';
	font-size: 10px;
	line-height: 14px;
	text-align: center;
	width: 9em;	
	height: 14px;
	top: 9px;
	left: 100%;
	margin-left: 2px; 
	
	background-color: #0065b4;
	color: #fff;
}
#nS .c-tech span::before {
	position: absolute;
	content: 'Technical News';
	font-size: 10px;
	line-height: 14px;
	text-align: center;
	width: 9em;	
	height: 14px;
	top: 9px;
	left: 100%;
	margin-left: 2px; 
	
	background-color: #0065b4;
	color: #fff;
}

#nS .c-xont {
	position: relative;
	display: block;
	font-size: 18px;
	line-height: 26px;
	margin-left: 15px;
	margin-right: 15px;
	
	padding-top: 10px;
	padding-bottom: 5px;
}
#nS .c-xont::before {
	position: absolute;
	content: '';
	display: block;
	border-bottom: 1px dashed #333;
	bottom: -22px;
	left: 0px;
	width: 100%;
	height: 1px;
}

@media screen and (max-width: 768px) {
	#nS dl dd {
		padding: 10px 0;
	}

	#nS dl dd a {
		padding: 10px 0;
	}
}

/* プレスリリース一覧 */
#nS .p-topics {
	max-width: 1238px;
	margin: 0 auto;
}

#nS .p-topics div.c-fLright {
	float: right;
}

#nS .p-topics a {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
	height: 46px;
	padding-left: 15px;
	padding-right: 15px;
	font-size: 16px;
	color: #fff;
	cursor: pointer;
	text-decoration: none;
	background-color: #0065B4;
	border: 2px solid #0065B4;
	border-radius: 2px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: background-color 0.3s, color 0.3s;
	
}

#nS .p-topics a::after {
	content: "→";
	font-size: 16px;
	color: #fff;
	margin-left: 40px;
	transition: color 0.3s;
	margin-top: -4px;
}

#nS .p-topics a:hover {
	background-color: #ddeef2;
	color: #00028a;
}
#nS .p-topics a:hover::after {
	color: #00028a;
}

#nS .p-topics a.visible_non { display: none;}




/***********************************
	パネルリンク
 **********************************/

#s1 {
	padding: 60px 20px;
	background-color: #bbdde6;
	margin: 0 auto;
}
#s2 {
	padding: 60px 20px;
	background-color: #0065b4; 
	margin: 0 auto;
}
@media screen and (max-width:1000px) { #s1,#s2 {padding: 60px 10px}}
@media screen and (max-width: 800px) { #s1,#s2 {padding:  40px 10px}}



#s1 .p-steps dl,
#s2 .p-contr dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 15px;
	max-width: 1560px;
	margin: 0 auto;
}


/* dt と dd をグループ化するためのスタイル */
/*
.p-steps dl > dt,
.p-steps dl > dd,
.p-contr dl > dt,
.p-contr dl > dd {
    display: block;
}

/* dt と dd のセットの背景を変更 */
/*
.p-steps dl > dt,
.p-steps dl > dd {
    background-color: rgb(19, 132, 199);
    padding: 15px 6px;
    border-radius: 20px;
}

.p-contr dl > dt,
.p-contr dl > dd {
    background-color: rgb(187, 221, 230);
    padding: 15px 6px;
    border-radius: 20px;
}
 */



.p-steps dt,
.p-contr dt {
	position: relative;
    width: calc(100% - 170px);
    padding: 20px 50px;
    margin-bottom: 30px;
    font-size: 28px;
    line-height: 40px;
    font-weight: bold;
    color: #0065B4;
    text-align: center;
	background-color: #fff;
	z-index: 5;
}

.p-steps dt {
	box-sizing: border-box;
	border-right: 1px solid #bbdde6;
	border-bottom:1px solid #bbdde6;
}
.p-contr dt {
	
	box-sizing: border-box;
	border-right: 1px solid #0065b4;
	border-bottom:1px solid #0065b4;
}

.p-steps dt::before {
	content: '';
	position: absolute;
	height: calc(100% + 2px);
	width: calc(100% + 2px);
	top: -1px;
	right: -1px;
	background: url("/hp/common_image/top/index_title5_95_95.svg");
	background-repeat: no-repeat;
	background-size: auto;
	background-position: left top;
	z-index: 4;
}
.p-contr dt::before {
	content: '';
	position: absolute;
	height: calc(100% + 2px);
	width: calc(100% + 2px);
	top: -1px;
	right: -1px;
	background: url("/hp/common_image/top/index_title7_95_95.svg");
	background-repeat: no-repeat;
	background-size: auto;
	background-position: left top;
	z-index: 4;
}

.p-steps dt::after {
	content: '';
	position: absolute;
	height: calc(100% + 2px);
	width: calc(100% + 2px);
	top: -1px;
	right: -1px;
	background: url("/hp/common_image/top/index_title6_95_95.svg");
	background-repeat: no-repeat;
	background-size: auto;
	background-position: right top;
	z-index: 4;
}
.p-contr dt::after {
	content: '';
	position: absolute;
	height: calc(100% + 2px);
	width: calc(100% + 2px);
	top: -1px;
	right: -1px;
	background: url("/hp/common_image/top/index_title8_95_95.svg");
	background-repeat: no-repeat;
	background-size: auto;
	background-position: right top;
	z-index: 4;
}
@media screen and (max-width:1200px) {
	.p-steps dt,
	.p-contr dt { 
    	width: calc(100% - 130px);
    	padding: 12px 60px;
    	font-size: 32px;
    	line-height: 36px;
	}
}
@media screen and (max-width: 800px) {
	.p-steps dt { 
		width: calc(100% - 100px);
    	padding: 12px 50px;
    	font-size: 24px;
    	line-height: 30px;
	}
	.p-contr dt { 
		width: calc(100% - 100px);
    	padding: 12px 50px;
    	font-size: 24px;
    	line-height: 30px;
	}
}
@media screen and (min-width: 501px) {
	.p-steps dt,
	.p-contr dt {
		border-top-left-radius: 50px 100%;
		border-bottom-right-radius: 50px 100%;
	}
}
@media screen and (max-width: 500px) {
	.p-steps dt,
	.p-contr dt { 
    	width: calc(100% - 20px);
    	padding: 12px 10px;
    	font-size: 24px;
    	line-height: 30px;
	}
	.p-steps dt::before, 
	.p-contr dt::before { background: none;}
	.p-steps dt::after, 
	.p-contr dt::after { background: none;}
}

.p-steps dd,
.p-contr dd {
	max-width: 320px;
	height: 240px;
    text-align: center;
    padding: 0;
    margin: 0;
}

.p-steps a,
.p-contr a {
    display: block;
    position: relative;
    width: 100%;
    text-decoration: none;
}

.p-steps a figure,
.p-contr a figure {
    position: relative;
    width: 100%;
/*
    aspect-ratio: 720 / 364;   
    aspect-ratio: 7 / 5;
*/
    aspect-ratio: 4 / 3;   
    overflow: hidden;
    border-radius: 25px;
}

.p-steps a img,
.p-contr a img {
    display: block;
    width: 100%;
    height: 100%;
	object-fit: contain; /* 画像全体を表示（縦横比を保持） */
	object-position: center;
	background-color: #fff; 
    transition: transform 0.3s ease-in-out;
}

/* ホバー時に画像を拡大（親の figure の中で拡大） */
.p-steps a:hover img,
.p-contr a:hover img {
    transform: scale(1.16);
}

/* キャプションのスタイル */
.p-steps a figcaption,
.p-contr a figcaption {
	position: absolute;
	bottom: 0;
    padding: 5px 5px 7px 5px;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    border-radius: 0 0 25px 25px;
    white-space: nowrap;
    box-sizing: border-box;
}
.p-steps a figcaption {
    background-color: #0065b4;
    color: white;
}

.p-contr a figcaption {
    background-color: white;
    color: #0065b4;
}

.p-contr a figcaption { color: #0065b4;}

/* レスポンシブ対応 */
@media screen and (max-width: 600px) {


    .p-steps dl,
	.p-contr dl {
        flex-direction: column;
        align-items: center;
    }
    .p-steps dd,
	.p-contr dd {
        width: calc(100% - 4px);
    }
}





/***********************************
	ソーシャルネットワーク
 **********************************/
#sN {
	display: block;
    width: 100%;
    margin: 60px 0;
}

#sN ul {
    list-style: none;
    display: flex;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 100px;
    padding: 0;
    margin: 0;
}

#sN li {
    display: flex;
    justify-content: center;
    align-items: center;
}

#sN a {
    display: block;
    width: 68px;
    height: 68px;
    transition: transform 0.3s ease-in-out;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-indent: -9999px;
    overflow: hidden;
}

#sN .c-linkedIn {
    background-image: url("/hp/common_image/icon/logo_linkedIn.svg");
}

#sN .c-Youtube {
    background-image: url("/hp/common_image/icon/logo_youtube.svg");
}

#sN .c-Twitter {
    background-image: url("/hp/common_image/icon/logo_x.svg");
}

#sN a:hover {
    transform: scale(1.2); /* ホバー時に120%拡大 */
}

@media screen and (max-width:768px) { 
	#sN {
    	margin: 40px 0;
	}
	#sN ul {
		gap: 40px;
	}
	#sN a {
		display: block;
		width: 50px;
		height: 50px;
	}

}
#sN2 {
	display: block;
	width: 100%;
	margin: 60px 0;
	text-align: center;
}

#sN2 .c-snsTitle {
	font-size: 1.4rem;
	font-weight: bold;
	color: #0065B4;
	margin-bottom: 1em;
}
#sN2 .c-snsTitle a{
	text-decoration: none;
}

#sN2 .c-snsList {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 60px;
	padding: 0;
	margin: 0 auto;
}

#sN2 .c-snsList li {
	display: flex;
	justify-content: center;
	align-items: center;
}

#sN2 .c-snsList a {
	display: block;
	width: 68px;
	height: 68px;
	transition: transform 0.3s ease-in-out;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	text-indent: -9999px;
	overflow: hidden;
}

#sN2 .c-linkedIn	{   background-image: url("/hp/common_image/icon/logo_linkedIn-Bug.png");	}
#sN2 .c-Youtube		{	background-image: url("/hp/common_image/icon/logo_youtube_rgb.png");	}
#sN2 .c-Twitter		{	background-image: url("/hp/common_image/icon/logo_x-black.png");	}
#sN2 .c-Instagram	{	background-image: url("/hp/common_image/icon/logo_Instagram_Glyph_Gradient.png");	}


#sN2 a:hover {
    transform: scale(1.2); /* ホバー時に120%拡大 */
}

@media screen and (max-width:768px) { 
	#sN2 .c-snsList {
		gap: 30px;
	}
	#sN2 .c-snsList a {
		width: 50px;
		height: 50px;
	}
}



/***********************************
			リンク 
 **********************************/

#gP {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 95px 0;
    background-color: #bbdde6;
}

#gP ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4列 */
    grid-template-rows: repeat(2, auto); /* 2行 */
    gap: 35px 30px;
    padding: 0;
    margin: 0;
    list-style: none;
}

#gP li {
    display: flex;
    justify-content: center;
    align-items: center;
}

#gP a {
    display: block;
    width: 248px;
    height: 63px;
    transition: transform 0.3s ease-in-out;
	background: #fff;
}
#gP a:hover {
	background: #f5f5f5;
}

#gP a span {
    display: block;
    width: 248px;
    height: 63px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease-in-out;
    text-indent: -9999px; /* テキストを非表示にする */
    overflow: hidden; /* 念のためテキストがはみ出さないように */
}

#gP a:hover span {
    transform: scale(1.06); /* ホバー時に120%拡大 */
}
#gP .c-icon01 span { background-image: url("/hp/common_image/bnr/bnr_classnk_ri.png");}
#gP .c-icon02 span { background-image: url("/hp/common_image/bnr/bnr_classnk_academy_ja.png");}
#gP .c-icon03 span { background-image: url("/hp/common_image/bnr/bnr_shipdc.png");}
#gP .c-icon04 span { background-image: url("/hp/common_image/bnr/bnr_classnk_ondemand.png");}
#gP .c-icon05 span { background-image: url("/hp/common_image/bnr/bnr_napa.png");}
#gP .c-icon06 span { background-image: url("/hp/common_image/bnr/bnr_untenshashokuba.png");}
#gP .c-icon07 span { background-image: url("/hp/common_image/bnr/bnr_remote_pilot.png");}
#gP .c-icon08 span { background-image: url("/hp/common_image/bnr/bnr_shift.png");}
#gP .c-icon09 span { background-image: url("/hp/common_image/bnr/bnr_classnk_academy2_en.png");}


@media screen and (min-width: 1401px) {
	#gP ul.p-list--cols3 {
	    grid-template-columns: repeat(3, 1fr);
	    grid-template-rows: repeat(3, auto);
	}
	#gP ul.p-list--cols2 {
	    grid-template-columns: repeat(2, 1fr);
	    grid-template-rows: repeat(4, auto);
	}
	#gP ul.p-list--cols1 {
	    grid-template-columns: repeat(1, 1fr);
	    grid-template-rows: repeat(4, auto);
	}

}

@media screen and (max-width:1400px) { 
	#gP ul {
	    grid-template-columns: repeat(3, 1fr);
	    grid-template-rows: repeat(3, auto);
	}
}
@media screen and (max-width:1100px) { 
	#gP ul {
	    gap: 20px 10px;
	    grid-template-columns: repeat(2, 1fr);
	    grid-template-rows: repeat(4, auto);
	}
}
@media screen and (max-width:520px) { 
	#gP {
    	padding: 50px 0;
	}

	#gP ul {
		grid-template-columns: repeat(2, minmax(150px, 1fr));
		gap: 6px;
		width: 100%;
	}
    #gP a,
    #gP a span {
        width: calc(clamp(150px, calc((100vw - 6px) / 2), 248px) - 5px);
        aspect-ratio: 4 / 1;
        height: auto;
    }
}






/*================= BCP style ======================*/
/*-------- content ---------*/
/* base */
/* text align */
/* color */
/* font */
/* font size */
/*==================================================*/
#dP {
	display: block;
	width: 100%;
	max-width:none;
}
#dPSP {
	display: none;
}

/* base */
#dP .bcp-wrap {
	width: 100%;
	height: auto;
	padding:clamp(24px,4vw,48px) clamp(16px,6vw,80px);
	position: relative;
	text-align: justify;
	box-sizing:border-box;	
}
#dP #slBoxBCP {
	max-width: 1280px;
	margin:0 auto;

}
#dP .bcp-wrap * {
	color: #fff;
	line-height: 1.5;
}

#dP .bcp-wrap h2{
	margin:0 0 0.5em;
	font-size:clamp(1.4rem,2.8vw,1.8rem);
	line-height:1.4;
}
#dP .bcp-wrap p{
	margin:0 0 1em;
	font-size:clamp(1rem,2.4vw,1.3rem);
}

.bcp-footer {
	position:static;
	text-align:right;
	font-size:0.9em;
	margin:0;
}

@media screen and (max-width:600px){

	#dP .bcp-footer{
		text-align:left;
		margin-top:0.5em;
	}
}

/*===== text align ====*/
.bcp-ta-c * {
	text-align: center;

}

.bcp-ta-r * {
	text-align: right;

}


/*==== color =====*/

.bcp-color1 {
	background: #A30000;

}


.bcp-color2 {
	background: #F39800;
}


.bcp-color3 {
	background: #D6AE00;
}

.bcp-color4 {
	background: #7CAA0F;
}

.bcp-color5 {
	background: #3F845D;
}


.bcp-color6 {
	background: #135A63;
}


.bcp-color7 {
	background: #004D96;
}


.bcp-color8 {
	background: #1F2C5C;
}


.bcp-color9 {
	background: #9354A3;
}

.bcp-color10 {
	background: #CC8098;
}

/* Achromatic color */

.bcp-color11 {
	background: #0A0A0A;
}

.bcp-color12 {
	background: #848484;
}


.bcp-color13 {
	background: #fff;

}

div.bcp-color13 * {
	color: #231815!important;	
}



.bcp-color14 {
	background: #fff;

}

div.bcp-color14 * {
	color: #A30000!important;
}



/*===== font ====*/
/* ゴシック */
div.bcp-font1 {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif!important;
}


div.bcp-font2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

/* 等幅書体 */
div.bcp-font3 {
	font-family: Osaka-mono, "MS Gothic", monospace;
}


/* 明朝 */
div.bcp-font4 {
	font-family:"ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif!important;
}

div.bcp-font4 * {
	font-size: 110%!important;
	line-height: 1.2!important;
}



/* 英文のみ */
/* serif */
div.bcp-font5 {
	font-family: 'Slabo 27px', serif;
}
div.bcp-font5 * {
	font-size: 110%!important;
}



/* Sans Serif */
div.bcp-font6 {
	font-family: 'Open Sans', sans-serif;
}

/* Handwriting */
div.bcp-font7 {
	font-family: 'Lateef', cursive;

}

div.bcp-font7 * {
	font-size: 130%;
	line-height: 1!important;
}



/* Monospace */
div.bcp-font8 {
	font-family: 'Droid Sans Mono';
}

/* 日向け */
/* sans serif */
/* for gt IE9 */
div.bcp-font9 {
	font-family: 'Noto Sans Japanese', sans-serif;
	font-weight: 600;
}


/*==== font size ====*/
.bcp-fz-n {
	font-size: 130%!important;
}

.bcp-fz-l {
	font-size: 200%!important;
}