.container{
	max-width: 1390px;
	width: 100%;
}
.only-pc{display: none;}
.only-sp{display: block;}
.mAuto{margin: 0 auto;}
@media only screen and (min-width: 769px) {
	.only-pc{display: block;}
	.only-sp{display: none;}
}
/*=============================================================
 dx
=============================================================*/
#pageMov{
	position: relative;
	width: 100%;
	height: 760px;
	overflow: hidden;
	background: url("/public/images/dx/main-bg.png") no-repeat;
	background-size: cover;
	background-position: center center;
}
#pageMov video{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
/*#pageMov video{
	aspect-ratio: 16 / 7.5;
	width: 100%;
	height: auto;
	object-fit: cover;
}*/
#pageMov #pageTtl{
	position: absolute;
	top: 46px;
	left: 46px;
	z-index: 2;
}
#pageMov #pageTtl img{max-width: 50%;}
#pageMov #pageText{
	color: #000;
	position: absolute;
	bottom: 46px;
	left: 50px;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 200%;
	letter-spacing: 2px;
	z-index: 2;
}
#pageMov #pageText span{
	background-color: #fff;
	padding: 2px;
}
#pageMov #pageText2{
	position: absolute;
	width: 50px;
	bottom: 62px;
	right: 25px;
	z-index: 2;
}
#pageMov #pageText2 img{max-width: 100%;}

@media only screen and (max-width: 769px) {
	#pageMov{height: 760px;}
	#pageMov video{z-index: 0;}
	#pageMov #pageTextBox{
		padding: 20px;
		box-sizing: border-box;
		position: relative;
		z-index: 2;
	}
	#pageMov #pageTtl{
		position: static;
		margin-bottom: 10px;
	}
	#pageMov #pageTtl img{max-width: 76%;}
	#pageMov #pageText{
		position: static;
		font-size: 16px;
		line-height: 180%;
		letter-spacing: 2px;
	}
	#pageMov #pageText span{
		background-color: #fff;
		padding: 2px;
	}
	#pageMov #pageText2{
		position: absolute;
		width: 25px;
		bottom: inherit;
		top: 50%;
		transform: translateY(-50%);
		right: 10px;
	}
}

