@charset "UTF-8";

/* ログイン機能追加に伴うスタイル
----------------------------------------------------------------- */
.mt-40 {
  margin-block-start: 40px;
}
.btn-wrap {
  display: flex;
  align-items: center;
  column-gap: 10px;
  .login {
    img {
      height: 32px;
    }
    &:hover {
      opacity: .7;
    }
  }
  &.-center {
    justify-content: center;
  }
}
.h-btn {
  padding: 6px 20px;
  font-size: 1.2rem;
  font-weight: bold;
  border: 1px solid #08aa90;
  text-decoration: none;
  color: #333;
  &:hover {
    opacity: .7;
  }
  &.sign-up {
    color: #08aa90;
  }
  &.arrow-deco {
    display: flex;
    column-gap: 10px;
    padding-inline-end: 10px;
    img {
      width: 14px;
    }
  }
}
.radio-btn-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-block: 20px;
  label {
    display: flex;
    align-items: center;
    column-gap: 6px;
    cursor: pointer;
  }
  input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    width: 1.1em;
    height: 1.1em;
    border: 1px solid #ccc;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    position: relative;
  }
  input[type="radio"]:checked {
    border-color: #08AA90;
  }

  input[type="radio"]:checked::before {
    content: "";
    display: block;
    width: 0.7em;
    height: 0.7em;
    background-color: #08AA90;
    border-radius: 50%;
    position: absolute;
    inset: 0;
    margin: auto;
  }
}
.submit-btn-wrap {
  margin-block-start: 30px;
  input {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    font-size: 1.8rem;
    font-weight: bold;
    background-color: #08AA90;
    border: 2px solid #FBC522;
    color: #fff;
    &:hover {
      opacity: .7;
    }
  }
}
.bold-label {
  margin-block-end: 16px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #08AA90;
}
.medpass-btn {
  width: 190px;
  margin-block-start: 30px;
  &:hover {
    opacity: .7;
  }
}
.not-authorized {
  .btn-wrap {
    column-gap: 30px;
    margin-block-start: 40px;
    .login {
      img {
        height: 38px;
      }
    }
    .h-btn {
      font-size: 1.6rem;
    }
  }
}
.up-side {
  margin-block-end: 60px;
}
.confirm-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block-end: 30px;
  margin-inline: 70px;
  padding: 10px;
  font-size: 3rem;
  font-weight: bold;
  background-color: #08AA90;
  color: #fff;
}
.txt-center {
  text-align: center;
}
.txt-bold {
  margin-block-start: 20px;
  font-size: 1.8rem;
  font-weight: bold;
}
.txt-24 {
  font-size: 2.4rem;
}
.color-green {
  color: #08AA90;
}
@media screen and (max-width: 768px) {
  .btn-wrap {
    flex-direction: column;
    row-gap: 20px;
  }
  .confirm-ttl {
    margin-inline: 4%;
    font-size: 2rem;
  }
}
