@charset "UTF-8";


/* ベース
------------------------------------------------------------------------------------*/
.formAlert_txt {
  width: 520px;
  background: #fdf5f8;
  border: #f85993 solid 1px;
  border-radius: 5px;
  color: #f85993;
  font: inherit;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 2rem;
  position: relative;
  margin: 24px auto 0;
  padding: 14px 48px;
}
.formAlert_txt::before,
.formAlert_txt::after {
  content: "";
  width: 18px;
  height: 16px;
  background: url(/images/pc/common/formAlert_icon_pc.svg);
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.formAlert_txt::before { left: 20px; }
.formAlert_txt::after { right: 20px; }

.basic_tit {
  --fs: 1.6rem;
  --fh: 2.2rem;
  background: #eee;
  font-size: var(--fs);
  font-weight: bold;
  text-indent: -1.8em;
  line-height: var(--fh);
  position: relative;
  margin-top: 24px;
  padding: 5px 12px 5px calc(1.8em + 12px);
}
.basic_tit:first-of-type { margin-top: 0; }

.basic_subTxt {
  font-size: 1.4rem;
  padding-left: 2px;
}

.annotation,
.required {
  border: #f85993 solid 1px;
  border-radius: 100px;
  color: #f85993;
  font-size: 1.2rem;
  font-weight: bold;
  text-indent: 0;
  display: inline-block;
  position: relative;
  top: -1px;
  margin-left: 6px;
  padding: 2px 6px;
}

.basic_val,
.basic_val_gender,
.basic_val_birthDay {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.basic_val_gender { justify-content: flex-start; margin-top: 8px; }
.basic_val_birthDay { justify-content: flex-start; }

.basic_val_annotation {
  --fs: 1.4rem;
  --fh: 1.6rem;
  color: #666;
  font-size: var(--fs);
  text-indent: -1em;
  line-height: var(--fh);
  margin: calc(5px + ((var(--fs) - var(--fh)) / 2)) 0 calc(0px + ((var(--fs) - var(--fh)) / 2));
  padding-left: 1em;
}

.input_1column,
.input_2column,
.textarea_1column {
  width: 100%;
  height: 42px;
  border: #ccc solid 1px;
  border-radius: 0;
  font-size: 1.6rem;
  line-height: 1;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 12px;
}
.input_2column { width: 48.4%; }
.input_1column.js_password,
.input_1column.js_newPassword { padding-right: 40px; }

.input_1column:read-only,
.input_2column:read-only {
  background: #fafafa;
  color: #aaa;
}

.textarea_1column {
  height: 260px;
  line-height: 2.4rem;
  padding: 8px 12px;
}

.zip_txt {
  --fs: 1.3rem;
  --fh: 1.4rem;
  width: 48.4%;
  color: #666;
  font-size: var(--fs);
  line-height: var(--fh);
  text-indent: -1em;
  margin: calc(2px + ((var(--fs) - var(--fh)) / 2)) 0 calc(0px + ((var(--fs) - var(--fh)) / 2));
  padding-left: 1em;
}

.select_prefecture { 
  width: 100%;
  height: 42px;
  background: url(/images/pc/common/pulldown_arrow_pc.svg) #fff right 6px center no-repeat;
  background-size: 16px;
  border: 1px solid #ccc;
  border-radius: 0;
  color: #353535;
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 8px 50px 8px 12px;
  -webkit-appearance: none;
}

.input_gender1,
.input_gender2,
.input_gender3 {
  width: 18px;
  height: 18px;
  border: #808080 solid 1px;
  border-radius: 100px;
  position: relative;
  top: 3px;
  cursor: pointer;
  margin: 0 4px 0 32px;
  -webkit-appearance: none;
}
.input_gender1 { margin-left: 12px; }
.input_gender1:checked,
.input_gender2:checked,
.input_gender3:checked { border: #f85993 solid 1px; }

.input_gender1::after,
.input_gender2::after,
.input_gender3::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #f85993;
  border-radius: 100px;
  display: block; 
  position: absolute;
  top: 2px;
  left: 2px;
  opacity: 0;
}
.input_gender1:checked::after,
.input_gender2:checked::after,
.input_gender3:checked::after { opacity: 1; }

.select_dateBirth1,
.select_dateBirth2,
.select_dateBirth3 {
  height: 42px;
  background: url(/images/pc/common/pulldown_arrow_pc.svg) #fff right 6px center no-repeat;
  background-size: 16px;
  border: 1px solid #ccc;
  border-radius: 0;
  color: #353535;
  font-size: 1.6rem;
  text-align-last: center;
  position: relative;
  z-index: 1;
  margin: 0 4px 0 8px;
  padding: 8px 44px 8px 0px;
  -webkit-appearance: none;
}
.select_dateBirth1 {
  width: 120px;
  margin-left: 0;
}
.select_dateBirth2,
.select_dateBirth3 {
  width: 100px;
}

.select_dateBirth1:disabled,
.select_dateBirth2:disabled,
.select_dateBirth3:disabled {
  background: #fafafa;
  color: #aaa;
  padding-right: 8px;
}

.password_viewBtn {
  width: 22px;
  position: absolute;
  z-index: 1;
  right: 10px;
  cursor: pointer;
}
.password_viewBtn_off { opacity: 0.4; }

.js_field_error {
  background-color: rgb(248 89 147 / .05);
  border: #f85993 solid 1px;
}

.js_errorText_1column,
.js_errorText_2columnL,
.js_errorText_2columnR,
.js_errorBirthDay {
  background: #f85993;
  border-radius: 8px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: normal;
  text-indent: 0;
  line-height: 1.6rem;
  position: absolute;
  bottom: 4px;
  z-index: 2;
  padding: 7px 12px;
}
.js_errorText_1column { right: 0; }

.js_errorText_2columnL {
  max-width: 48.4%;
  right: 51.6%;
}
.js_errorText_2columnR {
  max-width: 48.4%;
  right: 0;
}

.js_errorBirthDay { right: 334px; }

.js_errorText_1column::after,
.js_errorText_2columnL::after,
.js_errorText_2columnR::after,
.js_errorBirthDay::after {
  content: "";
  border-top: #f85993 solid 8px;
  border-right: transparent solid 6px;
  border-left: transparent solid 6px;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
}

.register_btn_wrap {
  font-size: 1.4rem;
  text-align: center;
  /* margin: 40px auto; */
  margin: 56px auto 40px;
}

.register_btn {
  width: 340px;
  height: 54px;
  background: #f85993;
  border-radius: 5px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  display: grid;
  place-items: center;
  cursor: pointer;
  margin: 0 auto 8px;
  transition: background 300ms, opacity 300ms;
}
.register_btn:hover { text-decoration: none; }

.register_btn_off {
  background: #d7d7d7;
  color: #a3a3a3;
  cursor: default;
}
.register_btn_off:hover { opacity: 1; }


/* 住所候補
------------------------------------------------------------------------------------*/
.js_address_list {
  width: 80%;
  height: 272px;
  background: #f1f1f1;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.45);
  list-style: none;
  position: absolute;
  overflow-y: scroll;
  z-index: 10;
  top: 35px;
  padding: 0 8px;
}

.js_address_list li {
  --fs: 1.6rem;
  --fh: 1.8rem;
  border-bottom: #cbcbcb solid 1px;
  font-size: var(--fs);
  line-height: var(--fh);
  cursor: pointer;
  margin: calc(0px + ((var(--fs) - var(--fh)) / 2)) 0;
  padding: 12px;
}
.js_address_list li:hover {
  background: #d6d7d9;
}


/* モーダルアラート
------------------------------------------------------------------------------------*/
/*
#js_alertModal {
  width: calc(100% - 32px);
  min-height: 64px;
  background: rgba(242, 204, 225, 0.9);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  position: fixed;
  top: 24px;
  left: 16px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  padding: 8px 16px;
  transition: opacity 250ms, top 250ms;
}
#js_alertModal.js_alertModal_open {
  top: 16px;
  opacity: 1;
  pointer-events: auto;
}

#js_alertModal_icon {
  width: 18px;
}

#js_alertModal_close {
  width: 18px;
  cursor: pointer;
}

#js_alertModal_txt {
  font-weight: bold;
  line-height: 1.6rem;
  flex: 1;
  margin-top: -1px;
  padding: 0 16px;
}
*/