@charset "UTF-8";
.main {
  transition: transform 0.8s ease;
  transform: translateY(0);
}

.main.is-inactive {
  transform: translateY(10%);
}

.topMain {
  position: absolute;
  z-index: 1000;
  background-color: #fff;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  transition: opacity 0.8s ease;
}

.topMain.is-inactive {
  opacity: 0;
  pointer-events: none;
}

.feedIn2s {
  opacity: 0;
  transition: ease 2s opacity 1s;
}

.feedIn2s--isActive {
  opacity: 1;
}

.openingLogo {
  position: fixed;
  display: block;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  width: 210px;
  transform: translateY(-50%);
}

.openingImage {
  position: fixed;
  bottom: 0px;
  right: 0px;
}

/* =============
  LOGIN FORM
 */
.formArea {
  margin-top: 30px;
}

.loginButton {
  width: 134px;
  height: 60px;
  margin: 30px auto;
}

.nonLogin {
  display: flex;
  justify-content: center;
  font-size: 14px;
  color: #fff;
}

.nonLogin__col {
  width: 140px;
}

.nonLogin__label {
  display: block;
  text-align: center;
  margin-bottom: 10px;
}

/* .nonLogin__button {
} */
/* =======================================
  メールアドレス仮登録
 */
.mailSendButton {
  width: 134px;
  height: 60px;
  margin: 30px auto;
}

/* =======================================
  パスワード再設定
 */
.accountMail {
  padding: 10px 15px;
  border: 1px solid #fff;
  border-radius: 10px;
  height: 60px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* =======================================
  新規登録
  */
.userInfoSubmitButton {
  width: 182px;
  height: 60px;
  margin: 30px auto;
}

.postCodeButton {
  color: #fff;
  padding: 10px;
  font-size: 14px;
}

.inputUserImage {
  height: 130px;
}

.inputUserImage .inputWrap__label {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.inputUserImage__imageWrap {
  background: no-repeat center url(../images/icon_image.svg);
  width: 76px;
  height: 76px;
  border: 2px dashed #DDDDDD;
  border-radius: 10px;
  align-self: center;
  margin-bottom: 5px;
  overflow: hidden;
  position: relative;
}

.inputUserImage__image {
  visibility: hidden;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.inputUserImage__image.is-active {
  visibility: inherit;
}

/* ==================
  新規登録 基礎情報
  */
.registrationFlow__list {
  display: flex;
  justify-content: space-between;
  padding: 0 30px 20px;
  font-size: 14px;
}

.regitrationFlow__item {
  position: relative;
  text-align: center;
  width: 25%;
}

.regitrationFlow__item:not(:last-child):before {
  content: "";
  width: 70%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: -17px;
  right: -70%;
  transform: translateX(-50%);
}

.regitrationFlow__item::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 1px solid #fff;
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
}

.regitrationFlow__item.is-passing::after {
  background-color: #fff;
}

.inputBirth .inputWrap__label {
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.inputBirth .inputWrap__input {
  position: absolute;
  pointer-events: none;
  visibility: hidden;
}

.inputBirth__valueWrap {
  display: flex;
  align-items: flex-end;
  z-index: 1;
}

.inputBirth__value {
  height: 22.5px;
  width: calc(100% - 25px);
  font-size: 16px;
  color: initial;
  display: flex;
  align-items: flex-end;
  margin-left: 10px;
}

.inputBirth__icon {
  background: no-repeat url(../images/icon_date2.svg);
  width: 15px;
  height: 15px;
}

/* ==================
  新規登録 支払い情報
  */
.inputRadio__label {
  position: relative;
}

.inputRadio__input {
  visibility: hidden;
  pointer-events: none;
}

.inputRadio__text {
  padding-left: 16px;
}

.inputRadio__text::before {
  content: "";
  display: block;
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  box-sizing: border-box;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #fff;
}

.inputRadio__input:checked + .inputRadio__text::after {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #000;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
}

.choicePayment {
  position: relative;
  height: 260px;
  width: 100%;
}

.is-credit,
.is-paypay {
  width: 100%;
  position: absolute;
  top: 0;
  pointer-events: none;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.is-credit.is-active,
.is-paypay.is-active {
  pointer-events: all;
  opacity: 1;
  transform: translateY(0);
}

.inputCCNumber {
  position: relative;
}

.inputCCNumber .inputWrap__input {
  padding: 0 40px 0 30px;
}

.inputCCNumber::before {
  content: "";
  display: block;
  width: 23px;
  height: 16px;
  background: no-repeat center url(../images/icon_creditcard.svg);
  position: absolute;
  top: 33px;
  left: 20px;
  pointer-events: none;
}

.inputCCNumber::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: no-repeat center url(../images/icon_camera.svg);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  pointer-events: none;
}

.skipButton {
  width: 84px;
  height: 36px;
  color: #fff;
  font-weight: bold;
  margin: 0 auto 30px;
}

/* ==================
  新規登録 登録完了
  */
.registFin {
  background-color: #fff;
  border-radius: 50%;
  width: 100%;
  height: 0;
  margin: 40px auto;
  position: relative;
  padding-top: 100%;
}

.registFin__text {
  color: #F87549;
  font-weight: bold;
  text-align: center;
  line-height: 1.7;
  position: absolute;
  top: 16%;
  left: 0;
  right: 0;
}

.registFin__image {
  position: absolute;
  bottom: 11%;
  left: 0;
  right: 0;
  margin: auto;
  width: 51.1%;
}

.registtFinButton {
  width: 198px;
  height: 60px;
  margin: 30px auto;
}

.signUpBanner {
  padding-top: 25px;
}
.signUpBanner__container {
  display: grid;
  grid-template-columns: auto auto;
  padding: 25px 20px;
  background-color: #fff;
  border-radius: 10px;
}
.signUpBanner__visual {
  display: grid;
  place-content: center;
}
.signUpBanner__visual img {
  width: 44px;
}
.signUpBanner__content {
  margin-left: auto;
}
.signUpBanner__lead {
  font-size: 14px;
}
.signUpBanner__notice {
  font-size: 12px;
}
.signUpBanner__button {
  width: 184px;
  height: 40px;
  margin: 10px 0;
}

.singUp__section + .singUp__section {
  margin-top: 25px;
}
.singUp__intro {
  padding: 20px;
  font-size: 14px;
  line-height: 1.75;
}
.singUp__intro p + p {
  margin-top: 20px;
}
.singUp__flow {
  padding: 20px;
}
.singUp__flowList {
  display: flex;
  justify-content: space-between;
}
.singUp__flowListItem {
  position: relative;
  display: grid;
  width: 50px;
  height: 50px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  place-content: center;
  border: 1px solid #000;
  border-radius: 10px;
}
.singUp__flowListItem + .singUp__flowListItem::before {
  content: "";
  position: absolute;
  left: -20px;
  top: calc(50% - 4px);
  width: 10px;
  height: 10px;
  border-style: solid;
  border-color: #000;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}
