@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@500&display=swap");
/* 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=button] {
  font-size: medium;
  background: none;
  /* ボタンの色 */
  padding: 1rem 0;
  /* ボタンの文字の 上 右 下 左 の隙間のサイズ */
  margin: 0;
  /* 確認画面に表示される2つのボタンの左右の余白サイズ */
  color: #fff;
  /* 文字の色 */
  font-weight: 700;
  /* ボタンに枠線をつけたい場合は、ここを設定してください */
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  max-width: 200px;
  width: 100%;
  font-size: 16px;
  margin-top: 30px;
  background: url("../images/icon/icon_button_arrow.svg") left 15px center no-repeat #EB7100;
  transition: all 0.3s;
}
@media (max-width: 576px) {
  body.listfinder input[type=button] {
    font-size: 14px;
    margin: 15px auto 0;
    max-width: 85%;
    display: block;
  }
}

body.listfinder input[type=button]:hover {
  cursor: pointer;
  opacity: 0.8;
}

/* 入力中のフィールドの背景色 */
/* それぞれの入力フィールドにカーソルが移動したときに背景の色が変わります。不要な場合は削除してください。 */
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: 30px;
  }
}
body.listfinder table td input[type=radio],
body.listfinder table td input[type=checkbox] {
  position: relative;
  margin: 0 8px 10px 5px;
}
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/icon/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;
}/*# sourceMappingURL=form.css.map */