@charset "utf-8";
/* CSS Document */

@media print,
screen and (min-width: 768px) {
  .p-top {
    background-image: url("../images/mv.webp");
    position: relative;
    background-position: center;
    background-color: #f0f0f0;
    border-radius: 15px;
    background-size: cover;
    background-attachment: fixed;
  }
}

@media not all and (min-width: 768px) {
  .p-top {
    background-image: url("../images/mv.webp");
    background-color: #000000;
    padding: 130px 0 50px;
    border-radius: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }
}

/* 企業様のお悩み */
.worries__heading {
  --_icon-size: 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px;
}

.worries__heading::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url("/corp/assets/images/common/icon_check_box--full.svg");
  background-color: #000;
  block-size: var(--_icon-size);
  aspect-ratio: 1;
  margin-block: calc((1lh - var(--_icon-size)) / 2);
}