@charset "UTF-8";

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

}
.login-form__inner {
  margin: 0 auto;
  width: 520px;
}
.login-form__info-box {
  border: 2px solid #0DA89C;
  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 {
}
.login-form__list {

}
.login-form__list.login-form__list-long-sp {
  width: 100%;
}
.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: 500;
}
.login-form__input-wrap {
  margin-top: 10px;
}
.login-form__input {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #D8D5D5;
  padding: 12px;
  background-color: #F5F4F4;
}
.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: #0DA89C;
}
.login-form__choices-input:checked + .login-form__choices-label::before {
  border: 1px solid #0DA89C;
  background-color: #0DA89C;
}
.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: 90px;
  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: 40px;
  font-size: 14px;
  text-align: center;
}

.login-form__link::before {
  content: "";
  background-image: url(../images/triangle_right_green.svg);
  background-repeat: no-repeat;
  background-size: 20px auto;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
}

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

}
.contact-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: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 #0DA89C;
  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;
}

.entry-form__info-box-message-title {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.25;
  text-align: left;
  margin-left: -100px;
  margin-bottom: 40px;
}
.entry-form__info-box-message-title2 {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.25;
  text-align: left;
  margin-bottom: 40px;
}
.entry-form__info-box-message {
  font-size: 16px;
  line-height: 2;
  text-align: left;
  margin-left: -100px;
  margin-bottom: 20px;
}
.entry-form__info-box-message2 {
  font-size: 16px;
  line-height: 2;
  text-align: left;
  margin-bottom: 20px;
}
.entry-form__info-box-notice {
  font-size: 14px;
  line-height: 2;
  text-align: left;
  color: #666;
  margin-left: -100px;
  margin-bottom: 60px;
}
.entry-form__info-box-notice2 {
  font-size: 14px;
  line-height: 2;
  text-align: left;
  color: #666;
  margin-bottom: 60px;
}

.entry-form__block--choices-list {
  width: 100%;
  padding: 13px 0;
} 
#_formConf .entry-form__info-box-message {
  margin-bottom: 60px;
}

/* list  */
.entry-form__list {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/* 縦並びレイアウト用のスタイル */
.entry-form__list--vertical {
  max-width: none;
}

/* PC用スクロール固定機能 */
@media screen and (min-width: 561px) {
  .entry-form__list--vertical {
    position: sticky;
    top: 108px;
    z-index: 100;
    background-color: #FFF;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }
}


.entry-form__line--vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 20px 0;
}

.entry-form__line--vertical .entry-form__title {
  width: 100%;
  border-top: none;
  padding: 0 0 8px 0;
  margin-bottom: 8px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.entry-form__line--vertical .entry-form__input-wrap {
  width: 100%;
  border-top: none;
  padding: 0;
}
.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__line2 {
	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: nowrap;
	flex-wrap: nowrap;
}
.entry-form__title {
  width: 240px;
  border-top: 1px solid #E6E6E6;
  padding: 26px 24px 26px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.entry-form__title2 {
  width: 190px;
  border-top: 1px solid #E6E6E6;
  padding: 26px 24px 26px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-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: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.entry-form__title-text--width-full {
  width: 100%;
}
.entry-form__required {
  display: inline-block;
  border-radius: 3px;
  border: 1px solid #0D4490;
  padding: 2px 7px;

  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.025em;
  color: #FFF;
  background-color: #0D4490;
  opacity: 0.8;
}
.entry-form__any {
  margin-left: 1em;
  display: inline-block;
  border-radius: 5px;
  border: 1px solid #414349;
  padding: 2px 5px;

  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #FFF;
  background-color: #414349;
  opacity: 0.75;
}
.entry-form__input-wrap {
  width: calc(100% - 240px);
  border-top: 1px solid #E6E6E6;
  padding: 11px 0;

	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.entry-form__block {
  width: 100%;
}
.entry-form__block--width-half {
  width: 47%;
}
.entry-form--center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
} 
.entry-form--start {
  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 #0DA89C;
  padding: 5px 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #0DA89C;
  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: #F5F4F4;
}
.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 {
  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_black.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px);
  background-size: 10px 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: 80px;
}
.entry-form__privacy-box-text {
  line-height: 1.5;
  text-align: center;
}
.entry-form__privacy-box-link {
  text-decoration: underline;
}
.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: #0DA89C;
}
.entry-form__privacy-check-checkbox:checked + .entry-form__privacy-check-checkbox-label::before {
  border: 1px solid #0DA89C;
  background-color: #0DA89C;
}
.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;
}

.entry-form__comp-block {
  width: 100%;
}

*+.entry-form__comp-block {
  margin-top: 20px;
}

.entry-form__comp-block--border-top {
  margin-top: 20px;
  border-top: 1px solid #E6E6E6;
  padding-top: 20px;
}

.entry-form__note {
  width: 100%;
}

*+.entry-form__note {
  margin-top: 5px;
}

*+.entry-form__note--margin-top10 {
  margin-top: 10px;
}

.entry-form__unit {
  margin: 0 10px;
}

/* entry form  header */
.entry-form-header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.entry-form-header__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.42;
  color: #0D4490;
}

