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

.page::before {
  background-image: url("../images/contact-images/page-bg.jpg");
}

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

.contact-tel {
  color: var(--color01);
  font-size: 2.5rem;
  font-weight: bold;
}
.contact-tel__tit {
  font-size: 60%;
}
.contact-form {
  margin: 0 auto 30px auto;
}
.contact-form dl p {
	line-height: 100%;
}
.contact-form dl p:last-child {
	margin-bottom: 0;
}
.contact-form dl {
  display: flex;
  border-bottom: solid 1px rgba(0,0,0,0.1);
  padding-bottom: 23px;
  margin-bottom: 23px;
}
.contact-form dt {
  width: 300px;
	padding-right: 20px;
}
.contact-form dd {
	flex: 1;
}
.hissu {
	display: inline-block;
	color: #fff;
	font-size: 70%;
	text-align: center;
	background-color: #e00202;
	border-radius: 3px;
	padding: 2px 5px;
	margin-left: 7px;
}

.input01 input {
	background-color: #f8f8f8;
	border: solid 1px #bbbbbb;
	border-radius: 5px;
	padding: 20px;
	width: 50%;
}
.input02 input {
	background-color: #f8f8f8;
	border: solid 1px #bbbbbb;
	border-radius: 5px;
	padding: 20px;
	width: 80%;
}
.input03 input {
	background-color: #f8f8f8;
	border: solid 1px #bbbbbb;
	border-radius: 5px;
	padding: 20px;
}
textarea {
	width: 100%;
	background-color: #f8f8f8;
	border: solid 1px #bbbbbb;
	border-radius: 5px;
	box-sizing: border-box;
	padding: 20px;
}
.contact-form select {
	width: 80%;
	background-color: #f8f8f8;
	border: solid 1px #bbbbbb;
	border-radius: 5px;
	box-sizing: border-box;
	padding: 20px;
}

.radio {
  line-height: 3rem;
}
.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: 35%;
	font-size: 100%;
	background-color: var(--color01);
	border: solid 1px var(--color01);
  border-radius: 5px;
	cursor: pointer;
	padding: 25px 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: #545454;
	border: solid 1px #545454;
}
.bt-form li input {
	display: inline-block;
	color: #fff;
	width: 25%;
	font-size: 100%;
	background-color: var(--color01);
	border: solid 1px var(--color01);
  border-radius: 5px;
	cursor: pointer;
	padding: 25px 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;  
}

/* 各ベンダープレフィックスが取れた標準版 */
: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;
}
.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 dl {
  display: block;
  border-bottom: solid 1px rgba(0,0,0,0.1);
}
.contact-form dt {
  display: block;
  width: 100%;
	padding-right: 0;
	margin-bottom: 10px;
}
.contact-form dt dd {
  display: block;
}
}

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

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

.contact-tel {
  font-size: 2rem;
}

.contact-form dl {
  padding-bottom: 17px;
  margin-bottom: 17px;
}
.input01 input {
	padding: 15px;
	width: 70%;
}
.input02 input {
	padding: 15px;
	width: 100%;
}
textarea {
	padding: 15px;
}
.bt-form li button {
	width: 35%;
	padding: 15px 0;
}
.bt-form li input {
	width: 35%;
	padding: 15px 0;
}

}

