/* CSS Document */
/*ページタイトル*/
.page_title h1::before{
  content: "COTACT";
}
/*コンテンツ*/
.contact_wrap{
  box-sizing: border-box;
}
body[wc-view-type="sp"] .contact_wrap,
body[wc-view-type="tb"] .contact_wrap{
  padding: var(--headerHeight) 7vw;
}
body[wc-view-type="tb-l"] .contact_wrap{
  padding: var(--headerHeight) 10vw;
}
body[wc-view-type="pc"] .contact_wrap{
  padding: var(--headerHeight) calc((100vw - 750px) / 2);
}
.contact_wrap > p{
  line-height: 1.8rem;
  margin-bottom: 1.5rem;
}
body[wc-view-type="tb-l"] .contact_wrap > p,
body[wc-view-type="pc"] .contact_wrap > p{
  text-align: center;
}
.contact_wrap .tel_box{
  background-color: #f2f2f6;
}
body:not([wc-view-type="sp"]) .contact_wrap .tel_box{
  width: 400px;
  margin: 0 auto;
}
.contact_wrap .tel_box > dt,
.contact_wrap .tel_box > dd{
  box-sizing: border-box;
}
.contact_wrap .tel_box > dt{
  padding: 0.75rem 1rem;
  font-weight: 700;
  text-align: center;
  font-size: 1.15rem;
  border-bottom: 2px solid #fff;
}
.contact_wrap .tel_box > dd{
  padding: 0.75rem 1rem 1rem 1rem;
}
.contact_wrap .tel_box > dd > p{
  line-height: 1.8rem;
  margin-bottom: 0.75rem;
}
.contact_wrap .tel_box > dd > a{
  display: flex;
  color: #444455;
  font-family: "Oswald";;
  font-weight: 700;
  line-height: 1em;
  text-decoration: none;
  font-size: 1.75rem;
  width: fit-content;
  margin: 0 auto;
  align-items: center;
}
.contact_wrap .tel_box > dd > a .c_tel_icon{
  width: 35px;
  height: 35px;
  background-color: #444455;
  -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;
  display: block;
  position: relative;
  z-index: 1;
  flex: none;
  margin-right: 0.75rem;
}
.contact_wrap .tel_box > dd > a::after{
  content: "";
  width: 35px;
  height: 35px;
  border: solid 1px #444455;
  border-radius: 50%;
  position: absolute;
  z-index: 2;
  box-sizing: border-box;
}
.contact_wrap .tel_box > dd .tel_time{
  display: flex;
  margin-top: 0.75rem;
}
body:not([wc-view-type="sp"]) .contact_wrap .tel_box > dd .tel_time{
  justify-content: center;
  column-gap: 0.75rem;
}
body[wc-view-type="sp"] .contact_wrap .tel_box > dd .tel_time{
  flex-direction: column;
  align-items: center;
  gap:0.15rem;
}
.contact_wrap .tel_box > dd .tel_time > dl{
  display: flex;
  align-items: center;
}
.contact_wrap .tel_box > dd .tel_time > dl dt{
  padding-right: 0.25rem;
}
.contact_wrap .tel_box > dd .tel_time > dl dt span{
  border: solid 1px #444455;
  box-sizing: border-box;
  padding: 0.1rem 0.5rem 0.2rem;
  display: table;
  line-height: 1em;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 1rem;
}
/*フォーム*/
form{
  margin-top: 2rem;
}
form > dl{
  display: flex;
}
form > dl:not(:first-of-type){
  margin-top: 1rem;
}
body[wc-view-type="sp"] form > dl{
  flex-direction: column;
}
form > dl dt{
  display: flex;
  align-items: center;
  gap:0.5rem;
  padding-bottom: 0.5rem;
}
body:not([wc-view-type="sp"]) form > dl dt{
  width: 200px;
}
form > dl dt::before{
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.15rem 0.35rem 0.3rem 0.35rem;
  display: table;
  border-radius: 1rem;
  color: #fff;
  line-height: 1em;
}
form > dl .required::before{
  content: "必須";
  background-color: #444455;
}
form > dl .any::before{
  content: "任意";
  background-color: #bbb;
}
body:not([wc-view-type="sp"]) form > dl dd{
  width: calc(100% - 200px);
}
/*元々の物から変更*/
input.wc-input.system_type{
  --focusshadow: #444455 !important;
  --inputbg: #f2f2f6 !important;
}
input.wc-input.system_type:focus{
  box-shadow: 0 0 .3rem -.05rem #444455 inset !important;
}
.wc-textarea .wcinputdec{
  background-color: #f2f2f6 !important;
}
[wc-form][captcha-state] [wc-captcha]{
  border: none !important;
  padding: 0 !important;
  margin-top: 1.5rem;
}
[wc-form][captcha-state] [wc-captcha] .captchabtn{
  justify-content: center !important;
}
.btnswrap{
  margin-top: 1.5rem;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}