@charset "UTF-8";
.section-py {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media screen and (min-width: 992px) {
  .section-py {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
}
.bg-gr {
  background: linear-gradient(83deg, #ED2446 0%, #FD452E 100%);
}

.bg-lightpink {
  background-color: #FFF4F6;
}

.bg-lightblue {
  background-color: #E5EFF7;
}

/* ysl/catalog/のフォームに使用されているスタイルを転用 */
/* ===================================
共通
=================================== */
/* フォント */
body.listfinder {
  font-family: "Noto Sans JP", sans-serif;
}

body.listfinder select,
body.listfinder input,
body.listfinder button,
body.listfinder textarea {
  font-family: "Noto Sans JP", sans-serif;
}

/* ===================================
画面全体のレイアウト
=================================== */
/* 画面全体の表示設定 */
body.listfinder {
  background: transparent;
  /* 背景色 */
  text-align: left;
  /* フォームエリアを中央に表示 */
}

/* フォームエリア全体の設定 */
body.listfinder div.container {
  width: auto;
  background: transparent;
  border: 0;
  border-top: none;
  /* 外枠のラインの色と太さ */
  font-size: 16px;
  /* フォントの初期サイズ */
  color: #333;
  /* フォントの初期カラー */
  margin: 0 auto;
  /* 画面の中央に表示 */
  text-align: left;
  /* 左寄せ */
}

/* ===================================
設問エリアのレイアウト
=================================== */
/* 設問エリア全体の設定 */
body.listfinder div.wrapper {
  width: auto;
  /* 画面の横幅 */
  margin: 0 auto;
  /* 中央に表示 */
  background: none;
}

/* 設問の表 */
body.listfinder table.items {
  border: none;
}

/* 設問の行 */
/* 必要であれば行のデザインを設定することができます */
/*設問名のセルのデザイン */
body.listfinder td.label {
  float: none;
  width: auto;
  /* 実際の設問名の文字の長さに合わせて調整してください */
  padding: 0px;
  color: inherit;
  font-size: 16px;
  font-weight: 700;
  border-left: 0;
  background: none;
}

/* 設問の入力セルおよび表示セルのデザイン */
body.listfinder td.value {
  float: none;
  width: auto;
  /* 入力コントロールの幅に合わせて調整してください */
  padding: 0;
  border-bottom: none;
  /* 設問と設問の間の下線 */
  background: transparent;
}

/* 設問の入力例/説明セルのデザイン */
body.listfinder td.comment {
  float: none;
  width: auto;
  font-size: medium;
  padding: 0;
  color: inherit;
  border-bottom: none;
  background: none;
}

/* 入力セルの「氏」「名」の文字のデザイン */
body.listfinder span.label_name {
  padding-right: 0;
  font-size: medium;
  font-weight: normal;
  color: inherit;
  width: 3em;
}

body.listfinder .contact__form #item_2 td.value {
  display: flex;
  align-items: center;
}

body.listfinder #item_1 td.value input[type=text],
body.listfinder #item_2 td.value input[type=text] {
  margin: 0 5px;
}

/* 入力確認画面、完了画面の入力された文字のデザイン */
body.listfinder p.value {
  font-size: medium;
}

/* ボタンの表示エリアの設定 */
body.listfinder div.button_area {
  width: auto;
  margin: 0;
  /* 中央に表示、上下に10pxの余白 */
  background: none;
  padding: 0;
  /* ボタンとの上下の隙間のサイズ */
  text-align: start;
  /* 中央にボタンを表示 */
}

/* 入力エラーメッセージのデザイン */
body.listfinder div.message {
  padding: 0;
  /* メッセージテキストと背景色の隙間のサイズ */
  margin: 0;
  /* 上 右 下 左 の隙間のサイズ */
  font-size: 14px;
  font-weight: normal;
  color: #fe3600;
  background: none;
}

/* 公開終了メッセージのデザイン */
body.listfinder div.finished-message {
  padding: 0;
  /* メッセージテキストと背景色の隙間のサイズ */
  margin: 0;
  /* 上 右 下 左 の隙間のサイズ */
  font-size: 14px;
  font-weight: normal;
  color: #fe3600;
  background: none;
}

/* ===================================
入力コントロールのデザイン
=================================== */
/* 入力中のフィールドの背景色 */
/* それぞれの入力フィールドにカーソルが移動したときに背景の色が変わります。不要な場合は削除してください。 */
body.listfinder input[type=text]:focus {
  background-color: transparent;
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #f1f1f1;
  height: 40px;
  font-size: 16px;
}

/* テキストボックス */
body.listfinder select:focus {
  background-color: transparent;
}

/* プルダウン */
body.listfinder textarea:focus {
  background-color: transparent;
}

/* テキストエリア */
body.listfinder .contact__form table td textarea {
  width: 100% !important;
  height: 40px;
}

body.listfinder .contact__form table #item_5 td textarea {
  height: 120px;
}

