html {
  height: 100%;
  overflow-x: hidden;
}
body {
  height: 100%;
  margin: 0;
  background-color: $baseColor;
}
#root {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-family: Meiryo UI;
  
  .container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    border: 1px solid darken(#fff, 20%);
    border-radius: 5px;
    padding: 20px 20px 30px 20px;
  }
  .rootHeader {
    display: flex;
    margin: 0 0 20px 0;
    font-size: 20px;
    letter-spacing: 1px;
  }
  .rootMain {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 250px;
  }
}
.logo {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 230px;
  width: 100%;
  margin: 0 10px 0 0;
}
.logoImg {
  max-width: 400px;
}
