@font-face {
  font-family: "A2z";
  src: url("/fonts/user/a2z-Thin.woff2") format("woff2");
  font-weight: 100;
  font-display: swap;
}
@font-face {
  font-family: "A2z";
  src: url("/fonts/user/a2z-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-display: swap;
}
@font-face {
  font-family: "A2z";
  src: url("/fonts/user/a2z-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "A2z";
  src: url("/fonts/user/a2z-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "A2z";
  src: url("/fonts/user/a2z-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "A2z";
  src: url("/fonts/user/a2z-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "A2z";
  src: url("/fonts/user/a2z-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: bold;
  font-display: swap;
}
@font-face {
  font-family: "A2z";
  src: url("/fonts/user/a2z-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "A2z";
  src: url("/fonts/user/a2z-Black.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
}
html {
  font-size: clamp(9.1px, 2.45vw, 10.1px);
}

body {
  font-family: "A2z", sans-serif;
  font-size: 1.6rem;
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
  min-height: 100dvh;
}

.app-shell {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

.app-body {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  min-height: 0;
}

.site-header {
  position: relative;
  z-index: 1000;
}

.site-content {
  position: relative;
  z-index: 1;
  flex: 1 0 auto;
  min-height: 0;
}

.page-back-button {
  position: fixed;
  left: 3rem;
  bottom: 3rem;
  z-index: 900;
  display: flex;
  align-items: center;
  padding-left: 1.1rem;
  width: 5rem;
  height: 5rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(1.4rem);
  -webkit-backdrop-filter: blur(1.4rem);
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.2);
  color: rgba(51, 51, 51, 0.78);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(1rem);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.page-back-button.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.page-back-button__icon {
  font-size: 2.2rem;
}
.page-back-button:focus-visible {
  outline: 2px solid rgba(232, 72, 90, 0.35);
  outline-offset: 3px;
}
@media (hover: hover) and (pointer: fine) {
  .page-back-button:hover {
    color: #e8485a;
    transform: translateY(-0.2rem);
    box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.3);
  }
}

.page-quick-actions {
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(1rem);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}
.page-quick-actions.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.page-quick-actions__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(1.4rem);
  -webkit-backdrop-filter: blur(1.4rem);
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.2);
  color: rgba(51, 51, 51, 0.78);
  font-size: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}
.page-quick-actions__button:focus-visible {
  outline: 2px solid rgba(232, 72, 90, 0.35);
  outline-offset: 3px;
}
@media (hover: hover) and (pointer: fine) {
  .page-quick-actions__button:hover {
    color: #e8485a;
    background: rgba(255, 255, 255, 0.92);
    transform: translateY(-0.2rem);
    box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.25);
  }
}

.app-shell--quick-actions-hidden .page-quick-actions {
  display: none;
}

.app-shell--footer-hidden .footer-box {
  display: none;
}

.app-shell--prologue .site-header,
.app-shell--prologue .footer-box {
  display: none;
}
.app-shell--prologue .site-content {
  padding: 0;
}
.app-shell--prologue .page-back-button,
.app-shell--prologue .page-quick-actions {
  display: none;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4 {
  color: #333;
  font-family: "A2z", sans-serif;
}

a {
  text-decoration: none;
  color: #333;
  cursor: pointer;
}

ol,
ul {
  list-style-type: none;
}

button {
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

.icon-svg {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  vertical-align: middle;
  background-color: currentColor;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-mask: var(--icon-url) center/contain no-repeat;
  mask: var(--icon-url) center/contain no-repeat;
}

.wrap {
  width: 100%;
  max-width: 128rem;
  margin: auto;
}

.sound-only {
  position: absolute;
  left: -9999em;
  top: -9999em;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mx-0 {
  margin-inline: 0 !important;
}

.my-0 {
  margin-block: 0 !important;
}

.mt-5 {
  margin-top: 0.5rem !important;
}

.mb-5 {
  margin-bottom: 0.5rem !important;
}

.ml-5 {
  margin-left: 0.5rem !important;
}

.mr-5 {
  margin-right: 0.5rem !important;
}

.mx-5 {
  margin-inline: 0.5rem !important;
}

.my-5 {
  margin-block: 0.5rem !important;
}

.mt-10 {
  margin-top: 1rem !important;
}

.mb-10 {
  margin-bottom: 1rem !important;
}

.ml-10 {
  margin-left: 1rem !important;
}

.mr-10 {
  margin-right: 1rem !important;
}

.mx-10 {
  margin-inline: 1rem !important;
}

.my-10 {
  margin-block: 1rem !important;
}

.mt-15 {
  margin-top: 1.5rem !important;
}

.mb-15 {
  margin-bottom: 1.5rem !important;
}

.ml-15 {
  margin-left: 1.5rem !important;
}

.mr-15 {
  margin-right: 1.5rem !important;
}

.mx-15 {
  margin-inline: 1.5rem !important;
}

.my-15 {
  margin-block: 1.5rem !important;
}

.mt-20 {
  margin-top: 2rem !important;
}

.mb-20 {
  margin-bottom: 2rem !important;
}

.ml-20 {
  margin-left: 2rem !important;
}

.mr-20 {
  margin-right: 2rem !important;
}

.mx-20 {
  margin-inline: 2rem !important;
}

.my-20 {
  margin-block: 2rem !important;
}

.mt-30 {
  margin-top: 3rem !important;
}

.mb-30 {
  margin-bottom: 3rem !important;
}

.ml-30 {
  margin-left: 3rem !important;
}

.mr-30 {
  margin-right: 3rem !important;
}

.mx-30 {
  margin-inline: 3rem !important;
}

.my-30 {
  margin-block: 3rem !important;
}

.mt-40 {
  margin-top: 4rem !important;
}

.mb-40 {
  margin-bottom: 4rem !important;
}

.ml-40 {
  margin-left: 4rem !important;
}

.mr-40 {
  margin-right: 4rem !important;
}

.mx-40 {
  margin-inline: 4rem !important;
}

.my-40 {
  margin-block: 4rem !important;
}

.mt-60 {
  margin-top: 6rem !important;
}

.mb-60 {
  margin-bottom: 6rem !important;
}

.ml-60 {
  margin-left: 6rem !important;
}

.mr-60 {
  margin-right: 6rem !important;
}

.mx-60 {
  margin-inline: 6rem !important;
}

.my-60 {
  margin-block: 6rem !important;
}

::-webkit-scrollbar {
  width: 1rem;
}

::-webkit-scrollbar-thumb {
  background: #dddddd;
  border-radius: 1rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(232, 72, 90, 0.8);
}

::-webkit-scrollbar-track {
  background: transparent;
}

.footer-company-info {
  font-style: normal;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #666;
}
.footer-company-info a {
  color: inherit;
}
.footer-company-info a:focus-visible {
  color: #e8485a;
}
@media (hover: hover) and (pointer: fine) {
  .footer-company-info a:hover {
    color: #e8485a;
  }
}

@media screen and (max-width: 767px) {
  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .footer-company-info {
    text-align: center;
  }
  .pc-footer {
    display: none;
  }
  .m-footer {
    width: 100%;
    padding: 3rem;
  }
  .m-footer .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .m-footer .footer-company-info {
    margin-top: 3rem;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .page-back-button {
    display: none;
  }
  .ready-img {
    width: 50%;
    padding: 7rem;
  }
  .m-footer {
    display: none;
  }
  .main-foot {
    margin-top: 2rem;
  }
  .main-foot .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
  }
  .pc-footer .footer-inner__tit {
    margin-bottom: 1rem;
  }
  .pc-footer .footer-company-info {
    display: flex;
    gap: 3rem;
    margin-top: 1rem;
  }
  .pc-footer .fci__flex {
    display: flex;
    gap: 2rem;
  }
  .footer-box {
    margin-top: auto;
  }
  .site-footer {
    padding: 0 3rem 3rem;
  }
  .cursor-pointer {
    cursor: pointer;
  }
  .add-personal {
    font-size: 1.4rem;
    cursor: pointer;
  }
  .add-personal a {
    cursor: pointer;
    color: #666;
  }
  .add-personal a:focus-visible {
    color: #e8485a;
  }
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .add-personal a:hover {
    color: #e8485a;
  }
}
.footer-box {
  flex-shrink: 0;
  margin-top: auto;
}

.auth-page {
  width: 100%;
  min-height: 100%;
  padding: 9rem 2rem 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.auth-page__wrap {
  width: 100%;
  max-width: 34rem;
}
.auth-page__title {
  font-size: 2.4rem;
  font-weight: 700;
}
.auth-page__description {
  margin-top: 1rem;
  font-size: 1.4rem;
  color: #666;
  word-break: keep-all;
}
.auth-page__description--padded {
  padding-top: 3rem;
  margin-top: 0;
}
.auth-page__description--compact {
  padding-top: 1.6rem;
  margin-top: 0;
}
.auth-page__actions {
  padding-top: 2.4rem;
}

.auth-actions {
  padding-top: 2.4rem;
}
.auth-actions--split {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2.4rem;
}
.auth-actions--tight {
  padding-top: 2rem;
}

.auth-list {
  border-top: 1px solid #dddddd;
}
.auth-list--spaced {
  margin-top: 2rem;
}
.auth-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 6rem;
  padding: 1rem 0;
  border-bottom: 1px solid #dddddd;
}
.auth-list__item--roomy {
  min-height: 7.4rem;
  padding: 1.4rem 0.4rem;
  gap: 2rem;
}

.auth-form--spaced {
  padding-top: 2rem;
}
.auth-form__field {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 0;
  border-bottom: 1px solid #dddddd;
}
.auth-form__label {
  font-size: 1.4rem;
  font-weight: 500;
  color: #333;
}
.auth-form__input {
  width: 100%;
  height: 4.6rem;
  padding: 0 1rem;
  border: 1px solid #aaaaaa;
  border-radius: 1rem;
  color: #333;
  font-size: 1.6rem;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.auth-form__input:focus-visible {
  border: 1px solid rgba(232, 72, 93, 0.7803921569);
  background-color: #fff;
  color: #e8485a;
  box-shadow: 0 0 1rem 0 rgba(232, 72, 93, 0.18);
  outline: none;
}
.auth-form__input:active {
  border: 1px solid rgba(232, 72, 93, 0.7803921569);
  background-color: #fff;
  color: #e8485a;
  box-shadow: 0 0 1rem 0 rgba(232, 72, 93, 0.18);
  outline: none;
}
@media (hover: hover) and (pointer: fine) {
  .auth-form__input:hover {
    border: 1px solid rgba(232, 72, 93, 0.7803921569);
    background-color: #fff;
    color: #e8485a;
    box-shadow: 0 0 1rem 0 rgba(232, 72, 93, 0.18);
    outline: none;
  }
}
.auth-form__input[readonly] {
  background-color: #f5f5f5;
  color: #666;
  cursor: default;
}
.auth-form__input[readonly]:focus-visible, .auth-form__input[readonly]:active, .auth-form__input[readonly]:hover {
  border-color: #aaaaaa;
  box-shadow: none;
  outline: none;
}

.auth-button {
  width: 100%;
  height: 4.6rem;
  border-radius: 1rem;
  background: #e8485a;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.12s ease;
}
.auth-button:focus-visible {
  border: 1px solid rgba(232, 72, 93, 0.7803921569);
  background-color: #fff;
  color: rgba(232, 72, 93, 0.7803921569);
  box-shadow: 0 0 1rem 0 rgba(105, 113, 255, 0.18);
  outline: none;
}
.auth-button:active {
  border: 1px solid rgba(232, 72, 93, 0.7803921569);
  background-color: #fff;
  color: rgba(232, 72, 93, 0.7803921569);
  box-shadow: 0 0 1rem 0 rgba(105, 113, 255, 0.18);
  outline: none;
}
@media (hover: hover) and (pointer: fine) {
  .auth-button:hover {
    border: 1px solid rgba(232, 72, 93, 0.7803921569);
    background-color: #fff;
    color: rgba(232, 72, 93, 0.7803921569);
    box-shadow: 0 0 1rem 0 rgba(105, 113, 255, 0.18);
    outline: none;
  }
}
.auth-button--split {
  width: auto;
  flex: 1;
  height: 4.6rem;
  border-radius: 1rem;
  font-size: 1.6rem;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.12s ease;
}
.auth-button--split:focus-visible {
  border: 1px solid rgba(232, 72, 93, 0.7803921569);
  background-color: #fff;
  color: rgba(232, 72, 93, 0.7803921569);
  box-shadow: 0 0 1rem 0 rgba(105, 113, 255, 0.18);
  outline: none;
}
.auth-button--split:active {
  border: 1px solid rgba(232, 72, 93, 0.7803921569);
  background-color: #fff;
  color: rgba(232, 72, 93, 0.7803921569);
  box-shadow: 0 0 1rem 0 rgba(105, 113, 255, 0.18);
  outline: none;
}
@media (hover: hover) and (pointer: fine) {
  .auth-button--split:hover {
    border: 1px solid rgba(232, 72, 93, 0.7803921569);
    background-color: #fff;
    color: rgba(232, 72, 93, 0.7803921569);
    box-shadow: 0 0 1rem 0 rgba(105, 113, 255, 0.18);
    outline: none;
  }
}
.auth-button--fit {
  width: 13rem;
}
.auth-button--secondary {
  background: #aaaaaa;
  color: #fff;
}
.auth-button--primary {
  background: #e8485a;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .auth-page__wrap--card {
    max-width: 42rem;
    padding: 3rem;
    border-radius: 1rem;
    background-color: #fff;
    box-shadow: 0 0rem 3rem rgba(0, 0, 0, 0.1);
    margin: 0 auto;
  }
  .auth-page__title--hero {
    margin-bottom: 3.2rem;
    font-size: 3rem;
  }
  .app-shell--auth .site-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .auth-page__wrap--mobile-half {
    min-height: 50vh;
  }
}
.app-shell--join .site-content {
  padding: 0;
}

/*# sourceMappingURL=common.css.map */
