@import url("common.css");

#choose{
	padding: 0 20px;
	width: 100%;
	max-width: 1100px;
	margin: 0px auto;
}

.reason{
	padding: 60px 0;
	position: relative;
	margin: 100px 0 0 0;
}
.reason h3{
	color: #D0121B;
	line-height: 2;
	text-align: center;
	font-weight: bold;
	font-size: 18px;
}

.reason::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%); /* 真ん中に寄せる */
    width: 500px;  /* 画像の幅に合わせて調整 */
    height: 60px;  /* 画像の高さに合わせて調整 */
    background: url('/image/top/phrase_top.svg') no-repeat center center / contain;
}

/* 下の飾り */
.reason::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 60px;
    background: url('/image/top/phrase_bottom.svg') no-repeat center center / contain;
}
.choose-contents{
margin: 0 0 200px;
}
.choose{
display: flex;
margin: 0 0 30px;
}
.choose img{
width: 320px;
height: auto;
border-radius: 10px;
}
.choose-text{
margin: 0 0 0 40px;
}
.choose-text h4{
font-weight: bold;
margin-bottom: 20px;
}
.choose-text p{
	line-height: 1.6;
}
@media screen and (max-width: 469px){
	.reason::before,.reason::after {
		width: 100%;
	}
	.choose{
		display: block;
		margin-bottom: 40px;
	}
	.choose img{
		width: 100%;
	}
	.choose-text{
margin: 0 ;
}
.choose-text h4{
	margin: 20px 0;
}
}