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

ul,
ol {
  padding: 0;
  list-style: none;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  display: block;
  max-width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  padding: 0;
  border: none;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
body {
  color: #2b333c;
  font-family: "Noto Sans JP", sans-serif, system-ui;
  font-size: 0.875rem;
  font-weight: 400;
  text-rendering: optimizeSpeed;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

a,
button {
  cursor: pointer;
  outline: none;
}

select {
  cursor: pointer;
  -webkit-appearance: none;
}

input,
select {
  outline-color: #088064;
}

.visuallyhidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 0px;
  width: 0px;
  margin: 0;
  padding: 0;
  border: 0;
}

.concierge {
  display: flex;
  min-width: 1100px;
}

.main {
  flex: auto;
  width: calc(100% - 54px);
  min-height: 100vh;
  padding: 0 30px;
  background-color: #eef1f3;
  transition: all 0.2s ease;
}
.nav--expand .main {
  width: calc(100% - 200px);
}

.page {
  padding: 0 0 20px;
}
.page__header {
  position: relative;
}
.page__title {
  margin-bottom: 15px;
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1.4615384615;
}

.section__header {
  position: sticky;
  top: 75px;
  left: 0;
  z-index: 1;
  padding: 20px 0;
  background-color: #eef1f3;
}
.section__header--action {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  justify-content: space-between;
}
.section__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}

.action {
  display: flex;
  flex: auto;
  gap: 10px;
  justify-content: flex-end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 12px 15px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #088064;
  border: none;
  border-radius: 8px;
  background-color: #ffffff;
  transition: all 0.2s ease;
}
.button:not(:disabled):hover {
  color: #0bb08a;
}
.button:disabled {
  cursor: default;
  color: #BDC3C6;
  background-color: #E2E5E8;
}
.button:focus {
  border-color: #0bb08a;
  border-width: 3px;
}
.button--green {
  color: #ffffff;
  font-weight: 600;
  background-color: #088064;
}
.button--green:not(:disabled):hover {
  color: #ffffff;
  background-color: #0bb08a;
}
.button--gray {
  color: #2b333c;
  background-color: #dde1e4;
}
.button--border {
  border: 1px solid #088064;
  background-color: transparent;
}
.button--border:not(:disabled):hover {
  border-color: #0bb08a;
}
.button--border:not(:disabled):hover svg {
  fill: #0bb08a;
}
.button--border-red {
  color: #B9183E;
  border: 1px solid #B9183E;
  background-color: transparent;
}
.button--border-red:not(:disabled):hover {
  color: #e2224f;
  border-color: #e2224f;
}
.button--border-gray {
  border-color: #dde1e4;
}
.button--large {
  width: 320px;
}
.button--reset {
  border: 1px solid #dde1e4;
}
.button--add {
  width: 114px;
}
.button svg {
  margin-left: 5px;
  transition: all 0.2s ease;
}
.button small {
  display: inline-flex;
  align-self: flex-end;
  font-size: 12px;
}
.button small.button__shortcut {
  margin-right: -9px;
}

.buttons {
  display: flex;
  align-items: center;
}
.buttons.center {
  justify-content: center;
}

.main__login {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
}

.login {
  width: 440px;
  padding: 40px 60px;
  margin-top: 100px;
  background-color: #eef1f3;
}
.login__header {
  margin-bottom: 20px;
  text-align: center;
}
.login__title {
  margin-bottom: 4px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.475;
}
.login__subtext {
  color: #8a9399;
}
.login__field {
  margin-bottom: 20px;
}
.login__field--center {
  display: flex;
  justify-content: center;
}
.login__label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  color: #2b333c;
}
.login__input {
  display: block;
  width: 100%;
  height: 50px;
  padding: 13px;
  background-color: #ffffff;
  border: 1px solid #dde1e4;
  border-radius: 2px;
  transition: border-color 0.35s linear;
}
.login__input::placeholder {
  color: #c2c8cc;
}
.login__input__error {
  border-color: #ff0000;
}
.login__error {
  margin-bottom: 20px;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  color: #ff0000;
}
.login__field .login__error {
  margin-bottom: 8px;
}
.login .button {
  height: 51px;
}
.login__checkbox {
  position: relative;
  display: inline-block;
}
.login__checkbox input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  cursor: pointer;
  border: 0;
  opacity: 0;
}
.login__checkbox label {
  position: relative;
  display: flex;
  align-items: center;
}
.login__checkbox label:before, .login__checkbox label:after {
  display: block;
  width: 16px;
  height: 16px;
  content: "";
  transition: all 0.2s ease;
}
.login__checkbox label:before {
  margin-right: 12px;
  background-color: #ffffff;
  border: 1px solid #8a9399;
  border-radius: 2px;
}
.login__checkbox label:after {
  position: absolute;
  left: 0;
  background: transparent url('data:image/svg+xml,<svg fill="%23ffffff" xmlns="http://www.w3.org/2000/svg" width="14" height="9.5" viewBox="0 0 14 9.5"><path d="M8.5,14.7a1,1,0,0,1-.7-.3L3.3,10A1,1,0,0,1,4.7,8.6l3.8,3.8,6.8-6.8A1,1,0,1,1,16.7,7L9.2,14.4A1,1,0,0,1,8.5,14.7Z" transform="translate(-3.1 -5.2)" /></svg>') center/14px 9.5px no-repeat;
  transform: scale(0);
}
.login__checkbox input:checked ~ label:before {
  background-color: #8a9399;
}
.login__checkbox input:checked ~ label:after {
  transform: scale(0.8);
}
.login__checkbox input:not(:checked) ~ label:before {
  background-color: #ffffff;
}
.login__checkbox input:not(:checked) ~ label:after {
  transform: scale(0);
}

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