/* $Id: contact.css,v 1.10 2020/02/14 02:35:32 koizumi Exp $ */

@charset "utf-8";

div.contact {}

div.contact table.contact {
	width: 100%;
	margin-top: 25px;
}
div.contact table.contact tr {
	
}

div.contact table.contact th,
div.contact table.contact td {
	vertical-align: top;
	white-space: nowrap;
	border-bottom: solid 1px #ccc;
	padding: 10px;
}
div.contact table.contact td {
	border-left: dotted 1px #ccc;
	padding-left: 20px;
}

div.contact div.btnarea {
	margin: 20px 0;
	text-align: center;
}

/* checkbox {{{ */
.chkbox-org input[type="checkbox"] {
	display: none;
}
.chkbox-org input[type="checkbox"] + label {
	position: relative;
	padding-left: 1em;
	margin-right: 0.5em;
	display: inline-block;
}
.chkbox-org input[type="checkbox"] + label:before {
	content: "";
	position: absolute;
	width: 0.8em;
	height: 0.8em;
	border: solid 2px #ff0000;
	-moz-border-radius: 0.2em;
	-webkit-border-radius: 0.2em;
	border-radius: 0.2em;
	background-color: #fff;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	box-sizing: border-box;
}
.chkbox-org input[type="checkbox"]:checked + label:before {
	background-color: #ff0000;
	border: none;
}
.chkbox-org input[type="checkbox"]:checked + label:after {
	content: "";
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	border-radius: 1px;
	left: 0.15em;
	top: 50%;
	position: absolute;
	transform: translateY(-50%) rotate(-45deg);
	-webkit-transform: translateY(-50%) rotate(-45deg);
	margin-top: -0.05em;
	width: 0.4em;
	height: 0.2em;
	z-index: 100;
}