@charset "UTF-8";



#kv {
	position: relative;
	max-height: 600px;
	/*
	border-bottom: 1px solid #e6e6e6;
	*/
}

#kv::after {
	position: absolute;
	content: "";
	display: block;
	width: calc((100vw - 1440px) / 2 + 2px);
	height: 100%;
	left: -1px;
	top: 0;
	z-index: 1;
	background: #eef5ff;
}


#kv .inner {
	box-sizing: border-box;
	position: relative;
	display: flex;
	justify-content: space-between;
	max-width: 1440px;
	z-index: 10;
	margin: 0 auto;
	padding: 0 40px;
	background: linear-gradient(90deg, #eef5ff 0%, rgba(238, 245, 255, 0.1) 78%);
}

#kv .content {
	box-sizing: border-box;
	width: 52.5%;
	padding: 90px 40px 80px 0;
}
#kv .pict {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	width: 47.5%;
	padding: 15px 0 10px;
}

#kv h1 {
	color: #3d6ed7;
}
#kv h1 span {
	display: block;
	font-size: 41px;
	font-weight: 700;
}
#kv h1 strong {
	display: block;
	font-size: 100px;
	font-weight: 700;
}
#kv h1 em {
	letter-spacing: -20px;
}


#kv .point {
	margin: 30px 0 0;
	padding: 16px 0;
	border: 0 solid #3d6ed7;
	border-width: 1px 0;
}
#kv .point ul {
	display: flex;
	justify-content: center;
}
#kv .point li {
	position: relative;
	padding-left: 38px;
	font-size: 23px;
	font-weight: 700;
	color: #20304d;
}

#kv .point li + li {
	margin-left: 42px;
}
#kv .point li + li::after {
	position: absolute;
	content: "";
	display: block;
	width: 1px;
	height: 28px;
	left: -22px;
	top: calc(50% - 14px);
	transform: rotate(25deg);
	background: #3d6ed7;
}
#kv .point li::before {
	position: absolute;
	display: block;
	content: "";
	width: 30px;
	height: 30px;
	left: 0;
	top: calc(50% - 15px);
	background: #3d6ed7 url(../img/icon_check.svg) 50% 55% no-repeat;
	background-size: 16px auto;
	border-radius: 15px;
}
#kv .point li + li::before {
}


#kv .link {
	margin: 36px 0 0;
}
#kv .link ul {
	display: flex;
	justify-content: space-between;
}
#kv .link li {
	width: calc(50% - 8px);
}
#kv .link a {
	width: 100%;
	height: 56px;
	border: 2px solid #dc1010;
	border-radius: 28px;
}

#kv .note {
	margin: 30px 0 0;
	font-size: 31px;
	font-weight: 600;
	letter-spacing: 0.75px;
	line-height: 1.5;
	text-align: center;
	color: #3d6ed7;
	white-space: nowrap;
}




#kv .scroll {
	position: absolute;
	width: 14px;
	height: 180px;
	right: 14px;
	bottom: 0;
	z-index: 100;
}
#kv .scroll .extra {
	display: flex;
	width: 180px;
	transform: rotate(90deg) translateY(-100%);
	transform-origin: left top;
}
#kv .scroll span {
	position: relative;
	display: block;
	font-size: 12px;
	font-weight: 500;
	font-family: "Josefin Sans", sans-serif;
	color: #3d6ed7;
}
#kv .scroll i {
	display: block;
	width: 130px;
	height: 1px;
	margin: 5px 0 0 10px;
	background: linear-gradient(90deg, rgba(61,110,215,1), rgba(61,110,215,0), rgba(61,110,215,0));
	background-size: 400% 1px;
	background-position: 100% 0;
	
	animation: scroll 2500ms infinite linear;
}

@keyframes scroll {
	0% {
		background-position: 0% 0;
	}
	25% {
		background-position: 100% 0;
	}
	50% {
		background-position: 100% 0;
	}
	75% {
		background-position: 0% 0;
	}
	100% {
		background-position: 0% 0;
	}
}





@media screen and (max-width:1380px) {
	#kv .point li {
		font-size: 18px;
	}
	#kv .note {
		font-size: 24px;
	}
}
@media screen and (max-width:1120px) {
	#kv .point li {
		font-size: 15px;
	}
	#kv .note {
		font-size: 20px;
	}

}






#logo-list {
	position: relative;
	z-index: 100;
	border-top: 1px solid #e6e6e6;
	background: #fff;
}

#logo-list .logo-box {
	overflow: hidden;
}
.logo-box ul {
	display: flex;
}
.logo-box li {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 140px;
}
.logo-box img {
	width: 140px;
	height: auto;
}
.logo-box .logos {
	position: relative;
	left: 0;
}
.logo-box:hover .logos {
	animation-play-state: paused !important;
}







#top-about {
	margin-top: 56px;
}


