/* CSS Document */
/*ページタイトル*/
.page_title h1::before{
  content: "RECRUIT";
}
/*コンテンツ*/
.recruit_wrap{
  box-sizing: border-box;
  background-color: #f2f2f6;
}
body[wc-view-type="sp"] .recruit_wrap,
body[wc-view-type="tb"] .recruit_wrap{
  padding: var(--headerHeight) 7vw;
}
body[wc-view-type="tb-l"] .recruit_wrap{
  padding: var(--headerHeight) 10vw;
}
body[wc-view-type="pc"] .recruit_wrap{
  padding: var(--headerHeight) calc((100vw - 750px) / 2);
}
.recruit_wrap > section{
}
.recruit_wrap > section:not(:first-of-type){
  margin-top: calc(var(--headerHeight) / 2);
}
.recruit_wrap > section > h1{
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  font-size: 1.15rem;
  align-items: center;
  transition: opacity 600ms ease;
  opacity: 0;
}
.recruit_wrap > section > h1[inview-state="true"]{
  opacity: 1;
}
.recruit_wrap > section > h1::before{
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: #00bbff;
  transform: rotate(45deg);
  margin-right: 0.5rem;
  flex: none;
}
.recruit_wrap > section > dl{
  display: flex;
  padding: 2px;
  box-sizing: border-box;
  background-color: #fff;
  transition: opacity 600ms ease,transform 600ms ease;
  opacity: 0;
  transform: translateY(1rem);
}
.recruit_wrap > section > dl[inview-state="true"]{
  opacity: 1;
  transform: translateY(0);
}
.recruit_wrap > section > dl:not(:first-of-type){
  margin-top: 5px;
}
body[wc-view-type="sp"] .recruit_wrap > section > dl{
  flex-direction: column;
}
.recruit_wrap > section > dl dt{
  background-color: #f2f2f6;
  font-weight: 700;
}
.recruit_wrap > section > dl dt,
.recruit_wrap > section > dl dd{
  padding: 7px 10px;
  box-sizing: border-box;
}
body:not([wc-view-type="sp"]) .recruit_wrap > section > dl dt{
  width: 200px;
}
body:not([wc-view-type="sp"]) .recruit_wrap > section > dl dd{
  width: calc(100% - 200px)
}
.recruit_wrap > section > dl dd ul{
  padding-left: 1rem;
  list-style-position: outside;
}
.recruit_wrap > section > dl dd ul li:not(:first-of-type){
  margin-top: 0.5rem;
}