*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: #166bcd;
  display: flex;
  align-items: center;
  justify-content: center;
}

.desktop {
  position: relative;
  width: min(100vw, calc(100vh * 1440 / 1024), 1440px);
  width: min(100vw, calc(100dvh * 1440 / 1024), 1440px);
  max-height: 100vh;
  max-height: 100dvh;
  aspect-ratio: 1440 / 1024;
  container-type: size;
  container-name: desktop;
  background: #166bcd;
  overflow: hidden;
  flex-shrink: 0;
}

.desktop__title {
  position: absolute;
  left: calc(72 / 1440 * 100%);
  top: calc(66 / 1024 * 100%);
  margin: 0;
  width: calc(310 / 1440 * 100%);
  height: calc(42 / 1024 * 100%);
  font-family: "Noto Sans JP", "Yu Gothic UI", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: calc(32 * 100cqw / 1440);
  line-height: normal;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
}
