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

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

.contact-form .inner {
	width: 90%;
	margin: 0 auto 50px auto;
}

.contact-form .inner dl {
  display: flex;
  border-bottom: solid 1px #ccc;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.contact-form .inner dt {
	width: 300px;
}
.contact-form .inner dd {
  flex: 1;
}
.contact-form .inner dd .contact-list {
  display: inline-block;
}
.contact-form .inner dd .contact-list:first-child {
  margin-right: 10px;
}

.hissu {
  display: inline-block;
	color: #fff;
	font-size: 70%;
	line-height: 100%;
	text-align: center;
	background-color: #d40000;
	border-radius: 3px;
	padding: 2px 5px;
	margin-left: 7px;
}
.err {
  color: #e00202;
}

.input01 input {
	background-color: var(--color04);
	border: solid 1px var(--color02);
	border-radius: 3px;
	padding: 20px;
	width: 100%;
}
.input02 input {
	background-color: var(--color04);
	border: solid 1px var(--color02);
	border-radius: 3px;
	padding: 20px;
	width: 50%;
}
.input03 input {
	background-color: var(--color04);
	border: solid 1px var(--color02);
	border-radius: 3px;
	padding: 20px;
}
textarea {
	width: 100%;
	background-color: var(--color04);
	border: solid 1px var(--color02);
	border-radius: 3px;
	padding: 20px;
}
.radio {
  line-height: 3rem;
}
select {
  width: 50%;
  border: solid 1px #ccc;
  padding: 10px;
}

/*bt*/

.form-bt-wrapper {
  text-align: center;
}
.form-bt {
	width: 500px;
  display: inline-block;
  text-align: center;
	margin: 0 auto;
}
.form-bt li {
  display: inline-block;
  width: 220px;
  margin: 0 10px;
}
.form-bt li input {
  display: block;
	width: 100%;
}
.bt-submit input {
	color: #fff;
	background-color: #000;
	border: solid 1px #000;
  border-radius: 80px;
	padding: 15px 0;
	cursor: pointer;
	-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-submit input:hover {
	background-color: #ee9768;
	border: solid 1px #ee9768;
}
.bt-reset input {
	color: #fff;
	background-color: #959595;
	border: solid 1px #959595;
  border-radius: 80px;
	padding: 15px 0;
	cursor: pointer;
	-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-reset input:hover {
	background-color: #bdbdbd;
	border: solid 1px #bdbdbd;
}

.form-bt02 {
	width: 40%;
	margin: 0 auto;
}
.form-bt02 li input {
	width: 100%;
}

.thanks {
	margin-bottom: 50px;
}
.back-top {
	color: #223f9e;
	font-weight: bold;
	text-decoration: underline;
	text-align: center;
}
.back-top a {
	color: #223f9e;
}


/* 各ベンダープレフィックスが取れた標準版 */
:placeholder-shown {
	color: #cecece;
  font-size: 1.4rem!important;
}
/* 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;
}
.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){


}
@media screen and (max-width: 1200px){/*1200以下*/

}


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

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

.contact-form .inner {
	width: 100%;
	margin: 0 auto 30px auto;
}

.contact-form .inner dl {
  display: block;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.contact-form .inner dt {
	width: 100%;
  margin-bottom: 5px;
}
.contact-form input {
  font-size: 16px;
}
.input02 input {
	width: 70%;
}
label {
  display: inline-block;
}
.contact-form input,.contact-form textarea {
	font-size: 16px;
}

/* 各ベンダープレフィックスが取れた標準版 */
:placeholder-shown {
  font-size: 1.2rem!important;
}

/*bt*/

.form-bt {
	width: 100%;
}
.form-bt li {
  width: 40%;
  margin: 0 10px;
}


}

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

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

}

