@charset "UTF-8";
/* ===== @use ===== */
/* ===== common.scss ===== */
/* -- 変数 -- */
/* font */
/* color */
/* switching */
/* ===== @mixin ===== */
/* crm */
/* btn */
/* ===== form.css ===== */
/* -- input -- */
input[type=text],
input[type=email],
input[type=tel],
input[type=number] {
  color: #000;
  line-height: 4.7rem;
  display: block;
  padding: 0 2rem;
  height: 6rem;
  width: 100%;
  border: 1px solid #C4C4C4;
  background: #FFF;
  /* - errors - */
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus {
  outline: none;
}
input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
input[type=text]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=number]:-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  opacity: 1;
}
input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=number]::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  opacity: 1;
}
input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
input[type=text]::-ms-input-placeholder,
input[type=email]::-ms-input-placeholder,
input[type=tel]::-ms-input-placeholder,
input[type=number]::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
input[type=text].errors,
input[type=email].errors,
input[type=tel].errors,
input[type=number].errors {
  border-color: #FF93A9;
  background: #FFF0F3;
}

/* -- checkbox -- */
.checkbox,
.radiobox {
  margin-bottom: -1.8rem;
  /* errors */
}
.checkbox label,
.radiobox label {
  user-select: none;
  display: inline-block;
  margin-bottom: 1.8rem;
}
.checkbox label:not(:last-child),
.radiobox label:not(:last-child) {
  margin-right: 2.4rem;
}
.checkbox label input[type=text],
.checkbox label input[type=email],
.checkbox label input[type=tel],
.checkbox label input[type=number],
.radiobox label input[type=text],
.radiobox label input[type=email],
.radiobox label input[type=tel],
.radiobox label input[type=number] {
  margin: 1.8rem 0 0 auto;
  max-width: calc(100% - 4rem);
}
.checkbox label.df,
.radiobox label.df {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.checkbox label span,
.radiobox label span {
  display: inline-block;
}
.checkbox input[type=checkbox],
.checkbox input[type=radio],
.radiobox input[type=checkbox],
.radiobox input[type=radio] {
  cursor: pointer;
  vertical-align: top;
  position: relative;
  top: -0.2rem;
  margin-right: 1rem;
  width: 3rem;
  height: 3rem;
  background: #FFF;
  border: 1px solid #08519F;
  border-radius: 2px;
}
.checkbox input[type=checkbox]:checked,
.checkbox input[type=radio]:checked,
.radiobox input[type=checkbox]:checked,
.radiobox input[type=radio]:checked {
  border-color: #C4C4C4;
  background: #FFF url(../img/common/checkbox_checked.svg) no-repeat center/100% auto;
}
.checkbox.round input[type=radio],
.radiobox.round input[type=radio] {
  border-radius: 50%;
}
.checkbox.round input[type=radio]:checked,
.radiobox.round input[type=radio]:checked {
  background: #FFF url(../img/common/checkbox_checked_round.svg) no-repeat center/100% auto;
}
.checkbox.db label,
.radiobox.db label {
  width: 100%;
  margin-right: 0;
}
.checkbox.crm3,
.radiobox.crm3 {
  display: flex;
  flex-wrap: wrap;
}
.checkbox.crm3 label,
.radiobox.crm3 label {
  width: calc((100% - 4.8rem - 14.4rem) / 3);
}
.checkbox.crm3 label:nth-child(3n),
.radiobox.crm3 label:nth-child(3n) {
  margin-right: 0;
  width: calc((100% - 4.8rem + 2.88rem) / 3);
}
@media screen and (max-width: 900px) {
  .checkbox.crm3,
  .radiobox.crm3 {
    display: block;
  }
  .checkbox.crm3 label,
  .radiobox.crm3 label {
    width: 100% !important;
  }
}
.checkbox .errors input[type=checkbox],
.checkbox .errors input[type=radio],
.radiobox .errors input[type=checkbox],
.radiobox .errors input[type=radio] {
  border-color: #FF93A9;
  background-color: #FFF0F3;
}

/* -- select -- */
.select {
  position: relative;
  /* errors */
}
.select::before {
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0.4rem;
  right: 1.4rem;
  margin: auto;
  width: 0.8rem;
  height: 0.8rem;
  border-bottom: 1px solid #08519F;
  border-left: 1px solid #08519F;
  content: "";
  z-index: 30;
  transform: rotate(-45deg);
}
.select::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  border: 1px solid #C4C4C4;
  background: #FFF;
  content: "";
  z-index: 20;
}
.select select {
  cursor: pointer;
  position: relative;
  padding: 0 3.5rem 0 2rem;
  width: 100%;
  line-height: 6rem;
  z-index: 30;
}
.select select.selectFirstColor {
  color: rgba(0, 0, 0, 0.3);
}
.select.errors::after {
  border-color: #FF93A9;
  background: #FFF0F3;
}

