/* リセット寄り */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue",
               "Segoe UI", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  background-color: #ffffff;
  color: #111;
}

/* 全体 */
.maintenance {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
}

/* ロゴ */
.logo img {
  width: 220px;
  max-width: 80%;
  height: auto;
  margin-bottom: 32px;
}

/* テキスト */
.text h1 {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 600;
}

.text p {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

/* PC */
@media screen and (min-width: 768px) {
  .logo img {
    width: 260px;
  }

  .text h1 {
    font-size: 22px;
  }

  .text p {
    font-size: 16px;
  }
}
