.block1{
	margin:0 auto 150px;
}

.block1_txt{
	font-size:15px;
	font-weight:bold;
	padding-bottom:50px;
	text-align:center;
}

.block1_txt span{
	color:red;
}

.block1_form_wrap{
	width:95%;
	max-width:600px;
	margin:0 auto;
	border:1px solid #ababab;
	border-radius:20px;
}

.block1_form{
	width:85%;
	margin:50px auto;
	display: grid;
	grid-template-rows:auto;
	grid-template-columns: 175px 1fr;
	column-gap: 20px;
}

.block1_form1{
	width:100%;
	grid-row: 1;
	grid-column: 1 / 2;
}

.block1_form2{
	width:100%;
	grid-row: 1;
	grid-column: 2 / 3;
}

.block1_form_1_txt{
	font-size:15px;
	font-weight:bold;
}

.block1_form_1_txt span{
	color:red;
}

.block1_form_1_mail_chk_txt{
	font-size:12px;
	font-weight:normal;
}

.block1_form2_input{
	width:100%;
	height:30px;
	border:1px solid #ababab;
	border-radius:3px;
}

.block1_form_line{
	width:90%;
	max-width:550px;
	margin:0 auto 30px;
	height:1px;
	background-color:#ababab;
}

.block1_form2_textarea{
	width:100%;
	border:1px solid #ababab;
	border-radius:3px;
}

.block1_form_submit{
	text-align:center;
	margin:50px 0;
}

.block1_form_submit input{
	width:100px;
	height:40px;
	border:1px solid #ababab;
	border-radius:4px;
	font-size:15px;
	font-weight:bold;
	background-color:#FFF;
}

.block1_form_submit input:hover{
	background-color:#000;
	color:#FFF;
}


/* 画面幅1024以下 PC*/
@media screen and (max-width: 1024px) {

}


/* 画面幅768px以下 タブレット*/
@media screen and (max-width: 768px) {

	.block1{
		margin:50px auto 100px;
	}

	.block1_title{
		text-align:center;
	}

	.block1_title_line{
		margin-bottom:50px;
	}

	.block1_title img{
		width:130px;
	}

	.block1_title_line{
		text-align:center;
	}

	.block1_title_line img{
		width:250px;
	}

	.block1_form{
		grid-template-rows:auto auto;
		grid-template-columns:1fr;
		column-gap: 0px;
	}

	.block1_form1{
		width:100%;
		grid-row: 1 / 2;
		grid-column: 1 / 2;
	}

	.block1_form2{
		width:100%;
		grid-row: 2 / 3;
		grid-column: 1 / 2;
	}








}


/* 画面幅375px以下　モバイル*/
@media screen and (max-width: 375px) {




}

