@charset "UTF-8";

/* =======================================
			login form
======================================= */
.login-form {

}
.login-form__inner {
  margin: 0 auto;
  width: 360px;
}
.login-form__info-box {
  border: 2px solid #D22D25;
  padding: 10px;
  text-align: left;
}
.login-form__info-box-text {
  font-size: 13px;
  font-weight: 700;
  /* letter-spacing: -0.05em; */
}
.login-form__info-box-text--color-red {
  color: #FF2C2C;
}
.login-form__info-box  + .login-form__list {
  margin-top: 30px;
}
.login-form__list {

}
.login-form__line {

}
.login-form__line:nth-child(n+2) {
  margin-top: 20px;
}
.login-form__title {

}
.login-form__title-text {
  font-size: 14px;
  font-weight: 700;
}
.login-form__input-wrap {
  margin-top: 5px;
}
.login-form__input {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #D9D9D9;
  padding: 5px;
  background-color: #F2F2F2;
}
.login-form__keep-check {
  margin-top: 30px;
}
.login-form__choices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.login-form__choices-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.login-form__choices-label {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  cursor: pointer;
}
.login-form__choices-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 24px;
  width: 24px;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  background-color: #F2F2F2;
}
.login-form__choices-input:checked + .login-form__choices-label {
  color: #D22D25;
}
.login-form__choices-input:checked + .login-form__choices-label::before {
  border: 1px solid #D22D25;
  background-color: #D22D25;
}
.login-form__choices-input:checked + .login-form__choices-label::after {
  content: "";
  position: absolute;
  height: 8px;
  width: 12px;
  left: 6px;
  top: 5px;
  border-bottom: 3px solid #FFFFFF;
  border-left: 3px solid #FFFFFF;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.login-form__error {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #FF2C2C;
}
* + .login-form__error {
  margin-top: 5px;
}

