html, body {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  margin: 0;
  padding: 0;
}

.home {
  padding: 5rem 2rem;
  text-align: center;
}

.home__title {
  font-size: 6rem;
  line-height: 1.15;
}

.home__title__link {
  color: #06c755;
  text-decoration: none;
}

.home__title__link:hover {
  text-decoration: underline;
}

.home__badges {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  margin-bottom: 6rem;
}

.home__badges__badge:first-child {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

.home__badges__badge:last-child {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.home__badges__badge {
  display: inline-block;
  padding: 0.3em 0.4em;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
}

.badge--primary {
  color: #353a40;
  border: 1px solid #353a40;
  background-color: transparent;
  padding-top: calc(0.3em - 1px);
  padding-bottom: calc(0.3em - 1px);
}

.badge--secondary {
  color: #fff;
  background-color: #353a40;
}

.home__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.home__buttons__button {
  min-width: 250px;
  cursor: pointer;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  border-radius: 2px;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.button--primary {
  color: #fff;
  background-color: #00B900;
  border-color: #00B900;
}

.button--primary:hover {
  color: #fff;
  background-color: #009300;
  border-color: #008600;
}

.button--secondary {
  color: #fff;
  background-color: #353a40;
  border-color: #353a40;
}

.button--secondary:hover {
  color: #fff;
  background-color: #24272b;
  border-color: #1e2124;
}

.button--tertiary {
  background-color: transparent;
  background-image: none;
  color: #353a40;
  border-color: #353a40;
}

.button--tertiary:hover {
  color: #353a40;
  background-color: rgba(53,58,64,0.1);
  border-color: #353a40;
}

.wrapper{
  width: 90%;
  margin: 0 auto;
}

#unsupportdevice{
  display: none;
  border: 1px solid crimson;
  background-color: mistyrose;
  color: crimson;
  padding: 0 20px;
  border-radius: 5px;
}

/** ここからオリジナル **/
header{
  margin:0;
  padding:0;
}

header h1{
  margin: 0;
  font-size: 1.5rem;
}

#profile-area{
  display: flex;
}
#profile-area-name{
  margin-right: 10px;
  font-weight: bold;
}
#profile-area-point{
  margin-left: 10px;
}

.point-register-form{
  width: 90%;
  margin: 10px auto;
  border: 1px solid antiquewhite;
  padding: 15px 10px;
  background-color: beige;
}

.point-register-form label{
  display: block;
}


.point-register-form .controls{
  margin: 10px 0;
}

.point-register-form .controls label{
  font-size: 1.3rem;
}

.point-register-form .controls input{
  display: block;
  width: 100%;
  font-size: 1.3rem;
  line-height: 1.8rem;
  box-sizing: border-box;
}

.point-register-form .controls input[type="submit"]
.point-register-form .controls button{
  display: inline-block;
  width: auto;
  line-height: 1.5;
}

.point-register-form .controls.form-submit{
  text-align: center;
}

p.available-points{
  text-align: center;
  font-size: 2rem;
}


footer{
  margin-top: 50px;
}

@media screen and (max-width: 600px) {
  html {
    font-size: 12px;
  }

  .home__title {
    font-size: 4rem;
    line-height: 1.15;
  }

  .home__buttons__button {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 930px) {
  .home__buttons {
    flex-direction: column;
  }
}
