@charset "utf-8";
/* CSS Document */
fieldset{
    border-style: none;
}

input[type="text"],
input[type="email"],
textarea,
button{
    border-style: solid;
    border-width: 1px;
    border-color: #999;
    padding: 5px;
    
}
input[type="text"],
input[type="email"],
textarea{
	width: 100%;
}
textarea{
	height: 8em;
}

.mimassi_inquiry_form ~ .invalid_message{
    display: none;
    font-weight: bold;
    color: #F00;
}

/* ヘッダー */
header div#header_area{
	background-color: #000;
	padding-top: 5px;
	padding-bottom: 5px;
}
header div#header_area a{
	text-decoration: none;
}
header div#header_area a img{
	width: 260px;
	height: auto;
	
}


/* レイアウト */
div#content{
	
}
div#content h1{
	font-weight: 400;
	font-size: 1.6rem;
	margin-top: 1em;
	text-align: center;
}
div#content dl{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	max-width: 600px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
div#content dl dt,
div#content dl dd{
	display: block;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	padding-bottom: 15px;
}
div#content dl dt{
	width: 10em;	
}
div#content dl dd{
	width: calc(100% - 10em);
}

div.mimassi_inquiry_button_area{
	text-align: center;
}
div.mimassi_inquiry_button_area button{
	cursor: pointer;
}
div.mimassi_inquiry_button_area button:hover{
	background-color: #000;
	color: #FFF;
}
@media screen and (max-width:640px) { 
	div#content dl{
		display: block;
		width: 90%;
	}
	div#content dl dt{
		width: 100%;	
		padding-bottom: 5px;
	}
	div#content dl dd{
		width: 100%;	
	}
}

/* 確認窓 */
table.check_data{
	max-width: 600px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2em;
}
table.check_data tbody tr{
	
}
table.check_data tbody tr th,
table.check_data tbody tr td{
	font-weight: 400;
	text-align: left;
	padding-bottom: 1em;
}
table.check_data tbody tr th{
	width: 10em;	
}
table.check_data tbody tr td{
	width: calc(100% - 10em);
}

@media screen and (max-width:640px) { 
	table.check_data{
		width: 90%;
	}
}














