@charset "UTF-8";
#formWrap {
	width: calc(100% - 10px);
  padding: 5px;
	margin: 0 auto;
	color: #555;
	line-height: 120%;
	font-size: 90%;
}
table.formTable{
	width:100%;
	margin:0 auto;
	border-collapse:collapse;
}
table.formTable td,table.formTable th{
	border:1px solid #ccc;
	padding:10px;
}
table.formTable th{
	width:30%;
	font-weight:normal;
	background:#efefef;
	text-align:left;
}
dl.mailform-dl {
  width: calc(100% - 4px);
/*	border-left-color: #C4C4C4;
	border-right-color: #C4C4C4;
	border-bottom-color: #C4C4C4;
	border-left-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
  */
}
dl.mailform-dl dt {
	padding: 20px 10px 20px;
  width: calc(100% - 20px);
	background-color: #EDEDED;
}
span.formred {
	color: #FF0004;
	font-weight: bold;
}

dl.mailform-dl dd {
	padding: 10px 10px 20px;
	margin: 0;
	width: calc(100% - 20px);
}
input {
	border-radius: 5px;
}
textarea {
	border-radius: 5px;
}
/* css checkbox01 */

.checkbox01-input{
  display: none;
}
.checkbox01-parts{
  padding-left: 20px;
  position:relative;
  margin-right: 20px;
  cursor: pointer;
}
.checkbox01-parts::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #999;
  border-radius: 4px;
}
.checkbox01-input:checked + .checkbox01-parts{
  color: #009a9a;
}
.checkbox01-input:checked + .checkbox01-parts::after{
  content: "";
  display: block;
  position: absolute;
  top: -5px;
  left: 5px;
  width: 7px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 3px solid #009a9a;
  border-right: 3px solid #009a9a;
}

/*//ex-design-TEXT///*/
input[type="text"] {
  -webkit-appearance: none;
  width: calc(100% - 10px);
  height: 36px;
  background: #fff;
  border: 1px solid #bebebe;
  font-size: 1em;
  padding-left: 10px;
}
input[type="text"]:focus {
  background: #fff0f5;
  border: 1px solid #D49FC2;
}
textarea {
  -webkit-appearance: none;
  width: calc(100% - 20px);
  height: 108px;
  padding: 10px;
  background: #fff;
  border: 1px solid #bebebe;
  font-size: 1em;
}
textarea:focus {
  background: #fff0f5;
  border: 1px solid #D49FC2;
}
/*//ex-design-CHECKBOX///*/
.ckbx input[type="checkbox"]:checked,
.ckbx input[type="checkbox"]:not(:checked) {
  display: none;
}
.ckbx input[type="checkbox"]:checked + label,
.ckbx input[type="checkbox"]:not(:checked) + label {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  line-height: 19px;
  display: inline-block;
}
.ckbx input[type="checkbox"]:checked + label:before,
.ckbx input[type="checkbox"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 17px;
  height: 17px;
  border: 1px solid #ccc;
  background: #fff;
}
.ckbx input[type="checkbox"]:checked + label:after,
.ckbx input[type="checkbox"]:not(:checked) + label:after {
  content: '';
  width: 13px;
  height: 13px;
  background: #d49fc2;
  position: absolute;
  top: 3px;
  left: 3px;
}
.ckbx input[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.ckbx input[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
/*//ex-design-RADIO///*/
.rdbtn input[type="radio"]:checked,
.rdbtn input[type="radio"]:not(:checked) {
  display: none;
}
.rdbtn input[type="radio"]:checked + label,
.rdbtn input[type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  line-height: 19px;
  display: inline-block;
}
.rdbtn input[type="radio"]:checked + label:before,
.rdbtn input[type="radio"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 17px;
  height: 17px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 100%;
}
.rdbtn input[type="radio"]:checked + label:after,
.rdbtn input[type="radio"]:not(:checked) + label:after {
  content: '';
  width: 13px;
  height: 13px;
  background: #d49fc2;
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 100%;
}
.rdbtn input[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.rdbtn input[type="radio"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
/*//ex-design-BUTTON///*/
input.formbtn {
    -webkit-appearance: none;
    background-color: #DDDDDD;
    text-align: center;
    width: 150px;
    height: 50px;
    padding: auto 40px;
    font-size: 16px;
  　margin-bottom:15px;
    border: none;
    cursor: pointer;
}
input.formbtn:hover {
    background-color: #D49FC2;
    color: #fff;
}