/* ===================================
必須項目のマークおよびメッセージなど
=================================== */
/* 必須項目のマーク */
body.listfinder span.required {
  margin-left: 0;
  color: #E22D00;
  font-size: 12px;
  font-weight: 700;
  vertical-align: top;
}

body.listfinder span.required:after {
  /* ここを編集することで表示されるマークを変更できます */
  content: "※";
}

/* 必須項目についての説明文 */
body.listfinder p.required_msg {
  text-align: start;
  margin-right: 0;
  font-size: medium;
  font-weight: normal;
  color: inherit;
}

body.listfinder p.required_msg:after {
  /* ここを編集することで表示されるマークを変更できます */
  content: "";
}

/* メールアドレスの再入力メッセージ */
body.listfinder p.label_mail {
  margin: 0;
  font-size: medium;
  color: inherit;
}

body.listfinder p.label_mail:after {
  /* ここを編集することで表示されるメッセージを変更できます */
  content: "確認のため、もう一度メールアドレスを入力してください";
}

body.listfinder .privacy_policy {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}

body.listfinder .privacy_policy a {
  text-decoration: underline;
  font-weight: 500 !important;
}

body.listfinder .privacy_policy a:hover {
  text-decoration: none;
}

body.listfinder .privacy_policy .privacy-text-master div {
  font-weight: 500 !important;
}

/* ===================================
スマートフォン表示用のレイアウト
=================================== */
/* スマートフォンとして認識する画面の横幅のサイズ */
@media screen and (max-width: 479px) {
  /* フォームエリア全体の設定 */
  body.listfinder div.container {
    width: 100%;
  }
  /* 設問エリア全体の設定 */
  body.listfinder div.wrapper {
    width: 100%;
  }
  /*設問名のセルのデザイン */
  body.listfinder td.label {
    width: 100%;
  }
  /* 設問の入力セルおよび表示セルのデザイン */
  body.listfinder td.value {
    width: 100%;
    /* 入力コントロールの幅に合わせて調整してください */
    padding-bottom: 0px;
  }
  /* 設問の入力例/説明セルのデザイン */
  body.listfinder td.comment {
    width: 95%;
    padding: 0px 2px 10px 2px;
  }
  /* 設問の入力例/テキストボックス */
  body.listfinder input[type=text] {
    font-size: 120%;
    width: 100% !important;
  }
  /* 設問の入力例/テキストエリア */
  body.listfinder textarea {
    width: 100%;
    height: 100px;
  }
  /* ボタンの表示エリアの設定 */
  body.listfinder div.button_area {
    width: 95%;
  }
}
body.listfinder .info__form__ttl {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  padding: 1rem 0;
  position: relative;
  background: #333;
  margin-bottom: 1.875rem;
}

@media (max-width: 992px) {
  body.listfinder .info__form__ttl {
    font-size: 16px;
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 576px) {
  body.listfinder .info__form__ttl {
    font-size: 14px;
    margin-bottom: 1rem;
  }
}
body.listfinder .info__form__ttl:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 99%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 10px 0 10px;
  border-color: #333333 transparent transparent transparent;
}

