@charset "utf-8";
@import url(cmn.css);
@import url(base.css);

/* ==========================================================================
	CONTENTS
	========================================================================== */

.form dl {
	display: table;
	table-layout: fixed;
	width: 80%;
	margin: 0 auto 20px auto;
}
.form dl dt {
	display: table-cell;
	width: 25%;
	vertical-align: top;
	border-right: dotted 1px #ccc;
	padding: 20px;
}
.form dl dd {
	display: table-cell;
	vertical-align: top;
	padding: 20px;
}
.hissu {
	color: #fff;
	font-size: 80%;
	font-weight: bold;
	text-align: center;
	background-color: #d82a3f;
	border-radius: 3px;
	padding: 0 5px;
	margin-left: 10px;
}
input {
	background-color: #fff;
	border: solid 1px #fff;
	padding: 15px;
}
.input01 input {
	width: 50%;
}
.input02 input {
	width: 100%;
}
textarea {
	width: 100%;
	background-color: #fff;
	border: solid 1px #fff;
	box-sizing: border-box;
	padding: 10px;
}

.bt-form {
	overflow: hidden;
	text-align: center;
	margin: 0 auto 20px auto;
}
.bt-form li {
	display: inline-block;
	width: 100%;
	padding: 0 5%;
}
.bt-form li button {
	display: inline-block;
	color: #fff;
	width: 25%;
	background-color: #689ad1;
	border: solid 1px #689ad1;
	border-bottom: solid 3px #306db1;
	border-radius: 5px;
	cursor: pointer;
	padding: 10px 0;
	margin: 0 10px;
	-webkit-transition: 0.4s ease-in-out;  
		 -moz-transition: 0.4s ease-in-out;  
			 -o-transition: 0.4s ease-in-out;  
					transition: 0.4s ease-in-out;  
}
.bt-form li button:hover {
	background-color: #4880be;
}
.bt-form li input {
	display: inline-block;
	color: #fff;
	width: 25%;
	background-color: #ec7e65;
	border: solid 1px #ec7e65;
	border-bottom: solid 3px #ae4229;
	border-radius: 5px;
	cursor: pointer;
	padding: 10px 0;
	margin: 0 10px;
	-webkit-transition: 0.4s ease-in-out;  
		 -moz-transition: 0.4s ease-in-out;  
			 -o-transition: 0.4s ease-in-out;  
					transition: 0.4s ease-in-out;  
}
.bt-form li input:hover {
	background-color: #e35b3d;
}
.bt-form li.reset input {
	color: #fff;
	background-color: #ec7e65;
	border: solid 1px #ec7e65;
	border-bottom: solid 3px #ae4229;
	border-radius: 5px;
	cursor: pointer;
	padding: 10px 0;
	margin: 0 10px;
}

/* 各ベンダープレフィックスが取れた標準版 */
:placeholder-shown {
	color: #cecece;
}
/* Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder {
	color: #cecece;
}
/* Firefox 18- */
:-moz-placeholder {
	color: #cecece; opacity: 1;
}
/* Firefox 19+ */
::-moz-placeholder {
	color: #cecece; opacity: 1;
}
/* IE 10+ */
:-ms-input-placeholder {
	color: #cecece;
}

/*チェックボックス*/

.checkbox01-input{
  display: none;
}
.mwform-checkbox-field-text{
  padding-left: 25px;
  position:relative;
  margin-right: 20px;
}
.mwform-checkbox-field-text::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
	background-color: #fff;
  border: 2px solid #d9d9d9;
  border-radius: 4px;
}
.checkbox01-input:checked + .mwform-checkbox-field-text{
  color: #3bbe9e;
}
.checkbox01-input:checked + .mwform-checkbox-field-text::after{
  content: "";
  display: block;
  position: absolute;
  top: -5px;
  left: 5px;
  width: 7px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 3px solid #3bbe9e;
  border-right: 3px solid #3bbe9e;
}


/* ==========================================================================
	PC 1025px -
	========================================================================== */

@media screen and (min-width: 1025px){


}


/* ==========================================================================
	TABLET - 1024px
	========================================================================== */

@media screen and (max-width:1024px){

.form dl {
	width: 100%;
}
.form dl dt {
	width: 35%;
}
section .txt-center {
	text-align: left;
}

}

/* ==========================================================================
	SP - 640px
	========================================================================== */

@media screen and (max-width: 640px) {

.form dl dl {
	display: block;
}
.form dl dt {
	display: block;
	width: 100%;
	padding: 0 20px;
}
.form dl dd {
	display: block;
	width: 100%;
	padding: 5px 20px;
}

.bt-form li button {
	width: 50%;
}

}

