@charset "UTF-8";
/* ----------------------------------------
   maintenance.scss
   テスト・メンテナンス用 共通レイアウト
---------------------------------------- */
/* リセット */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans JP", sans-serif;
}

/* ----------------------------------------
   メインレイアウト（中央寄せ）
---------------------------------------- */
body {
  background-color: #29abe2;
  color: #ffffff;
}

.maintenance {
  background-color: #29abe2;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.maintenance .maintenance-inner {
  width: 100%;
  max-width: 800px;
  padding: 40px 30px;
  text-align: center;
}
.maintenance .maintenance-icon {
  margin-bottom: 30px;
}
.maintenance .maintenance-icon img,
.maintenance .maintenance-icon svg {
  width: 80px;
  height: auto;
  display: inline-block;
}
.maintenance h1 {
  color: #ffffff;
  font-size: 30px;
  margin: 0 auto 20px;
  font-weight: 600;
}
.maintenance p {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.8;
  margin: 0 auto;
}

/* ----------------------------------------
   スマホ調整
---------------------------------------- */
@media (max-width: 480px) {
  .maintenance .maintenance-inner h1 {
    font-size: 25px;
  }
  .maintenance .maintenance-inner p {
    font-size: 14px;
  }
}