#top-about .content {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	margin-right: -80px;
	padding: 0 0 80px;
}
#top-about .content .fig {
	width: 53.3%;
}
#top-about .content .text {
	width: calc(46.7% - 40px);
	margin: 50px 0 0;
}
#top-about .content .text p {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.75;
}
#top-about .content .text p + p {
	margin-top: 1.75em;
}

@media screen and (max-width:1280px) {
	#top-about .content {
		margin-right: 0px;
		align-items: center;
	}
}




#top-about .document-list {
}










#top-issues {
	padding: 120px 0 0;
}

#top-issues .issues-box {
	display: flex;
	justify-content: space-between;
	margin: 40px 0 0;
}
#top-issues .issues-box .text {
	box-sizing: border-box;
	width: calc(100% - 586px - 60px);
	padding-right: 40px;
}
#top-issues .issues-box .slide {
	box-sizing: border-box;
	width: calc(586px + 60px);
	padding-left: 60px;
	padding-bottom: 56px;
	border-left: 1px solid #e6e6e6;
}


@media screen and (max-width:1180px) {
	#top-issues .issues-box .text {
		width: 40%;
		padding-right: 30px;
	}
	#top-issues .issues-box .slide {
		width: 60%;
		padding-left: 40px;
	}
}




#top-issues .issues-box h3 {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.5;
	color: #3D6ED7;
}
#top-issues .issues-box p {
	margin: 30px 0 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.778;
}


#top-issues .issues-box .slide h4 {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: calc(100% - 1px);
	padding-bottom: 4%;
	background: url(../img/top_issue_balloon.svg) 0 0 no-repeat;
	background-size: contain;
	aspect-ratio: 586 / 84;
	font-size: 28px;
	font-weight: 700;
	color: #F46D5C;
}
#top-issues .issues-box .slide .box {
	display: flex;
	justify-content: space-between;
	margin: 20px 0 0;
}
#top-issues .issues-box .slide .thumb {
	box-sizing: border-box;
	width: 250px;
	padding: 0 24px;
}
#top-issues .issues-box .slide dl {
	box-sizing: border-box;
	width: calc(100% - 250px);
}
#top-issues .issues-box .slide dt {
	font-size: 23px;
	font-weight: 700;
	color: #3D6ED7;
}
#top-issues .issues-box .slide dd {
	margin: 10px 0 0;
}
#top-issues .issues-box .slide dd li {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.75;
}
#top-issues .issues-box .slide dd li::before {
	content: "・";
}

#top-issues .issues-box .slick-dots {
	bottom: -49px;
}
#top-issues .issues-box .slick-arrow {
	bottom: -55px;
}
#top-issues .issues-box .slick-prev {
	left: calc(50% - 100px);
}
#top-issues .issues-box .slick-next {
	right: calc(50% - 100px);
}



#top-issues .issues-risk {
	margin: 56px 0 0;
}
#top-issues .issues-risk h3 {
	font-size: 40px;
	font-weight: 700;
	text-align: center;
	color: #3D6ED7;
}
#top-issues .issues-risk h3 strong {
	color: #f46d5c;
}
#top-issues .issues-risk .slide {
	margin: 56px 0 0;
}
#top-issues .issues-risk .slick-list {
	overflow: visible;
}
#top-issues .issues-risk .slide-item {
	box-sizing: border-box;
	border: 1px solid #3D6ED7;
	border-radius: 8px;
	overflow: hidden;
}
#top-issues .issues-risk .slick-slide {
	width: calc((100% - 32px * 3) / 4) !important;
}
#top-issues .issues-risk .slick-slide + .slick-slide {
	margin-left: 32px;
}

#top-issues .issues-risk dl {
	margin: 16px 15px;
}
#top-issues .issues-risk dt {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	color: #f46d5c;
}
#top-issues .issues-risk dd {
	margin: 10px 0 0;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
	color: #455167;
}

#top-issues .issues-arrow {
	padding: 40px 0 32px;
	text-align: center;
}
#top-issues .issues-arrow img {
	width: 34px;
	height: auto;
}


#top-issues .issues-result {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	height: 248px;
	background: url(../img/bg_top_issue.png) 50% 50% no-repeat;
	background-size: cover;
}
#top-issues .issues-result p {
	font-size: 50px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	color: #fff;
}















#top-why {
	padding: 120px 0;
	background: #FAFAFA;
}

#top-why h3 {
	margin: 40px 0 0;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.5;
	color: #3D6ED7;
}
#top-why p {
	margin: 30px 0 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.778;
}

#top-why .slide {
	margin: 56px 0 0;
}
#top-why .slick-list {
	overflow: visible;
}
#top-why .slide-item {
	box-sizing: border-box;
	border: 1px solid #3D6ED7;
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
}
#top-why .slick-slide {
	width: calc((100% - 32px * 3) / 4) !important;
}
#top-why .slick-slide + .slick-slide {
	margin-left: 32px;
}