body.listfinder .note {
  color: #EB7100;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

body.listfinder table {
  width: 100%;
  color: #231815;
  font-size: 16px;
  font-weight: bold;
}

@media (max-width: 576px) {
  body.listfinder table {
    font-size: 14px;
  }
}
body.listfinder table th,
body.listfinder table td {
  display: block;
  text-align: left;
  letter-spacing: 0.01px;
}

body.listfinder table th {
  margin-bottom: 10px;
}

body.listfinder table th span {
  color: #EB7100;
  font-size: 12px;
  font-weight: bold;
  vertical-align: top;
}

body.listfinder table td {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}

body.listfinder table td div {
  margin-bottom: 7px;
}

body.listfinder table td select,
body.listfinder table td textarea,
body.listfinder table td input[type=text],
body.listfinder table td input[type=email],
body.listfinder table td input[type=url],
body.listfinder table td input[type=tel] {
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #f1f1f1;
  height: 40px;
  font-size: 16px;
}

@media (max-width: 576px) {
  body.listfinder table td select,
  body.listfinder table td textarea,
  body.listfinder table td input[type=text],
  body.listfinder table td input[type=email],
  body.listfinder table td input[type=url],
  body.listfinder table td input[type=tel] {
    font-size: 14px;
    height: 34px;
  }
}
body.listfinder table td input[type=radio],
body.listfinder table td input[type=checkbox] {
  position: relative;
  margin: 4px 8px 10px 5px;
  width: 15px;
  height: 15px;
}

body.listfinder table td input[type=radio]:before,
body.listfinder table td input[type=checkbox]:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border: 1px solid #ccc;
  width: 15px;
  height: 15px;
  background: #fff;
}

body.listfinder table td input[type=radio]:checked,
body.listfinder table td input[type=checkbox]:checked {
  position: relative;
}

body.listfinder table td input[type=radio]:checked:before,
body.listfinder table td input[type=checkbox]:checked:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border: 1px solid #333;
  width: 15px;
  height: 15px;
  background: linear-gradient(45deg, #464646, #5c5c5c);
}

body.listfinder table td input[type=radio]:before {
  border-radius: 50%;
}

body.listfinder table td input[type=checkbox]:before {
  border-radius: 4px;
}

body.listfinder input[type=submit] {
  max-width: 200px;
  width: 100%;
  font-size: 16px;
  margin-top: 15px;
  background: url("../images/contact/icon_button_arrow.svg") left 15px center no-repeat #ff001b;
}

@media (max-width: 576px) {
  body.listfinder input[type=submit] {
    font-size: 14px;
    margin: 10px auto 0;
    max-width: 85%;
    display: block;
  }
}
body.listfinder div.button_area {
  flex-direction: column-reverse;
  display: flex;
}

@media (max-width: 768px) {
  body.listfinder div.button_area input[type=button] {
    margin-left: auto;
    margin-right: auto;
  }
}
body.listfinder #button_confirm_back {
  color: #333;
  background-color: #fff !important;
}

/* スムーススクロール位置調整 */
#lf_form_div {
  padding-top: 120px;
}

@media (min-width: 576px) {
  #lf_form_div {
    padding-top: 100px;
  }
}
.contact__form {
  margin-top: -120px;
}

@media (min-width: 576px) {
  .contact__form {
    margin-top: -100px;
  }
}
body.listfinder .bdair2 {
  margin-top: -120px;
  padding-top: 120px;
}

@media (min-width: 576px) {
  body.listfinder .bdair2 {
    margin-top: -100px;
    padding-top: 100px;
  }
}
/* fv
---------------------------------------------------------- */
.child-fv-wrap {
  position: relative;
  overflow: hidden;
}

.child-fv-wrap::before {
  content: "";
  position: absolute;
  background: url(../images/contact/icon_headder-left.png) no-repeat center center/cover;
  width: 9.375rem;
  height: 100%;
  top: 0;
  left: 0;
}

.child-fv-wrap::after {
  content: "";
  position: absolute;
  background: url(../images/contact/icon_headder-right.png) no-repeat center center/cover;
  width: 9.375rem;
  height: 100%;
  top: 0;
  right: 0;
}

.contact__fv {
  position: relative;
  display: grid;
  place-content: center;
  height: clamp(7.8125rem, 5.4910714286rem + 11.6071428571vw, 15.9375rem);
}

