.main_view {
  display: flex;
  width: calc(100% - 250px);
  height: 500px;
  padding-left: 250px;
  align-items: center;
  flex-shrink: 0;
  padding-top: 100px;
  background: #cbcbcb;

  .title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex-shrink: 0;

    .en {
      color: #000;
      font-family: Khand;
      font-size: 70px;
      font-style: normal;
      font-weight: 700;
      line-height: 100%;
    }

    .ja {
      color: #000;
      font-family: "Sawarabi Gothic";
      font-size: 24px;
      font-style: normal;
      font-weight: 400;
      line-height: 100%;
    }
  }
}

@media (width <= 1300px) {
  .main_view {
    width: calc(100% - 50px);
    height: 300px;
    padding-left: 50px;

    .title {
      .en {
        font-size: 40px;
      }

      .ja {
        font-size: 18px;
      }
    }
  }
}
