@charset "utf-8";

/*-------------------------------
	共通
-------------------------------*/

.Service__list{
	width: 100%;
	display: flex;
	gap: .8rem;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.Service__list-item{
	width: calc((100% - (.8rem * 1)) / 2);
	height: 20rem;
	overflow: hidden;
}
.Service__list-item a{
	background: var(--graycolor);
	width: 100%;
	height: 100%;
	padding: 1rem 1rem 1rem 4.8rem;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	position: relative;
	z-index: 5000;
}
.Service__list-item a::before{
	content: "";
	display: block;
	width: 9rem;
	height: 9rem;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	z-index: 6000;
}
.Service__list-item a::after{
	content: "";
	transition: transform .3s var(--transition-easing);
	background: var(--maincolor);
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 4000;
	transform: scaleX(0);
	opacity: 0;
	transform-origin: right;
}
.Service__list-item.g-view.end a::after{
	opacity: 1;
}
.Service__list-item-inner{
	width: calc(100% - 9rem);
	padding-right: 4rem;
	padding-left: 3.2rem;
	position: relative;
	z-index: 6000;
}
.Service__list-item-title{
	transition: var(--transition);
	font-family: var(--jp);
	width: 100%;
	margin-bottom: 1.8rem;
	font-size: 2.2rem;
	line-height: calc(3 / 2.2);
	display: block;
}
.Service__list-item-text{
	transition: var(--transition);
	line-height: calc(2.6 / 1.6);
}
.Service__list-item .C-Arrow-circle{
	width: 3.6rem;
	height: 3.6rem;
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	z-index: 6000;
}
.Service__list-item .C-Arrow{
	width: 1.1rem;
	height: .7rem;
}
.Service__list-item a:hover::after{
	opacity: 1;
	transform: scaleX(1);
	transform-origin: left;
}
.Service__list-item a:hover .Service__list-item-title{
	color: #fff;
}
.Service__list-item a:hover .Service__list-item-text{
	color: #fff;
}

/*----- 法人 */
#Service1 .Service__list-item:nth-of-type(1) a::before{
	background-image: url(../images/service/icon_service1_1-black.svg);
}
#Service1 .Service__list-item:nth-of-type(2) a::before{
	background-image: url(../images/service/icon_service1_2-black.svg);
}
#Service1 .Service__list-item:nth-of-type(3) a::before{
	background-image: url(../images/service/icon_service1_3-black.svg);
}
#Service1 .Service__list-item:nth-of-type(4) a::before{
	background-image: url(../images/service/icon_service1_4-black.svg);
}
#Service1 .Service__list-item:nth-of-type(5) a::before{
	background-image: url(../images/service/icon_service1_5-black.svg);
}
#Service1 .Service__list-item:nth-of-type(6) a::before{
	background-image: url(../images/service/icon_service1_6-black.svg);
}
#Service1 .Service__list-item:nth-of-type(7) a::before{
	background-image: url(../images/service/icon_service1_7-black.svg);
}
#Service1 .Service__list-item:nth-of-type(1) a:hover::before{
	background-image: url(../images/service/icon_service1_1-white.svg);
}
#Service1 .Service__list-item:nth-of-type(2) a:hover::before{
	background-image: url(../images/service/icon_service1_2-white.svg);
}
#Service1 .Service__list-item:nth-of-type(3) a:hover::before{
	background-image: url(../images/service/icon_service1_3-white.svg);
}
#Service1 .Service__list-item:nth-of-type(4) a:hover::before{
	background-image: url(../images/service/icon_service1_4-white.svg);
}
#Service1 .Service__list-item:nth-of-type(5) a:hover::before{
	background-image: url(../images/service/icon_service1_5-white.svg);
}
#Service1 .Service__list-item:nth-of-type(6) a:hover::before{
	background-image: url(../images/service/icon_service1_6-white.svg);
}
#Service1 .Service__list-item:nth-of-type(7) a:hover::before{
	background-image: url(../images/service/icon_service1_7-white.svg);
}

/*----- 個人 */
#Service2 .Service__list-item:nth-of-type(1) a::before{
	background-image: url(../images/service/icon_service2_1-black.svg);
}
#Service2 .Service__list-item:nth-of-type(2) a::before{
	background-image: url(../images/service/icon_service2_2-black.svg);
}
#Service2 .Service__list-item:nth-of-type(1) a:hover::before{
	background-image: url(../images/service/icon_service2_1-white.svg);
}
#Service2 .Service__list-item:nth-of-type(2) a:hover::before{
	background-image: url(../images/service/icon_service2_2-white.svg);
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

	.Service__list-item a{
		padding-left: 2rem;
	}
	.Service__list-item-inner{
		padding-left: 2rem;
		padding-right: 0;
	}

}
@media screen and (max-width:960px) and (min-width: 769px){

	.Service__list-item a::before{
		width: 7rem;
		height: 7rem;
	}

}
@media screen and (max-width:768px){

	.Service__list{
		align-items: stretch;
	}
	.Service__list-item{
		height: auto;
	}
	.Service__list-item a{
		padding: 4.5rem 2.8rem 6rem;
		flex-direction: column;
	}
	.Service__list-item a::before{
		width: 8.8rem;
		height: 8.8rem;
		margin-bottom: 4rem;
	}
	.Service__list-item-inner{
		width: 100%;
		padding-right: 0;
		padding-left: 0;
	}
	.Service__list-item-title{
		margin-bottom: 2rem;
		font-size: 2.8rem;
		line-height: 1;
		text-align: center;
	}
	.Service__list-item-text{
		line-height: calc(4.1 / 2.5);
	}
	.Service__list-item .C-Arrow-circle{
		width: 4.4rem;
		height: 4.4rem;
	}
	.Service__list-item .C-Arrow{
		width: 1.3rem;
		height: .9rem;
	}

}



