@charset "UTF-8";

/*=======================================================
共通
=======================================================*/
.el-sec-mainTtl {
	font-size: 40px;
	position: relative;
	margin-bottom: 64px;
}
.el-sec-mainTtl::after {
	position: absolute;
	content: "";
	background: transparent linear-gradient(90deg, #566FFD 0%, #F566C6 100%);
	width: 76px;
	height: 8px;
	bottom: -16px;
	left: 50%;
	transform: translateX(-50%);
}
@media screen and (max-width : 750px){
    .el-sec-mainTtl {
	    font-size: 56px;
    }
	.el-sec-mainTtl::after {
		width: 200px;
    }
}
/*=======================================================
about
=======================================================*/
.bl-about {
	padding: 48px 0 72px;
	position: relative;
}
.bl-about::after {
	position: absolute;
	content: "";
	background: transparent linear-gradient(90deg, #F566C6 0%, #566FFD 100%);
	width: 100%;
	height: 22px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.bl-about-def {
	width: 100%;
	border: 1px solid #566FFD;
	padding: 32px 40px;
}
.bl-about-item {
    display: flex;
    align-items: center;
    padding: 0 24px 0 0;
}
.bl-about-item:not(:first-of-type) {
	padding-top: 16px;
}
.bl-about-item:not(:last-of-type) {
	padding-bottom: 12px;
	border-bottom: 1px solid #566FFD;
}
.bl-about-dttl {
	letter-spacing: 0.06em;
	width: 230px;
    display: flex;
    align-items: center;
}
.bl-about-ddata {
	width: 100%;
}
@media screen and (max-width : 750px){
	.bl-about {
		padding: 64px 0 112px;
	}
	.bl-about::after {
	    height: 56px;
    }
    .bl-about-dttl {
	    width: 344px;
    }
}
/*=======================================================
Section02
=======================================================*/
.bl-section02 {
	padding: 56px 0;
	background-color: #030303;
}
.bl-section02 .el-sec-mainTtl {
	color: #FFFFFF;
}
.bl-section02 .bl-card {
	padding: 0;
}
.bl-section02 .bl-card-body {
    background-color: #fff;
	padding: 16px 24px;
}
.bl-section02 .el-card-ttl {
	font-size: 20px;
	text-align: center;
	letter-spacing: 0.8px;
	margin-bottom: 8px;
}
@media screen and (max-width : 750px){
	.bl-section02 {
	    padding: 64px 0;
    }
	.bl-section02 .bl-cardUnit {
	    gap: 48px;
    }
	.bl-section02 .bl-card-body {
	    padding: 24px 32px;
    }
    .bl-section02 .el-card-ttl {
	    font-size: 36px;
		margin-bottom: 16px;
    }
}
/*=======================================================
staff
=======================================================*/
.bl-staff {
	padding: 80px 0;
	position: relative;
}
.bl-staff::before,
.bl-staff::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 22px;
	left: 50%;
	transform: translateX(-50%);
}
.bl-staff::before {
	background: transparent linear-gradient(270deg, #F566C6 0%, #566FFD 100%);
    top: 0;
}
.bl-staff::after {
    background: transparent linear-gradient(90deg, #F566C6 0%, #566FFD 100%);
	bottom: 0;
}
.el-staff-txt {
	text-align: center;
}
.el-staff-txt + .el-staff-txt {
	margin-top: 1.3em;
}
.el-staff-txt > a {
	color: #1a50b7;
	text-decoration: underline;
}
@media screen and (max-width : 750px){
    .bl-staff {
	    padding: 112px 0;
    }
    .bl-staff::before,
    .bl-staff::after {
	    height: 56px;
    }
}