.entry-form-header__delete-btn {}

/* =======================================
  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 {
  position: relative;
  margin-top: 8px;
  padding-left: 8px;
}

.choices-list__item--column-3 {
  width: 33%;
}

.choices-list__item--column-4 {
  width: 25%;
}


/* 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;
}

/* =======================================
  input text
======================================= */
.input-text {
  font-size: 16px;
}

.input-text--bold {
  font-weight: 700;
}

.input-text--middle {
  font-weight: 500;
}

.input-text--center {
  text-align: center;
}

.input-unit-text {
  font-size: 16px;
}

.input-note-text {
  font-size: 13px;
  line-height: 1.2;
}

.input-note-text--big {
  font-size: 15px;
  font-weight: 700;
}

.input-error-text {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.05em;
  color: #FF2C2C;
}

/* input text sp */
@media screen and (max-width:560px) {
  .input-text {
    font-size: 16px;
  }

  .input-unit-text {
    font-size: 14px;
  }

  .input-note-text {
    font-size: 16px;
  }

  .input-note-text--big {
    font-size: 16px;
  }

  .input-error-text {
    font-size: 14px;
  }
}

/* =======================================
  input type
======================================= */
/* text type */
.input-text-type {
  max-width: 100%;
  border-radius: 5px;
  border: 1px solid #D8D5D5;
  padding: 13px 15px;
  font-size: 16px;
  background-color: #F5F4F4;
}

.input-text-type--width-80 {
  width: 80px;
}

.input-text-type--width-100 {
  width: 100px;
}

.input-text-type--width-200 {
  width: 200px;
}

.input-text-type--width-210 {
  width: 210px;
}

.input-text-type--width-255 {
  width: 255px;
}

.input-text-type--width-auto {
  width: auto;
}
.input-text-type--width-full {
  width: 100%;
}

.modal-btn {
  width: 255px;
  border-radius: 5px;
  border: 1px solid #D8D5D5;
  padding: 10px 45px 10px 15px;
  font-size: 16px;
  text-align: left;
  background-color: #F5F4F4;
  cursor: pointer;
  background-image: url("../images/icon_windows_black.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) center;
  background-size: 12px auto;
}

/* radio type */
.input-radio-type {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.input-radio-type-label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  font-size: 14px;
  line-height: 1.68;
  cursor: pointer;
}

.input-radio-type-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 20px;
  width: 20px;
  border: 1px solid #D8D5D5;
  border-radius: 50%;
  background-color: #F5F4F4;
}

.input-radio-type:checked+.input-radio-type-label {
  color: #0DA89C;
}

.input-radio-type:checked+.input-radio-type-label::before {
  border: 1px solid #0DA89C;
  background-color: #0DA89C;
}

