/* CSS Document */
/*お問い合わせ*/
div.conatct_area{
  padding: 0 0 var(--headerHeight) 0;
  box-sizing: border-box;
}
div.conatct_area div.contact_text{
  box-sizing: border-box;
  background-color: #fff;
}
body[wc-view-type="sp"] div.conatct_area div.contact_text{
  padding: var(--headerHeight) 7vw calc(var(--headerHeight) / 2) 7vw;
}
body[wc-view-type="tb"] div.conatct_area div.contact_text{
  padding: var(--headerHeight) 7.5vw calc(var(--headerHeight) / 2) 7.5vw;
}
body[wc-view-type="tb-l"] div.conatct_area div.contact_text{
  padding: var(--headerHeight) 10vw calc(var(--headerHeight) / 2) 10vw;
}
body[wc-view-type="pc"] div.conatct_area div.contact_text{
  padding: var(--headerHeight) 0 calc(var(--headerHeight) / 2) 0;
}
div.conatct_area div.contact_text > p{
  line-height: 1.8rem;
  margin-bottom: 1rem;
}
body:not([wc-view-type="sp"]) div.conatct_area div.contact_text > p{
  text-align: center;
}
/*
body[wc-view-type="sp"] div.conatct_area div.contact_text > p{
  margin-bottom: 1.8rem;
}
body[wc-view-type="tb"] div.conatct_area div.contact_text > p{
  margin-bottom: 2rem;
}
body[wc-view-type="tb-l"] div.conatct_area div.contact_text > p,
body[wc-view-type="pc"] div.conatct_area div.contact_text > p{
  margin-bottom: 2.25rem;
}*/
/*お問い合わせフォーム*/
form{
  box-sizing: border-box;
}
body[wc-view-type="sp"] form{
  padding: calc(var(--headerHeight) / 2) 7vw 0 7vw;
}
body[wc-view-type="tb"] form{
  padding: calc(var(--headerHeight) / 2) 7.5vw 0 7.5vw;
}
body[wc-view-type="tb-l"] form{
  padding: calc(var(--headerHeight) / 2) 10vw 0 10vw;
}
body[wc-view-type="pc"] form{
  padding: calc(var(--headerHeight) / 2) calc((100vw - 800px) / 2) 0 calc((100vw - 800px) / 2);
}
form p.form_title{
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  border-bottom: 1px solid #00a79e;
  padding-bottom: 0.75rem;
  text-align: center;
}
body[wc-view-type="sp"] form p.form_title{
  margin-bottom: 1.8rem;
}
body[wc-view-type="tb"] form p.form_title{
  margin-bottom: 2rem;
}
body[wc-view-type="tb-l"] form p.form_title,
body[wc-view-type="pc"] form p.form_title{
  margin-bottom: 2.25rem;
}
form > dl{
  display: flex;
  margin-bottom: 1rem;
  width: calc(100% - 2rem);
  margin: 0 auto 1rem auto;
}
body[wc-view-type="sp"] form > dl{
  flex-direction: column;
}
form > dl dt{
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  width: 150px;
}
body[wc-view-type="sp"] form > dl dt{
  width: 100%;
}
form > dl dd{
  width: calc(100% - 150px);
}
body[wc-view-type="sp"] form > dl dd{
  width: 100%;
}
form > dl dd input{
  height: 40px;
  background-color: #f2f2f2;
}
form > dl dd div.textareawrap textarea{
  background-color: #f2f2f2 !important;
}
div.soushin{
  display: table;
}
body[wc-view-type="sp"] div.soushin{
  margin: 1.8rem auto 0 auto;
}
body[wc-view-type="tb"] div.soushin{
  margin: 2rem auto 0 auto;
}
body[wc-view-type="tb-l"] div.soushin,
body[wc-view-type="pc"] div.soushin{
  margin: 2.25rem auto 0 auto;
}
div.soushin button{
  background-color: #00a79e;
  color: #fff;
  font-weight: 700;
  padding: 0.5rem 2.5rem 0.5rem 0.75rem;
  border-radius: 0.75rem;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}
div.soushin button::after{
  content: "";
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 0.25rem;
  transform: translateY(-50%);
  z-index: 2;
  width: 2rem;
  height: 2rem;
  -webkit-mask-image: var(--wciconsrc);
  mask-image: var(--wciconsrc);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}