:root {
    --main-bg-color: #FFFFE0;
    --complimentary-color: #E0E0FF;
}

html {
    background-color: var(--main-bg-color);
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 450;
    font-style: normal;
}

.noto-sans-jp-test {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
}

select, textarea, input, button {
  font: inherit;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

input {
    background-color: var(--complimentary-color);
}

div, form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

div {
    width: 70%;
}

form > *, form > div > *{
    margin: 0 0 10px 0;
}

#last {
    margin-top: 20px;
}

h1 {
    margin-top: 0;
}

/* CSS */
.button-56 {
  align-items: center;
  background-color: var(--complimentary-color); 
  border: 2px solid #111;
  border-radius: 8px;
  box-sizing: border-box;
  color: #111;
  cursor: pointer;
  display: flex;
  font-family: Inter,sans-serif;
  font-size: 16px;
  height: 48px;
  justify-content: center;
  line-height: 24px;
  max-width: 100%;
  padding: 0 25px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-56:after {
  background-color: #111;
  border-radius: 8px;
  content: "";
  display: block;
  height: 48px;
  left: 0;
  width: 100%;
  position: absolute;
  top: -2px;
  transform: translate(8px, 8px);
  transition: transform .2s ease-out;
  z-index: -1;
}

.button-56:hover:after {
  transform: translate(0, 0);
}

.button-56:active {
  background-color: var(--complimentary-color);
  outline: 0;
}

.button-56:hover {
  outline: 0;
}

@media (min-width: 768px) {
  .button-56 {
    padding: 0 40px;
  }
}