html {
  margin: 0;
}
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #434141;
  background-color: #f5f5f5;
  overflow-x: hidden;
  overflow-y: auto;
  touch-action: pan-y;
}
body div.header {
  position: sticky;
  height: 48px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid #d9d9d9;
  top: 0;
}
body div.header div.content {
  height: 48px;
  margin: 0 auto;
  max-width: 800px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
body div.header div.content div.title {
  font-size: 21px;
  font-weight: 400;
  flex-grow: 1;
  padding-left: 20px;
  padding-right: 20px;
}
body div.header div.content div.title a {
  color: #434141;
  text-decoration: none;
}
body div.header div.content div.menu {
  font-size: 12px;
  font-weight: 400;
  padding-right: 20px;
}
body div.header div.content div.menu a {
  display: inline-block;
  vertical-align: middle;
  color: #434141;
  text-decoration: none;
}
body div.header div.content div.menu a:not(:first-child) {
  margin-left: 20px;
}
body div.header div.content div.menu a:hover {
  color: var(--accent);
}
@media screen and (max-width: 533px) {
  body div.header div.content div.menu a {
    display: none;
  }
}
body div.header div.content div.menu div.menu-button {
  position: relative;
  display: none;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  border-radius: 2px;
  box-sizing: border-box;
  cursor: pointer;
}
@media screen and (max-width: 533px) {
  body div.header div.content div.menu div.menu-button {
    display: inline-block;
  }
}
body div.header div.content div.menu div.menu-button:after,
body div.header div.content div.menu div.menu-button:before,
body div.header div.content div.menu div.menu-button div {
  content: '';
  position: absolute;
  top: 15px;
  left: 8px;
  width: 16px;
  height: 2px;
  border-radius: 1px;
  background-color: #434141;
}
body div.header div.content div.menu div.menu-button:after {
  top: 10px;
}
body div.header div.content div.menu div.menu-button:before {
  top: 20px;
}
body div.header.active + div.mobile-menu {
  display: block;
}
body div.mobile-menu {
  position: fixed;
  display: none;
  top: 49px;
  right: 0;
  right: env(safe-area-inset-right);
  width: 220px;
  background-color: #fff;
  border-left: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  border-right: 1px solid #d9d9d9;
  border-bottom-left-radius: 5px;
}
body div.mobile-menu a {
  display: block;
  padding: 10px 20px;
  color: #434141;
  text-decoration: none;
}
body div.mobile-menu a:hover {
  color: var(--accent);
}
body div.mobile-menu a:not(:last-child) {
  border-bottom: 1px solid #d9d9d9;
}
body div.footer {
  flex-grow: 0;
  flex-shrink: 0;
  color: #6e6e73;
  border-top: 1px solid #d9d9d9;
  font-size: 12px;
  font-weight: 400;
  width: 100%;
  height: 28px;
  line-height: 28px;
}
body div.footer div.content {
  box-sizing: border-box;
  text-align: center;
  margin: 0 auto;
  padding: 0 20px;
  padding-left: calc(20px + env(safe-area-inset-left));
  padding-right: calc(20px + env(safe-area-inset-right));
  padding-bottom: env(safe-area-inset-bottom);
  max-width: 800px;
}
body div.footer div.content a {
  color: #6e6e73;
  text-decoration: none;
}
body div.footer div.content a:hover {
  text-decoration: underline;
}
body div.footer div.content a:not(:last-child) {
  padding-right: 10px;
  margin-right: 7px;
  border-right: 1px solid #d9d9d9;
}
body div.main {
  overflow-y: auto;
  width: 100%;
  background-color: #fff;
  padding: 84px 0;
}
body div.main div.content {
  box-sizing: border-box;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
  padding-left: calc(20px + env(safe-area-inset-left));
  padding-right: calc(20px + env(safe-area-inset-right));
}
body div.main div.content h1 {
  font-size: 36px;
  font-weight: 600;
  margin: 0;
  padding: 0;
  line-height: 1.5em;
}
@media screen and (max-width: 800px) {
  body div.main div.content h1 {
    font-size: 4.5vw;
  }
}
@media screen and (max-width: 533px) {
  body div.main div.content h1 {
    font-size: 24px;
  }
}
body div.main div.content h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
  margin-top: 80px;
  margin-bottom: 24px;
  padding: 0;
  line-height: 1.5em;
}
@media screen and (max-width: 800px) {
  body div.main div.content h2 {
    font-size: 3vw;
  }
}
@media screen and (max-width: 533px) {
  body div.main div.content h2 {
    font-size: 18px;
  }
}
body div.main div.content h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  line-height: 1.5em;
}
@media screen and (max-width: 800px) {
  body div.main div.content h4 {
    font-size: 2.25vw;
  }
}
@media screen and (max-width: 533px) {
  body div.main div.content h4 {
    font-size: 12px;
  }
}
body div.main div.content div.svc {
  font-size: 16px;
  font-weight: 600;
}
body div.main div.content div.svc[data-host=""] {
  display: none;
}
body div.main div.content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5em;
  margin: 0;
}
@media screen and (max-width: 800px) {
  body div.main div.content p {
    font-size: 2.25vw;
  }
}
@media screen and (max-width: 533px) {
  body div.main div.content p {
    font-size: 12px;
  }
}
body div.main div.content a.button {
  display: inline-block;
  margin-top: 35px;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent);
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}
body div.main div.content div.form {
  text-align: left;
  margin: 0 auto;
  width: 100%;
  max-width: 360px;
  box-sizing: border-box;
}
body div.main div.content div.form div.row {
  margin-bottom: 20px;
  position: relative;
}
body div.main div.content div.form div.row:last-child {
  margin-top: 30px;
  margin-bottom: 0;
}
body div.main div.content div.form div.row.error {
  color: white;
  background-color: darkorange;
  font-size: 12px;
  padding: 5px 10px;
  font-weight: 600;
  line-height: 28px;
}
body div.main div.content div.form div.row.error:empty {
  display: none;
}
body div.main div.content div.form div.row.info {
  margin-top: 50px;
  font-size: 12px;
  font-weight: 400;
}
body div.main div.content div.form div.row.info a {
  margin-left: 10px;
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
}
body div.main div.content div.form div.row.info a:hover {
  text-decoration: underline;
}
body div.main div.content div.form div.row.checkbox {
  padding-left: 30px;
  font-size: 14px;
}
body div.main div.content div.form div.row#pwhint {
  font-size: 12px;
}
body div.main div.content div.form div.row#pwhint:empty {
  display: none;
}
body div.main div.content div.form div.row#pwhint span {
  font-weight: bold;
}
body div.main div.content div.form div.row#pwhint span.yes {
  color: green;
}
body div.main div.content div.form div.row#pwhint span.no {
  color: red;
}
body div.main div.content div.form div.row#pwhint ul li {
  margin-bottom: 10px;
}
body div.main div.content div.form div.row#pwhint div.warning {
  border: 1px solid var(--accent);
  padding: 10px;
}
body div.main div.content div.form h1 + .row,
body div.main div.content div.form .svc + .row,
body div.main div.content div.form h1 + .account-button,
body div.main div.content div.form .svc + .account-button {
  margin-top: 40px;
}
body div.main div.content div.form label {
  display: inline-block;
  height: 20px;
  line-height: 20px;
  color: #868282;
  font-size: 12px;
}
body div.main div.content div.form input[type="email"],
body div.main div.content div.form input[type="password"],
body div.main div.content div.form input[type="text"] {
  height: 28px;
  font-size: 14px;
  width: 100%;
  border: none;
  border-bottom: 1px solid #cccccc;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0 !important;
  outline: none;
}
body div.main div.content div.form input[type="email"]:focus,
body div.main div.content div.form input[type="password"]:focus,
body div.main div.content div.form input[type="text"]:focus {
  border-bottom: 1px solid var(--accent);
}
body div.main div.content div.form input[type="submit"],
body div.main div.content div.form a.form-button {
  display: inline-block;
  text-decoration: none;
  height: 28px;
  line-height: 28px;
  padding: 0 20px;
  border: 0;
  background-color: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}
