@charset "UTF-8";
/* ===========================================================================
  variable
============================================================================= */
/* 外部読み込みを使用していないためiOS / Android では内蔵フォント優先 */
/* ===========================================================================
  mixin
============================================================================= */
.p-lead, .p-lead-yellow {
  z-index: 1;
  position: relative;
}
.p-lead::before, .p-lead-yellow::before {
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  translate: -50% -50%;
  background: url("../../../../requirements/img/bg_01.png") no-repeat center/contain;
  content: "";
}

.p-lead-yellow::before {
  background: url("../../../../requirements/img/bg_02.png") no-repeat center/contain;
}

.p-lead_text {
  font-weight: 700;
  font-size: max(2rem, 3.8vw);
  text-align: center;
}

@media (min-width: 768px){
  .p-lead_text {
    font-size: 3rem;
  }
}

@media (min-width: 1024px){
  .p-lead::before, .p-lead-yellow::before {
    width: 400px;
    height: 400px;
  }
  .p-lead_text {
    font-size: 4.5rem;
  }
}
/*# sourceMappingURL=style.css.map */