@charset "utf-8";

/*-------------------------------
	フロー
-------------------------------*/

.Flow{
	padding-top: 7.5rem;
}
.Flow__body{
	background: var(--bgcolor);
	width: 100%;
	/*padding: 3rem 3rem 4rem;*/
	padding: 12rem 3rem 4rem 3rem;
}
.Flow__text{
	font-size: 1.8rem;
	margin-bottom: 5rem;
	font-weight: 500;
}
.Flow__image-wrap{
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}
.Flow__image{
	margin-bottom: 10.8rem;
	margin-left: auto;
	margin-right: auto;
}
.Flow__image img{
	width: 100%;
}
.Flow__icon{
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin-left: auto;
	margin-right: auto;
}
.Flow__icon-item{
	width: 4.4rem;
	height: 7rem;
	padding-bottom: .5rem;
	position: absolute;
}
.Flow__icon-item span{
	width: 100%;
	height: 100%;
	padding-bottom: 1.5rem;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	background-image: url(../images/common/icon_service-flow.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	font-family: "Roboto", sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	/*cursor: pointer;*/
}
.Flow__icon-item::after{
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 2rem;
	height: 0.3rem;
	background: rgba(0, 0, 0, .5);
	border-radius: 50%;
	transform: translateX(-50%);
	filter: blur(.2rem);
}
/*.Flow__icon-item:hover span{
	animation: pin-bounce 1.4s ease-in-out infinite;
}
.Flow__icon-item:hover::after{
	animation: pin-shadow 1.4s ease-in-out infinite;
}

@keyframes pin-bounce {
	form{
		transform: translateY(-.6rem);
	}
	0%{
		transform: translateY(-.6rem);
	}
	10% {
		transform: translateY(-1.2rem);
	}

	25% {
		transform: translateY(-1.5rem);
	}

	50% {
		transform: translateY(-.6rem);
	}

	75% {
		transform: translateY(-1.5rem);
	}

	90% {
		transform: translateY(-1.2rem);
	}
	100%{
		transform: translateY(-.6rem);
	}
	to{
		transform: translateY(-.6rem);
	}
}
@keyframes pin-shadow {
	0% {
		transform: translateX(-50%) scale(1);
		opacity: .85;
	}

	25% {
		transform: translateX(-50%) scale(.75);
		opacity: .65;
	}

	50% {
		transform: translateX(-50%) scale(1);
		opacity: .85;
	}

	75% {
		transform: translateX(-50%) scale(.75);
		opacity: .65;
	}

	100% {
		transform: translateX(-50%) scale(1);
		opacity: .85;
	}
}*/

.Flow__flow{
	width: 100%;
	padding: 4rem 8.5rem;
	background: #fff;
	gap: 1.2rem 3.4rem;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
}
.Flow__flow-item{
	width: fit-content;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.5;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.Flow__flow-item::before{
	content: attr(data-number);
	font-size: 2.2rem;
	line-height: 1;
	display: block;
	order: 2;
}
.Flow__flow-item:not(:first-child)::after{
	content: "";
	display: block;
	margin-right: 1.5rem;
	width: 0;
	height: 0;
	border-style: solid;
	border-top: .9rem solid transparent;
	border-bottom: .9rem solid transparent;
	border-left: 1rem solid #B2B2B2;
	border-right: 0;
	order: 1;
}
.Flow__flow-item span{
	line-height: 1.5;
	display: block;
	order: 3;
}

.Flow__pop-wrap{
	transition: .4s all var(--transition-easing);
	width: 100%;
	height: 100%;
	padding: 5rem;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 9900;
	background: rgba(0,0,0,.75);
	z-index: -1;
	visibility: hidden;
	opacity: 0;
}
.Flow__pop{
	transition: .4s all var(--transition-easing);
	width: 100%;
	height: 100%;
	background: #fff;
	transform: scale(.75) translateY(2.5rem);
}
body:has(.Flow__pop-wrap.-on){
	overflow: hidden;
}
body:has(.Flow__pop-wrap.-on) .header{
	z-index: -1;
}
.main:has(.Flow__pop-wrap.-on){
	overflow: auto;
	scrollbar-gutter: stable;
}
.Flow__pop-wrap.-on{
	z-index: 9999;
	visibility: visible;
	opacity: 1;
}
.Flow__pop-wrap.-on .Flow__pop{
	transform: scale(1) translateY(0);
}

@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: 11rem;
	}
	.Flow__body{
		padding: 12rem 4rem 5rem 4rem;
	}
	.Flow__text{
		font-size: 3rem;
		margin-bottom: 7rem;
	}
	.Flow__image{
		margin-bottom: 10.8rem;
	}
	.Flow__icon-item{
		width: 4.4rem;
		height: 7rem;
		padding-bottom: .5rem;
		position: absolute;
	}
	.Flow__icon-item span{
		padding-bottom: 2rem;
		font-size: 3rem;
	}
	.Flow__icon-item::after{
		left: 50%;
		bottom: 0;
		width: 3rem;
		height: 0.5rem;
	}
	.Flow__flow{
		width: 100%;
		padding: 4rem 5rem;
		gap: 2rem 4.5rem;
	}
	.Flow__flow-item{
		font-size: 3rem;
	}
	.Flow__flow-item::before{
		font-size: 3.4rem;
	}
	.Flow__flow-item:not(:first-child)::after{
		margin-right: 1.5rem;
		width: 0;
		height: 0;
		border-style: solid;
		border-top: 1.6rem solid transparent;
		border-bottom: 1.6rem solid transparent;
		border-left: 2rem solid #B2B2B2;
	}
}



/*-------------------------------
	事例
-------------------------------*/

.Example{
	padding-top: 10rem;
}
.Example__item-body + .Example__item-body{
	margin-top: 12rem;
}
.Example__item-title{
	border: 1px solid var(--maincolor);
	font-family: var(--en);
	color: var(--maincolor);
	width: fit-content;
	padding: 1.2rem 3rem;
	font-size: 2.4rem;
	margin-bottom: 2.5rem;
	line-height: 1;
	font-weight: 700;
}
.Example__item-wrap{
	width: 100%;
	gap: 4.5rem 2.2rem;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}
.Example__item{
	width: calc((100% - (2.2rem * 2)) / 3);
}
.Example__item-image{
	width: 100%;
}
.Example__item-image-inner{
	width: 100%;
	margin-bottom: 1.5rem;
	display: block;
}
.Example__item-image img{
	width: 100%;
}
.Example__item-image-caption{
	font-family: var(--en);
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
}
.Example__button{
	margin-top: 13rem;
}

@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){
	
	.Example{
		padding-top: 14rem;
	}
	.Example__item-body + .Example__item-body{
		margin-top: var(--padding-topbottom);
	}
	.Example__item-title{
		padding: 1.8rem 3rem;
		font-size: 3.2rem;
		margin-bottom: 3.5rem;
	}
	.Example__item-wrap{
		width: 100%;
		gap: 5rem 3.5rem;
	}
	.Example__item{
		width: calc((100% - 3.5rem) / 2);
	}
	.Example__item-image-inner{
		width: 100%;
		margin-bottom: 2.2rem;
		display: block;
	}
	.Example__item-image-caption{
		font-family: var(--en);
		font-size: var(--font-size);
	}
	.Example__button{
		margin-top: var(--padding-topbottom);
	}
}