* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100vw;
  overflow-x: hidden;
  font-family: Arial, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
}

body {
  background: #FFF;
  color: #111;
}

.isPC {
  display: block;
}

.isSP {
  display: none;
}

.wrapper {
  width: 100vw;
  height: 100vh;
  padding-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Header */
.header {
  width: 100vw;
  height: 50px;
  border-bottom: 1px solid #EEE;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__logo {
  width: 150px;
}

/* Maintenance */
.maintenance {
  width: 100%;
  max-width: 1020px;
  height: 480px;
  padding: 0 0 0 90px;
  margin: 0 auto;
  position: relative;
}

.maintenance__inner {
  max-width: 380px;
}

.maintenance__title {
  font-size: 20px;
  line-height: 1.1;
}

.maintenance__text {
  line-height: 2;
  font-size: 14px;
  margin: 18px 0 20px;
}

.maintenance__schedule {
  line-height: 1.1;
  font-size: 14px;
  font-weight: bold;
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.maintenance__schedule span {
  display: block;
}

.maintenance__background {
  max-width: 656px;
  position: absolute;
  right: 0;
  bottom: 0;
}


/* Mobile Style */
@media screen and (max-width: 767px) {
  .isPC {
    display: none;
  }

  .isSP {
    display: block;
  }

  .header {
    justify-content: flex-start;
    padding-left: 20px;
  }

  .maintenance {
    height: calc(100vh - 50px);
    padding: 42px 30px 0;
  }

  .maintenance__schedule {
    flex-direction: column;
    align-items: flex-start;
  }

  .maintenance__schedule span:first-of-type {
    margin: 0 0 6px -6px;
  }

  .maintenance__background {
    width: 100vw;
    right: auto;
    left: 0;
  }
}
