/*--------------------------------------------------------------
# ページビジュアル
--------------------------------------------------------------*/
.page_visual {
  background: url(/assets/img/safety_actions/page_visual.jpg) no-repeat center / cover;
}
/*--------------------------------------------------------------
# 不適切保育の防止
--------------------------------------------------------------*/
#safety_childcare {
  padding-top: 0;
  background-image: url(/assets/img/common/side_flower_left.png),url(/assets/img/common/side_flower_right.png);
  background-position: top left, top right;
  background-repeat: repeat-Y;
  background-size: 6%, 7%;
}
@media (min-width:768px) {
  #safety_childcare .content_block {
    align-items: center;
  }
}

/*--------------------------------------------------------------
# セキュリティ対策
--------------------------------------------------------------*/
#safety_security {
  padding: 6rem 0;
  background: url(/assets/img/common/bg_design_1.png) repeat, var(--pale-blue);
  @media (min-width:768px) {
    padding: 8rem 0;
  }
}
#safety_security p {
  margin-bottom: 2em;
  @media (min-width:768px) {
    text-align: center;
  }
}
#safety_security .img_wrap {
  display: flex;
  justify-content: space-between;
  & img {
    width: 47%;
  }
}
/*--------------------------------------------------------------
# 新型コロナウイルス感染対策
--------------------------------------------------------------*/
#safety_infection {
  padding-bottom: 13rem;
  background: #FFF;
  position: relative;
  z-index: 0;
  @media (min-width:768px) {
    padding-bottom: 20rem;
  }

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #FFF7F4;
    mask: url(/assets/img/common/bg_design_2.png);
    -webkit-mask: url(/assets/img/common/bg_design_2.png);
    z-index: -1;
  }
}
#safety_infection .action_list {
  @media (min-width:768px) {
    display: flex;
  }

  > dt {
    color: var(--key-color);
    margin-bottom: 0.5em;
    @media (min-width:768px) {
      width: 27%;
      margin-bottom: 0;
    }
    &::before {
      content: "〇";
    }
  }
  > dd {
    text-indent: -1em;
    margin-left: 1em;
    padding-left: 1em;
    @media (min-width:768px) {
      width: 73%;
      margin-left: 0;
    }
    & ul li::before {
      content:"●";
    }
  }
  &:first-child {
    @media (min-width:768px) {
      padding-top: 2em;
      background: url(/assets/img/safety_actions/infection_illust1.png) no-repeat center right / min(13vw,16rem);
    }
  }
  &:not(:first-child) {
    margin-top: 2em;
    padding-top: 2em;
    background-image: linear-gradient(to right, #D9D9D9, #D9D9D9 0.8rem, transparent 0.8rem, transparent 1.6rem);
    background-size: 1.6rem 0.2rem;
    background-position: 0 2%;
    background-repeat: repeat-x;
  }
}