/* color-box */
.color-box{
	padding: 125px 0;
	box-sizing: border-box;
}
.color-box img{
	max-width: 100%;
	width: 100%;
}
.color-box1{background-color: #e7eaef;}
.color-box2{background-color: #bcd2f7;}

@media only screen and (max-width: 769px) {
	.color-box{padding: 50px 0;}
}

/* box-ttl */
.box-ttl h2{
	display: inline-block;
	padding-bottom: 15px;
}
.box-ttl h2 img{max-width: 50%;}
.box-ttl h2 span{
	display: block;
	color: #00F;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 100%;
	margin-top: 20px;
}

/* box-col */
.box-col{
	display: flex;
	column-gap: 1.44%;
	flex-wrap: nowrap;
}
.box-col>*:first-child{max-width: 27.34%;width: 100%;}
.box-col>*:last-child{max-width: 71.22%;width: 100%;}

@media only screen and (max-width: 769px) {
	.box-col{display: block;}
	.box-col>*:first-child,
	.box-col>*:last-child{max-width: 100%;}
	.box-col>*:last-child{margin-top: 20px;}
}

/* innner-col */
.innner-col{
	display: flex;
	column-gap: 10.10%;
}
.innner-col>*:first-child{
	max-width: 50.51%;
	width: 100%;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 180%; /* 36px */
	letter-spacing: -0.6px;
}
.innner-col>*:last-child{max-width: 39.39%;width: 100%;}

@media only screen and (max-width: 769px) {
	.innner-col{display: block;}
	.innner-col>*:first-child{font-size: 16px;}
	.innner-col>*:first-child,
	.innner-col>*:last-child{max-width: 100%;}
	.innner-col>*:last-child{margin-top: 20px;}
}



.sticky {
		position: -webkit-sticky;
		position: sticky;
		top: 160px;
		left: 0;
		visibility: hidden;
		opacity: 0;
		transition: opacity 1s, visibility 1s;
}
.sticky.visible {
		visibility: visible;
		opacity: 1;
}
.sticky.v1 { animation-delay: 0.5s; }
.sticky.v2 { animation-delay: 1s; }
.sticky.hidden {
		display: none;
}
.sticky.fade-in{
	opacity: 0;
	transform: none;
	transform: translateY(300px);
	transition: opacity 0.4s ease-out, transform 0.3s ease-out;
	will-change: opacity, transform;
}
.sticky.fade-in.show{
	opacity: 1!important;
	transform: none;
	transform: translateY(0);
}
.innner-col .item{
	background: #fff;
	width: 100%;
	padding: 30px;
	box-sizing: border-box;
}
.innner-col .item + .item{margin-top: 220px;}
.innner-col .item-inner .ttl-num{
	display: flex;
	justify-content: space-between;
	column-gap: 10px;
	position: relative;
	margin-bottom: 50px;
}
.innner-col .item-inner .ttl-num>*:nth-child(2){
	position: relative;
	width: 100%;
}
.innner-col .item-inner .ttl-num>*:nth-child(2)::after{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	width: 100%;
	height: 1px;
	background-color: #00f;
}
.innner-col .item-inner .ttl-num>*:last-child{opacity: .3;}
.innner-col .item-inner figure{margin-bottom: 20px;}
.innner-col .item-inner p{
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 180%; /* 36px */
	letter-spacing: -0.4px;
}

.sticky-area .item{
	background: transparent;
	padding:0;
}
.sticky-area .item.sticky-first{
	display: flex!important;
	column-gap: 1.44%;
	flex-wrap: nowrap;
}
.sticky-area .item.sticky-first>*:first-child{
	max-width: 27.34%;
	width: 100%;
}
.sticky-area .item.sticky-first>*:last-child{
	max-width: 71.22%;
	width: 100%;
}
.sticky-area .item .item-inner{
	height: 638px;
	background: #fff!important;
	width: 100%;
	padding: 30px;
	box-sizing: border-box;
}
.sticky-area .sticky-last{height: 550px;}
.sticky-area .item + .item{margin-top: inherit;}

@media only screen and (max-width: 769px) {
	.innner-col .item-inner p{font-size: 16px}
	.innner-col .item + .item{margin-top: 50px;}
	.sticky {top: 80px;}
	.sticky-area .item.sticky-first{display: block!important;}
	.sticky-area .item.sticky-first>*:first-child,
	.sticky-area .item.sticky-first>*:last-child{max-width: 100%;}
	.sticky-area .item.sticky-first>*:first-child{
		margin-bottom: 20px;
		height: 120px;
	}
	.sticky-area .item .item-inner{height: 560px;}
}
/* box-text */
.box-text{
	color: #00F;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 130%;
	padding-top: 15px;
}

/* bdr */
.bdrB{border-bottom: 1px solid #00f;display: inline-block;}
.bdrT{border-top: 1px solid #00f;	display: inline-block;}

/* fade-in */
.fade-in {
	opacity: 0;
	transform: translateX(100px);
	transition: opacity 0.8s ease-out, transform 0.6s ease-out;
	will-change: opacity, transform;
}
.fade-in.show {
	opacity: 1!important;
	transform: translateX(0);
}
.is-scrolled .fade-in {opacity: 0;}

/* table-col */
.table-col{
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
}
.table-col>*{width: 50%;}
.table-col>*:first-child{
	background-color: #00F;
	padding: 20px;
	box-sizing: border-box;
	color: #fff;
}
.table-col>*:last-child{
	background-color: #fff;
	padding: 40px;
	box-sizing: border-box;
	color: #000;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 170%;
}
.table-col>.flx-aca{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 0 0 50%; /* ブラウザ幅の50%を確保 */
}
.table-col>.table-text{flex: 1;}
.table-col>.flx-aca p{
	font-size: 40px;
	font-style: normal;
	font-weight: 500;
	line-height: 130%; /* 52px */
	letter-spacing: 1.2px;
	padding: 10px;
	box-sizing: border-box;
	margin-bottom: 0!important;
}
.box-list p{
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 180%;
	margin-bottom: 30px;
}
.box-list .item + .item{margin-top: 10px;}
.box-list .item .table-col>*:first-child figure img{width: 176px;}
.box-list .item:last-child .table-col>*:first-child figure img{width: 206px;}

.no2{overflow: hidden;position: relative;}
.no2 .box-list{
	display: flex;
	flex-direction: column;
}
.no2 .box-list .item{
	transform: translateX(calc(50% + ((100vw - 1390px) / 2)));
	transition: transform 0.5s ease;
}
.no2 .box-list .item:hover,
.no2 .box-list .item.act,
.no2 .box-list .item.fade-in.show{transform: translateX(0);}

@media only screen and (max-width: 769px) {
	.table-col{display: block;}
	.table-col>*{width: 100%;}
	.table-col>*:last-child{
		padding: 20px;
		font-size: 16px;
	}
	.table-col>.flx-aca{display: block;}
	.table-col>.flx-aca p{
		font-size: 26px;
		padding: 0;
		margin-top: 10px;
	}
	.box-list p{font-size: 16px;}
	.no2 .box-list .item{transform: translateX(0);}
}

/* flx-box-layout */
.flx-box-layout{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 2.01%;
	padding: 20px;
	align-items: stretch;
}
.flx-box-layout .left, .flx-box-layout .right {
	/*flex: 1;*/
	display: flex;
	flex-direction: column;
}
.flx-box-layout .left {
	width: 69.12%;
}
.flx-box-layout .left .list{
	background: #fff;
	position: relative;
	padding: 25px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	column-gap: 20px;
}
.flx-box-layout .bottom div{
	padding: 15px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	column-gap: 20px;
	color: #fff;
}
.flx-box-layout .item p,
.flx-box-layout .bottom p{
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 28px */
	letter-spacing: -0.4px;
	width: calc((70% - 20px));
}
.flx-box-layout .item .ttl,
.flx-box-layout .bottom .ttl{
	color: #00F;
	font-size: 30px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%;
	width: 30%;
}
.flx-box-layout .bottom .ttl{
	color: #fff;
	width: 20%;
}
.flx-box-layout .right.item p,.flx-box-layout .right.item .ttl{width: 100%;}
.flx-box-layout .right.item .ttl + p{margin-top: 10px;}
.flx-box-layout .left .list + .list{margin-top: 10px;}
.flx-box-layout .right {
	width: 28.87%;
	background: #BCD2F7;
	padding: 25px;
	box-sizing: border-box;
}
/*.flx-box-layout .item {flex: 1;}*/
.flx-box-layout .bottom {
	background: #00F;
	color: #fff;
	text-align: left;
	padding: 10px;
	width: 100%;
}
@media only screen and (max-width: 769px) {
	/* flx-box-layout */
	.flx-box-layout{
		gap: 10px 2.0%;
		padding: 0;
	}
	.flx-box-layout .left {
		width: 55%;
	}
	.flx-box-layout .right {
		width: 43%;
	}
	.flx-box-layout .left .list{
		display: block;
		padding: 10px;
		column-gap: 20px;
	}
	.flx-box-layout .bottom div{
		display: block;
		padding: 15px;
		column-gap: 10px;
	}
	.flx-box-layout .item p,
	.flx-box-layout .bottom p{
		font-size: 14px;
		width: 100%;
	}
	.flx-box-layout .item .ttl,
	.flx-box-layout .bottom .ttl{
		font-size: 20px;
		width: 100%;
		margin-bottom: 5px;
	}
	.flx-box-layout .right {padding: 10px;}

}

/* case-list */
.no4{overflow: hidden;}
.case-list{
	position: relative;
}
.case-list li{
	display: flex;
	flex-wrap: nowrap;
	transform: translateX(calc(100% - 125px + ((100vw - 1390px) / 2)));
	transition: transform 0.5s ease;
	opacity: 1!important;
}
.case-list li:hover,
.case-list li.act,
.case-list li.fade-in.show{display: flex!important;transform: translateX(0);}
.case-list li + li{margin-top: 1px;}
.case-list li>*:first-child{
	background-color: #00F;
	padding: 50px 32px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
}
.case-list li>*:last-child{
	padding: 50px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	background-color: #fff;
	width: 100%;
	font-size: 30px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 42px */
	letter-spacing: -1.2px;
}
@media only screen and (max-width: 769px) {
	/*.case-list li{transform: translateX(0);}*/
	.case-list li{transform: translateX(300px);}
	.case-list li>*:first-child{
		padding: 30px 10px;
	}
	.case-list li>*:last-child{
		padding: 30px;
		font-size: 20px;
	}
	
}

/* team-box */
.team-box{
	background-color: #00F;
	padding: 23px 40px 40px;
	box-sizing: border-box;
}
.team-box p{
	text-align: center;
}
.team-box p img{max-width: 487px;margin-bottom: 20px;}
.team-box .team-col{
	display: flex;
	flex-wrap: wrap;
	gap:10px 10px;
}
.team-box .team-col>*{
	padding: 25px 40px 36px;
	box-sizing: border-box;
	background-color: #fff;
}
.team-box .team-col>*:first-child{width: 100%;}
.team-box .team-col>*:nth-child(n + 2){width: calc((100% - 10px) / 2);}
.team-box .team-col p{
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	text-align: left;
}
.team-box .team-col .ttl{
	text-align: center;
}
.team-box .team-col .ttl span{
	display: inline-block;
	color: #fff;
	font-size: 25px;
	font-style: normal;
	font-weight: 500;
	line-height: 150%; /* 37.5px */
	letter-spacing: 0.75px;
	background-color: #00f;
	padding: 5px 20px;
	border-radius: 80px;
	margin-bottom: 16px;
	text-align: center;
}
.team-box .team-col .subTtl{
	color: #00F;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 150%; /* 30px */
	letter-spacing: 0.2px;
	margin-bottom: 10px;
}
.team-box .team-col p + .subTtl{margin-top: 20px;}

@media only screen and (max-width: 769px) {
	.team-box{padding: 20px;}
	.team-box p{
		text-align: center;
	}
	.team-box p img{max-width:90%;margin-bottom: 20px;}
	.team-box .team-col{display: block;}
	.team-box .team-col>*{padding: 20px;}
	.team-box .team-col>*:nth-child(n + 2){width: 100%;}
	.team-box .team-col p{font-size: 18px;}
	.team-box .team-col .ttl{text-align: center;}
	.team-box .team-col .ttl span{
		font-size: 16px;
		padding: 5px 10px;
	}
	.team-box .team-col .subTtl{
		font-size: 18px;
		margin-bottom: 10px;
	}
	
	
}