@charset "utf-8";
/*================================================
style.css
================================================*/

/*wrapper*/
.wrapper{
	background:#fff;
	text-align: center;
}

/*txt01*/
.txt01{
	margin-top: 72px;
	color: #1a1a1a;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.5;
}

/*txt02*/
.txt02{
	margin-top: 16px;
	color: #6B6B6B;
	font-size: 14px;
	line-height: 1.5;
}

/*image*/
.image-sp {
	display: none;      /* 初期状態は、SP画像を非表示に設定 */
}
.image-pc {
	display: block;     /* 初期状態は、PC画像を表示に設定 */
	margin-top: 40px;
}
@media screen and (max-width: 768px) {
	.image-sp {
		display: block;					/* 768pxより小さい時は、SP画像を表示に設定 */
		margin-top: 40px;
	}
	.image-pc {
		display: none;					/* 768pxより小さい時は、pc画像を非表示に設定 */
	}
}

/*button*/
.button-space{
	margin: 40px 16px 0 16px;
}
.button{
	margin: 0 auto;
	width: 100%;
	max-width: 360px;
	padding: 12px 16px;
	border-radius: 25px;
    border: none;
	background-color: #EF4545;
	color: #FFF;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	min-height: 48px;
}
.button:hover {
    background-color: #e21d1d;
}

/*txt03*/
.txt03{
	padding-top: 16px;
	color: #6B6B6B;
	font-size: 12px;
	line-height: 1.5;
}


/*[EOF]*/