.input-radio-type:checked+.input-radio-type-label::after {
  content: "";
  position: absolute;
  height: 4px;
  width: 8px;
  left: 6px;
  top: 7px;
  border-bottom: 2px solid #FFFFFF;
  border-left: 2px solid #FFFFFF;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* select type */
.input-select-type {
  max-width: 100%;
  border-radius: 5px;
  border: 1px solid #D8D5D5;
  padding: 13px 45px 13px 15px;
  font-size: 16px;
  background-color: #F5F4F4;
  background-image: url("../images/wedge_down_black.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) center;
  background-size: 10px auto;
}

.input-select-type--width-80 {
  width: 80px;
}

.input-select-type--width-90 {
  width: 90px;
}

.input-select-type--width-100 {
  width: 100px;
}

.input-select-type--width-auto {
  width: auto;
}


/* checkbox type */
.input-checkbox-type {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.input-checkbox-type-label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  font-size: 14px;
  line-height: 1.68;
  cursor: pointer;
}

.input-checkbox-type-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 20px;
  width: 20px;
  border: 1px solid #D8D5D5;
  border-radius: 4px;
  background-color: #F5F4F4;
}

.input-checkbox-type:checked+.input-checkbox-type-label {
  color: #0DA89C;
}

.input-checkbox-type:checked+.input-checkbox-type-label::before {
  border: 1px solid #0DA89C;
  background-color: #0DA89C;
}

.input-checkbox-type:checked+.input-checkbox-type-label::after {
  content: "";
  position: absolute;
  height: 4px;
  width: 8px;
  left: 6px;
  top: 7px;
  border-bottom: 2px solid #FFFFFF;
  border-left: 2px solid #FFFFFF;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* textarea type */
.input-textarea-type {
  max-width: 100%;
  width: 100%;
  height: calc(1.35em * 5);
  border-radius: 5px;
  border: 1px solid #D8D5D5;
  padding: 13px 15px;
  font-size: 16px;
  background-color: #F5F4F4;
}

/* file type */
.input-file-type {
  display: none;
}

.input-file-type__button {
  margin-right: 20px;

  position: relative;
  min-width: 180px;
  border-radius: 5px;
  padding: 14px 20px 14px 40px;
  background-color: #0DA89C;
  box-shadow: 0 6px #0F7C74;
  cursor: pointer;
  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;
}

.input-file-type__button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  margin-top: -7.5px;
  width: 15px;
  height: 15px;
  background-image: url("../images/circle_right_green_white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.input-file-type__button:hover {
  -webkit-transform: translate(0, 3px);
  -moz-transform: translate(0, 3px);
  transform: translate(0, 3px);
  box-shadow: 0 3px #0F7C74;
  opacity: 1 !important;
}

.input-file-type__button-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: #FFF;
}

.input-file-type__name {
  margin-right: 20px;
  margin-top: 10px;
  font-size: 16px;
}

.input-file-type__name--font-bold {
  font-weight: 700;
  color: #0DA89C;
}

.input-file-type__name--color-red {
  color: #FF2C2C;
}

.input-file-type__delete-btn {
  margin-top: 10px;
}


/* =======================================
  input btn
======================================= */
/* delete btn */
.delete-btn {
  border-radius: 3px;
  padding: 3px 7px;
  background-color: #707070;
  cursor: pointer;
  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;
}

.delete-btn__text {
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.025em;
  color: #FFF;
}

/* =======================================
  input table
======================================= */
.input-table {}

.input-table__line {
  border-top: 1px solid #E6E6E6;
  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;
}

.input-table__header {
  width: 240px;
  padding: 26px 24px 26px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.input-table__title {
  width: calc(100% - 40px);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.input-table__title--width-full {
  width: 100%;
}

.input-table__required {
  line-height: 1;
}

.input-table__body {
  position: relative;
  width: calc(100% - 240px);
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.input-table__body--conf {
  padding: 24px;
}

.input-table__comp-block {
  width: 100%;
}

*+.input-table__comp-block {
  margin-top: 20px;
}

.input-table__comp-block--border-top {
  margin-top: 20px;
  border-top: 1px solid #E6E6E6;
  padding-top: 20px;
}

.input-table__block {
  width: 100%;
}

.input-table__block--margin-top10 {
  margin-top: 10px;
}

.input-table__block--choices-list {
  width: 100%;
  padding: 13px 0;
}

.input-table__block--width-half {
  width: 49%;
}

.input-table__block--width-half:nth-child(n+2) {
  margin-left: 2%;
}

.input-table__unit {
  margin: 0 10px;
}

.input-table__unit:last-child {
  margin-right: 0;
}

.input-table__note {
  width: 100%;
}

*+.input-table__note {
  margin-top: 5px;
}

*+.input-table__note--margin-top10 {
  margin-top: 10px;
}

.input-table__error {
  width: 100%;
}

*+.input-table__error {
  margin-top: 5px;
}

.input-table__button {
  margin: 20px 0;
  width: 180px;
}

/* =======================================
  iinput block
======================================= */
/* input block header */
.input-block-header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.input-block-header__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.42;
  color: #0D4490;
}

.input-block-header__delete-btn {}

/* input block header sp */
@media screen and (max-width:560px) {
  .input-block-header__title {
    font-size: 16px;
  }
}

/* input block */
.input-block {}

.input-block--center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.input-block--start {
  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;
}

.input-block__title {}

.input-block__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;
}
.input-block__choices-list {
  width: 100%;
  padding: 6px 0;
}

/* input block sp */
@media screen and (max-width:560px) {
  .input-block__choices-list {
    width: 100%;
    padding: 1.16vw 0;
  }
}



/* =======================================
  form button
======================================= */
.form-button {
  position: relative;
  min-width: 400px;
  border-radius: 5px;
  padding: 24px 80px 24px 100px;
  background-color: #0DA89C;
  box-shadow: 0 6px #0F7C74;
  cursor: pointer;
  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;
}

.form-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  margin-top: -7.5px;
  width: 15px;
  height: 15px;
  background-image: url("../images/circle_right_green_white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.form-button:hover {
  -webkit-transform: translate(0, 3px);
  -moz-transform: translate(0, 3px);
  transform: translate(0, 3px);
  box-shadow: 0 3px #0F7C74;
  opacity: 1 !important;
}

.form-button:nth-child(n+2) {
  margin-left: 30px;
}

.form-button--short {
  min-width: 200px;
}

.form-button--return {
  background-color: #AFAFAF;
  box-shadow: 0 6px #585555;
  padding: 15px 20px 15px 40px;
}

.form-button--return::before {
  background-image: url("../images/circle_left_transparent_white.svg");
}

.form-button--return:hover {
  box-shadow: 0 3px #585555;
  opacity: 1 !important;
}

.form-button--process {
  border-color: #D8D5D5;
  background-color: #AFAFAF;
  background-image: none;
  cursor: none;
  pointer-events: none;
  box-shadow: 0 6px #585555;
}

.form-button--process:hover {
  -webkit-transform: none;
  -moz-transform: none;
  transform: none;
  box-shadow: 0 6px #585555;
  opacity: 1 !important;
}

.form-button--add {
  min-width: 180px;
  padding: 14px 20px;
  background-color: #4286e5;
  box-shadow: 0 6px #0D4490;
}

.form-button--add::before {
  content: none;
}

.form-button--add:hover {
  box-shadow: 0 3px #0D4490;
}

.form-button__text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #FFF;
}

.form-button__text--small {
  font-size: 14px;
}

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

  /* =======================================
        login form
  ======================================= */
  .login-form__inner {
    width: 71.42vw;
  }
  .login-form__info-box {
    border: 0.35vw solid #0DA89C;
    padding: 1.78vw;
  }
  .login-form__info-box-text {
    font-size: 14px;
  }
  .login-form__list {
    width: 55vw;
    margin: 0 auto;
  }
  .login-form__info-box  + .login-form__list {
  }
  .login-form__line:nth-child(n+2) {
    margin-top: 3.57vw;
  }
  .login-form__title-text {
    font-size: 14px;
    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: 1.96vw 0.89vw;
  }
  .login-form__keep-check {
    margin-top: 5.35vw;
  }
  .login-form__choices-label {
    padding-left: 6.25vw;
    font-size: 12px;
    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: 14px;
  }
  * + .login-form__error {
    margin-top: 0.89vw;
  }
  .login-form__button {
    margin-top: 10.71vw;
  }
  .login-form__link {
    margin-top: 7.5vw;
    font-size: 14px;
  }
  .login-form__link::before {
    background-size: 3.57vw auto;
    width: 3.57vw;
    height: 3.57vw;
  }

  /* =======================================
        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 #0DA89C;
    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;
  }
  .entry-form__info-box-message-title {
    font-size: 22px;
    line-height: 1.5;
    margin-left: 0;
    margin-bottom: 5.35vw;
  }
  .entry-form__info-box-message-title2 {
    font-size: 22px;
    line-height: 1.5;
    margin-left: 0;
    margin-bottom: 5.35vw;
    padding: 0 5.35vw;
  }
  .entry-form__info-box-message {
    font-size: 18px;
    margin-left: 0;
    margin-bottom: 3.57vw;
  }
  .entry-form__info-box-message2 {
    font-size: 18px;
    margin-left: 0;
    margin-bottom: 3.57vw;
    padding: 0 5.35vw;
  }
  .entry-form__info-box-notice {
    font-size: 16px;
    margin-left: 0;
    margin-bottom: 10.71vw;
  }
  .entry-form__info-box-notice2 {
    font-size: 16px;
    margin-left: 0;
    margin-bottom: 10.71vw;
    padding: 0 5.35vw;
  }
  #_formConf .entry-form__info-box-message {
    margin-bottom: 10.71vw;
  }
  
  /* list  */
  .entry-form__line {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .entry-form__line2 {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .entry-form__list--vertical { 
    padding: 0 5.35vw;
  }

  /* 縦並びレイアウトのスマートフォン対応 */
  .entry-form__line--vertical {
    padding: 3.57vw 0;
  }

  .entry-form__line--vertical .entry-form__title {
    width: 100%;
    padding: 0 0 1.43vw 0;
    margin-bottom: 1.43vw;
    border-top: none;
  }

  .entry-form__line--vertical .entry-form__input-wrap {
    width: 100%;
    border-top: none;
    padding: 0;
  }
  .entry-form__title {
    width: 31.6vw;
    border-top: 0.17vw solid #E6E6E6;
    padding: 4.28vw 1.78vw 4.28vw 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .entry-form__title2 {
    width: 31.6vw;
    border-top: 0.17vw solid #E6E6E6;
    padding: 4.28vw 1.78vw 4.28vw 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .entry-form__title--conf {
    padding: 3.57vw 4.46vw 3.57vw 0;
  }
  .entry-form__title-text {
    width: auto;
    font-size: 16px;
    line-height: 1.5;
  }
  .entry-form__required {
    margin-top: 0;
    border-radius: 0.89vw;
    padding: 0.89vw;
    font-size: 10px;
  }
  .entry-form__any {
    margin-top: 0;
    border-radius: 0.89vw;
    border: 0.17vw solid #414349;
    padding: 0.35vw 0.89vw;
    font-size: 2.14vw;
  }
  .entry-form__input-wrap {
    width: calc(100% - 31.6vw);
    border-top: 0.17vw solid #E6E6E6;
    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 #0DA89C;
    padding: 1.07vw 3.57vw 0.71vw;
    font-size: 2.85vw;
  }
  .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: 12px;
  }
  .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: 12px;
  }
  * + .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: 14px;
  }
  .entry-form__input-textarea {
    border-radius: 0.89vw;
    border: 0.17vw solid #D9D9D9;
    padding: 2.67vw 3.57vw;
    font-size: 14px;
  }
  .entry-form__input-select {
    border-radius: 0.89vw;
    border: 0.17vw solid #D9D9D9;
    padding: 2.67vw 7.14vw 2.67vw 3.57vw;
    font-size: 12px;
    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: 14px;
  }

  .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: 12px;
  }
  .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;
  }
  .entry-form__button .button--width-normal-triagle {
    width: 53.64vw;
  }
  *+.entry-form__comp-block {
    margin-top: 3.57vw;
  }

  .entry-form__comp-block--border-top {
    margin-top: 3.57vw;
    border-top: 0.17vw solid #E6E6E6;
    padding-top: 3.57vw;
  }

  .entry-form__block {}

  .entry-form__block--margin-top10 {
    margin-top: 1.78vw;
  }

  .entry-form__block--choices-list {
    width: 100%;
    padding: 2.32vw 0;
  }

  .entry-form__block--width-half {
    width: 49%;
  }

  .entry-form__block--width-half:nth-child(n+2) {
    margin-left: 2%;
  }

  .entry-form__unit {
    margin: 0 0.35vw;
    font-size: 14px;
  }

  .entry-form__unit:last-child {
    margin-right: 0;
  }

  .entry-form__note {
    width: 100%;
  }

  *+.entry-form__note {
    margin-top: 0.89vw;
  }

  *+.entry-form__note--margin-top10 {
    margin-top: 1.78vw;
  }

  .entry-form__title-dd {
    font-size: 14px;
  }

  /* choices list */
  .choices-list {
    margin-top: -1.78vw;
    margin-left: -1.78vw;
  }
  .choices-list__item {
    margin-top: 1.78vw;
    padding-left: 1.78vw;
    /* width: 50%; */
  }
  .choices-list--column-3 .choices-list__item {
    width: auto;
    width: inherit;
    min-width: 50%;
  }
  .choices-list--column-4 .choices-list__item {
    width: auto;
    width: inherit;
    min-width: 50%;
  }
  .choices-list__radio-label {
    padding-left: 6.25vw;
    font-size: 12px;
  }
  .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 #0DA89C;
  }
  .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: 12px;
  }
  .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 #0DA89C;
  }
  .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;
  }
  /* =======================================
  input type
  ======================================= */
  .input-text-type {
    border-radius: 0.89vw;
    border: 0.17vw solid #D8D5D5;
    padding: 1.78vw 2.67vw;
    font-size: 12px;
  }

  .input-text-type--width-80 {
    width: 14.28vw;
  }

  .input-text-type--width-100 {
    width: 17.85vw;
  }

  .input-text-type--width-200 {
    width: 25.5vw;
  }

  .input-text-type--width-210 {
    width: 25.5vw;
  }

  .input-text-type--width-255 {
    width: 37.53vw;
  }

  .input-text-type--width-auto {
    width: auto;
  }

  .modal-btn {
    width: 45.53vw;
    border-radius: 0.89vw;
    border: 0.17vw solid #D8D5D5;
    padding: 1.78vw 8.03vw 1.78vw 2.67vw;
    font-size: 12px;
    background-position: calc(100% - 2.67vw) center;
    background-size: 2.14vw auto;
  }
  /* text type sp */
  .input-text-type {
    border-radius: 0.89vw;
    border: 0.17vw solid #D8D5D5;
    padding: 1.78vw 2.67vw;
    font-size: 16px;
  }

  .input-text-type--width-80 {
    width: 14.28vw;
  }

  .input-text-type--width-100 {
    width: 17.85vw;
  }

  .input-text-type--width-200 {
    width: 25.5vw;
  }

  .input-text-type--width-210 {
    width: 25.5vw;
  }

  .input-text-type--width-255 {
    width: 37.53vw;
  }

  .input-text-type--width-auto {
    width: auto;
  }
  /* textarea type sp */
  .input-textarea-type {
    border-radius: 0.89vw;
    border: 0.17vw solid #D8D5D5;
    padding: 1.78vw 2.67vw;
    font-size: 12px;
  }
  /* select type sp */
  .input-select-type {
    border-radius: 0.89vw;
    border: 0.17vw solid #D8D5D5;
    padding: 1.78vw 2.67vw 1.78vw;
    font-size: 16px;
    background-position: calc(100% - 1.67vw) center;
    background-size: 1.78vw auto;
  }

  .input-select-type--width-80 {
    width: 12.28vw;
  }

  .input-select-type--width-90 {
    width: 14.85vw;
  }

  .input-select-type--width-100 {
    width: 18.85vw;
  }

  .input-select-type--width-auto {
    width: auto;
  }
  /* radio type sp */
  .input-radio-type-label {
    padding-left: 6.35vw;
    font-size: 14px;
    line-height: 1.38;
  }

  .input-radio-type-label::before {
    height: 19px;
    width: 19px;
    border: 0.17vw solid #D8D5D5;
  }

  .input-radio-type:checked+.input-radio-type-label::before {
    border: 0.17vw solid #0DA89C;
  }

  .input-radio-type:checked+.input-radio-type-label::after {
    top: 6px;
    left: 5px;
    height: 5px;
    width: 9px;
    border-bottom: 0.53vw solid #fff;
    border-left: 0.53vw solid #fff;
  }
  /* checkbox type sp */
  .input-checkbox-type-label {
    padding-left: 5.35vw;
    font-size: 14px;
  }

  .input-checkbox-type-label::before {
    height: 3.57vw;
    width: 3.57vw;
    border: 0.17vw solid #D8D5D5;
    border-radius: 0.71vw;
  }

  .input-checkbox-type:checked+.input-checkbox-type-label::before {
    border: 0.17vw solid #0DA89C;
  }

  .input-checkbox-type:checked+.input-checkbox-type-label::after {
    top: 0.89vw;
    left: 0.89vw;
    height: 1.07vw;
    width: 1.78vw;
    border-bottom: 0.53vw solid #fff;
    border-left: 0.53vw solid #fff;
  }
  /* file type sp */
  .input-file-type__button {
    min-width: 32.14vw;
    border-radius: 0.89vw;
    padding: 2.5vw 3.57vw 2.5vw 7.14vw;
    box-shadow: 0 1.07vw #0F7C74;
  }

  .input-file-type__button::before {
    left: 3.57vw;
    margin-top: -1.33vw;
    width: 2.67vw;
    height: 2.67vw;
  }

  .form-button:hover {
    -webkit-transform: translate(0, 0.53vw);
    -moz-transform: translate(0, 0.53vw);
    transform: translate(0, 0.53vw);
    box-shadow: 0 0.53vw #0F7C74;
  }

  .input-file-type__button-text {
  }

  .input-file-type__name {
    margin-right: 1.78vw;
    margin-top: 1.78vw;
    font-size: 14px;
  }

  .input-file-type__delete-btn {
    margin-top: 1.78vw;
  }
  /* choices list sp */
  .choices-list {
    margin-top: -1.42vw;
    margin-left: -1.42vw;
  }

  .choices-list__item {
    margin-top: 1.42vw;
    padding-left: 1.42vw;
  }

  .choices-list__item--column-3 {
    width: auto;
    width: inherit;
    min-width: 50%;
  }

  .choices-list__item--column-4 {
    width: auto;
    width: inherit;
    min-width: 50%;
  }
  /* delete btn sp */
  .delete-btn {
    border-radius: 0.53vw;
    padding: 0.53vw 1.25vw;
  }

  .delete-btn__text {
    font-size: 3.73vw;
  }
  /* form button sp */
  .form-button {
    min-width: 71.42vw;
    border-radius: 0.89vw;
    padding: 4.28vw 14.28vw 4.28vw 17.85vw;
    box-shadow: 0 1.07vw #0F7C74;
  }

  .form-button::before {
    left: 3.57vw;
    margin-top: -1.33vw;
    width: 2.67vw;
    height: 2.67vw;
  }

  .form-button:hover {
    -webkit-transform: translate(0, 0.53vw);
    -moz-transform: translate(0, 0.53vw);
    transform: translate(0, 0.53vw);
    box-shadow: 0 0.53vw #0F7C74;
  }

  .form-button:nth-child(n+2) {
    margin-left: 5.35vw;
  }

  .form-button--short {
    min-width: 28.71vw;
  }

  .form-button--return {
    padding: 2.67vw 3.57vw 2.67vw 7.14vw;
    box-shadow: 0 1.07vw #585555;
  }

  .form-button--return::before {}

  .form-button--return:hover {
    box-shadow: 0 0.53vw #585555;
  }

  .form-button--process {
    box-shadow: 0 1.07vw #585555;
  }

  .form-button--process:hover {
    box-shadow: 0 1.07vw #585555;
  }

  .form-button--add {
    min-width: 45.14vw;
    border-radius: 0.89vw;
    padding: 2.5vw;
    box-shadow: 0 1.07vw #0D4490;
  }

  .form-button--add::before {
    content: none;
  }

  .form-button--add:hover {
    box-shadow: 0 0.53vw #0D4490;
  }

  .form-button__text {
  }

  .form-button__text--small {
  }
  /* entry form header sp */
  .entry-form-header__title {
    font-size: 16px;
  }

  /* input table sp */
  .input-table__line {
    border-top: 0.17vw solid #E6E6E6;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .input-table__header {
    width: 29.25vw;
    padding: 3.57vw 1.78vw 3.57vw 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .input-table__title {
    font-size: 14px;
  }

  .input-table__title--width-full {
    width: 100%;
  }

  .input-table__body {
    width: calc(100% - 29.25vw);
    padding: 1.78vw 0;
  }

  .input-table__body--conf {
    padding: 4.28vw;
  }

  *+.input-table__comp-block {
    margin-top: 3.57vw;
  }

  .input-table__comp-block--border-top {
    margin-top: 3.57vw;
    border-top: 0.17vw solid #E6E6E6;
    padding-top: 3.57vw;
  }

  .input-table__block {}

  .input-table__block--margin-top10 {
    margin-top: 1.78vw;
  }

  .input-table__block--choices-list {
    width: 100%;
    padding: 2.32vw 0;
  }

  .input-table__block--width-half {
    width: 49%;
  }

  .input-table__block--width-half:nth-child(n+2) {
    margin-left: 2%;
  }

  .input-table__unit {
    margin: 0 0.89vw;
  }

  .input-table__unit:last-child {
    margin-right: 0;
  }

  .input-table__note {
    width: 100%;
  }

  *+.input-table__note {
    margin-top: 0.89vw;
  }

  *+.input-table__note--margin-top10 {
    margin-top: 1.78vw;
  }

  .input-table__error {
    width: 100%;
  }

  *+.input-table__error {
    margin-top: 0.89vw;
  }

  .input-table__button {
    margin: 3.57vw 0;
    width: 32.14vw;
  }

}

