@charset "utf-8";
/**
 * youji-lp-instance
 */

/* ========================================
 * Layout - セクション別
 * ======================================== */

.l-sect-brochure {
  --_bg-color: var(--color-blue-green-white-500, #EDF9F8);

  &::before {
    content: "";
    display: block;
    background-color: var(--color-white, #fff);
    height: 60px;
    clip-path: circle(1300px at 50% -1245px);
    margin-bottom: -60px;
  }

  &::after {
    content: "";
    display: block;
    background-color: var(--_bg-color);
    height: 60px;
    clip-path: circle(1300px at 50% -1245px);
    margin-bottom: -60px;
  }

  .l-sect-brochure__inner {
    background-color: var(--_bg-color);
  }

  .l-sect-brochure__bg-circle {
    position: relative;
    z-index: 1;

    > img {
      position: relative;
      z-index: 1;
    }

    &::before {
      position: absolute;
      top: 50%;
      left: 50%;
      translate: -50% -50%;
      content: "";
      display: block;
      width: 667px;
      aspect-ratio: 1 / 1;
      background: radial-gradient(circle at 50% 50%, #FFFCF5FF 50%, #FFFCF500 75%);
      z-index: -1;
      border-radius: 9999px;
      overflow: clip;
    }
  }
}