.login-form__button {
  margin-top: 30px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.login-form__link {
  margin-top: 15px;
  font-size: 14px;
  text-align: center;
}

/* =======================================
			entry form
======================================= */
.entry-form {

}
.entry-form__inner {

}

/* step */
.entry-form__step {
  margin-bottom: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.entry-form__step-item {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;

  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
}
.entry-form__step-item:nth-child(1) {
  width: 270px;
  padding-left: 30px;
  padding-right: 50px;
  background-image: url("../images/arrow_step1_gray_pc.svg");
  z-index: 3;
}
.entry-form__step-item:nth-child(1).current {
  background-image: url("../images/arrow_step1_pink_pc.svg");
}
.entry-form__step-item:nth-child(2) {
  margin-left: -25px;
  width: 310px;
  padding-left: 50px;
  padding-right: 50px;
  background-image: url("../images/arrow_step2_gray_pc.svg");
  z-index: 2;
}
.entry-form__step-item:nth-child(2).current {
  background-image: url("../images/arrow_step2_pink_pc.svg");
}
.entry-form__step-item:nth-child(3) {
  margin-left: -35px;
  width: 280px;
  padding-left: 50px;
  padding-right: 50px;
  background-image: url("../images/arrow_step3_gray_pc.svg");
  z-index: 1;
}
.entry-form__step-item-text {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.23;
}
.entry-form__step-item:nth-child(3).current {
  background-image: url("../images/arrow_step3_pink_pc.svg");
}
.entry-form__step-item.current .entry-form__step-item-text {
  color: #FFF;
}

/* info box  */
.entry-form__info-box {
  margin-bottom: 10px;
  border: 2px solid #D22D25;
  padding: 10px;
  text-align: left;
}
.entry-form__info-box--action {
  margin-top: 10px;
  border-radius: 10px;
  border-color: #FF2C2C;
}
.entry-form__info-box-text {
  font-size: 13px;
  font-weight: 700;
  /* letter-spacing: -0.05em; */
}
.entry-form__info-box-text--color-red {
  color: #FF2C2C;
}

/* list  */
.entry-form__list {

}
.entry-form__line {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.entry-form__title {
  width: 200px;
  border-bottom: 1px solid #D9D9D9;
  padding: 35px 25px 35px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.entry-form__title--conf {
  padding: 20px 25px 20px 0;
}
.entry-form__title-text {
  width: calc(100% - 40px);
  font-size: 16px;
  font-weight: 700;
}
.entry-form__title-text--width-full {
  width: 100%;
}
.entry-form__required {
  display: inline-block;
  border-radius: 5px;
  border: 1px solid #FF2C2C;
  padding: 2px 5px;

  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #FFF;
  background-color: #FF2C2C;
  opacity: 0.75;
}
.entry-form__input-wrap {
  width: calc(100% - 200px);
  border-bottom: 1px solid #D9D9D9;
  padding: 20px 0;

	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.entry-form__input-wrap--modal {
  position: relative;
}
.entry-form__modal-val {
  width: 100%;
  padding-right: 80px;
}
.entry-form__modal-button {
  position: absolute;
  top: 35px;
  right: 0;
  border-radius: 0;
  border: 2px solid #D22D25;
  padding: 5px 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #D22D25;
  text-align: center;
  cursor: pointer;
}

.entry-form__input-list {
  width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.entry-form__input-item {
  width: auto;
}
.entry-form__input-item--width-full {
  width: 100%;
}
.entry-form__input-item--width-full:nth-child(n+2) {
  margin-top: 20px;
}
.entry-form__input-item--width-half {
  width: 50%;
}
.entry-form__input-item--width-160 {
  margin-right: 20px;
  width: 160px;
}
.entry-form__input-item--width-160:last-child {
  margin-right: 0;
}

/* input uni */
.entry-form__input-unit {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.entry-form__input-unit-title {
  margin-right: 25px;
  min-width: 2em;
  font-size: 16px;
}
.entry-form__input-unit-title--width-6em {
  min-width: 6em;
}
.entry-form__input-unit-input {

}
.entry-form__input-unit-input--width-160 {
  width: 160px;
}
.entry-form__input-unit-input--width-479 {
  width: 479px;
}
.entry-form__input-unit-text {
  font-size: 16px;
}
* + .entry-form__input-unit-text {
  margin-left: 16px;
}

.entry-form__choices-list {
  width: 100%;
  padding: 10px 0;
}
.entry-form__input-text {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #D9D9D9;
  padding: 15px 20px;
  font-size: 16px;
  line-height: 1.2;
  background-color: #F2F2F2;
}
.entry-form__input-textarea {
  max-width: 100%;
  width: 100%;
  height: calc( 1.35em * 5 );
  border-radius: 5px;
  border: 1px solid #D9D9D9;
  padding: 15px 20px;
  font-size: 16px;
  line-height: 1.2;
  background-color: #F2F2F2;
}
.entry-form__input-select {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #D9D9D9;
  padding: 15px 40px 15px 20px;
  font-size: 16px;
  line-height: 1.2;
  background-color: #F2F2F2;

  background-image: url("../images/triangle_down_pink.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px);
  background-size: 6px auto;
}
.entry-form__error {
  width: 100%;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.05em;
  color: #FF2C2C;
}
.entry-form__error--text-center {
  text-align: center;
}
* + .entry-form__error {
  margin-top: 5px;
}
.entry-form__text {
  font-size: 16px;
}

.entry-form__privacy-box {
  margin-top: 50px;
}
.entry-form__privacy-box-text {
    letter-spacing: 0.05em;
}
.entry-form__privacy-box-text--text-center {
  text-align: center;
}
.entry-form__scroll-box {
  margin-top: 30px;
  padding: 20px;
  max-height: 20em;
  border: 1px solid #CCCCCC;
  background-color: #FFF;
  text-align: left;
  overflow-y: auto;
}
.entry-form__privacy-box-title {
  margin-bottom: 1em;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.entry-form__privacy-check {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.entry-form__privacy-check-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.entry-form__privacy-check-checkbox-label {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  cursor: pointer;
}
.entry-form__privacy-check-checkbox-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 24px;
  width: 24px;
  border: 1px solid #E1E1E1;
  border-radius: 5px;
  background-color: #F2F2F2;
}
.entry-form__privacy-check-checkbox-label::after {
  content: "";
  position: absolute;
  height: 8px;
  width: 12px;
  left: 6px;
  top: 5px;
  border-bottom: 3px solid #E1E1E1;
  border-left: 3px solid #E1E1E1;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.entry-form__privacy-check-checkbox:checked + .entry-form__privacy-check-checkbox-label {
  color: #D22D25;
}
.entry-form__privacy-check-checkbox:checked + .entry-form__privacy-check-checkbox-label::before {
  border: 1px solid #D22D25;
  background-color: #D22D25;
}
.entry-form__privacy-check-checkbox:checked + .entry-form__privacy-check-checkbox-label::after {
  border-bottom: 3px solid #FFFFFF;
  border-left: 3px solid #FFFFFF;
}

.entry-form__button {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* choices list */
.choices-list {
  margin-top: -8px;
  margin-left: -8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.choices-list__item {
  margin-top: 8px;
  padding-left: 8px;
  /* min-width: 33%; */
  /* padding-right: 2%; */
}
.choices-list--column-3 .choices-list__item {
  width: 33%;
}
.choices-list--column-4 .choices-list__item {
  width: 25%;
}
.choices-list__radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.choices-list__radio-label {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  margin-right: 14rem;
  font-size: 16px;
  line-height: 1.68;
  cursor: pointer;
}
.choices-list__radio-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 24px;
  width: 24px;
  border: 1px solid #D9D9D9;
  border-radius: 50%;
  background-color: #F2F2F2;
}
.choices-list__radio:checked + .choices-list__radio-label {
  color: #D22D25;
}
.choices-list__radio:checked + .choices-list__radio-label::before {
  border: 1px solid #D22D25;
}
.choices-list__radio:checked + .choices-list__radio-label::after {
  content: "";
  position: absolute;
  height: 12px;
  width: 12px;
  left: 7px;
  top: 7px;
  border-radius: 50%;
  background-color: #D22D25;
}

.choices-list__radio-label--small {
  padding-left: 20px;
  line-height: 1.2;
}
.choices-list__radio-label--small::before {
  height: 15px;
  width: 15px;
  border: 1px solid #1C1818;
  background-color: #FFF;
}
.choices-list__radio:checked + .choices-list__radio-label--small::after {
  height: 9px;
  width: 9px;
  left: 4px;
  top: 4px;
}

.choices-list__checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.choices-list__checkbox-label {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  font-size: 16px;
  line-height: 1.68;
  cursor: pointer;
}
.choices-list__checkbox-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 24px;
  width: 24px;
  border: 1px solid #D9D9D9;
  border-radius: 2px;
  background-color: #F2F2F2;
}
.choices-list__checkbox:checked + .choices-list__checkbox-label {
  color: #D22D25;
}
.choices-list__checkbox:checked + .choices-list__checkbox-label::before {
  border: 1px solid #D22D25;
  background-color: #D22D25;
}
.choices-list__checkbox:checked + .choices-list__checkbox-label::after {
  content: "";
  position: absolute;
  height: 6px;
  width: 10px;
  left: 6px;
  top: 6px;
  border-bottom: 2px solid #FFFFFF;
  border-left: 2px solid #FFFFFF;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.choices-list__checkbox-label--small {
  padding-left: 20px;
  line-height: 1.2;
}
.choices-list__checkbox-label--small::before {
  height: 15px;
  width: 15px;
  border: 1px solid #1C1818;
  border-radius: 3px;
  background-color: #FFF;
}
.choices-list__checkbox:checked + .choices-list__checkbox-label--small::after {
  height: 4px;
  width: 7px;
  left: 4px;
  top: 4px;
  border-bottom: 2px solid #FFFFFF;
  border-left: 2px solid #FFFFFF;
}

/* form privacy */
.form-privacy-table {

}
.form-privacy-table__section {

}
.form-privacy-table__section:nth-child(n+2) {
  margin-top: 1em;
}
.form-privacy-table__title {
  border-bottom: 1px solid #CCCCCC;
  padding-left: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.875;
}
.form-privacy-table__desc {
  padding: 0.5em 1em;
}
.form-privacy-table__sub-desc {
  margin-top: 10px;
  padding: 10px 0 0;
  border-top: 1px solid #CCCCCC;
}
.form-privacy-table__sub-desc--no-border {
  border-top: none;
  margin-top: 0;
  padding: 0;
}
.form-privacy-table__text {
  font-size: 15px;
  line-height: 1.5;
}
.form-privacy-table__text--margin-top10 {
  margin-top: 10px;
}
.form-privacy-table__text--right {
  text-align: right;
}
.form-privacy-table__num-list {
  font-size: 15px;
  line-height: 1.5;
}

/*----------------------------------------
 _画面の横幅が560pxまで
----------------------------------------*/
@media screen and (max-width:560px) {

  /* =======================================
        login form
  ======================================= */
  .login-form__inner {
    width: 64.28vw;
  }
  .login-form__info-box {
    border: 0.35vw solid #D22D25;
    padding: 1.78vw;
  }
  .login-form__info-box-text {
    font-size: 2.32vw;
  }
  .login-form__info-box  + .login-form__list {
    margin-top: 5.35vw;
  }
  .login-form__line:nth-child(n+2) {
    margin-top: 3.57vw;
  }
  .login-form__title-text {
    font-size: 2.5vw;
    line-height: 1.5;
  }
  .login-form__input-wrap {
    margin-top: 0.89vw;
  }
  .login-form__input {
    border-radius: 0.89vw;
    border: 0.17vw solid #D9D9D9;
    padding: 0.89vw;
  }
  .login-form__keep-check {
    margin-top: 5.35vw;
  }
  .login-form__choices-label {
    padding-left: 6.25vw;
    font-size: 2.85vw;
    line-height: 1.7;
  }
  .login-form__choices-label::before {
    height: 4.28vw;
    width: 4.28vw;
    border: 0.17vw solid #D9D9D9;
    border-radius: 0.89vw;
  }
  .login-form__choices-input:checked + .login-form__choices-label::after {
    height: 1.42vw;
    width: 2.14vw;
    left: 1.07vw;
    top: 0.89vw;
    border-bottom: 0.53vw solid #FFFFFF;
    border-left: 0.53vw solid #FFFFFF;
  }
  .login-form__error {
    font-size: 2.32vw;
  }
  * + .login-form__error {
    margin-top: 0.89vw;
  }
  .login-form__button {
    margin-top: 5.35vw;
  }
  .login-form__link {
    margin-top: 2.67vw;
    font-size: 2.5vw;
  }

  /* =======================================
        entry form
  ======================================= */
  /* step */
  .entry-form__step {
    margin-bottom: 1.78vw;
  }
  .entry-form__step-item {
    padding-top: 2.05vw;
    padding-bottom: 2.05vw;
  }
  .entry-form__step-item:nth-child(1) {
    width: 29.82vw;
    padding-left: 3.57vw;
    padding-right: 5.35vw;
    background-image: url("../images/arrow_step1_gray_sp.svg");
  }
  .entry-form__step-item:nth-child(1).current {
    background-image: url("../images/arrow_step1_pink_sp.svg");
  }
  .entry-form__step-item:nth-child(2) {
    margin-left: -4.46vw;
    width: 33.92vw;
    padding-left: 5.35vw;
    padding-right: 5.35vw;
    background-image: url("../images/arrow_step2_gray_sp.svg");
  }
  .entry-form__step-item:nth-child(2).current {
    background-image: url("../images/arrow_step2_pink_sp.svg");
  }
  .entry-form__step-item:nth-child(3) {
    margin-left: -4.46vw;
    width: 30.82vw;
    padding-left: 5.35vw;
    padding-right: 5.35vw;
    background-image: url("../images/arrow_step3_gray_pc.svg");
  }
  .entry-form__step-item:nth-child(3).current {
    background-image: url("../images/arrow_step3_pink_sp.svg");
  }
  .entry-form__step-item-text {
    font-size: 3.03vw;
  }

  /* info box  */
  .entry-form__info-box {
    margin-bottom: 1.78vw;
    border: 0.35vw solid #D22D25;
    padding: 1.78vw;
  }
  .entry-form__info-box--action {
    margin-top: 1.78vw;
    border-radius: 1.78vw;
  }
  .entry-form__info-box-text {
    font-size: 2.32vw;
  }
  
  /* list  */
  .entry-form__line {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .entry-form__title {
    width: 30.35vw;
    border-bottom: 0.17vw solid #D9D9D9;
    padding: 5.35vw 4.46vw 5.35vw 0;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .entry-form__title--conf {
    padding: 3.57vw 4.46vw 3.57vw 0;
  }
  .entry-form__title-text {
    width: 100%;
    font-size: 2.85vw;
    line-height: 1.5;
  }
  .entry-form__required {
    margin-top: 0;
    border-radius: 0.89vw;
    border: 0.17vw solid #FF2C2C;
    padding: 0.35vw 0.89vw;
    font-size: 2.14vw;
  }
  .entry-form__input-wrap {
    width: calc(100% - 30.35vw);
    border-bottom: 0.17vw solid #D9D9D9;
    padding: 3.57vw 0;
  }
  .entry-form__modal-val {
    padding-right: 0;
  }
  .entry-form__modal-button {
    position: relative;
    top: auto;
    right: auto;
    border: 0.35vw solid #D22D25;
    padding: 1.07vw 3.57vw 0.71vw;
    font-size: 2.5vw;
  }
  .entry-form__input-item--width-full {
    width: 100%;
  }
  .entry-form__input-item--width-full:nth-child(n+2) {
    margin-top: 3.57vw;
  }
  .entry-form__input-item--width-half {
    width: 100%;
  }
  .entry-form__input-item--width-half:nth-child(n+2) {
    margin-top: 2.67vw;
  }
  .entry-form__input-item--width-160 {
    margin-right: 1.78vw;
    width: auto;
    min-width: 16.07vw;
  }
  .entry-form__input-item--width-160:last-child {
    margin-right: 0;
  }

  /* input uni */
  .entry-form__input-unit-title {
    margin-right: 2.67vw;
    font-size: 2.85vw;
  }
  .entry-form__input-unit-title--width-6em {
    min-width: 2em;
  }
  .entry-form__input-unit-input--width-160 {
    width: 46.42vw;
  }
  .entry-form__input-unit-input--width-479 {
    margin-top: 1.78vw;
    width: 100%;
  }
  .entry-form__input-unit-text {
    font-size: 2.85vw;
  }
  * + .entry-form__input-unit-text {
    margin-left: 2.67vw;
  }

  .entry-form__choices-list {
    padding: 1.78vw 0;
  }
  .entry-form__input-text {
    border-radius: 0.89vw;
    border: 0.17vw solid #D9D9D9;
    padding: 2.67vw 3.57vw;
    font-size: 2.85vw;
  }
  .entry-form__input-textarea {
    border-radius: 0.89vw;
    border: 0.17vw solid #D9D9D9;
    padding: 2.67vw 3.57vw;
    font-size: 2.85vw;
  }
  .entry-form__input-select {
    border-radius: 0.89vw;
    border: 0.17vw solid #D9D9D9;
    padding: 2.67vw 7.14vw 2.67vw 3.57vw;
    font-size: 2.85vw;
    background-position: calc(100% - 3.57vw);
    background-size: 1.07vw auto;
  }
  .entry-form__error {
    font-size: 2.32vw;
  }
  * + .entry-form__error {
    margin-top: 0.89vw;
  }
  .entry-form__text {
    font-size: 2.67vw;
  }

  .entry-form__privacy-box {
    margin-top: 8.92vw;
  }
  .entry-form__scroll-box {
    margin-top: 5.35vw;
    padding: 1.78vw;
    border: 0.17vw solid #CCCCCC;
  }
  .entry-form__privacy-check {
    margin-top: 5.35vw;
  }
  .entry-form__privacy-check-checkbox-label {
    padding-left: 4.46vw;
    font-size: 2.85vw;
  }
  .entry-form__privacy-check-checkbox-label::before {
    height: 3.57vw;
    width: 3.57vw;
    border: 0.17vw solid #E1E1E1;
    border-radius: 0.89vw;
  }
  .entry-form__privacy-check-checkbox-label::after {
    height: 0.89vw;
    width: 1.78vw;
    left: 1vw;
    top: 1.07vw;
    border-bottom: 0.52vw solid #E1E1E1;
    border-left: 0.52vw solid #E1E1E1;
  }
  .entry-form__privacy-check-checkbox:checked + .entry-form__privacy-check-checkbox-label::after {
    border-bottom: 0.52vw solid #FFFFFF;
    border-left: 0.52vw solid #FFFFFF;
  }
  .entry-form__button {
    margin-top: 8.92vw;;
    flex-wrap: wrap;
  }

  /* choices list */
  .choices-list {
    margin-top: -1.78vw;
    margin-left: -1.78vw;
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .choices-list__item {
    margin-top: 1.78vw;
    padding-left: 1.78vw;
    /* width: 50%; */
  }
  .choices-list--column-3 .choices-list__item {
    width: auto;
    min-width: 50%;
    max-width: 100%;
  }
  .choices-list--column-4 .choices-list__item {
    width: auto;
    min-width: 50%;
    max-width: 100%;
  }
  .choices-list__radio-label {
    padding-left: 6.25vw;
    font-size: 2.85vw;
  }
  .choices-list__radio-label::before {
    height: 4.28vw;
    width: 4.28vw;
    border: 0.17vw solid #D9D9D9;
    border-radius: 50%;
  }
  .choices-list__radio:checked + .choices-list__radio-label::before {
    border: 0.17vw solid #D22D25;
  }
  .choices-list__radio:checked + .choices-list__radio-label::after {
    height: 2.14vw;
    width: 2.14vw;
    left: 1.25vw;
    top: 1.25vw;
  }

  .choices-list__radio-label--small {
    padding-left: 3.57vw;
  }
  .choices-list__radio-label--small::before {
    height: 2.67vw;
    width: 2.67vw;
    border: 0.17vw solid #1C1818;
  }
  .choices-list__radio:checked + .choices-list__radio-label--small::after {
    height: 1.6vw;
    width: 1.6vw;
    left: 0.71vw;
    top: 0.71vw;
  }
  
  .choices-list__checkbox-label {
    padding-left: 6.25vw;
    font-size: 2.85vw;
  }
  .choices-list__checkbox-label::before {
    height: 4.28vw;
    width: 4.28vw;
    border: 0.17vw solid #D9D9D9;
    border-radius: 0.35vw;
  }
  .choices-list__checkbox:checked + .choices-list__checkbox-label::before {
    border: 0.17vw solid #D22D25;
  }
  .choices-list__checkbox:checked + .choices-list__checkbox-label::after {
    height: 1.07vw;
    width: 1.78vw;
    left: 1.07vw;
    top: 1.07vw;
    border-bottom: 0.71vw solid #FFFFFF;
    border-left: 0.71vw solid #FFFFFF;
  }

  .choices-list__checkbox-label--small {
    padding-left: 3.57vw;
  }
  .choices-list__checkbox-label--small::before {
    height: 2.67vw;
    width: 2.67vw;
    border: 0.17vw solid #1C1818;
    border-radius: 0.53vw;
  }
  .choices-list__checkbox:checked + .choices-list__checkbox-label--small::after {
    height: 0.71vw;
    width: 1.25vw;
    left: 0.71vw;
    top: 0.71vw;
    border-bottom: 0.53vw solid #FFFFFF;
    border-left: 0.53vw solid #FFFFFF;
  }

  /* form privacy */
  .form-privacy-table__title {
    border-bottom: 0.17vw solid #CCCCCC;
    padding-left: 1.78vw;
    font-size: 2.67vw;
  }
  .form-privacy-table__sub-desc {
    margin-top: 1.78vw;
    padding: 1.78vw 0 0;
    border-top: 0.17vw solid #CCCCCC;
  }
  .form-privacy-table__sub-desc--no-border {
    border-top: none;
    margin-top: 0;
    padding: 0;
  }
  .form-privacy-table__text--margin-top10 {
    margin-top: 1.78vw;
  }
  .form-privacy-table__text {
    font-size: 2.67vw;
  }
  .form-privacy-table__num-list {
    font-size: 2.67vw;
  }
}