@charset "utf-8";
.flex_box {
	display: flex;
	flex-direction: column;
}
.box {
	margin: 10px 0;
	border-radius: 8px;
	padding: 10px;
	line-height: 2em;
	letter-spacing: 0.15em;
}
.title_box {
	width: 100%;
	font-size: 1em;
	font-weight: bold;
	padding: 0;
	margin: 20px 0;
	border-bottom: 2px solid #FF6699;

}
.tel_box {
	box-sizing: border-box;
	margin: auto;
	width: 95%;
	height: 50px;
	padding: 0 25px;
	font-size: 1.5em;
	font-weight: bold;
	color: #FF6699;
}
.tel_box a {
	color: #FF6699;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.tel_box a::before {
	content: '';
	width: 50px;
	height: 50px;
	background-image: url("../images/top/phone_android.svg");
	background-size: cover;
	background-repeat: no-repeat;
}
.com_box {
	line-height: 1.2em;
	text-align: justify;
	font-size: 0.8em;
}
.box span {
	display: block;
}
.com_btm {
	box-sizing: border-box;
	width: 80%;
	height: 50px;
	border-radius: 50px;
	padding: 0 25px;
	margin: 20px auto;
	background: linear-gradient(90deg, rgba(255,102,153,1) 50%, rgba(255,128,102,1) 100%);
	
}
.com_btm a {
	color: #FFE6EE;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.com_btm a::after {
	content: '';
	width: 20px;
	height: 20px;
	background-image: url("../images/common/more.png");
	background-size: cover;
	background-repeat: no-repeat;
}
/* ------------------------------------------------------------------------------------------------------------------------
	Responsive-Breakpoint-1 ( 768px以上)
------------------------------------------------------------------------------------------------------------------------ */
@media screen and (min-width: 768px) {
	.flex_box {
		flex-direction: row;
		justify-content: space-around;
		gap: 20px;
	}
	.box {
		margin: 0 auto;
		width: 50%;
	}
	.title_box {
		font-size: 1.25em;
	}
	.tel_box {
		width: 90%;
		font-size: 1.35em;
	}
	.com_btm {
		padding: 0 30px;
	}
}
/* ------------------------------------------------------------------------------------------------------------------------
	Responsive-Breakpoint-1 ( 1024px以上)
------------------------------------------------------------------------------------------------------------------------ */
@media screen and (min-width: 1024px) {
	.title_box {
		font-size: 1.5em;
	}
	.com_btm {
		width: 60%;
		padding: 0 25px;
	}
	.tel_box {
		width: 70%;
		font-size: 2em;
	}

}