@charset "UTF-8";

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

 冒頭

------------------------------*/
.underline{
    color: #d17936;
}


/*電話番号*/
.inquiry-tel{
    margin-bottom: 60px;
}
.inquiry-tel dt{
    font-weight: bold;
    margin-bottom: 20px;
    padding: 8px 14px;
    display: inline-block;
    border: solid 1px #ccc;
}
.inquiry-tel .num{
	font-size: 32px;
	font-weight: bold;
}
.inquiry-tel a{
	color:#414141;
	font-size: 32px;
	font-weight: bold;
}
.inquiry-tel .num:before{
	content: "Tel.";
    font-size: 20px;
	font-weight: normal;
}
/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
    .inquiry-tel{
        margin-top: 50px;
    }
    .inquiry-tel dt {
        margin-bottom: 15px;
    }
    .inquiry-tel .num{
        font-size: 28px;
    }
}

/*表示･非表示*/
.inquiry-tel .tel02{
    display: none;
}
/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
    .inquiry-tel .tel01{
        display: none;
    }
	.inquiry-tel .tel02{
        display: inline-block;
    }
}


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

 フォーム

------------------------------*/
.bg-wht .txt{
	text-align: left;
    margin-bottom: 40px;
	line-height: 1.8;
}
/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
	.bg-wht .txt{
		margin-bottom: 20px;
	}
}

form input[type=email], form input[type=number], form input[type=password], form input[type=tel],form select, form input[type=text], form input[type=url], form textarea{
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  display: inline-block;
  min-height: 36px;
  padding: 8px 12px;
  width: 100%;
  margin-top: 5px;
  background: #fff;
  border: 1px solid #707070;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-border-radius: 1px;
  -webkit-border-radius: 1px;
  border-radius: 1px;
  font-size: 16px;
  color: #404040;
  outline: none;
}

button{
    cursor: pointer;
    transition: all 300ms 0s ease;
}
.btn-return:hover{
    opacity: .6;
}


/*selectボックス Style*/
.box-select{
    position: relative;
	background: #ffffff;
}
.box-select:before{
    position: absolute;
    top: 50%;
    right: 10px;
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #666666;
    pointer-events: none;
}
.box-select select{
    width: 100%;
    padding-right: 30px;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}
.box-select select::-ms-expand {
    display: none;
}


/*余白*/
.form-group{
	margin-bottom: 25px;
}
.form-list{
	margin-bottom: 60px;
}
.form-check{
	margin-bottom: 30px;
}
.btn-link{
	width: 316px;
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	
	.item-l{
		width: 100%;
	}
	.btn-link{
		width: 100%;
	}
	.form-list{
		margin-bottom: 40px;
	}
}

/*必須タグ*/
.tag-danger{
	background-color: #df9964;
	padding: 3px 6px;
	font-size: 12px;
	color: #fff;
	font-weight: bold;
	margin-left: 5px;
}
/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
	.tag-danger{
        padding: 3px 4px;
        font-size: 10px;
    }
}