/* CSS Document */

/*ページタイトル*/
section.page_title_img{
  background-color: #fff;
}
section.page_title > h1::before{
  content: "Contact";
}
/*その他*/
main{
  margin-top: calc(var(--headerHeight) * -1);
}
/*コンテンツ*/
div.contact_wrap{
  padding: var(--headerHeiht) 0;
  background-color: #fff;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
body[wc-view-type="sp"] div.contact_wrap{
  padding: var(--headerHeight) 6.5vw;
}
body[wc-view-type="tb"] div.contact_wrap,
body[wc-view-type="tb-l"] div.contact_wrap{
  padding: var(--headerHeight) 10vw; 
}
body[wc-view-type="pc"] div.contact_wrap{
  padding: var(--headerHeight) calc((100vw - 1100px) / 2);
}
div.contact_wrap div.fap_text{
  padding-bottom: var(--headerHeight);
}
div.contact_wrap div.fap_text > p{
  line-height: 1.8rem;
  color: #444;
}
body:not([wc-view-type="sp"]) div.contact_wrap div.fap_text > p{
  text-align: center;
}
div.contact_wrap div.fap_text div.btn{
  margin: 1rem auto 0 auto;
}
div.contact_wrap div.fap_text div.btn a::before{
  display: none;
}
form{
  border: solid 1px #ccc;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
body[wc-view-type="sp"] form{
 padding: 2.5rem 1.5rem 1.5rem 1.5rem;
}
body[wc-view-type="tb"] form{
 padding:2.5rem 2.5rem 2rem 2.5rem;
}
body[wc-view-type="tb-l"] form{
  padding: 3rem 3rem 2rem 3rem;
}
body[wc-view-type="pc"] form{
  width: 750px;
  margin: 0 auto;
  padding: 3rem 3rem 2.5rem 3rem;
}
form p.form_title{
  display: table;
  padding: 0 2rem;
  background-color: #fff;
  position: absolute;
  top: -0.6rem;
  font-size: 1.2rem;
  line-height: 1em;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
body[wc-view-type="pc"] form p.form_title{
  padding: 0 2rem;
}
form dl{
  margin-bottom: 1rem;
}
form dl dt{
  margin-bottom: 0.5rem;
}
form dl dd{
}
form dl dd input,
form dl dd textarea{
  border: solid 1px #ccc !important;
  box-sizing: border-box;
}
form dl dd input{
  height: 40px !important;
  border: solid 1px #ccc !important;
  box-sizing: border-box;
  font-size: 0.9rem;
}
body[wc-view-type="sp"] form dl dd input{
  height: 35px !important;
}
form dl dd textarea{
  font-size: 0.9rem;
}
div.soushin{
  display: table;
  margin: 1.5rem auto 0 auto;
}
div.soushin button{
  background-color: #fff;
  border: solid 1px #2eaaf9;
  color: #2eaaf9;
  box-sizing: border-box;
  padding: 0.75rem 2.5rem 0.75rem 1.5rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
  line-height: 1em;
}
div.soushin button::after{
  content: "";
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #2eaaf9;
  -webkit-mask-image: var(--wciconsrc);
  mask-image: var(--wciconsrc);
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: var(--headerBtnSize);
  mask-size: var(--headerBtnSize);
}