/*-------------------------------
	法人のお客様向けサービス
-------------------------------*/

#Service1{
	padding-top: var(--padding-topbottom);
	margin-top: calc(var(--padding-topbottom) * -1);
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

}
@media screen and (max-width:768px){

}



/*-------------------------------
	個人のお客様向けサービス
-------------------------------*/

#Service2{
	margin-top: calc(var(--padding-topbottom) * -1);
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

}
@media screen and (max-width:768px){

}



/*-------------------------------
	ご依頼の流れ
-------------------------------*/

.Flow{
	padding-top: 10rem;
}
#Flow{
	padding-bottom: 10rem;
}
.Flow__item{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	position: relative;
}
.Flow__item:not(:last-child){
	margin-bottom: 7rem;
}
.Flow__item:not(:last-child)::after{
	content: "";
	display: block;
	width: 2.4rem;
	height: 3.6rem;
	background-image: url(../images/service/icon_flow-arrow.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	left: calc(30rem / 2);
	bottom: calc((7rem / 2) * -1);
	transform: translate(-50%,50%);
}
.Flow__item-left{
	width: 30rem;
	height: 30rem;
	padding: 2.5rem;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.Flow__item-left::before{
	content: "";
	margin-bottom: 3.8rem;
	display: block;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}
.Flow__item-title{
	line-height: 1;
	text-align: center;
}
.Flow__item-title-en{
	font-family: var(--en);
	color: var(--maincolor);
	font-size: 2rem;
	margin-bottom: .8rem;
	line-height: 1;
	display: block;
	text-align: center;
}
.Flow__item-title-jp{
	font-family: var(--jp);
	font-size: 2.2rem;
	line-height: calc(3 / 2.2);
}
.Flow__item-body{
	width: calc(100% - 30rem);
	padding-left: 6rem;
}
.Flow__item-tel{
	width: 100%;
	margin-top: 3.2rem;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
}
.Flow__item-tel-number{
	font-family: var(--en);
	color: var(--maincolor);
	font-size: 5rem;
	line-height: .73;
}
.Flow__item-tel-time{
	font-family: var(--jp);
	margin-left: .6rem;
	line-height: 1;
}

.Flow__item:nth-of-type(1) .Flow__item-left::before{
	width: 7.8rem;
	height: 10rem;
	transform: translateX(1rem);
	background-image: url(../images/service/icon_flow1.svg);
}
.Flow__item:nth-of-type(2) .Flow__item-left::before{
	width: 9.7rem;
	height: 10rem;
	background-image: url(../images/service/icon_flow2.svg);
}
.Flow__item:nth-of-type(3) .Flow__item-left::before{
	width: 9.9rem;
	height: 10rem;
	background-image: url(../images/service/icon_flow3.svg);
}
.Flow__item:nth-of-type(4) .Flow__item-left::before{
	width: 8.4rem;
	height: 10rem;
	background-image: url(../images/service/icon_flow4.svg);
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

}
@media screen and (max-width:768px){

	.Flow{
		padding-top: 10rem;
	}
	#Flow{
		padding-bottom: 10rem;
	}
	.Flow__item{
		flex-direction: column;
	}
	.Flow__item:not(:last-child){
		margin-bottom: 16rem;
	}
	.Flow__item:not(:last-child)::after{
		width: 3.6rem;
		height: 5.4rem;
		left: 50%;
		bottom: -8rem;
		transform: translate(-50%,50%);
	}
	.Flow__item-left{
		width: 35rem;
		height: 35rem;
		padding: 2.5rem;
		margin-bottom: 4.5rem;
	}
	.Flow__item-left::before{
		margin-bottom: 3.8rem;
	}
	.Flow__item-title-en{
		font-size: 2.8rem;
		margin-bottom: 1.5rem;
	}
	.Flow__item-title-jp{
		font-size: 3rem;
		line-height: 1;
	}
	.Flow__item-body{
		width: 100%;
		padding-left: 0;
	}
	.Flow__item-tel{
		margin-top: 3.5rem;
		flex-direction: column;
		align-items: flex-start;
	}
	.Flow__item-tel-number{
		font-size: 7rem;
		margin-bottom: 2.5rem;
		line-height: .8;
	}
	.Flow__item-tel-time{
		margin-left: 0;
	}

	.Flow__item:nth-of-type(1) .Flow__item-title-jp{
		font-size: 2.8rem;
	}

}