/* -- textarea -- */
textarea {
  color: #000;
  display: block;
  padding: 1.5rem 2rem;
  height: 130px;
  width: 100%;
  border: 1px solid #C4C4C4;
  background: #FFF;
}
textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
textarea:-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  opacity: 1;
}
textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  opacity: 1;
}
textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
textarea.errors {
  border-color: #FF93A9;
  background: #FFF0F3;
}

/* -- redTxt -- */
.redTxt {
  font-size: 12px;
  font-weight: bold;
  color: #DE012D;
  display: block;
  margin-top: 0.6rem;
}

/* -- formFlow -- */
.formFlow {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 5rem auto 0;
  max-width: 505px;
}
.formFlow li {
  position: relative;
  padding: 0 18px 0 15px;
  z-index: 20;
  /* act */
}
.formFlow li:not(:last-child):after {
  position: absolute;
  top: 24px;
  right: 0;
  width: 130px;
  height: 1px;
  background: #E5E7EB;
  transform: translateX(100%);
  z-index: 10;
  content: "";
}
.formFlow li.act .formFlow_num {
  background: #08519F;
}
.formFlow li.act .formFlow_txt {
  color: #08519F;
}
.formFlow li .formFlow_num {
  font-family: "Unbounded";
  line-height: 1;
  text-align: center;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 7px;
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
}
.formFlow li .formFlow_txt {
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 900px) {
  .formFlow {
    max-width: 240px;
  }
  .formFlow li {
    padding: 0 15px;
    /* act */
  }
  .formFlow li:not(:last-child):after {
    top: 17px;
    width: 23px;
  }
  .formFlow li.act .formFlow_num {
    background: #08519F;
  }
  .formFlow li.act .formFlow_txt {
    color: #08519F;
  }
  .formFlow li .formFlow_num {
    font-size: 15px;
    margin: 0 auto 8px;
    width: 35px;
    height: 35px;
  }
  .formFlow li .formFlow_txt {
    font-size: 13px;
  }
}

/* -- form_txt_box01 -- */
.form_txt_box01 {
  line-height: 1.81;
  text-align: center;
  margin-top: 5.8rem;
}
.form_txt_box01 .tit {
  font-weight: bold;
  font-size: 2.6rem;
  line-height: 1.5;
  margin-bottom: 3.8rem;
}

/* -- form -- */
form#form {
  margin: 8.7rem auto 0;
}
form#form > dl > dt {
  font-weight: bold;
  font-size: 2.6rem;
  line-height: 1.5;
}
form#form > dl > dd:not(:last-child) {
  margin-bottom: 9.4rem;
}

