@charset "UTF-8";
/* media query : mobile */
@media screen and (max-width:768px) {
}
/* media query : desktop */
@media screen and (min-width:769px) {
}
/* media query : tablet */
@media screen and (min-width:769px) and (max-width:1024px){
}
/* 3.1 home
--------------------------------------------------------------*/
/*  header */
/*
.home header {
	background-color: rgba(0,0,0,0.2);
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 100;
}
.home .header-logo a {
	background: url(../img/header-logo__white.svg) no-repeat center/contain;
}
.home .header.fixed .header-logo a {
	background: url(../img/header-logo__black.svg) no-repeat center/contain;
}

.home .header-nav .sub-menu a {
	color: #000000;
}
.home .maservice-link a:after,
.home .macolumn-link a:after {
	background: url(../img/arrow-down__white.svg) no-repeat center/contain;
}
.home .maservice-link a.active:after,
.home .macolumn-link a.active:after {
	background: url(../img/arrow-up__white.svg) no-repeat center/contain;
}
.home .headermain-nav__maservice a:after,
.home .headermain-nav__macolumn a:after {
	background: url(../img/arrow-down__white.svg) no-repeat center/contain;
}
.home .headermain-nav__maservice a.active:after,
.home .headermain-nav__macolumn a.active:after {
	background: url(../img/arrow-up__white.svg) no-repeat center/contain;
}
@media screen and (max-width:768px) {
	.home .header-hamburger {
		background: url(../img/menu-on__white.svg) no-repeat center/contain;
	}
	.home .header.fixed .header-hamburger {
		background: url(../img/menu-on__color.svg) no-repeat center/contain;
	}
	.home .header-hamburger.active {
		background: url(../img/menu-off__color.svg) no-repeat center/contain;
	}
}

@media screen and (min-width:769px) {
	.home .header-nav a {
		color: #FFFFFF;
	}
	.home .headertop-link a:after {
		background: url(../img/arrow-blank__white.svg) no-repeat center/contain;
	}
}
*/
/* home-mv */
.home-mv {
	opacity: 0;
	animation-delay: 0s;
    animation: fade-in 2s ease-out forwards;
}
@keyframes fade-in {
    100% {  opacity: 1;}
}
.home-mv .container {
	height: 100%;
}
.home-mv__wrap {
	display: flex;
    align-items: center;
    justify-content: center;
	flex-direction: column;
	height: 100%;
	z-index: 2;
}
.home-mv__title {
	animation-delay: 1s;
	animation: slide-in1 2s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}
.home-mv__point {
	width: 30rem;
	line-height: 0;
	animation-delay: 1.5s;
	animation: slide-in2 4s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}
.home-mv__button-box {
    display: block;
    width: 100%;
}
.home-mv__button-box .button a {
    border-radius: 3rem;
}
.home-mv__button-box strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
}
.home-mv__button-box span {
    font-size: 0.825rem;
}
.home-mv__button {
	animation-delay: 2s;
	animation: slide-in3 4s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}
