@charset "utf-8";

/*---------------------------------------------------------------------------
-----------------------------------------------------------------------------

	Contact

-------------------------------------------------------------------------------
-------------------------------------------------------------------------------*/

.catch{
  text-align: center;
  font-size: 1.6rem;
  margin:50px auto 40px auto;
  max-width: 1150px;
}
@media screen and (max-width: 959px) {
  .catch{
    line-height: 170%;
    margin :0px 10px 40px 10px;
  }
}

.contactSec{
  border-top: 1px solid #ccc;
  padding: 40px 140px 0px 140px;
  margin:0 auto;
  max-width: 860px;
}
@media screen and (max-width: 1149px) {
  .contactSec{
    padding: 40px 25px 0px 25px;
    margin:0;
    max-width: 100%;
  }
}

@media screen and (max-width: 599px) {
  .contactSec{
    padding:20px 15px 0px 15px;
    max-width: 100%;
  }
}

/*-- input ---*/

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  font-family: "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro," メイリオ", Meiryo, Osaka," ＭＳ Ｐゴシック", MS PGothic," sans-serif";
	font-size:1.6rem;
	border: 1px solid #E8E8E8;
	background-color: #F2F2F2;
  -webkit-appearance: none;
  box-sizing: border-box;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  height: 40px;
}

textarea {
  width: 100%;
  height: 150px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
	border: 1px solid #77A059;
	background-color: #EFF6E8;
}

input[type="radio"]{
	display: none;
}
label.radio{
	display: inline-block;
	position: relative;
	cursor: pointer;
	margin-left: 20px;
	padding: 10px 20px;
	border-radius: 2px;
	font-size: 1.5rem;
	text-align: center;
	line-height: 1;
}
label.radio:before{
	position: absolute;
	content: "";
	top: 50%;
	left: -15px;
	width: 26px;
	height: 26px;
	margin-top: -14px;
	background: #E8E8E8;
	border-radius: 50%;
}
input[type="radio"]:checked + label.radio:after {
	position: absolute;
	content: "";
	top: 50%;
	left: -9px;
	width: 14px;
	height: 14px;
	margin-top: -8px;
	border-radius: 50%;
	background: #00A3D9;
}
@media screen and (max-width: 599px) {
  label.radio{
    display: block;
    float: left;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 14px;
    border: 1px solid #ddd;
    font-size: 1.6rem;
    text-align: center;
    line-height: 1;
    transition: .2s;
  }

  label.radio:before {
	top: 0;
	left: 0;
	width: auto;
	height: auto;
	margin-top: -14px;
	background: none;
	border-radius: 0;
}
  
input[type="radio"]:checked + label.radio:after {
	top: 0;
	left: 0;
	width: auto;
	height: auto;
	margin-top: -14px;
	background: none;
	border-radius: 0;
}
  
  label.radio:first-of-type{
    border-radius: 3px 0 0 3px;
  }

  label.radio:last-of-type{
    border-radius: 0 3px 3px 0;
  }

  input[type="radio"]:checked + .switch-on {
    border: 1px solid #a1b91d;
    background-color: #a1b91d;
    color: #fff;
  }

  input[type="radio"]:checked + .switch-off {
    border: 1px solid #a1b91d;
    background-color: #a1b91d;
    color: #fff;
  }
}


/* checkbox */
input[type=checkbox] {
  display: none;
}

.checkbox {
  box-sizing: border-box;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  position: relative;
  display: inline-block;
  margin: 0 20px 8px 0;
  padding: 12px 12px 12px 42px;
  border-radius: 8px;
  background-color: #f6f7f8;
  vertical-align: middle;
  cursor: pointer;
}
.checkbox:hover {
  background-color: #CCF2FF;
}
.checkbox:hover:after {
  border-color: #00A3D9;
}
.checkbox:after {
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  position: absolute;
  top: 50%;
  left: 15px;
  display: block;
  margin-top: -10px;
  width: 16px;
  height: 16px;
  border: 2px solid #bbb;
  border-radius: 6px;
  content: '';
}


.checkbox:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 21px;
  display: block;
  margin-top: -7px;
  width: 5px;
  height: 9px;
  border-right: 3px solid #00A3D9;
  border-bottom: 3px solid #00A3D9;
  content: '';
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
input[type=checkbox]:checked + .checkbox:before {
  opacity: 1;
}


/* form table */

table.formTbl {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0px;
  margin-top: 18px;
  margin-bottom: 35px;
}
  @media screen and (max-width: 599px) {
    table.formTbl {
      margin-top: 0px;
      margin-bottom: 20px;
    }
  }

	table.formTbl th {
	width: 240px;
	font-weight: normal;
	text-align: left;
	vertical-align: top;
	padding: 25px 0px 10px 0px;
	background: url(../common/s03.gif) no-repeat 0px 25px;
	font-size: 1.5rem;
	}
@media screen and (max-width: 599px) {
  table.formTbl th {
    display: block;
    width: 100%;
    padding: 15px 5px 5px 0px;
  }
}
			
	table.formTbl td {
  text-align: left;
  padding: 15px 0px ;
	}
  @media screen and (max-width: 599px) {
    table.formTbl td {
      display: block;
      width: 100%;
      padding: 0px 0px 15px 0px;
      border-bottom: 1px solid #ddd;
      overflow: hidden;
      box-sizing: border-box;
    }
    
    table.formTbl td.er input[type="text"] {
    border-color: #FF0000;
    background: #FFE6E6;
    }
  }

		table.formTbl th span {
			padding:1px 6px 0px 6px;
			color:#E74343;
      border: 1px solid #E74343;
			font-size:1.2rem;;
			float:right;
			margin-right:25px;
		}
@media screen and (max-width: 599px) {
		table.formTbl th span {
			margin-right:5px;
		}
		table.formTbl td.chk {
      padding-left: 0px;
		}
}

/*-- ok ---*/

.okTtl {
  text-align: center;
  padding: 18px;
  font-size: 125%;
  color: #FFF;
  margin: 16px 0px 40px;
  background: #F9A32F;
		}

.okTxt {
  margin: 30px 0px;
  padding: 0px 0px 100px 0px;
  line-height: 180%;
  border-bottom: 1px solid #DDD;
  text-align: center;
		}

/*-- error ---*/

td.er p {
  display: block;
	color: #FC1603;
	padding: 10px 3px 0px 0px;
		}
		
/* ---- form btn ---- */

.formBtn,
.delBtn{
margin-top:14px;
margin-bottom: 100px;
width:100%;
text-align:center;
}
	
.formBtn input{
    -webkit-appearance: none;
	text-align:center;
	margin:0px auto;
	display:block;
    width: 100%;
    padding: 13px;
    font-size: 2.0rem;
    background: #B20000;
    border: 2px solid #B20000;
    color: #fff;
    font-weight: normal;
	border-radius: 30px;
	-moz-border-radius: 30px; /* for Firefox */
    -webkit-border-radius: 30px; /* for Chrome */
	}

.delBtn input{
    -webkit-appearance: none;
	text-align:center;
	margin:0px auto;
	display:block;
    width: 100%;
    padding: 13px;
    font-size: 2.0rem;
    background: #999;
    border: 2px solid #999;
    color: #fff;
    font-weight: normal;
	border-radius: 30px;
	-moz-border-radius: 30px; /* for Firefox */
    -webkit-border-radius: 30px; /* for Chrome */
	}
.backBtn{
	margin-top:20px;
}


