:root {
  --color-border: #dfdfdf;
  --color-background: #f0f7fd;
  --color-main: #0057B8;
}
.app {
  box-sizing: border-box;
  max-width: 1200px;
  min-width: 1000px;
  margin: 20px auto 40px;
  padding: 0 10px;
}
.app * {
  font-family: "Noto Sans", sans-serif;
}
.app-c-space {
  margin-top: 1em;
}
.app_title {
  text-align: center;
}
.app_title_text {
  font-size: 28px;
  font-weight: bold;
}
.app_title_text-color {
  color: var(--color-main);
}
.app_textBox-center {
  text-align: center;
}
.app_textBox {
  margin-top: 1em;
}
.app_textBox_text {
  font-size: 14px;
}
.app_textBox_text .required,
.hs-form-required {
  color: #f00;
}
.app_list,
.app_faqList {
  margin-top: 20px;
}
.app_list_item + .app_list_item,
.app_faqList_item + .app_faqList_item {
  margin-top: 20px;
}
.app_list_title {
  border-bottom: 1px solid var(--color-border);
  font-size: 22px;
  padding-bottom: 10px;
}
.app_list_textBox {
  font-size: 14px;
  margin-top: 10px;
}
.app_list_textBox_title {
  font-size: 16px;
  margin-top: 10px;
}
.app_list_textBox_list {
  margin-top: 10px;
}
.app_faqList_title {
  font-size: 20px;
  margin-top: 48px;
}
.app_faqList_title + .app_faqList_item {
  margin-top: 24px;
}
.app_faqList_item {
  background-color: var(--color-background);
  border-radius: 12px;
  font-size: 14px;
  padding: 0 20px 0 55px;
}
.app_faqList_item_q,
.app_faqList_item_a {
  position: relative;
}
.app_faqList_item_q {
  padding: 20px 0;
}
.app_faqList_item_a {
  padding-bottom: 20px;
}
.app_faqList_item_q.js-accoT::after {
  border-bottom: solid 3px var(--color-main);
  border-right: solid 3px var(--color-main);
  margin-right: 3px;
}
.app_faqList_item_q::before,
.app_faqList_item_a::before {
  align-items: center;
  border-radius: 15px;
  display: flex;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.1em;
  flex-shrink: 0;
  height: 1.6em;
  justify-content: center;
  left: -35px;
  line-height: 1;
  position: absolute;
  width: 1.6em;
}
.app_faqList_item_q::before {
  content: "Q";
  background-color: var(--color-main);
  color: #fff;
  top: 18px;
}
.app_faqList_item_a::before {
  content: "A";
  background-color: #fff;
  color: var(--color-main);
  top: -3px;
}
.app_faqList_textBox {
  margin-top: 40px;
}
.app_faqList_textBox_text {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.app_btn,
.app_form .hs-submit {
  text-align: center;
  margin-top: 40px;
}
.app_btn-design {
  margin-top: 20px;
}
.app_btn a,
.app_form .hs-button {
  background-color: var(--color-main);
  border: 2px solid var(--color-main);
  border-radius: 26px;
  box-sizing: border-box;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  max-width: 400px;
  padding: 14px 0;
  text-align: center;
  width: 90%;
}
.app_form .hs-button:disabled {
  background-color: #b2b2b2;
  border-color: #b2b2b2;
  pointer-events: none;
}
.app_btn a:hover,
.app_form .hs-button:hover {
  background-color: #fff;
  color: var(--color-main);
  text-decoration: none;
}
.app_btn-design a {
  background-color: #fff;
  border: 2px solid var(--color-main);
  color: var(--color-main);
}
.app_btn-design a:hover {
  background-color: var(--color-main);
  color: #fff;
}
/* お問い合わせ プログレスバー */
.app_stepList {
  align-items: flex-start;
  border-top: 3px solid #b2b2b2;
  display: flex;
  justify-content: center;
  position: relative;
  margin: 35px auto 60px;
  width: 60%;
}
.app_stepList_item {
  display: inline-block;
  text-align: center;
  color: #b2b2b2;
  position: absolute;
  top: -18px;
  left: -48px;
}
.app_stepList_item:nth-child(2) {
  left: auto;
  right: -48px;
}
.app_stepList_item_num {
  align-items: center;
  background-color: #b2b2b2;
  border: 3px solid #fff;
  border-radius: 50%;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  font-size: 18px;
  height: 36px;
  justify-content: center;
  margin: 0 auto;
  width: 36px;
}
.app_stepList_item_text {
  font-size: 12px;
  font-weight: bold;
  margin-top: 5px;
}
.app_stepList-first {
  border-top: 3px solid #b2b2b2;
}
.app_stepList-second {
  border-top: 3px solid var(--color-main);
}
.app_stepList-first .app_stepList_item:nth-child(1) {
  color: var(--color-main);
}
.app_stepList-second .app_stepList_item:nth-child(2) {
  color: var(--color-main);
}
.app_stepList-first .app_stepList_item:nth-child(1) .app_stepList_item_num {
  background-color: var(--color-main);
}
.app_stepList-second .app_stepList_item:nth-child(2) .app_stepList_item_num {
  background-color: var(--color-main);
}
.app_form {
  margin-top: 50px;
}
.hs-form-field,
.hs_error_rollup {
  margin-top: 40px;
}
.app_form .char-count {
  text-align: right;
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}
.hs_app_last_name,
.hs_app_first_name {
  margin-top: 0;
}
.app_form input,
.app_form textarea {
  background-color: #f8f8f8;
  border-radius: 5px;
  border: 1px solid var(--color-main);
  font-size: 14px;
  margin-top: 5px;
  padding: 10px;
  width: 100%;
  width: stretch;
}
.hs_app_last_name,
.hs_app_first_name,
.hs_app_last_name_kana,
.hs_app_first_name_kana,
.hs_app_postcode1,
.hs_app_postcode2 {
  display: inline-block;
  position: relative;
  width: 49%;
}
.hs_app_postcode1,
.hs_app_postcode2 {
  width: 47%;
}
.hs_app_last_name,
.hs_app_last_name_kana,
.hs_app_postcode1 {
  margin-right: 2%;
}
.hs_app_postcode1 {
  margin-right: 6%;
}
.hs_app_postcode1::after {
  content : "-";
  position: absolute;
  right: -8%;
  top: 50%;
}
.hs_app_postcode2 > label {
  display: none;
}
.hs-error-msgs {
  position: absolute;
}
.hs_error_rollup .hs-error-msgs {
  position: relative;
}
.hs-error-msg {
  color: #f00;
  font-size: 10px;
  white-space: nowrap;
}
.hs-richtext {
  font-size: 14px;
  text-align: center;
  margin-top: 40px;
}
.app_form .hs-submit {
  margin-top: 10px;
}

@media screen and (max-width: 480px) {
  .app {
    min-width: 300px;
    padding: 0 3%;
    width: 100%;
  }
}
