/* CSS Document */
section.contact_page{
  width: 100vw;
  background-color: #fff;
}
/*ページタイトル*/
section.contact_page section.pagetitle{
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  margin-top: calc(var(--headerHeight) * -1);
}
[wc-view-type*="sp"] section.contact_page section.pagetitle{
  padding-top: var(--headerHeight);
  height: 200px;;
}
[wc-view-type*="tb"] section.contact_page section.pagetitle{
  padding-top: var(--headerHeight);
  height: 300px;
}
[wc-view-type*="pc"] section.contact_page section.pagetitle{
  padding-top: var(--headerHeight);
  height: 400px;
}
section.contact_page section.pagetitle figure{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
[wc-view-type*="sp"] section.contact_page section.pagetitle figure img{
  width: 100%;
  height: 200px;
  object-fit: cover;
}
[wc-view-type*="tb"] section.contact_page section.pagetitle figure img{
  width: 100%;
  height: 300px;
  object-fit: cover;
}
[wc-view-type*="pc"] section.contact_page section.pagetitle figure img{
  width: 100%;
  height: 400px;
  object-fit: cover;
}
section.contact_page section.pagetitle h2{
  position: absolute;
  top: calc(40% + var(--headerHeight));
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 2.5rem;
  font-weight: 700;
  z-index: 3;
  color: #fff;
}
[wc-view-type*="sp"] section.contact_page section.pagetitle h2{
  font-size: 2rem;
  white-space: nowrap;
}
[wc-view-type*="tb"] section.contact_page section.pagetitle h2{
}
section.contact_page section.pagetitle h2::before{
  content: "CONTACT";
  position: absolute;
  top: -3.5rem;
  font-size: 3.5rem;
  line-height: 1em;
  font-family: 'Oswald';
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
}
[wc-view-type*="sp"] section.pravacy_page section.pagetitle h2::before{
  top: -3rem;
  font-size: 3rem;
}
/*お問い合わせ*/
[wc-view-type*="sp"] div.contact_area{
  padding: var(--headerHeight) 1rem;
  width: 100vw;
  box-sizing: border-box;
}
[wc-view-type*="tb"] div.contact_area{
  padding: var(--headerHeight) 3rem;
  width: 100vw;
  box-sizing: border-box;
}
[wc-view-type*="pc"] div.contact_area{
  padding: var(--headerHeight) 0;
  width: 800px;
  margin: 0 auto;
}
div.contact_area{
}
div.contact_area p{
  line-height: 1.8rem;
  text-align: center;
  margin-bottom: 3rem;
}
[wc-view-type*="sp"] div.contact_area p{
  text-align: left;
}
div.contact_area > div{
  padding: 1rem;
  background-color: #006ac5;
}
div.contact_area > div form{
  background-color: #fff;
  padding: 1rem;
  box-sizing: border-box;
}
div.contact_area > div form dl{
  margin-bottom: 1rem;
}
[wc-view-type*="tb"] div.contact_area > div form dl,
[wc-view-type*="pc"] div.contact_area > div form dl{
  display: flex;
}
[wc-view-type*="sp"] div.contact_area > div form dl dt{
  width: 100%;
}
[wc-view-type*="tb"] div.contact_area > div form dl dt{
  width: 25%;
}
[wc-view-type*="pc"] div.contact_area > div form dl dt{
  width: 20%;
}
div.contact_area > div form dl dt label {
  line-height: 45px;
}
[wc-view-type*="sp"] div.contact_area > div form dl dd{
  width: 100%;
}
[wc-view-type*="tb"] div.contact_area > div form dl dd{
  width: 75%;
}
[wc-view-type*="pc"] div.contact_area > div form dl dd{
  width: 80%;
}
div.contact_area > div form dl dd input {
  background-color: #f2f2f6;
  width: 100%;
  line-height: 40px;
  border: none;
  text-indent: 0.7em;
}
div.contact_area > div form dl dd textarea {
  resize: none;
  width: 100%;
  background-color: #f2f2f6;
  border: none;
  min-height: 3em;
}
div.contact_area > div form div.soushin {
  display: table;
  margin: 0 auto;
}
div.contact_area > div form div.soushin button{
  background-color: #006ac5;
  color: #fff;
  padding: 0 3.2em 0 2em;
  width: 100%;
  line-height: 50px;
  border-radius: 5px;
  font-size: 16px;
  position: relative;
  z-index: 1;
  border: none;
}
div.contact_area > div form div.soushin button span{
  display: table;
  margin: auto;
  background-color: var(--wcLogoSvg);
  background-color: #ffffff;
  -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: cover;
  mask-size: cover;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%);
  z-index: 2;
}