/* -- catalog_select -- */
.catalog_select {
  display: flex;
  flex-wrap: wrap;
  margin: 4.3rem 0 -5.5rem;
}
.catalog_select > *:not(.redTxt) {
  margin-bottom: 5.5rem !important;
  padding: 2.9rem 2rem 1.8rem;
  border: 1px solid #E1E1E1;
}
.catalog_select > *:not(.redTxt) .img img {
  display: block;
  margin: 0 auto;
  max-width: 140px;
}
.catalog_select > *:not(.redTxt) .txt {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.6rem;
  justify-content: center;
}
.catalog_select > *:not(.redTxt) .txt span {
  max-width: calc(100% - 4rem);
}
.catalog_select .redTxt {
  width: 100%;
}
@media screen and (min-width: 901px) {
  .catalog_select > * {
    width: calc((100% - 60px) / 4);
    margin-right: 20px !important;
  }
  .catalog_select > *:nth-child(4n) {
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 900px) {
  .catalog_select {
    margin: 4.3rem 0 -5.5rem;
  }
  .catalog_select > * {
    width: calc((100% - 20px) / 2);
    margin-right: 20px !important;
  }
  .catalog_select > *:nth-child(2n) {
    margin-right: 0 !important;
  }
  .catalog_select > *:not(.redTxt) {
    margin-bottom: 20px !important;
  }
  .catalog_select .redTxt {
    width: 100%;
  }
}

/* -- form_table -- */
.form_table {
  margin-top: 6.3rem;
  width: 100%;
}
.form_table tr.required > th::after {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #FFF;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 0 0;
  height: 50px;
  background: transparent linear-gradient(90deg, #0B81FF 0%, #08519F 100%) 0% 0%;
  border-radius: 10rem;
  font-weight: bold;
  font-size: 11px;
  line-height: 1;
  color: #ED4A49;
  position: absolute;
  top: 2.1rem;
  right: 4.7rem;
  width: 34px;
  height: 18px;
  border: 1px solid #ED4A49;
  border-radius: 0;
  background: none;
  content: "必須";
}
.form_table tr:last-child > td {
  padding-bottom: 0;
}
.form_table th {
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  padding: 0.3rem 90px 0 0;
  width: 26rem;
}
.form_table th span {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 4.7rem;
}
.form_table td {
  padding-bottom: 4rem;
}
.form_table td .radiobox {
  margin-top: 1.3rem;
}
.form_table td textarea {
  margin-top: 0.7rem;
}
.form_table .address_box {
  margin-top: 1.1rem;
  width: 100%;
}
.form_table .address_box th {
  padding: 0.7rem 0 0 0;
  width: 9rem;
}
.form_table .address_box td {
  padding-bottom: 1.5rem;
}
.form_table .address_box td.post_code {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.form_table .address_box td.post_code input {
  width: 16rem;
  margin-right: 1.2rem;
  order: 1;
}
.form_table .address_box td.post_code button {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #FFF;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 0 0;
  height: 50px;
  background: transparent linear-gradient(90deg, #0B81FF 0%, #08519F 100%) 0% 0%;
  border-radius: 10rem;
  font-weight: bold;
  color: #FFF;
  width: 11.6rem;
  height: 3.4rem;
  background: #000;
  border-radius: 0;
  order: 2;
}
.form_table .address_box td.post_code .redTxt {
  width: 100%;
  order: 3;
}
.form_table .address_box td.prefecture .select {
  width: 16rem;
}
.form_table .address_box td .checkbox.crm3_outer,
.form_table .address_box td .radiobox.crm3_outer {
  display: flex;
  flex-wrap: wrap;
}
.form_table .address_box td .checkbox.crm3_outer > *,
.form_table .address_box td .radiobox.crm3_outer > * {
  width: 39%;
}
.form_table .address_box td .checkbox.crm3_outer > * > label,
.form_table .address_box td .radiobox.crm3_outer > * > label {
  display: block;
}
.form_table .address_box td .checkbox.crm3_outer > *:nth-child(3n), .form_table .address_box td .checkbox.crm3_outer > *:nth-child(3n),
.form_table .address_box td .radiobox.crm3_outer > *:nth-child(3n),
.form_table .address_box td .radiobox.crm3_outer > *:nth-child(3n) {
  width: 22%;
}
.form_table .address_box td .checkbox.crm3_outer > *:nth-child(3n) > label, .form_table .address_box td .checkbox.crm3_outer > *:nth-child(3n) > label,
.form_table .address_box td .radiobox.crm3_outer > *:nth-child(3n) > label,
.form_table .address_box td .radiobox.crm3_outer > *:nth-child(3n) > label {
  margin-right: 0;
}
.form_table .address_box td .checkbox.crm3_outer .redTxt,
.form_table .address_box td .radiobox.crm3_outer .redTxt {
  width: 100%;
}
@media screen and (max-width: 900px) {
  .form_table .address_box td .checkbox.crm3_outer,
  .form_table .address_box td .radiobox.crm3_outer {
    display: block;
  }
  .form_table .address_box td .checkbox.crm3_outer > *,
  .form_table .address_box td .radiobox.crm3_outer > * {
    width: 100% !important;
  }
}
.form_table .scale {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.form_table .scale input {
  text-align: center;
  width: 6rem;
  margin-right: 1rem;
  padding: 0 0.5rem;
}
.form_table .scale input:not(:first-child) {
  margin-left: 2rem;
}
.form_table .scale-txt {
  width: 100%;
  margin-top: 1.4rem;
}
.form_table .day {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.form_table .day .select {
  width: 10rem;
  margin-right: 1rem;
}
.form_table .day .select::after {
  border-radius: 0.4rem;
}
.form_table .day .select:not(:first-child) {
  margin-left: 2rem;
}
.form_table .day .select select {
  line-height: 5rem;
}
@media screen and (max-width: 900px) {
  .form_table {
    margin-top: 20px;
    width: 100%;
  }
  .form_table tr.required th::after {
    top: 14px;
    right: 5px;
  }
  .form_table th {
    display: block;
    padding: 0 45px 0 0;
    width: 100%;
  }
  .form_table th span {
    height: 4.7rem;
  }
  .form_table td {
    display: block;
    padding-bottom: 20px;
  }
  .form_table .address_box {
    width: 100%;
  }
  .form_table .address_box th {
    font-size: 95%;
    padding: 0 0 10px;
    width: 100%;
  }
  .form_table .address_box th span {
    height: auto;
  }
  .form_table .address_box td.post_code button {
    font-size: 14px;
  }
}

/* -- formCheck -- */
.formCheck {
  text-align: center;
  margin-top: 5.5rem;
}
.formCheck label {
  width: 100%;
}
.formCheck a {
  color: #08519F;
}
.formCheck .redTxt {
  width: 100%;
}

/* -- formBtn -- */
.formBtn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4.9rem;
}
.formBtn > * {
  max-width: 45rem;
  width: 100%;
  /* back */
}
.formBtn > *:not(:last-child) {
  margin-right: 8rem;
}
.formBtn > *.back button {
  background: #B5B5B5;
}
.formBtn button {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #FFF;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 0 0;
  height: 50px;
  background: transparent linear-gradient(90deg, #0B81FF 0%, #08519F 100%) 0% 0%;
  border-radius: 10rem;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1;
  padding: 0 0 2px 2px;
  width: 100%;
  height: 8rem;
  background: #08519F;
  border-radius: 0;
}
.formBtn button::before {
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2.1rem;
  margin: auto;
  width: 0.8rem;
  height: 0.8rem;
  border-bottom: 1px solid #FFF;
  border-right: 1px solid #FFF;
  content: "";
  z-index: 30;
  transform: rotate(-45deg);
}
@media screen and (max-width: 1028px) {
  .formBtn > * {
    max-width: none;
  }
  .formBtn > *:not(:last-child) {
    margin: 0 0 15px;
  }
}

/* -- form_comfirm_table -- */
.form_comfirm_table {
  line-height: 1.5;
  margin-top: 9.4rem;
  width: 100%;
  border-top: 1px solid #E1E1E1;
}
.form_comfirm_table th,
.form_comfirm_table td {
  padding: 3.7rem 0 3.9rem;
  border-bottom: 1px solid #E1E1E1;
}
.form_comfirm_table th {
  font-weight: bold;
  width: 26.6rem;
  padding-right: 3rem;
}
.form_comfirm_table td {
  padding-right: 4rem;
}
@media screen and (max-width: 900px) {
  .form_comfirm_table {
    margin-top: 20px;
    width: 100%;
  }
  .form_comfirm_table th {
    display: block;
    padding: 15px 0 0;
    width: 100%;
    border-bottom: none;
  }
  .form_comfirm_table td {
    display: block;
    padding: 8px 0 15px;
  }
}

/* -- form_complete_catalog_select -- */
.form_complete_catalog_select {
  line-height: 1.5;
  margin-top: 7.3rem;
  width: 100%;
}
.form_complete_catalog_select th,
.form_complete_catalog_select td {
  border-bottom: 1px solid #E1E1E1;
}
.form_complete_catalog_select th {
  font-weight: bold;
  width: 16rem;
  padding: 3.3rem 0 3.2rem;
  border-bottom-color: #08519F;
}
.form_complete_catalog_select td {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 2.1rem 0 1.8rem 3rem;
}
.form_complete_catalog_select td .tit {
  margin: 1rem 2rem 1rem 0;
}
.form_complete_catalog_select td .btn {
  width: 20rem;
}
.form_complete_catalog_select td .btn a {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #FFF;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 0 0;
  height: 50px;
  background: transparent linear-gradient(90deg, #0B81FF 0%, #08519F 100%) 0% 0%;
  border-radius: 10rem;
  font-size: 1.4rem;
  position: relative;
  padding: 0 4rem;
  background: #07519F;
}
.form_complete_catalog_select td .btn a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2rem;
  margin: auto;
  width: 1.4rem;
  height: 1.2rem;
  background: url(../img/common/icon_download.svg) no-repeat 0 0/100% auto;
  content: "";
}
@media screen and (max-width: 900px) {
  .form_complete_catalog_select {
    margin-top: 20px;
    width: 100%;
  }
  .form_complete_catalog_select th {
    display: block;
    width: 100%;
  }
  .form_complete_catalog_select td {
    padding-left: 0;
  }
  .form_complete_catalog_select td .btn a {
    height: 40px;
  }
}/*# sourceMappingURL=form.css.map */