h2.contact__fv_title {
  position: relative;
  font-size: clamp(1.375rem, 0.8392857143rem + 2.6785714286vw, 3.25rem);
  z-index: 1;
  /* フォームスタイルの上書き */
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
}

.contact__fv_object_l,
.contact__fv_object_r {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.contact__fv_object_l {
  left: 0;
  width: clamp(2.5rem, -0.125rem + 13.125vw, 11.6875rem);
}

.contact__fv_object_r {
  right: 0;
  width: clamp(2.5rem, -0.1071428571rem + 13.0357142857vw, 11.625rem);
}

.contanct__container {
  display: grid;
  gap: clamp(2.5rem, 1.7402755267rem + 3.2414910859vw, 3.75rem);
  margin-block: clamp(1.5rem, 0.8928571429rem + 1.7857142857vw, 2.5rem) clamp(4.375rem, 3.4821428571rem + 4.4642857143vw, 7.5rem);
}

@media (min-width: 576px) {
  .child-fv-wrap::before {
    width: 18.75rem;
  }
  .child-fv-wrap::after {
    width: 18.75rem;
  }
}
@media (min-width: 768px) {
  .child-fv-wrap::before {
    background: url(../images/contact/icon_headder-left.png) no-repeat center center/contain;
    width: 37.3125rem;
    height: 18.6875rem;
    top: -22px;
    left: -55px;
  }
  .child-fv-wrap::after {
    background: url(../images/contact/icon_headder-right.png) no-repeat center center/contain;
    width: 37.3125rem;
    height: 18.6875rem;
    top: -22px;
    right: 0;
  }
  .contanct__container {
    gap: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
    margin-block: clamp(4.6875rem, 0.8928571429rem + 1.7857142857vw, 2.5rem) clamp(4.375rem, 3.4821428571rem + 4.4642857143vw, 7.5rem);
  }
}
/* content
---------------------------------------------------------- */
.contact__content {
  max-width: 35rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact__content {
    max-width: 100%;
  }
}
.contact__content_title {
  font-size: clamp(1.125rem, 0.6785714286rem + 2.2321428571vw, 1.75rem);
  text-align: center;
}

@media (min-width: 768px) {
  .contact__content_title {
    font-size: clamp(1.375rem, -0.1439873418rem + 3.164556962vw, 2.625rem);
  }
}
.contact__content_title .sub {
  display: block;
  font-size: inherit;
  font-weight: 700;
  font-size: 1.5em;
}

.contact__content_title .main {
  position: relative;
  display: block;
  width: fit-content;
  line-height: 1.5;
  font-size: 0.6666666667em;
  padding-inline: 1.2857142857em;
  margin: 0.25rem auto 0;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.contact__content_title .main::before, .contact__content_title .main::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 0.6785714286em;
  height: 1.3214285714em;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact__content_title-icon {
  font-weight: 700;
  display: inline-block;
  position: relative;
  padding-right: 1em;
  padding-left: 1em;
}

.contact__content_title-icon::before, .contact__content_title-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.75em;
  height: 1em;
  background-color: #ED2446;
}

.contact__content_title-icon::before {
  left: 0;
  mask: url(../images/contact/icon_ttl-left.svg) no-repeat center center/contain;
}

.contact__content_title-icon::after {
  right: 0;
  mask: url(../images/contact/icon_ttl-right.svg) no-repeat center center/contain;
}

.contact__content_title .logo {
  position: relative;
  display: inline-block;
  width: 5.9285714286em;
  top: -0.1em;
}

.contact__content_title .logo img {
  vertical-align: text-bottom;
}

.contact__content_image {
  margin-top: 1.25rem;
}

.contact__content_about {
  margin-top: clamp(1.25rem, 0.8928571429rem + 1.7857142857vw, 2.5rem);
  padding: 4rem clamp(0.9375rem, -0.5534351145rem + 6.3613231552vw, 2.5rem);
  border-radius: 20px;
  background-color: #FFF4F6;
}

@media (min-width: 768px) {
  .contact__content_about {
    padding: clamp(1.875rem, -0.4034810127rem + 4.746835443vw, 3.75rem) clamp(1.5625rem, -1.0957278481rem + 5.5379746835vw, 3.75rem);
  }
}
.contact__content_about_title {
  position: relative;
  font-size: clamp(1.125rem, 0.9464285714rem + 0.8928571429vw, 1.75rem);
  color: #E22D00;
  width: fit-content;
  margin: 0 auto;
  /* フォームスタイルの上書き */
  text-align: left !important;
  font-weight: 700 !important;
}

@media (min-width: 992px) {
  .contact__content_about_title {
    margin-left: 0;
    width: 100%;
  }
}
.contact__content_about_list, .contact__content_about_list_dot {
  margin: 0 auto;
  counter-reset: listnum;
}

.contact__content_about_item, .contact__content_about_list_dot_item {
  position: relative;
  font-size: clamp(0.875rem, 0.6964285714rem + 0.8928571429vw, 1.125rem);
  letter-spacing: 0.03em;
  /* フォームスタイルの上書き */
  text-align: left !important;
  font-weight: 700 !important;
}

.contact__content_about_item {
  padding-left: 2em;
}

.contact__content_about_list_dot_item {
  padding-left: 1.25em;
}

@media (min-width: 768px) {
  .contact__content_about_item, .contact__content_about_list_dot_item {
    font-size: clamp(0.875rem, 0.4193037975rem + 0.9493670886vw, 1.25rem);
  }
}
.contact__content_about_item + .contact__content_about_item, .contact__content_about_list_dot_item + .contact__content_about_list_dot_item {
  margin-top: 0.625rem;
}

.contact__content_about_item::before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: listnum;
  content: counter(listnum, decimal-leading-zero) ".";
  color: #ED2446;
}

