@charset "utf-8";
/* CSS Document */
body{
	margin: 0;
}

.wrapper{
	max-width: 1000px;
	width: 100%;
	margin: 0 auto 3%;
	color: #444444;
}

.wrapper img{
	display: block;
	line-height: 0;
}

.point{
	width: 95%;
	margin: 5% auto;
	background-color: #f2f2f2;
	box-sizing: border-box;
	padding: 2%;
}

.point-img{
	display: flex;
}

.point-lead{
	margin: 3% 0;
}

.point-lead p{
	margin: 2% auto;
	font-size: .7rem;
	line-height: 1.6;
	text-align: center;
}

.point-lead .point-title{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	font-size: 1.5rem;
	line-height: 1.2;
	font-family: "trade-gothic-next-compressed", sans-serif;
	font-weight: 700;
}

.point-lead .point-title::before,
.point-lead .point-title::after{
	content: "";
	width: 20px;
	height: 1px;
	background-color: #333;
}


@media(min-width:750px){
	.point{
		width: 100%;
		margin: 5% auto;
		padding: 1%;
		display: flex;
		align-items: center;
	}

	.point-img{
		width: 60%;
	}

	.point-lead{
		margin: 0;
		width: 40%;
	}

	.point-lead p{
		margin: 0;
		font-size: .9rem;
		line-height: 1.8;
	}

	.point-lead .point-title{
		font-size: 2.5rem;
	}

}