@charset "utf-8";
/* CSS Document */

.parent{
  position:relative;
  max-width:1200px;
  height:300px;
  background:#808080;
  margin: 30px auto;
}

.children1{
	position:absolute;
	max-width:1200px;
	width: 100%;
	top:50%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);/*ベンダープレフィックス*/
	-webkit-transform: translate(-50%,-50%);/*ベンダープレフィックス*/
	transform: translate(-50%,-50%);/*センター寄せの修正*/
	color: #fff;
	font-size: 2.5rem;
	margin: 0!important;/*文字がずれている場合や*/
	padding: 0!important;/*文字が折り返される場合*/
	font-weight: 700;
}

.wblock-Contact {
  background:#6e7273;
}


@media only screen and (max-width: 767px) {
.children1{
	font-size: 2.2rem;
}
}