/* =======================================
    Entry Form Content Wrapper
======================================= */
.entry-form__content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

/* =======================================
    Jobseeker Examples Section
======================================= */
.jobseeker-examples {
  width: 40%;
  min-width: 460px;
  margin-bottom: 0;
  padding: 30px;
  border: 2px solid #E8F5F4;
  border-radius: 10px;
  background-color: #F8FCFC;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.jobseeker-examples__title {
  font-size: 20px;
  font-weight: 700;
  color: #0DA89C;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.4;
}

.jobseeker-examples__container {
  width: 100%;
}

.jobseeker-examples__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.jobseeker-examples__item {
  width: 100%;
  margin-bottom: 15px;
  padding: 15px;
  border: 1px solid #E0F2F1;
  border-radius: 8px;
  background-color: #FFFFFF;
  position: relative;
  box-shadow: 0 2px 4px rgba(13, 168, 156, 0.1);
}

.jobseeker-examples__item:last-child {
  margin-bottom: 0;
}

.jobseeker-examples__item-number {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #0DA89C;
  padding: 4px 12px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 8px;
}

.jobseeker-examples__item-job {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 15px;
  line-height: 1.3;
}

.jobseeker-examples__item-detail {
  margin-bottom: 15px;
}

.jobseeker-examples__item-row {
  margin-bottom: 8px;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.jobseeker-examples__item-row:last-child {
  margin-bottom: 0;
}

.jobseeker-examples__item-label {
  font-size: 13px;
  font-weight: 500;
  color: #666666;
  display: block;
  width: 70px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.jobseeker-examples__item-value {
  font-size: 13px;
  font-weight: 400;
  color: #333333;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  word-wrap: break-word;
}

.jobseeker-examples__item-checkbox {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid #F0F0F0;
}

.jobseeker-examples__checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.jobseeker-examples__checkbox-label {
  position: relative;
  display: inline-block;
  padding-left: 28px;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  cursor: pointer;
  line-height: 1.5;
}

.jobseeker-examples__checkbox-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  background-color: #FFFFFF;
}

.jobseeker-examples__checkbox:checked + .jobseeker-examples__checkbox-label {
  color: #0DA89C;
}

.jobseeker-examples__checkbox:checked + .jobseeker-examples__checkbox-label::before {
  border: 1px solid #0DA89C;
  background-color: #0DA89C;
}

.jobseeker-examples__checkbox:checked + .jobseeker-examples__checkbox-label::after {
  content: "";
  position: absolute;
  height: 6px;
  width: 10px;
  left: 4px;
  top: 7px;
  border-bottom: 2px solid #FFFFFF;
  border-left: 2px solid #FFFFFF;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* スマートフォン対応 */
@media screen and (max-width: 560px) {
  .entry-form__content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 7.14vw;
  }

  .jobseeker-examples {
    width: 100%;
    min-width: auto;
    margin-bottom: 0;
    padding: 5.36vw;
    border-radius: 0;
  }

  .jobseeker-examples__title {
    font-size: 20px;
    margin-bottom: 5.36vw;
  }

  .jobseeker-examples__list {
    /* 縦並びレイアウトなのでマージンリセット */
  }

  .jobseeker-examples__item {
    width: 100%;
    margin-bottom: 2.68vw;
    padding: 3.57vw;
    border-radius: 1.43vw;
  }

  .jobseeker-examples__item:last-child {
    margin-bottom: 0;
  }

  .jobseeker-examples__item-number {
    font-size: 14px;
    padding: 0.71vw 2.14vw;
    border-radius: 2.14vw;
    margin-bottom: 1.43vw;
  }

  .jobseeker-examples__item-job {
    font-size: 16px;
    margin-bottom: 2.68vw;
  }

  .jobseeker-examples__item-detail {
    margin-bottom: 2.68vw;
  }

  .jobseeker-examples__item-row {
    margin-bottom: 1.43vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .jobseeker-examples__item-label {
    font-size: 13px;
    width: 17.5vw;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .jobseeker-examples__item-value {
    font-size: 13px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    word-wrap: break-word;
  }

  .jobseeker-examples__item-checkbox {
    padding-top: 2.68vw;
  }

  .jobseeker-examples__checkbox-label {
    padding-left: 5vw;
    font-size: 14px;
  }

  .jobseeker-examples__checkbox-label::before {
    top: 0.71vw;
    width: 3.21vw;
    height: 3.21vw;
    border-radius: 0.71vw;
  }

  .jobseeker-examples__checkbox:checked + .jobseeker-examples__checkbox-label::after {
    height: 1.07vw;
    width: 1.79vw;
    left: 0.53vw;
    top: 1.25vw;
  }
}

/* フォームタイトル */
.entry-form__form-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  padding: 15px 20px;
  text-align: center;
}
