.output {
  width: 100%;
  padding-block: min(calc(100vw * (100 / 1440)), 100px);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("../../img/output/output_bg.png");

  @media (max-width: 768px) {
    padding-block: min(calc(100vw * (72 / 375)), 72px) min(calc(100vw * (48 / 375)), 48px);
    background-position: center bottom;
    background-size: contain;
    background-image: url("../../img/output/output_bg_sp.png");
  }

  .heading-component {
    @media (max-width: 768px) {
      padding-top: 60px;
    }

    .english {
      font-size: 180px;
      @media (max-width: 768px) {
        font-size: 88px;
      }
    }
  }

  .section-sub-title {
    margin-top: 24px;
  }

  .output-typo {
    display: flex;
    flex-direction: column;
    gap: 40px;
    .output-typo__upper {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }
    .output-typo__lower {
      @media (max-width: 768px) {
        padding-inline: calc(100vw * (14 / 375));
        line-height: 1.8;
        font-size: calc(100vw * (14 / 375));
      }
    }
  }
  
  .cross-border-bg-wrapper {
    position: relative;
    z-index: 1;
    .cross-border-bg-wrapper__img {
      position: absolute;
      top: -335px;
      right: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
    }  
  }
}

