@charset "utf-8";
/* CSS Document */

/*@import url("contact.css");*/

.contact_wrap{
	display: grid;
  	grid: auto / 1fr 1fr;
  	gap: 0.5rem;
	}	
.contact_wrap .data_wrap{
	display: flex;
	flex-direction: column;
  	gap: 0.5rem;
	}

.contact_map{
	width:100%;
	border:none;
	height: 32rem;
	}

.cont_header{
	background-color:var(--red_2);
	color:#FFF;
	font-size: 1.2rem;
	padding:0.25rem;
	border-radius: 7px;
	font-weight: bold;
	}
.cont_header img{
	max-height: 1.6rem;
	}
.cont_text{
	background-color:var(--very_light_blue_1);
	font-size:0.9rem;
	padding:0.4rem;
	color:#000;
	border-radius: 7px;
	}

.message_wrap{
	background-color:var(--very_light_blue_1);
	padding: 1rem;
	box-sizing: border-box;
	border-radius: 7px;
	}
.message_wrap h2{
	margin: 0;
	}

.map_wrap_wrap{
	width: 100%;
	display: flex;
	justify-content: center;
	}
.map_wrap h2{
	margin-top: 2rem;
	font-weight: bold;
	}
.map_img{
	max-width: 100%;
	}


@media(max-width:53rem){
	.contact_wrap{
		grid: auto auto / auto;
		}
	}