.contact__content_about_list_dot_item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  width: 8px;
  height: 8px;
  background-color: #ED2446;
  border-radius: 50%;
}
@media (min-width: 992px) {
  .contact__content_about_list_dot_item::before {
    width: 12px;
    height: 12px;
  }
}

.contact__content_about_message {
  display: grid;
  gap: clamp(0.3125rem, 0.1339285714rem + 0.8928571429vw, 0.9375rem);
  grid-template-columns: 1fr auto;
  align-items: center;
  width: fit-content;
}

@media (min-width: 992px) {
  .contact__content_about_message {
    width: 100%;
  }
}
.contact__content_about_message .text {
  font-size: clamp(0.75rem, 0.5714285714rem + 0.8928571429vw, 1rem);
  line-height: 1.7777777778;
  letter-spacing: 0.03em;
  /* フォームスタイルの上書き */
  text-align: left !important;
  font-weight: 700 !important;
}

@media (min-width: 768px) {
  .contact__content_about_message .text {
    font-size: clamp(0.875rem, 0.4193037975rem + 0.9493670886vw, 1.25rem);
  }
}
.contact__content_about_message .icon {
  display: grid;
  place-content: center;
  font-size: clamp(0.875rem, 0.7678571429rem + 0.5357142857vw, 1.25rem);
  color: #fff;
  width: 4.1em;
  height: 4.1em;
  background: linear-gradient(71deg, rgba(237, 36, 69, 0.65) 0%, rgba(253, 70, 46, 0.65) 100%);
  border-radius: 50%;
  /* フォームスタイルの上書き */
  font-weight: 700 !important;
}

.contact__form {
  max-width: 35rem;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .contact__form {
    max-width: 100%;
  }
}
textarea {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

textarea::-webkit-scrollbar {
  display: none;
}

select {
  -webkit-appearance: auto;
  appearance: auto;
}

body {
  overflow: visible !important;
}

.contact__form {
  padding-top: 120px;
}

.smpForm {
  width: 100%;
  padding: 0;
}

.smpForm select, .smpForm textarea, .smpForm input[type=text], .smpForm input[type=email], .smpForm input[type=url], .smpForm input[type=tel] {
  background: #f1f1f1;
}

.ss_field:nth-child(odd), .ss_enquete_field:nth-child(even) {
  background: transparent;
}

.ss_contents fieldset {
  border: none;
  margin-bottom: 16px;
}

.smpForm .ss_field:hover, .smpForm .ss_enquete_field:hover {
  background: unset;
}

.ss_field:first-child {
  margin-top: 0;
}

.ss_contents fieldset + fieldset {
  background-color: transparent;
}

.smpForm input[type=radio], .smpForm input[type=checkbox] {
  position: relative;
  margin: 0 22px 2px 5px;
  border: none;
}

.smpForm input[type=radio]:before, .smpForm input[type=checkbox]:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border: 1px solid #ccc;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 4px;
}

