@charset "UTF-8";
html {
  overflow-x: hidden;
  color: #333333;
  font-size: 62.5%;
  font-family: "Noto Sans JP", "Arial", "Helvetica", "Segoe UI", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
}

input[type=text],
input[type=number],
input[type=time],
textarea,
select {
  border: 1px #333 solid;
  border-radius: 5px;
  padding-left: 0.3em;
  margin-left: 1rem;
  margin-bottom: 0.5rem;
  width: 100%;
  max-width: 20rem;
}

input[type=time] {
  width: 8rem;
  height: 3rem;
}

select {
  width: 5rem;
}

@media screen and (max-width: 520px) {
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none;
  }
}
@media screen and (min-width: 521px) {
  .sp-only {
    display: none;
  }
  .pc-only {
    display: block;
  }
}
body {
  font-size: 1.6rem;
}

.container {
  margin: auto;
  width: 100rem;
  max-width: 90vw;
}
@media screen and (max-width: 520px) {
  .container {
    width: 90vw;
  }
}

.btn {
  margin-left: auto;
  font-size: 2rem;
  padding: 0.5rem;
  border-radius: 5%;
  background-color: lightskyblue;
}
.btn:hover {
  cursor: pointer;
}

input:disabled {
  background-color: rgb(151, 151, 151);
}

footer {
  width: 100vw;
  background-color: #e7eaed;
  text-align: center;
  position: fixed;
  bottom: 0;
}

.logo {
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 520px) {
  .logo {
    height: 3rem;
  }
}
.logo img {
  height: 80%;
}

.logo-text {
  font-size: 3rem;
}
@media screen and (max-width: 520px) {
  .logo-text {
    font-size: 2rem;
  }
}