/* CSS Document */
/*ページタイトル*/
.page_title > h2::before{
  content: "REQUIREMENTS";
}
/*コンテンツ*/
.requirements{
  box-sizing: border-box;
}
body[wc-view-type="sp"] .requirements{
  padding: calc(var(--headerHeight) / 2) 6vw;
}
body[wc-view-type="tb"] .requirements,
body[wc-view-type="tb-l"] .requirements{
  padding: calc(var(--headerHeight) / 2) 4.5vw;
}
body[wc-view-type="pc"] .requirements{
  padding: calc(var(--headerHeight) / 2) calc((100vw - 800px) /2);
}
.requirements > article{
}
.requirements > article:not(:first-of-type){
  margin-top: calc(var(--headerHeight) / 2);
}
.requirements > article > h2{
  font-weight: 700;
  display: flex;
  align-items: center;
  font-size: 1.15rem;
}
.requirements > article > h2::before{
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #2277ca;
  margin-right: 0.5rem;
}
.requirements > article > dl{
  margin-top: 1rem;
  display: flex;
  transition: opacity 600ms ease,transform 600ms ease;
  opacity: 0;
  transform: translateY(1rem);
}
.requirements > article > dl[inview-state="true"]{
  opacity: 1;
  transform: translateY(0);
}
body[wc-view-type="sp"] .requirements > article > dl{
  flex-direction: column;
  margin-top: 0.75rem;
}
.requirements > article > dl:not(:first-of-type){
  margin-top: 0.5rem;
}
.requirements > article > dl dt,
.requirements > article > dl dd{
  background-color: #efefef;
  padding: 0.75rem;
  box-sizing: border-box;
}
.requirements > article > dl dt{
  font-weight: 700;
}
body[wc-view-type="sp"] .requirements > article > dl dt{
  border-bottom: 2px solid #fff;
  border-radius: 1rem 1rem 0 0;
}
body:not([wc-view-type="sp"]) .requirements > article > dl dt{
  width: 200px;
  border-right: 1px solid #fff;
  border-radius: 1rem 0 0 1rem;
}
body[wc-view-type="sp"] .requirements > article > dl dd{
  border-radius: 0 0 1rem 1rem;
}
body:not([wc-view-type="sp"]) .requirements > article > dl dd{
  width: calc(100% - 200px);
  border-radius: 0 1rem 1rem 0;
}
.requirements > article > dl dd ul{
  padding-left: 1rem;
  list-style-position: outside;
}
.requirements > article .btn{
  margin: 1rem auto 0 auto;
}
.requirements > article .btn a{
  background-color: #e95464;
  padding: 0.75rem 1rem 0.75rem 1.25rem;
  font-size: 1.3rem;
}