body div.main div.content div.form input[type="submit"]:hover,
body div.main div.content div.form a.form-button:hover {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.1));
}
body div.main div.content div.form input[type="checkbox"] {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
  border: 2px solid var(--accent);
  border-radius: 50%;
  appearance: none;
  outline: none;
  cursor: pointer;
}
body div.main div.content div.form input[type="checkbox"]:checked:after {
  content: '';
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--accent);
  box-sizing: border-box;
}
body div.main div.content div.form div.account-button {
  position: relative;
  background-color: var(--accent);
  user-select: none;
  --webkit-user-select: none;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}
body div.main div.content div.form div.account-button:hover {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.1));
}
body div.main div.content div.form div.account-button a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
body div.main div.content div.form div.account-button div.name {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5em;
}
body div.main div.content div.form div.account-button div.email {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5em;
}
body div.main div.content div.form div.account-button + div.row {
  padding-left: 20px;
  padding-right: 20px;
}
body div.main div.content div.form div.account-button + div.row a {
  margin: 0;
  padding: 0;
}
body div.main div.content div.form a.button {
  display: inline-block;
  height: 28px;
  line-height: 28px;
  padding: 0 20px;
  border: 0;
  background-color: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: bold;
  margin: 0;
  cursor: pointer;
}
body div.main div.content div.form a.button:hover {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.1));
}
body div.main div.content div.form a.button.secondary {
  font-weight: 400;
  background-color: transparent;
  color: var(--accent);
}
body div.main div.content div.form a.button.secondary:hover {
  background-image: none;
  text-decoration: underline;
}
