/* CSS Document */
.work_detail{
  box-sizing: border-box;
}
body[wc-view-type="sp"] .work_detail,
body[wc-view-type="tb"] .work_detail{
  padding: var(--headerHeight) 6vw;
}
body[wc-view-type="tb-l"] .work_detail{
  padding: var(--headerHeight) 8vw;
}
body[wc-view-type="pc"] .work_detail{
  padding: var(--headerHeight) calc((100vw - 750px) / 2);
}
.work_detail > article{
  border: 1px solid #bbb;
  box-sizing: border-box;
  padding: 1rem;
}
body:not([wc-view-type="sp"]) .work_detail > article{
  padding: 1.5rem;
}
.work_detail > article .work_d_title{
  display: flex;
  flex-direction: column-reverse;
}
.work_detail > article .work_d_title > h1{
  font-weight: 700;
  font-size: 1.15rem;
  margin-top: 0.75rem;
}
.work_detail > article .work_d_title > .w_d_topbox{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.work_detail > article .work_d_title > .w_d_topbox > h2{
  padding: 0.35rem 0.75rem;
  background-color: #000;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1em
}
.work_detail > article .work_d_title > .w_d_topbox > time{
  font-family: "Inter";
  letter-spacing: 1px;
}
.work_detail > article .work_text{
}
.work_detail > article .work_text > *{
  margin-top: 1rem;
}
.work_detail .btn_block{
  margin-top: 2rem;
}