.smpForm input[type=radio]:checked:before, .smpForm input[type=checkbox]:checked:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border: 1px solid #333;
  width: 15px;
  height: 15px;
  background: linear-gradient(45deg, #464646, #5c5c5c);
}

.smpForm input[type=checkbox]:before {
  border-radius: 4px;
}

.smpForm .ss_grid {
  display: flex;
  align-items: center;
  gap: 12px;
}

.smpForm .ss_bottomComment {
  font-size: 14px;
  color: #333;
  margin-right: 8px;
  margin-left: 3px;
}

.smpForm #ss_name .ss_rightComment,
.smpForm #ss_company_name .ss_rightComment,
.smpForm #ss_division .ss_rightComment,
.smpForm #ss_position .ss_rightComment,
.smpForm #ss_tel .ss_rightComment,
.smpForm #ss_email .ss_rightComment,
.smpForm #ss_email .ss_bottomComment {
  display: none;
}

.smpForm #ss_name .ss_input {
  display: flex;
  align-items: center;
  width: 100%;
}

.ss_upComment, .ss_leftComment, .ss_rightComment {
  font-size: 16px;
  color: #333;
  margin-right: 8px;
}

.smpForm select, .smpForm textarea, .smpForm input[type=text], .smpForm input[type=email], .smpForm input[type=url], .smpForm input[type=tel] {
  width: 100%;
  padding: 0.5em 1em;
  border: 1px solid #A9A9A9;
  border-radius: 0.3125rem;
  font-size: 16px;
  height: 42px;
}

.smpForm .ss_form_title, .smpForm .ss_enquete_title {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0 0.625rem;
}

.smpForm .ss_user_notnull {
  color: #ED2446;
  font-size: 12px;
  font-weight: 700;
  vertical-align: middle;
  display: inline-block;
  border: 1px solid #ED2446;
  border-radius: 0.1875rem;
  min-width: 36px;
  text-align: center;
  padding: 0.37em 0.4em;
  line-height: 1;
  transform: translateY(1px);
}

#ss_company_name .ss_form_title {
  width: max-content;
  max-width: 100%;
  position: relative;
}

.smpForm textarea {
  width: 100%;
  line-height: 1.4;
  height: 145px;
}

.smpForm .ss_input {
  width: 100%;
  font-weight: 500;
}

.smpForm input[type=file] {
  background-color: #fff;
  width: 100%;
  border: 1px solid #A9A9A9;
}

.smpForm .ss_btnArea {
  margin-top: 1.875rem;
}

.smpForm input[type=button] {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  font-size: 1rem;
  max-width: 100%;
  min-width: 200px;
  padding: 10px 30px;
  margin-inline: auto;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  border-radius: 3.125rem;
  border: 1px solid #ED2446;
  background-color: #ED2446;
  background-image: url(../images/common/icon-arrow-right-wh.svg);
  background-repeat: no-repeat;
  background-size: 6px auto;
  background-position: right 20px center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.smpForm input[type=button]:hover {
  opacity: 0.7;
}

.smpForm #ss_company_name .ss_user_notnull {
  position: relative;
}

.smpForm #ss_company_name .ss_form_title::after {
  content: "（正式な社名をご記載ください）";
  position: absolute;
  left: 100%;
  width: max-content;
  margin-left: 4px;
  color: #333;
  font-size: 0.75rem;
}

.smpForm .privacy-text {
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1.25rem;
}

.smpForm .privacy-text a {
  text-decoration: underline;
}

@media screen and (min-width: 400px) {
  .smpForm #ss_company_name .ss_form_title::after {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 576px) {
  .contact__form {
    padding-top: 100px;
  }
  .smpForm input[type=button] {
    font-size: 1.125rem;
  }
}/*# sourceMappingURL=form.css.map */