@keyframes slide-in1 {
	0% {
	  transform: translateY(-70px);
	  opacity: 0;
	}
	100% {
	  transform: translateY(0);
	  opacity: 1;
	}
}
@keyframes slide-in2 {
	0% {
	  transform: translateY(-77px);
	  opacity: 0;
	}
	100% {
	  transform: translateY(0);
	  opacity: 1;
	}
}
@keyframes slide-in3 {
	0% {
	  transform: translateY(-85px);
	  opacity: 0;
	}
	100% {
	  transform: translateY(0);
	  opacity: 1;
	}
}
/* media query : mobile */
@media screen and (max-width:768px) {
	.home-mv {
		height: calc(100% - 60px);
		height: calc(100svh - 60px);
	}
	.home-mv__wrap {
		justify-content: flex-end;
	}
	.home-mv__title {
		max-width: 66%;
	}
	.home-mv__point {
		width: 85%;
	}
    .home-mv__button-box {
        display: block;
    }
	.home-mv__button {
		margin: 1rem auto;
		max-width: 80%;
	}
    .home-mv__button-box .button a {
        padding: 0.5rem 0.5rem;
    }
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.home-mv {
		height: 87%;
        height: 87vh;
	}
	.home-mv__wrap {
		max-width: 32rem;
		justify-content: center;
	}
	.home-mv__title {
		max-width: 25rem;
	}
	.home-mv__point {
		width: 32rem;
		margin-top: 2rem;
	}
    .home-mv__button-box {
        display: flex;
        justify-content: space-between;
    }
	.home-mv__button {
        width: 49%;
        margin: 2rem 0 0;
	}
    .home-mv__button-box .button a {
        padding: 0.7rem 0.5rem;
    }
}
/* media query : tablet */
@media screen and (min-width:769px) and (max-width:1024px){
	.home-mv__wrap {
		margin-left: auto;
		margin-right: auto;
		justify-content: flex-end;
	}
	.home-mv__button {
		margin-bottom: 10%;
	}
}
/* mov */
.home-mv__view {
	position: absolute;
    top: 0;
	width: 100%;
    height: 100%;
    left: 0;
}
.home-mv__view img {
	width: 100%;
	height: 100%;
    object-fit: cover;
}
.zoom {
	overflow: hidden;
}
.zoom img {
	animation: animationZoom 20s ease-in-out infinite;
}
@keyframes animationZoom {
	50% { transform:scale(1.05)} 
}
.home-mv__cm {
	position: absolute;
	z-index: 100;
	background: #fff;
	border-top-left-radius: 1.25rem;
	border-bottom-left-radius: 1.25rem;
	right: 0;
	overflow: hidden;
	border-top: 2px solid #7f3bff;
	border-left: 2px solid #7f3bff;
	border-bottom: 2px solid #7f3bff;
}
.home-mv__cm-link {
	display: flex;
    align-items: center;
}
.home-mv__cm-img {
	display: block;
	position: relative;
	width: 40%;
    margin-bottom: 0;
}
.home-mv__cm-img:before {
	display: block;
    content: "";
	padding-top: 56.25%;
}
.home-mv__cm-img img {
	position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.home-mv__cm-desc {
    width: 58%;
    padding-left: 3%;
	padding-right: 3%;
	line-height: 1.8;
}
.home-mv__cm-desc strong {
	display: block;
	font-size: 0.925rem;
}
.home-mv__cm-desc span {
	display: block;
	font-size: 0.825rem;
}
/* media query : mobile */
@media screen and (max-width:768px) {
	.home-mv__cm {
		width: 84%;
    	bottom: -2.4rem;
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.home-mv__cm {
		width: 23rem;
		bottom: 4%;
	}
	
}
/* scroll */
.home-scroll {
	position:absolute;
	height:120px;
	left: 2rem;
	z-index: 3;
}
.home-scroll__bar {
	position: absolute;
	left:-6px;
	color: #FFFFFF;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
}
.home-scroll::after {
	content: "";
	position: absolute;
	top: 0;
	width: 2px;
	background: linear-gradient(0deg,#7f3bff 0,#3573ff 100%);
	background: -webkit-linear-gradient(90deg, #7f3bff 0,#3573ff 100%);
	animation: scroll-bar 1.4s ease-in-out infinite;
	opacity:0;
}
.home-scroll__txt {
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    display: block;
    line-height: 1;
    white-space: nowrap;
    margin: 0 auto;
    color: #FFFFFF;
}

/* media query : mobile */
@media screen and (max-width:768px) {
	.home-scroll {
		bottom: 20px;
	}
	.home-scroll__bar {
		top: 10px;
	}
	.home-scroll__txt {
	}
	@keyframes scroll-bar {
		0%{
			height:0;
			top:60px;
			opacity: 0;
		}
		30%{
			opacity: 1;
			height:60px;
		}
		100%{
			height:0;
			opacity: 0;
			top:120px;
		}
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.home-scroll {
		bottom: 40px;
	}
	.home-scroll__bar {
		top: -56px;
	}
	@keyframes scroll-bar {
		0%{
			height:0;
			top:0;
			opacity: 0;
		}
		30%{
			opacity: 1;
			height:120px;
		}
		100%{
			height:0;
			opacity: 0;
			top:120px;
		}
	}

}

.fadeUp {
    opacity: 0;
    transform: translate(0, 70px);
    transition: transform 800ms, opacity 1000ms;
}
.fadeLeft {
    opacity: 0;
    transform: translate(-70px, 0);
    transition: transform 800ms, opacity 1000ms;
}
.fadeRight {
    opacity: 0;
    transform: translate(70px, 0);
    transition: transform 800ms, opacity 1000ms;
}
.fadeUp.appear {
    opacity: 1;
    transform: translate(0, 0);
}
.fadeLeft.appear {
    opacity: 1;
    transform: translate(0, 0);
}
.fadeRight.appear {
    opacity: 1;
    transform: translate(0, 0);
}

/* 3.2.0 home-main
--------------------------------------------------------------*/
.home-main {
	padding: 0.1px 0;
	overflow: hidden;
}
.home-attention p {
    border-radius: 1.25rem;
    letter-spacing: 0px;
    line-height: 1.5;
    font-size: 10px;
}
/* media query : mobile */
@media screen and (max-width:768px) {
	.home-attention {
		margin: 2rem 0;
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.home-attention {
		margin: 3rem 0;
	}
}
.home-strength:after {
	content: "";
	display: block;
	position: absolute;
    height: 50%;
	right: 0;
	background: rgba(0,0,0,0.05);
	z-index: -2;
}
.home-strength:before {
	content: "";
	display: block;
	position: absolute;
    height: 50%;
	left: 0;
	opacity: 0.4;
	z-index: -1;
}
.home-strength1:before {
	background: url(../img/home-strength__bg1.jpg) no-repeat center/cover;
}
.home-strength2:before {
	background: url(../img/home-strength__bg2.jpg) no-repeat center/cover;
}
.home-strength3:before {
	background: url(../img/home-strength__bg3.jpg) no-repeat center/cover;
}
.home-strength .container:before {
	content: "";
    display: block;
    position: absolute;
    width: 4px;
    z-index: 1;
    background: linear-gradient(0deg,#7f3bff 0,#3573ff 100%);
    background: -webkit-linear-gradient(90deg, #7f3bff 0,#3573ff 100%);
}
/* media query : mobile */
@media screen and (max-width:768px) {
	.home-strength:after {
		width: 72%;
		top: 20%;
	}
	.home-strength:before {
		width: 72%;
		top: 25%;
	}
	.home-strength .container:before  {
		height: 19rem;
		right: 3rem;
		top: -5rem;
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.home-strength:after {
		width: 50%;
		top: 16%;
	}
	.home-strength:before {
		width: 70%;
		top: 24%;
		background-attachment: fixed !important;
	}
	.home-strength .container:before  {
		height: 16rem;
		right: 5rem;
		top: -8rem;
	}
}
/* 3.2.1 home-intro
--------------------------------------------------------------*/
.home-intro__box {
    border-radius: 1.25rem;
	background: #fff;
    border: 1px solid #D8D8D8;
}
.home-intro h2 {
    font-weight: normal;
	letter-spacing: 5px;
    text-align: center;
    margin-bottom: 3rem;
}
.home-intro ul {
	display: flex;
	align-items: center;
    justify-content: center;
}
.home-intro li {
	padding: 3px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
	background: linear-gradient(90deg,#7f3bff 0,#3573ff 100%);
	background: -webkit-linear-gradient(0deg, #7f3bff 0,#3573ff 100%);
}
.home-intro a {
	display: flex;
	justify-content: center;
    align-items: center;
    flex-direction: column;
	background: #FFF;
	width: 12em;
    height: 12em;
	text-align: center;
	line-height: 1.5;
    border-radius: 50%;
	padding: 1em;
}
.home-intro a:after {
	content: "";
    display: block;
    position: absolute;
    width: 0.6rem;
    height: 0.6rem;
    bottom: 1rem;
    right: calc(50% - 0.3rem);
	background: url(../img/arrow-down__black.svg) no-repeat center/contain;
}
.home-intro a:hover {
	opacity: 1;
}
.home-intro span {
	margin-bottom: 0.5rem;
}
.home-intro small {
	display: block;
    font-size: 0.725em;
    letter-spacing: 5px;
}
.home-intro strong {
	font-family: 'Jost', sans-serif;
	font-size: 2em;
    font-weight: 500;
}
.home-intro h3 {
	font-size: 1em;
    font-weight: 400;
}
/* media query : mobile */
@media screen and (max-width:768px) {
	.home-intro__box {
		padding: 3rem 0;
	}
	.home-intro figure {
		max-width: 14rem;
		margin: 0 auto 1rem;
	}
	.home-intro h2 {
		font-size: 1rem;
		padding: 0 1rem;
	}
	.home-intro ul {
		font-size: 15px;
		background: url(../img/home-intro__bg-sp.svg) no-repeat center/contain;
		flex-direction: column;
		padding: 0.9em;
	}
	.home-intro li {
		margin: 1em 0;
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.home-intro__box {
		padding: 5rem 0;
	}
	.home-intro figure {
		max-width: 20rem;
		margin: 0 auto 2rem;
	}
	.home-intro h2 {
		font-size: 1.6rem;
	}
	.home-intro ul {
		font-size: 15px;
		background: url(../img/home-intro__bg.svg) no-repeat center/contain;
		flex-direction: row;
		padding: 1.9em;
	}
	.home-intro li {
		margin: 0 1em;
	}
}
/* media query : tablet */
@media screen and (min-width:769px) and (max-width:1024px){
	.home-intro ul {
		font-size: 1.6vw;
	}
}
/* 3.2.2 home-strength
--------------------------------------------------------------*/
.home-strength {

}
.home-strength__title {
	margin-bottom: 2rem;
}
.home-strength__title h2 {
	font-weight: 500;
	line-height: 1.5;
}	
.home-strength__title span {
	display: block;
}
.home-strength__title span small {
	display: block;
    font-size: 0.725rem;
    letter-spacing: 5px;
}
.home-strength__title span strong {
	font-family: 'Jost', sans-serif;
	font-size: 2rem;
    font-weight: 500;
}
.home-strength__desc {
	border-radius: 1.25rem;
	background-color: #fff;
	font-size: 1rem;
}
.home-strength__desc strong {
	font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}
.home-strength__desc span {
	font-weight: normal;
}
/* media query : mobile */
@media screen and (max-width:768px) {
	.home-strength__title h2 {
		font-size: 2rem;
		margin-bottom: 2rem;
	}
	.home-strength__desc {
		padding: 1.5rem 2rem;
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.home-strength__title {
		display: flex;
	}
	.home-strength__title h2 {
		width: 40%;
		font-size: 2.5rem;
	}
	.home-strength__desc {
		width: calc(60% - 5rem);
		margin-top: 5.5rem;
		padding: 2rem 2.5rem;
	}
}
/* 3.2.3 home-strength1
--------------------------------------------------------------*/
.home-strength__fbcloud {
	text-align: center;
    border-radius: 1.25rem;
	margin-bottom: 3rem;
	background: #fff;
}
.home-strength__fbcloud .button {
	margin: 2rem auto 1rem;
}
.home-strength__fbcloud dt {
	padding: 1rem;
}
.home-strength__fbcloud dd {
	border: 2px solid #7f3bff;
	border-radius: 0.8rem;
	padding: 1rem
}
.home-strength__fbcloud h4 {
	font-weight: 500;
    font-size: 1.4rem;
    margin-bottom: 2rem;
}
.home-strength__fbcloud figure {
	margin-bottom: 2rem;
}
.home-strength__fbcloud figure img {
	width: auto;
}
.home-strength__fbcloud p {
	font-size: 0.825rem;
}
.home-strength__company {
	background: #EFEFEF;
}
.home-strength__company li {
    overflow: hidden;
	box-shadow: 0px 0px 0.5rem rgb(0 0 0 / 10%);
}

/* media query : mobile */
@media screen and (max-width:768px) {
	.home-strength__fbcloud {
		padding: 1rem;
	}
	.home-strength__fbcloud dt {
		margin-bottom: 2rem;
	}
	.home-strength__fbcloud figure img {
		max-height: 8rem;
	}
	.home-strength__company li {
		margin: 0 0.2rem 1rem;
		border-radius: 0.2rem;
	}
	.home-strength__company-slide1 {
		padding-top: 1rem;
	}
	.home-strength__company-slide4 li {
		margin-bottom: 1rem;
	}
	
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.home-strength__fbcloud {
		display: flex;
		justify-content: space-between;
		padding: 2rem;
	}
	.home-strength__fbcloud dt {
		width: 42%;
	}
	.home-strength__fbcloud dd {
		width: 54%;
	}
	.home-strength__fbcloud figure img {
		max-height: 17rem;
	}
	.home-strength__company li {
		margin: 0 0.5rem 2rem;
		border-radius: 0.5rem;
	}
	.home-strength__company-slide1 {
		padding-top: 2rem;
	}
	.home-strength__company-slide4 li {
		margin-bottom: 2rem;
	}
	
}
/* 3.2.4 home-strength2
--------------------------------------------------------------*/
.about-advisor__list {
	margin: 0 auto;
}
.about-advisor__list .slick-slide{
	margin-right: 1rem!important;
	margin-left: 1rem!important;
}
.about-advisor__list dd {
    border-radius: 1.25rem;
	overflow: hidden;
	margin-bottom: 2rem;
}
.about-advisor__title {
	background: linear-gradient(0deg,#DEE7EE 0,#C7D6E1 100%);
	background: -webkit-linear-gradient(90deg,#DEE7EE 0,#C7D6E1 100%);
}
.about-advisor__title figure {
	margin-bottom: 0;
	line-height: 0;
}
.about-advisor__title div {
	padding: 1rem;
}
.about-advisor__title h4,
.about-advisor__title span {
	font-weight: 500;
}
.about-advisor__title a {
	display: inline-block;
    margin-top: 0.5rem;
    color: #3573ff;
    text-decoration: underline;
}
.about-advisor__detail {
	padding: 1rem;
	background: #fff;
}
.about-advisor__detail span {
	display: block;
	font-size: 0.825rem;
	margin-bottom: 0.5rem;
}
.about-advisor__detail h3 {
	display: inline;
}
.about-advisor__detail span strong {
	font-size: 1rem;
	margin-right: 1rem;
}
.about-advisor__detail p {
	font-size: 0.825rem;
}
.about-advisor__list .slick-dots li {
	margin: 0;
	width: 1.4rem;
}
.about-advisor__list .slick-dots li button {
	width: 1.4rem;
}
.about-advisor__list .slick-dots li button:before {
	content: "";
	width: 3rem;
	height: 2px;
	background: #ccc;
	opacity: 1;
	top: 50%;
}
.about-advisor__list .slick-dots li.slick-active button:before {
	background: linear-gradient(90deg,#7f3bff 0,#3573ff 100%);
	background: -webkit-linear-gradient(0deg, #7f3bff 0,#3573ff 100%);
}
.about-advisor__list .slick-arrow {
	width: 3rem;
	height: 3rem;
    z-index: 50;
}
.about-advisor__list .slick-prev {
	left: 2.5rem;
}
.about-advisor__list .slick-next {
	right: 2.5rem
}
.about-advisor__list .slick-arrow:before {
	content: "";
    display: block;
    width: 3rem;
    height: 3rem;
    opacity: 1;
}
.about-advisor__list .slick-prev:before {	
	background: url(../img/link-left__solid-circle.svg) no-repeat center/contain;
}
.about-advisor__list .slick-next:before {
	background: url(../img/link-right__solid-circle.svg) no-repeat center/contain;
}
.home-strength__industry {
	background: #EFEFEF;
}
.home-strength__industry figure {
	display: block;
	border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 0.5rem;
	box-shadow: 0px 0px 0.5rem rgb(0 0 0 / 10%);
}
.home-strength__industry figure:before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.4);
	z-index: 1;
}
.home-strength__industry span {
    display: block;
    text-align: center;
	line-height: 1;
}
/* media query : mobile */
@media screen and (max-width:768px) {
	.about-advisor__title {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.about-advisor__title figure {
		max-width: 12rem;
		margin: 0 auto;
	}
	.about-advisor__title div {
		width: calc(100% - 2rem);
	}
	.about-advisor__title div h4 {
		font-size: 1rem;
	}
	.about-advisor__detail span strong {
		display: block;
	}
	.home-strength__industry-slide1 li {
		margin: 1rem 0.5rem 0.5rem;
	}
	.home-strength__industry-slide2 li {
		margin: 0.5rem 0.5rem 1rem;
	}
	.home-strength__industry span {
		font-size: 0.725rem;
	}
	.about-advisor__list .slick-arrow {
		top: 6rem;
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.about-advisor__title {
		display: flex;
		justify-content: space-between;
	}
	.about-advisor__title figure {
		width: 13rem;
	}
	.about-advisor__title div {
		width: calc(100% - 16rem);
	}
	.about-advisor__title div h4 {
		font-size: 1.2rem;
	}
	.about-advisor__detail span {

	}
	.about-advisor__detail p {

	}
	.home-strength__industry-slide1 li {
		margin: 2rem 1rem 1rem;
	}
	.home-strength__industry-slide2 li {
		margin: 1rem 1rem 2rem;
	}
	.home-strength__industry span {
		font-size: 0.825rem;
	}
	.about-advisor__list .slick-arrow {
		top: calc(50% - 1.5rem);
	}
}

/* media query : アドバイザー紹介文高さ */
@media screen and (max-width:430px){
	.about-advisor__list dd {

	}
}
@media screen and (min-width:431px) and (max-width:768px){
	.about-advisor__list dd {

	}
}
@media screen and (min-width:769px) and (max-width:1024px){
	.about-advisor__detail {
		min-height: 11.6rem;
	}
}
@media screen and (min-width:1025px) and (max-width:1087px){
	.about-advisor__detail {
		min-height: 14.9rem;
	}
}
@media screen and (min-width:1068px) and (max-width:1159px){
	.about-advisor__detail {
		min-height: 13.3rem;
	}
}
@media screen and (min-width:1160px) and (max-width:1269px){
	.about-advisor__detail {
		min-height: 11.7rem;
	}
}
@media screen and (min-width:1270px) and (max-width:1424px){
	.about-advisor__detail {
		min-height: 10rem;
	}
}
@media screen and (min-width:1425px) and (max-width:1663px){
	.about-advisor__detail {
		min-height: 8.5rem;
	}
}
@media screen and (min-width:1664px) {
	.about-advisor__detail {
		min-height: 7rem;
	}
}
/* 3.2.5 home-strength3
--------------------------------------------------------------*/
.home-strength__cases h2 {
	text-align: center;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
	margin-top: 8rem;
}
.cases-contents__list-slide {
	margin-bottom: 4rem !important;
}
.cases-contents__list-item {
    background-color: #FFF;
    border-radius: 1.25rem;
    overflow: hidden;
	margin: 0 1rem 2rem;
}
.cases-contents__list-img {
	display: block;
    position: relative;
}
.cases-contents__list-img:before {
    display: block;
    content: "";
    padding-top: 65%;
}
.cases-contents__list-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.cases-contents__list-txt {
	padding: 1rem;
}
.cases-contents__list-category {
	display: inline-block;
    border-radius: 2rem;
	margin-bottom: 1rem;
    background: linear-gradient(90deg,#7f3bff 0,#3573ff 100%);
    background: -webkit-linear-gradient(0deg, #7f3bff 0,#3573ff 100%);
	font-size: 0.825rem;
	padding: 0.1rem 0.8rem;
    color: #fff;
}
.cases-contents__list-date {
	display: inline-block;
    letter-spacing: 0;
}
.cases-contents__list-title {
	line-height: 1.5;
    margin-bottom: 1rem;
    min-height: 3rem;
}
.cases-contents__list-company {
	font-size: 0.725rem;
	line-height: 1.2;
	min-height: 1.5rem;
}
.cases-contents__list-slide .slick-dots li {
	margin: 0;
	width: 3rem;
}
.cases-contents__list-slide .slick-dots li button {
	width: 3rem;
}
.cases-contents__list-slide .slick-dots li button:before {
	content: "";
	width: 3rem;
	height: 2px;
	background: #ccc;
	opacity: 1;
	top: 50%;
}
.cases-contents__list-slide .slick-dots li.slick-active button:before {
	background: linear-gradient(90deg,#7f3bff 0,#3573ff 100%);
	background: -webkit-linear-gradient(0deg, #7f3bff 0,#3573ff 100%);
}
.cases-contents__list-slide .slick-arrow {
	width: 3rem;
	height: 3rem;
    z-index: 50;
}
.cases-contents__list-slide .slick-prev {
	left: 2.5rem;
}

.cases-contents__list-slide .slick-next {
	right: 2.5rem;
}
.cases-contents__list-slide .slick-arrow:before {
	content: "";
    display: block;
    width: 3rem;
    height: 3rem;
    opacity: 1;
}
.cases-contents__list-slide .slick-prev:before {
	background: url(../img/link-left__solid-circle.svg) no-repeat center/contain;
}
.cases-contents__list-slide .slick-next:before {
	background: url(../img/link-right__solid-circle.svg) no-repeat center/contain;
}
/* media query : mobile */
@media screen and (max-width:768px) {
	.cases-contents__list-txt {
		min-height: 12rem;
	}
	.cases-contents__list-category {
		margin-right: 0.1rem;
	}
	.cases-contents__list-category a {
		padding: 0.3rem 0.5rem;
		font-size: 0.725rem;
	}
	.cases-contents__list-date span {
		font-size: 0.725rem;
	}
	.cases-contents__list-title {
		font-size: 0.925rem;
	}
	.cases-contents__list-slide .slick-arrow {
		top: 7rem;
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.cases-contents__list-txt {
		min-height: 10.7rem;
	}
	.cases-contents__list-category {
		margin-right: 1rem;
	}
	.cases-contents__list-category a {
		padding: 0.3rem 1rem;
		font-size: 0.825rem;
	}
	.cases-contents__list-date span {
		font-size: 0.825rem;
	}
	.cases-contents__list-slide .slick-arrow {
		top: calc(50% - 1.5rem);
	}
	
}

/* 20231027 「3分でわかるfundbook」Banner追加
--------------------------------------------------------------*/
.banner {
	margin-top: 5rem;
}
.home-intro .banner-img {
	display: block;
	max-width: 35rem;
	border-radius: 1.25rem;
	border: 1px solid #D8D8D8;
	line-height: 0;
	overflow: hidden;
	margin: 0 auto;
	width: 100%;
	height: auto;
	padding: 0;
}
.home-intro .banner-img:after {
	content: "";
	position: absolute;
	display: block;
	width: 5rem;
	height: 3.6rem;
	top: calc(50% - 1.8rem);
	left: calc(50% - 2.5rem);
	opacity: 1;
	background: url(../img/youtube.png) no-repeat center/contain;
}
.banner-txt {
	text-align: center;
	margin-bottom: 2rem;
}
.banner-txt h2 {
	font-size: 2rem;
	margin-bottom: 0;
	font-weight: 600;
	line-height: 1.5;
}
.banner-txt p {
	font-size: 1.5rem;
}
/* media query : mobile */
@media screen and (max-width:768px) {

}
/* media query : desktop */
@media screen and (min-width:769px) {

}

/* 20231115 業種記事とフローコンテンツ追加
--------------------------------------------------------------*/
/* common */
.home-h2 {
	text-align: center;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
}
.home-h2:after {
	content: "";
    display: block;
    width: 3.6rem;
    height: 0.15rem;
    border-radius: 0.15rem;
    background: linear-gradient(90deg, #7f3bff 0, #3573ff 100%);
    background: -webkit-linear-gradient(0deg, #7f3bff 0, #3573ff 100%);
	margin: 1.5rem auto 0;
}
.home-p {
	text-align: center;
	margin-bottom: 4rem;
}
/* media query : mobile */
@media screen and (max-width:768px) {

}
/* media query : desktop */
@media screen and (min-width:769px) {

}
/* home-indusry */
.section.home-indusry {
	background: url(../img/home-industry__bg.jpg) no-repeat center/cover;
}
.home-indusry__list {
	display: flex;
    align-items: center;
	justify-content: center;
    
}
.home-indusry__list a {
	display: flex;
    background: #FFF;
    padding: 1.5rem 2rem;
    align-items: center;
    line-height: 0;
    border-radius: 0.6rem;
	gap: 1rem;
	box-shadow: 10px 10px 30px rgb(0 0 0 / 10%);
}
.home-indusry__list a:after {
	content: "";
	position: absolute;
	right: 2rem;
    display: block;
    width: 1.8rem;
    height: 1.8rem;
	background: url(../img/link-right__solid-circle.svg) no-repeat center / contain;
}
.home-indusry__list i {
	width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-indusry__list h3 {
	font-weight: 500;
}
/* media query : mobile */
@media screen and (max-width:768px) {
	.home-indusry__list {
		flex-direction: column;
		gap: 1.5rem;
	}
	.home-indusry__list li {
		width: 100%;
	}
	.home-indusry__list h3 {
		font-size: 1rem;
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.home-indusry__list {
		flex-wrap: wrap;
		gap: 2rem;
	}
	.home-indusry__list li {
		width: calc(34% - 2rem);
	}
	.home-indusry__list h3 {
		font-size: 1.2rem;
	}
}
/* home-flow */
.home-flow__list {
	display: flex;
	gap: 2rem;
}
.home-flow__list li {
	width: 100%;
    display: flex;
    flex-direction: column;
}
.home-flow__list li:after {
	content: "";
	position: absolute;
	width: 1.5rem;
	height: 1.5rem;
	background: url(../img/home-flow__arrow.svg) no-repeat center/contain;
}
.home-flow__list li:last-child:after {
	display: none;
}
.home-flow__list div {
    display: flex;
    align-items: center;
    text-align: center;
    line-height: 1;
	border-top-left-radius: 0.6rem;
    border-top-right-radius: 0.6rem;
	overflow: hidden;
}
.home-flow__list li:nth-child(1) div {
	background: url(../img/home-flow__01.jpg) no-repeat center/cover;
}
.home-flow__list li:nth-child(2) div {
	background: url(../img/home-flow__02.jpg) no-repeat center/cover;
}
.home-flow__list li:nth-child(3) div {
	background: url(../img/home-flow__03.jpg) no-repeat center/cover;
}
.home-flow__list li:nth-child(4) div {
	background: url(../img/home-flow__04.jpg) no-repeat center/cover;
}
.home-flow__list li:nth-child(5) div {
	background: url(../img/home-flow__05.jpg) no-repeat center/cover;
}
.home-flow__list li:nth-child(6) div {
	background: url(../img/home-flow__06.jpg) no-repeat center/cover;
}
.home-flow__list li:nth-child(7) div {
	background: url(../img/home-flow__07.jpg) no-repeat center/cover;
}
.home-flow__list li:nth-child(8) div {
	background: url(../img/home-flow__08.jpg) no-repeat center/cover;
}
.home-flow__list b {
	background: linear-gradient(90deg, #7f3bff 0, #3573ff 100%);
	background: -webkit-linear-gradient(0deg, #7f3bff 0, #3573ff 100%);
    color: #FFF;
}
.home-flow__list h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #FFF;
    line-height: 1.4;
}
.home-flow__list p {
	background: #FFF;
    height: 100%;
	border-bottom-right-radius: 0.6rem;
    border-bottom-left-radius: 0.6rem;
	overflow: hidden;
}
.home-flow__list a {
	display: block;
	color: #3573ff;
	font-size: 0.825rem;
    padding-top: 0.5rem;
}
/* media query : mobile */
@media screen and (max-width:768px) {
	.home-flow__list {
		flex-direction: column;
	}
	.home-flow__list li:after {
		left: calc(50% - 0.65rem);
		bottom: -1.8rem;
		transform: rotate(90deg);
	}
	.home-flow__list div {
		flex-direction: row;
		min-height: 3rem;
		padding: 1rem;
		gap: 1rem;
	}
	.home-flow__list b {
        width: 2.5rem;
        height: 2.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 2rem;
        text-align: center;
        letter-spacing: 0;
        line-height: 0;
    }
	.home-flow__list p {
		padding: 0.5rem 1rem;
		line-height: 1.8;
		letter-spacing: 1px;
		font-size: 1rem;
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.home-flow__list b {
		width: 100%;
		top: 0;
	}
	.home-flow__list li:after {
		top: calc(50% - 0.65rem);
		right: -1.8rem;
	}
	.home-flow__list div {
		padding-top: 2.2rem;
		flex-direction: column;
		justify-content: center;
		min-height: 6rem;
	}
	.home-flow__list b {
		position: absolute;
    	top: 0;
		width: 100%;
		padding: 0.6rem 0;
	}
	.home-flow__list p {
		padding: 0.4rem 0.7rem 0.7rem;
		line-height: 1.5;
		letter-spacing: normal;
		font-size: 0.925rem;
	}
}

/* 20241027 「採用情報はこちら」Banner追加
--------------------------------------------------------------*/
.home-banner .container {
	line-height: 0;
	text-align: center;
}
.home-banner a {
	display: inline-block;
	line-height: 0;
	border-radius: 1.25rem;
	overflow: hidden;
}
.home-banner a:hover {
	opacity: 1;
}
.home-banner img {
	width: auto;
	transition: 0.3s;
	max-width: 30rem;
}
@media screen and (min-width: 769px) {
	.home-banner {
		margin-bottom: -5rem;
	}
	.home-banner img:hover {
		transform: scale(1.05);
		transition: 0.3s;
	}
}
@media screen and (max-width: 768px) {
	.home-banner {
		margin-bottom: -4rem;
	}
}

/* 20250128 グループ会社ロゴ追加
--------------------------------------------------------------*/
.home-groupcompany__title {
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.home-groupcompany__title img {
	width: 3rem;
}
.home-groupcompany__title p {
	line-height: 1.4;
}
.home-groupcompany {
	background: #EFEFEF;
}
.home-groupcompany li {
    overflow: hidden;
	box-shadow: 0px 0px 0.5rem rgb(0 0 0 / 10%);
}
/* media query : mobile */
@media screen and (max-width:768px) {
	.home-groupcompany__title {
		padding-top: 1rem;
	}
	.home-groupcompany__title p {
		font-size: 0.825rem;
	}
	.home-groupcompany ul {
		padding-top: 1rem;
	}
	.home-groupcompany li {
		margin: 0 0.5rem 1rem;
		border-radius: 0.2rem;
	}	
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.home-groupcompany__title {
		padding-top: 2rem;
	}
	.home-groupcompany ul {
		padding-top: 2rem;
	}
	.home-groupcompany li {
		margin: 0 1rem 2rem;
		border-radius: 0.5rem;
	}
}

/* 20250728 ヘッダースライダーに変更
--------------------------------------------------------------*/
@media screen and (max-width:768px) {
	.home-mv1 {
		background: url(../img/home-mv-model_sp.jpg) no-repeat center / cover;
	}
}
@media screen and (min-width:769px) {
	.home-mv1 {
		background: url(../img/home-mv-model_bg.jpg) no-repeat center / cover;
		height: 44rem;
	}
	.home-mv1 .container {
		display: flex;
		justify-content: center;
	}
	.home-mv1 .home-mv__wrap{
		width: 50%;
		max-width: 32rem;
	}
	.home-mv1 .home-mv__img {
		width: 50%;
		height: 100%;
		overflow: hidden;
		display: flex;
		align-items: center;
		justify-content: center;
	}
}

.home-attention {
	text-align: center;
}
.home-banner .container {
	line-height: 1.5;
}
.home-banner__slide {
	display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}
.home-banner__slide li {
	width: 100%;
}
.home-banner__slide  a {
	display: block;
}
.home-banner__slide  img {
	width: 100%;
	max-width: 100%;
}
.home-banner h2 {
	background: linear-gradient(90deg, #7f3bff 0, #3573ff 100%);
	background: -webkit-linear-gradient(0deg, #7f3bff 0, #3573ff 100%);
	color: #FFF;
	border-radius: 4rem;
	font-weight: 500;
}
.home-banner h2:after {
	content: "";
    position: absolute;
    border: 0.8rem solid transparent;
    border-top: 1rem solid #675ae4;
    bottom: -1.7rem;
    left: calc(50% - 0.4rem);
}
@media screen and (max-width:768px) {
	.home-mv__title {
		display: none;
	}
	.home-banner {
		margin-bottom: -3rem;
	}
	.home-banner h2 {
		font-size: 1rem;
		padding: 0.8rem 1rem;
		margin-bottom: 1rem;
	}
	.home-banner__slide {
		flex-direction: column;
	}
	.home-banner__slide .slick-arrow {
		display: none;
	}
	.home-banner__slide .pc {
		display: none;
	}
}
@media screen and (min-width:769px) {
	.home-banner h2 {
		display: inline-block;
		font-size: 1.5rem;
		padding: 0.9rem 2rem;
		margin-bottom: 2rem;
	}
	.home-banner__slide {
		max-width: 60rem;
		margin-left: auto;
		margin-right: auto;
	}
	.home-banner__slide .slick-arrow {
		width: 3rem;
		height: 3rem;
		z-index: 50;
		top: calc(50% - 0.5rem);
	}
	.home-banner__slide .slick-arrow:before {
		content: "";
		display: block;
		width: 3rem;
		height: 3rem;
		opacity: 1;
	}
	.home-banner__slide .slick-prev:before {
		background: url(../img/link-left__solid-circle.svg) no-repeat center / contain;
	}
	.home-banner__slide .slick-next:before {
		background: url(../img/link-right__solid-circle.svg) no-repeat center / contain;
	}
	.home-banner__slide .slick-prev {
		left: -4rem;
	}
	.home-banner__slide .slick-next {
		right: -4rem;
	}
	.home-banner__slide .sp {
		display: none;
	}

}


/* 20251027 ヘッダーモデル削除
--------------------------------------------------------------*/
.home-mv2 {
	display: flex;
    justify-content: center;
}
.home-mv2 .home-mv__title {
	max-width: 100%;
	text-align: center;
    color: #FFF;
	line-height: 1.4;
}
.home-mv__mov {
	position: absolute;
	bottom: 0;
	left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.home-mv__mov:before {
	display: block;
    content: "";
    padding-top: 56.25%;
}
.home-mv__mov video {
	position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
@media screen and (max-width:768px) {
	.home-mv.home-mv2 {
		height: 67svh;
	}
	.home-mv2 .home-mv__wrap {
        justify-content: center;
    }
	.home-mv2 .home-mv__title {
		display: block;
		font-size: 1.7rem;
		margin-bottom: 2rem;
	}
}
@media screen and (min-width:769px) {
	.home-mv.home-mv2 {
		height: 40rem;
	}
	.home-mv2 .home-mv__wrap {
		max-width: 100%;
		width: 100%;
	}
	.home-mv2 .home-mv__button-box {
		justify-content: center;
        gap: 1rem;
	}
	.home-mv2 .home-mv__title {
		font-size: 3rem;
	}
}