#top-why dl {
	margin: 16px 15px;
}
#top-why dt {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	color: #3D6ED7;
}
#top-why dd {
	margin: 10px 0 0;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
	color: #455167;
}












#top-impact {
	padding: 120px 0;
	border-top: 1px solid #E6E6E6;
}

#top-impact h3 {
	margin: 40px 0 0;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.5;
	color: #3D6ED7;
}
#top-impact p {
	margin: 30px 0 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.778;
}

#top-impact .slide {
	margin: 56px 0 0;
	padding: 0 0 25px;
}
#top-impact .slick-list {
	overflow: visible;
}
#top-impact .slide-item {
	box-sizing: border-box;
	position: relative;
	padding: 0 0 25px;
	border: 1px solid #3D6ED7;
	border-radius: 8px;
	background: #fff;
	overflow: visible;
}
#top-impact .slick-slide {
	width: calc((100% - 32px * 3) / 4) !important;
}
#top-impact .slick-slide + .slick-slide {
	margin-left: 32px;
}

#top-impact .thumb {
	border-radius: 7px 7px 0 0;
	overflow: hidden;
}
#top-impact dl {
	margin: 20px 20px;
}
#top-impact dt {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	color: #3D6ED7;
	white-space: nowrap;
}
#top-impact dd {
	margin: 14px 0 0;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
}
#top-impact ul {
	margin: 16px 0 0;
}
#top-impact li {
	position: relative;
	padding-left: 26px;
	font-weight: 400;
}
#top-impact li + li {
	margin-top: 16px;
}
#top-impact li::before {
	position: absolute;
	display: block;
	content: "";
	width: 18px;
	height: 18px;
	left: 0;
	top: calc(50% - 9px);
	background: #3d6ed7 url(../img/icon_check.svg) 50% 52% no-repeat;
	background-size: 11px auto;
	border-radius: 9px;
}

#top-impact .link {
	position: absolute;
	width: 100%;
	height: 50px;
	margin-top: 25px;
}
#top-impact .link a {
	position: relative;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: calc(100% - 64px);
	height: 50px;
	margin: -25px 0 0 32px;
	color: #dc1010;
	font-weight: 500;
	border: 1px solid #dc1010;
	border-radius: 25px;
	background: #fff;
	overflow: hidden;
	will-change: transform;
}
#top-impact .link em {
	position: relative;
	z-index: 10;
}
#top-impact .link a::after {
	position: absolute;
	content: "";
	display: block;
	width: 102%;
	height: 100%;
	left: -1%;
	top: 0;
	z-index: 1;
	background: #dc1010;
	transform: scaleX(0);
	transform-origin: left center;
	transition: all 400ms ease;
}
#top-impact .link a:hover {
	color: #fff;
}
#top-impact .link a:hover::after {
	transform: scaleX(1);
}









/*
#top-banner {
	box-sizing: border-box;
	position: relative;
	width: 1120px;
	height: 342px;
	z-index: 10;
	margin: -171px auto;
	background: url(../img/top_banner_pc.png) 50% 50% no-repeat;
	background-size: cover;
	border: 4px solid #fff;
	border-radius: 8px;
	overflow: hidden;
}
#top-banner .copy {
	position: absolute;
	visibility: hidden;
}

#top-banner .link {
	box-sizing: border-box;
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	padding: 0 80px 50px;
}
#top-banner .link ul {
	display: flex;
	justify-content: space-between;
}
#top-banner .link li {
	width: calc(50% - 8px);
}
#top-banner .link li a {
	height:  80px;
	font-size: 21px;
	border: 2px solid #dc1010;
	border-radius: 40px;
}


@media screen and (max-width:1200px) {
	#top-banner {
		width: calc(100vw - 80px);
		height: calc((100vw - 80px) / 1120 * 342);
		margin: calc((100vw - 80px) / 1120 * 342 * -0.5) auto;
	}
	
	#top-banner .link {
		padding-bottom: calc((100vw - 80px) * 0.03);
	}
}
*/










#top-performance {
	position: relative;
	z-index: 5;
	padding: 120px 0 90px;
	border-top: 1px solid #e6e6e6;
	border-bottom: 1px solid #e6e6e6;
	background: #fafafa;
}

#top-performance .parformance-list {
	margin: 50px 0 0;
}


#top-performance .recommend-list h3 span {
	background: #fafafa;
}




#top-casestudy {
	padding: 95px 0 120px;
}











#top-solutions .slide2025 .slide-item {
	width: calc((100% - 64px) / 3);
	margin: 0 0 0 32px !important;
}
#top-solutions .slide2025 .slide-item:nth-child(3n + 1) {
	margin-left: 0 !important;
}
#top-solutions .slide2025 .slide-item:nth-child(n + 4) {
	margin-top: 50px !important;
}

#top-solutions .slide2025 .slide-item .thumb img {
	aspect-ratio: 704 / 394;
}
#top-solutions .slide2025 .slide-item:nth-child(n + 4) dd {
	min-height: 126px;
}










