body {
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    background: #ffffff;
    font-size: 16px;
    color: #333333;
    box-sizing: border-box;
}
body * {
    box-sizing: border-box;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
  display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

header {
    width: 100%;
    height: 60px;
    background: #ffffff;
    padding: 5px;
}
#dummy_logo {
    width: 50px;
    height: 50px;
}


article {
    padding: 20px;
}
article h1 {
    font-size: 24px;
}

.dummy_lead {
    padding: 10px 0 20px 0;
}

nav {
    padding: 20px;
    text-align: center;
}
.dummy_btn {
    color: #ffffff;
    background: #a0c753;
    display: inline-block;
    line-height: 3em;
    padding: 0 3em;
    border-radius: 1.5em;
    text-decoration: none;
}

footer {
    margin-top: 20px;
    text-align: center;
    background: #eeeeee;
    line-height: 3em;
    font-size: 14px;
}


/* ログイン画面 */

.dummy_loginbody {
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.dummy_login_splash {
    width: 100vw;
    height: 100vh;
    background: center no-repeat url(../pwa_images/launch.png);
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dummy_login_box {
    background:#f4f6eb;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    position: relative;
    animation: slideInAnime 0.5s ease 2s forwards;
    top: 100vh;
    opacity: 0;
}
.dummy_login_box > * {
    display: block;
    font-size: 16px;
    margin: 10px 0;
}
.dummy_login_box h1 { font-size: 18px; }
.dummy_login_box input {
    width: 100%;
    padding: 0.4em;
    border-radius: 5px;
}

.dummy_login_box input[type="text"],
.dummy_login_box input[type="password"] {
    background: #ffffff;
}
.dummy_login_box input[type="submit"] {
    background: #ff8a2c;
    color: #ffffff;;
}

@keyframes slideInAnime{
  0% {
    top: 20vh;
    opacity: 0;
  }

  100% {
    top: 0;
    opacity: 1;
  }
}

/* input */
.dummy_inputbody {
    background: #a0c753;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}
.dummy_input_box {
    background:#f4f6eb;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}
.dummy_input_box > * {
    display: block;
    font-size: 16px;
    margin: 10px 0;
}
.dummy_input_box h1 { font-size: 18px; }
.dummy_input_box input {
    width: 100%;
    padding: 0.4em;
    border-radius: 5px;
}

.dummy_input_box input[type="text"],
.dummy_input_box input[type="password"] {
    background: #ffffff;
}
.dummy_input_box input[type="submit"] {
    background: #ff8a2c;
    color: #ffffff;;
}
