html {
  font-family: 'Noto Sans JP', sans-serif;
}

div {
  box-sizing: border-box;
}

button {
  cursor: pointer;
}

body {
  background-color: #F4F6F8;
}

.container {
  width: 100%;
  background-color: #F4F6F8;
  margin: auto;
  min-height: 95vh;
}

.contentsWrap {
  max-width: 750px;
  min-width: 330px;
  padding: 8px 24px;
  margin: auto;
}

.contentsInner {
  width: 100%;
}

.contentsInner:first-child {
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.has-border {
  border-bottom: 1px solid rgba(16, 37, 44, 0.12);
}

.sso-container {
  background-color: #fff;
  padding: 12px;
  border: 1px solid rgba(16, 37, 44, 0.12);
  box-shadow: 0px 21px 13px rgba(31, 52, 58, 0.01), 0px 9px 9px rgba(31, 52, 58, 0.02);
  border-radius: 16px;
}

.sso-container li {
  position: relative;
  list-style: none;
  font-size: 13px;
  line-height: 20px;
  color: #34585c;
  padding: 10px 15px;
  border-bottom: 1px solid rgba(16, 37, 45, 0.04);
  cursor: pointer;
}

.sso-container li:last-child {
  border-bottom: none;
}

.sso-container li::before {
  vertical-align: middle;
  padding-right: 10px;
}

.sso-container li.sso-g::before {
  content: url(../images/registry/google.svg);
}

.sso-container li.sso-t::before {
  content: url(../images/registry/twitter.svg);
}

.sso-container li.sso-l::before {
  content: url(../images/registry/line.svg);
}

.sso-container li.sso-f::before {
  content: url(../images/registry/fb.svg);
}

.sso-container li::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  border-bottom: solid 1px #8c9da1;
  border-left: solid 1px #8c9da1;
  width: 8px;
  height: 8px;
  transform: rotate(-135deg);
}

.button-container {
  text-align: center;
}

.card {
  width: 100%;
  padding: 12px;
  box-sizing: border-box;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgb(16 37 44 / 12%);
}

button:hover,
a:hover {
  opacity: 0.3;
}

button,
a,
input,
select {
  cursor: pointer;
}