@charset "utf-8";


/* -------------------------------------------------------
  contact
------------------------------------------------------- */

.contact p{
  font-size: 114%;
}

/* text
------------------------------------------------------- */
.telNum{
  width: 100%;
  margin:0 auto 50px;
  font-family: "ten-mincho", serif;
  font-feature-settings: "ss02";
  font-weight: normal;
  font-size: 114%;
}
.telNum span{
  font-size:160%;
}




/* form
------------------------------------------------------------ */
#form{
	width: 100%;
	margin: 0 auto 40px;
}

/*table*/
.type01.formTbl th,
.type01.formTbl td{
  padding: 20px 20px 20px 0;
}
.type01.formTbl th{
  width: 28%;
  white-space: nowrap;
  padding-right: 40px;
}

.itemTag{
	padding: 2px 8px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5x;
	border-radius: 5px;
	text-align: center;
	color: #fff;
	font-weight: 400;
	font-size: 85.8%;
	display: inline-block;
	line-height: 1.3;
	margin-left: 10px;
	background: #6e7dbc;
	float: right;
}
.note{
	color: #999999;
	padding:2px 5px;
	text-align: left;
}
.privacy{
	background-color: #fefbf3;
	color: #444;
	padding: 20px;
	font-size:78%;
	height: 15vh;
	overflow-y: scroll;
}
.errorTxt {
	margin-bottom: 20px;
	color: #ff0000;
	text-align: center;
	padding: 10px;
	background-color: rgba(255,255,255,0.8);
}
.errorTxtS {
	margin-top:5px;
	color: #ff0000;
	display: block;
	font-size: 88%;
	line-height:1.1;
}
@media all and (max-width: 767px) {
  .formTbl{
    width: 100%;
    box-sizing:border-box;
	}
  .type01.formTbl th{
    background-color: #f1f1f1;
    padding:15px 10px;
  }
  .type01.formTbl th,
	.type01.formTbl td {
		display: block;
		width: 100%;
	}
}

/*btn*/
#submitBtn{
	width:100%;
	margin:30px auto;
	text-align:center;
	color: #fff !important;
	background-repeat: no-repeat;
	font-weight: 700;
	line-height: 1.4615;
	vertical-align: middle;
	border: none;
	text-decoration: none !important;
	position:relative;
}
#submitBtn input{
	font-size:110%;
	display:inline-block;
	height:100%;
	padding:15px 4em;
	margin: 0 10px;
	border: none;
	color: #fff;
	font-weight:700;
	cursor: pointer;
  -webkit-transition: background .2s ease;
	transition: background .2s ease;
}
.formBtn{
	background-color: #444;
}
#submitBtn input:hover {
	background-color: #aaa;
}

input.txt,
textarea.txt,
select.txt {
	border: 1px solid #becbe2;
	border-radius: 3px;
	-webkit-box-shadow: inset 0px 3px 4px 0px #eee;
	box-shadow: inset 0px 3px 4px 0px #eee;
	padding: 5px;
	max-width: 100%;
	font-size: 100%;
	background-color: #fff;
}
input.txt {
	padding: 5px 2px;
}
input.txt:focus,
textarea.txt:focus {
	border: 1px solid #f19900;
	background-color:#F9FFEF;
}
input.check {
	position: relative;
	top: 2px;
	margin-right: 3px;
}
input.s01,select.s01 { width: 5em;}
input.s02,select.s02 {	width: 50px;}

input.m01,select.m01 { width: 150px;}
input.m02,select.m02 { width: 250px;}
input.m03,select.m03 { width: 350px;}
input.m04,select.m04 { width: 650px;}

textarea.l01,input.l01,select.l01 {width: 98%;}
textarea.l02,input.l02,select.l02 {width: 50%;}

@media screen and (max-width:767px){
  .note{display: block;}
  .itemTag{
    float:none;
  }
  #submitBtn{
    width:auto;
  }
  input.txt {
    padding: 15px 2px;
  }
  input.m02,select.m02 { width: 100%;}
  input.m03,select.m03 { width: 100%;}
  input.m04,select.m04 { width: 100%;}
  
  /* error */
  input.err,
  textarea.err,
  select.err {
    border-color: #ff6060;
    background: #fff0f0;
  }
  input.err:focus,
  textarea.err:focus {
    border-color: #ee5959;
  }
}
/* フォーム部品
---------------------------------------------------------- */
.check_layout input{
    display:none;
}
.check_layout label{
    display:inline-block;
    position:relative;
    padding-left:25px;
}
.check_layout label:before,.check_layout label:after{
    content:'';
    display:block;
    position:absolute;
    top:0;
    left:0;
    width:15px;
    height:15px;
}
.check_layout label:before{
    background:#fafafa;
    border:1px solid #666666;
}
.check_layout input:checked + label:after{
	left:1px;
	top:-1px;
	content:"\f00c";
	color:#004ea2;
	height:15px;
	margin:auto;
	font-size:108%;
	font-family: FontAwesome;
}