@charset "utf-8";
/***************************************
    copyright by MakeWeb.com.tw 
***************************************/

.post_form_01 {
	/*overflow: hidden;*/
	width:100%;
}
.post_form_01 iframe {
	margin: 0 0 40px 0;
}

.content{
	max-width: 1280px;
	margin: 50px auto;
	display: flex;
	gap: 50px;
}
.content .title h1{
	font-size: 3rem;
	color: #3e9495;
	margin-bottom: 20px;
}
.content .item h2{
	font-size: 2rem;
	padding: 10px;
	background-color: #ededed;
}
.content .item p{
	padding: 10px;
	color: #4e4e4e;
}
.contact_info_box {
	flex:1;
	/*float: left;*/
	/*width: 40%;*/
}
.contact_info_box .h_1{
	font-weight: bold;
	margin: 10px 0;
}
.contact_info_box .w_1{
	line-height: 24px;
	margin: 0 0 10px 0;
	color: #666;
}

.form_box {
	flex:1;
/*	overflow: hidden;
	float: right;
	width: 60%;*/
}
.form_box h2{
	margin-bottom:20px;
}
#mw_form {
}
.canvas_post table tbody tr{
	display: grid;
	grid-template-columns: 1fr 3fr;
}

.canvas_post table {
	text-align: left;
}
/*-------------------------------------------- 
	Media Queries 
---------------------------------------------*/
/* Portrait and Landscape */
/*@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) {
}*/

/*iPad Pro*/
@media screen and (max-width: 1279px) {
	.content{
		flex-direction: column;
		margin: 50px;
	}
	.canvas_post table td{
		padding: 8px 0;
	}
	.canvas_post table tbody tr{
		grid-template-columns: 1fr 4fr;
	}
}
/*iPad*/
@media screen and (max-width: 1023px) {
	.content{
		margin: 25px;
		gap: 25px;
	}
}
/*iPhone*/
@media screen and (max-width: 767px) {
	.content{
		margin: 50px 10px;
	}
	.canvas_post table td{
		padding: 0;
	}
	.canvas_post table tbody tr{
		grid-template-columns: 1fr;
		margin-bottom: 10px;
	}
}
