@charset "utf-8";

/* -----------------------------------------------------------
    流れ  サイト全体で使用
-------------------------------------------------------------- */
.flow-area {
	padding: 100px 0;
	margin: 100px 0 0;
	background: #ebf1f6;
}

.flow-area .flow-box-body {
	display: flex;
	gap: 40px;
	margin: 50px 0 0;
	background: #fff;
}

.flow-area .flow-box-body:nth-child(n + 2) {
	margin: 30px 0 0;
}

.flow-area .flow-box-img {
	width: 230px;
	flex-shrink: 0;
}

.flow-area .flow-box-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.flow-area .flow-box-note {
	padding: 30px 30px 30px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.flow-area .flow-box-ttl {
	display: flex;
	align-items: center;
	gap: 10px;
}

.flow-area .flow-box-ttl .ttl {
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.5;
}

.flow-area .flow-box-ttl .num {
	font: 400 2rem/1 var(--en);
	display: flex;
	color: var(--main);
	align-items: center;
	justify-content: center;
	gap: 5px;
	border: solid 1px var(--main);
	width: 26px;
	height: 26px;
}

.flow-area .flow-box-catch {
	font-size: 2.7rem;
	font-weight: bold;
	margin: 20px 0 0;
}

.flow-area .flow-box-text {
	margin: 10px 0 0;
}

.flow-area .flow-box-attention {
	background: #e5f1f9;
	padding: 10px 25px;
	margin: 15px 0 0;
}

.flow-area .flow-box-attention i {
	color: var(--main);
	font-size: 2rem;
	margin: 0 3px 0 0;
}

@media screen and (max-width: 768px) {
	.flow-area {
		padding: 50px 0;
		margin: 50px 0 0;
	}

	.flow-area .flow-box-body {
		display: block;
		padding: 15px 15px 20px;
		position: relative;
		margin: 20px 0 0;
	}

	.flow-area .flow-box-body:nth-child(n + 2) {
		margin: 20px 0 0;
	}

	.flow-area .flow-box-img {
		width: 45%;
		height: 29vw;
	}

	.flow-area .flow-box-note {
		padding: 10px 0 0 0;
	}

	.flow-area .flow-box-ttl {
		align-items: flex-start;
		justify-content: center;
		display: flex;
		gap: 5px;
		flex-direction: column;
		line-height: 1.5;
		margin: 10px 0 0;
		right: 0;
		top: 0;
		height: 29vw;
		width: 55%;
		position: absolute;
		padding: 0 0 0 15px;
	}

	.flow-area .flow-box-ttl .ttl {
		font-size: 1.9rem;
	}

	.flow-area .flow-box-ttl .num {
		width: 24px;
		height: 24px;
		font-size: 1.6rem;
	}

	.flow-area .flow-box-text {
		margin: 0;
		line-height: 1.9;
	}
	
	.flow-area .flow-box-attention {
		margin: 10px 0 0;
	}
}

/* -----------------------------------------------------------
    flow-btn-wrap
-------------------------------------------------------------- */
.flow-ct-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	width: 100%;
}

.flow-ct-box .flow-btn-wrap {
	display: flex;
	gap: 10px;
}

.flow-ct-box .fl-cv-mail {
	align-items: center;
	background: var(--cv);
	color: #fff !important;
	display: flex;
	line-height: 1.5;
	text-align: center;
	transition: 0.3s ease;
	padding: 0 20px;
	position: relative;
	justify-content: center;
	overflow: hidden;
	width: 220px;
	height: 70px;
}

.flow-ct-box .fl-cv-mail::before {
	content: '';
	width: 0;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	background: var(--cv2);
	transition: width cubic-bezier(0.23, 1, 0.32, 1) 0.5s;
	z-index: 0;
}

@media screen and (min-width: 769px) {
	.flow-ct-box .fl-cv-mail:hover::before {
		left: 0;
		width: 100%;
	}
}

.flow-ct-box .fl-cv-mail-txt {
	width: 100%;
	z-index: 2;
}

.flow-ct-box .fl-cv-mail-txt span {
	font-size: 1.8rem;
	font-weight: bold;
	padding: 0 0 0 32px;
	position: relative;
	line-height: 1;
}

.flow-ct-box .fl-cv-mail-txt span::before {
	background: url("../img/cmn_icon_mail.svg")center/contain no-repeat;
	content: "";
	transition: .5s;
	position: absolute;
	top: 58%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	width: 25px;
	height: 19px;
}

.flow-ct-box .fl-cv-tel {
	align-items: center;
	background: none;
	color: var(--cmnblack)!important;
	display: flex;
	flex-direction: column;
	font-feature-settings: "palt";
	gap: 8px;
	padding: 0;
	justify-content: center;
}

.flow-ct-box .fl-cv-tel-num {
	font: 700 2.3rem /1 var(--en);
	position: relative;
	padding: 0 0 0 28px;
	letter-spacing: .07em;
	width: fit-content;
	margin: 0 auto;
}

.flow-ct-box .fl-cv-tel-num::before {
	content: "";
	background: url("../img/com_icon_tel_black.svg") center / contain no-repeat;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	width: 25px;
	height: 19px;
}

.flow-ct-box .fl-cv-tel-time {
	align-items: center;
	font-size: 1.3rem;
	display: flex;
	line-height: 1;
	letter-spacing: 0;
}

.flow-ct-box .fl-cv-tel-time span {
	font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
	.flow-ct-box {
		flex-direction: column;
	}

	.flow-ct-box .flow-btn-wrap {
		flex-direction: column-reverse;
		gap: 15px;
		width: 100%;
		padding: 10px 0 0;
	}

	.flow-ct-box .fl-cv-btn {
		width: 100%;
	}

	.flow-ct-box .fl-cv-mail span {
		font-size: 2rem;
	}

	.flow-ct-box .fl-cv-tel {
		font-size: 1.7rem;
		gap: 10px;
		text-decoration: none !important;
		text-align: center;
		width: 100%;
	}

	.flow-ct-box .fl-cv-tel-num {
		font-size: 2.5rem;
		margin: 0 auto;
		padding: 0 0 0 30px;
		text-align: center;
		font-weight: bold;
	}

	.flow-ct-box .fl-cv-tel-time {
		font-size: 1.4rem;
	}

	.flow-ct-box .fl-cv-tel-hour {
		font-size: 1.6rem;
		padding: 0 3px;
	}
}