@charset "UTF-8";

*,
::before,
::after {
  box-sizing: border-box;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: none;
}
html {
  font-size: 62.5%;
}
body {
  line-height: 1.5;
  font-size: 1.6rem;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
}
article, aside, figcaption, figure, footer, header, main, nav, section {
  display: block;
}
audio, canvas, iframe, img, svg, video {
  max-width: 100%;
  vertical-align: middle;
}
a {
  text-decoration: none;
  color: inherit;
}
button{
  cursor: pointer;
  outline: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
ul, ol {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ここから */
@import url('https://fonts.googleapis.com/css2?family=Lato&family=Noto+Sans+JP&display=swap');

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #ffffff;
  color: rgba(0, 0, 0, .8);
  letter-spacing: 0.12rem;
  font-family: 'Noto Sans JP', 'Lato', sans-serif;
}

input{
  padding: .6em 1em;
  border: solid 1px #dddddd;
  border-radius: 4px;
  background-color: #ffffff;
  color: inherit;
  font-size: 1.6rem;
}

/* header */
.header {
  flex: 0 0 auto;
  border-bottom: solid 1px #dddddd;
  width: 100%;
  height: 56px;
  background: #ffffff;
}
.header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1100px;
  height: inherit;
}

/* headerLogo */
.headerLogo {
  margin: 0 16px;
  height: 24px;
}
.headerLogo > img {
  display: block;
  width: auto;
  height: 100%;
}

/* footer */
.footer {
  flex: 0 0 auto;
  position: relative;
  width: 100%;
}
.footer__wrap {
  margin: 0 auto;
  max-width: 1100px;
}

/* footerCopyright */
.footerCopyright{
  padding: 0 16px;
  background: #000000;
  color: #ffffff;
}
.footerCopyright__text{
  display: block;
  padding: 8px 0;
  text-align: center;
  font-size: 1.3rem;
}

/* main */
.main {
  flex: 1 1 auto;
}
.main__wrap {
  margin: 0 auto;
  max-width: 420px;
}

/* resetForm */
.resetForm{
  padding: 40px 16px;
}
.resetForm__1{
  font-size: 2.4rem;
}
.resetForm__2{
  margin: 24px 0 0;
  color: rgba(0, 0, 0, .5);
  font-size: 1.4rem;
}
.resetForm__3{
  display: block;
  margin: 8px 0 0;
  width: 100%;
}
.resetForm__4{
  margin: 32px 0 0;
  padding: 0 16px;
  border-radius: 4px;
  width: 100%;
  height: 36px;
  line-height: 36px;
  background: #FF7B00;
  text-align: center;
  color: #ffffff;
  font-size: 1.4rem;
}
.resetForm__4:disabled{
  background: #cccccc;
  pointer-events: none;
}

@media screen and (min-width: 560px) {
}