@charset "UTF-8";
/* =========================================================
    form_renew.css
    /operation/physical/contact/ 風スタイルへの上書き定義
    既存 form.css の後に読み込む
========================================================= */

/* ---------- 全体カラー・タイポ ---------- */
#conts.input,
#conts.confirm,
#conts.thanks {
  color: #333;
}

#conts > .inner {
  width: 868px;
  margin: 0 auto;
}

/* SPでは .sp-only を常時非表示にし、.pc-only をボタンとして表示する（プルダウン→ボタン化） */
#conts #formWrap .sp-only {
  display: none !important;
}

/* .pc-only は SP メディアクエリでの display:none を解除（display値は後段の各要素ルールに任せる） */
@media screen and (max-width: 767px) {
  #conts #formWrap .pc-only {
    display: revert !important;
  }
  #conts #formWrap .radioList.pc-only {
    display: flex !important;
  }
  #conts #formWrap .checkbox.pc-only {
    display: inline-flex !important;
  }
}

/* ---------- リードビジュアル（leadBoxは削除済 / 残留があれば非表示） ---------- */
#conts .leadBox {
  display: none !important;
}

/* ---------- ステップバー ---------- */
#conts .step {
  display: flex !important;
  width: 552px !important;
  max-width: 100%;
  margin: 50px auto 50px !important;
  padding: 0 !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  list-style: none;
}

#conts .step li {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  float: none !important;
  width: 173px !important;
  height: 46px !important;
  margin: 0 !important;
  padding: 0 !important;
  background-color: #cecece !important;
  border: none !important;
  border-radius: 0 !important;
  color: #333 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
}

#conts .step li:first-child {
  width: 192px !important;
}

#conts .step li:not(:first-child) {
  margin-left: 0 !important;
}

#conts .step li + li {
  margin-left: 0 !important;
}

/* 先頭liの左側に viewport の左端まで伸びる帯（参照サイト準拠） */
#conts .step li:first-child::before {
  display: block !important;
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -50vw !important;
  bottom: auto !important;
  right: auto !important;
  z-index: 1;
  width: 50vw !important;
  height: 46px !important;
  background-color: #cecece !important;
  border: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

#conts .step li + li::after,
#conts .step li::after {
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  right: -13px !important;
  left: auto !important;
  bottom: auto !important;
  z-index: 1;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent none !important;
  border-color: transparent transparent transparent #cecece !important;
  border-style: solid !important;
  border-width: 23px 0 23px 13px !important;
  border-radius: 0 !important;
  content: '' !important;
}

/* form.css の謎の青丸 (#009ce3 の border-radius:100px ::before) を無効化
   ※ first-child の左帯 ::before は別ルールで描画するため除外 */
#conts .step li.current:not(:first-child)::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  background: none !important;
}

/* ---------- ステップ 3段階配色（ページごとの位置で決定） ----------
   入力ページ: 1st=#333  / 2nd=#cecece / 3rd=#e6e6e6
   確認ページ: 1st=#cecece / 2nd=#333    / 3rd=#e6e6e6
   完了ページ: 1st=#e6e6e6 / 2nd=#cecece / 3rd=#333
*/

/* 入力ページ */
#conts.input .step li:nth-child(1),
#conts.input .step li:nth-child(1)::before {
  background-color: #333 !important;
}
#conts.input .step li:nth-child(1) {
  color: #fff !important;
}
#conts.input .step li:nth-child(1)::after {
  border-color: transparent transparent transparent #333 !important;
}
#conts.input .step li:nth-child(2) {
  background-color: #cecece !important;
}
#conts.input .step li:nth-child(2)::after {
  border-color: transparent transparent transparent #cecece !important;
}
#conts.input .step li:nth-child(3) {
  background-color: #e6e6e6 !important;
}
#conts.input .step li:nth-child(3)::after {
  border-color: transparent transparent transparent #e6e6e6 !important;
}

/* 確認ページ */
#conts.confirm .step li:nth-child(1),
#conts.confirm .step li:nth-child(1)::before {
  background-color: #cecece !important;
}
#conts.confirm .step li:nth-child(1)::after {
  border-color: transparent transparent transparent #cecece !important;
}
#conts.confirm .step li:nth-child(2) {
  background-color: #333 !important;
  color: #fff !important;
}
#conts.confirm .step li:nth-child(2)::after {
  border-color: transparent transparent transparent #333 !important;
}
#conts.confirm .step li:nth-child(3) {
  background-color: #e6e6e6 !important;
}
#conts.confirm .step li:nth-child(3)::after {
  border-color: transparent transparent transparent #e6e6e6 !important;
}

/* 完了ページ */
#conts.thanks .step li:nth-child(1),
#conts.thanks .step li:nth-child(1)::before {
  background-color: #e6e6e6 !important;
}
#conts.thanks .step li:nth-child(1)::after {
  border-color: transparent transparent transparent #e6e6e6 !important;
}
#conts.thanks .step li:nth-child(2) {
  background-color: #cecece !important;
}
#conts.thanks .step li:nth-child(2)::after {
  border-color: transparent transparent transparent #cecece !important;
}
#conts.thanks .step li:nth-child(3) {
  background-color: #333 !important;
  color: #fff !important;
}
#conts.thanks .step li:nth-child(3)::after {
  border-color: transparent transparent transparent #333 !important;
}

/* ---------- フォーム枠 ---------- */
#conts #formWrap .formBox {
  margin-top: 50px;
  border-top: none;
}

#conts #formWrap .formBox > dl {
  display: block;
  margin: 0 0 60px;
  padding: 0;
  border-bottom: none;
}

#conts #formWrap .formBox > dl > dt {
  display: block;
  position: relative;
  width: 100%;
  height: 60px;
  flex-basis: auto;
  padding: 14px 26px;
  margin-bottom: 30px;
  background-color: #e1e2e1;
  font-size: 20px;
  font-weight: 500;
}

#conts #formWrap .formBox > dl > dt p {
  margin: 0;
  padding-top: 6px;
  display: inline-block;
}

#conts #formWrap .formBox > dl > dt p.required {
  position: absolute;
  top: 50%;
  right: 20px;
  display: inline-block;
  width: 54px;
  height: 24px;
  padding: 5px;
  margin: 0;
  background-color: #d04d4d;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  vertical-align: middle;
  transform: translateY(-50%);
  box-sizing: border-box;
}

#conts #formWrap .formBox > dl > dd {
  display: block !important;
  width: 552px !important;
  max-width: 100%;
  margin: 0 auto !important;
  padding: 0 !important;
  flex-grow: 0 !important;
  font-size: 16px;
  line-height: 1.7;
}

/* ---------- ラジオ→ボタン ---------- */
#conts #formWrap .formBox .radioList {
  display: flex !important;
  flex-wrap: wrap !important;
  padding: 0;
  margin: 0;
}

#conts #formWrap .formBox .radioList.is-vertical {
  flex-direction: column;
}

#conts #formWrap .formBox .radioList .checkBoxBlock {
  width: 100%;
  margin-bottom: 16px;
  padding: 0;
}

#conts #formWrap .formBox .radioList.is-vertical .checkBoxBlock + .checkBoxBlock {
  margin-top: 0;
}

#conts #formWrap .formBox .radioList .checkBoxBlock > label {
  display: block;
  width: 100%;
  margin: 0;
  cursor: pointer;
}

#conts #formWrap .formBox .radioList .checkBoxBlock > label > input[type="radio"],
#conts #formWrap .formBox .radioList .checkBoxBlock > label > input[type="checkbox"],
#conts #formWrap .formBox .radioList .checkBoxBlock > label > .iradio_minimal-green,
#conts #formWrap .formBox .radioList .checkBoxBlock > label > .icheckbox_minimal-green {
  display: none !important;
}

#conts #formWrap .formBox .radioList .checkBoxBlock > label > .checkBoxText {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  width: 100%;
  height: 70px;
  padding: 0 43px;
  margin-left: 0;
  background-color: #939393;
  border-radius: 8px;
  color: #fff;
  font-size: 22px;
  line-height: 1.3;
  vertical-align: middle;
  transition: all 0.3s ease-in;
}

#conts #formWrap .formBox .radioList .checkBoxBlock > label:has(input:checked) > .checkBoxText,
#conts #formWrap .formBox .radioList .checkBoxBlock > label > .iradio_minimal-green.checked ~ .checkBoxText,
#conts #formWrap .formBox .radioList .checkBoxBlock > label > .icheckbox_minimal-green.checked ~ .checkBoxText {
  background-color: #1A78E6;
}

/* 医院（横並びボタン 3列） */
#conts #formWrap .formBox .placeRadioBlock .radioList {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: flex-start !important;
  gap: 5px !important;
  margin: 0 !important;
  padding: 0 !important;
}

#conts #formWrap .formBox .placeRadioBlock .radioList br {
  display: none !important;
}

#conts #formWrap .formBox .placeRadioBlock .radioList .checkBoxBlock {
  width: calc((100% - 10px) / 3) !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: 0 0 calc((100% - 10px) / 3);
}

#conts #formWrap .formBox .placeRadioBlock .radioList .checkBoxBlock > label > .checkBoxText {
  justify-content: center !important;
  text-align: center !important;
  height: 70px !important;
  padding: 0 6px !important;
  font-size: 20px !important;
}

/* チェックボックス（プラン）も同じボタンスタイル */
#conts #formWrap .formBox > dl > dd > .checkBoxBlock {
  margin-bottom: 16px;
  padding: 0;
}

#conts #formWrap .formBox > dl > dd > .checkBoxBlock > label {
  display: block;
  width: 100%;
  cursor: pointer;
}

#conts #formWrap .formBox > dl > dd > .checkBoxBlock > label > input[type="checkbox"],
#conts #formWrap .formBox > dl > dd > .checkBoxBlock > label > input[type="radio"],
#conts #formWrap .formBox > dl > dd > .checkBoxBlock > label > .iradio_minimal-green,
#conts #formWrap .formBox > dl > dd > .checkBoxBlock > label > .icheckbox_minimal-green {
  display: none !important;
}

#conts #formWrap .formBox > dl > dd > .checkBoxBlock > label > .checkBoxText {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  width: 100%;
  height: 70px;
  padding: 0 43px;
  margin-left: 0;
  background-color: #939393;
  border-radius: 8px;
  color: #fff;
  font-size: 22px;
  line-height: 1.3;
  transition: all 0.3s ease-in;
}

#conts #formWrap .formBox > dl > dd > .checkBoxBlock > label:has(input:checked) > .checkBoxText,
#conts #formWrap .formBox > dl > dd > .checkBoxBlock > label > .iradio_minimal-green.checked ~ .checkBoxText,
#conts #formWrap .formBox > dl > dd > .checkBoxBlock > label > .icheckbox_minimal-green.checked ~ .checkBoxText {
  background-color: #1A78E6;
}

/* プラン回数の中の選択肢 */
#conts #formWrap .formBox .contentTimes {
  margin: -8px 0 14px;
  padding: 16px 24px;
  background-color: #f0f1f1;
  border-radius: 0 0 8px 8px;
}

#conts #formWrap .formBox .contentTimes .inner {
  margin-left: 0;
}

#conts #formWrap .formBox .contentTimes .radioListVertical {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 0;
}

#conts #formWrap .formBox .contentTimes .checkBoxBlock {
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
}

#conts #formWrap .formBox .contentTimes .checkBoxBlock > label {
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;
  cursor: pointer;
}

/* contentTimes 配下は独自ラジオUIで表示（iCheck PNG が無いため代替） */
#conts #formWrap .formBox .contentTimes .checkBoxBlock > label > input[type="radio"],
#conts #formWrap .formBox .contentTimes .checkBoxBlock > label > input[type="checkbox"] {
  display: none !important;
}

#conts #formWrap .formBox .contentTimes .checkBoxBlock > label > .iradio_minimal-green,
#conts #formWrap .formBox .contentTimes .checkBoxBlock > label > .icheckbox_minimal-green {
  display: inline-block !important;
  width: 18px !important;
  height: 18px !important;
  margin: 0 10px 0 0 !important;
  background: #fff !important;
  border: 1.5px solid #939393 !important;
  border-radius: 50% !important;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
}

#conts #formWrap .formBox .contentTimes .checkBoxBlock > label > .icheckbox_minimal-green {
  border-radius: 3px !important;
}

#conts #formWrap .formBox .contentTimes .checkBoxBlock > label > .iradio_minimal-green.checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #1A78E6;
  border-radius: 50%;
}

#conts #formWrap .formBox .contentTimes .checkBoxBlock > label > .icheckbox_minimal-green.checked::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 4px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #1A78E6;
  border-bottom: 2px solid #1A78E6;
  transform: rotate(45deg);
}

#conts #formWrap .formBox .contentTimes .checkBoxBlock > label > .checkBoxText {
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
  color: #333 !important;
  font-size: 16px !important;
  line-height: 1.4 !important;
  border-radius: 0 !important;
  vertical-align: middle;
}

/* ---------- 入力フィールド ---------- */
#conts #formWrap .formBox input[type="text"],
#conts #formWrap .formBox input[type="number"],
#conts #formWrap .formBox input[type="tel"],
#conts #formWrap .formBox input[type="email"],
#conts #formWrap .formBox textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 19.5px 28px;
  border: 1px solid #707070;
  border-radius: 4px;
  background-color: #fff;
  color: #333;
  font-size: 18px;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
}

#conts #formWrap .formBox input.short {
  width: 120px;
}

#conts #formWrap .formBox input.mid {
  width: 100%;
}

#conts #formWrap .formBox textarea {
  min-height: 200px;
  line-height: 1.6;
}

/* セレクト */
#conts #formWrap .formBox select {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  padding: 18px 40px 18px 20px;
  border: 1px solid #707070;
  border-radius: 4px;
  background-color: #fff;
  color: #333;
  font-size: 18px;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, #939393 50%),
                    linear-gradient(135deg, #939393 50%, transparent 50%);
  background-position: calc(100% - 22px) 50%, calc(100% - 14px) 50%;
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
}

#conts #formWrap .formBox select::-ms-expand {
  display: none;
}

/* 年齢入力 */
#conts #formWrap .formBox .inputField {
  display: flex;
  align-items: center;
  gap: 10px;
}

#conts #formWrap .formBox .inputField span:first-child {
  flex: 0 0 auto;
}

/* 生年月日 */
#conts #formWrap .formBox .birth_wrap {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  position: relative;
  margin-bottom: 36px; /* バリデーションの絶対表示分の余白 */
}

#conts #formWrap .formBox .birth_wrap .item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  position: relative;
}

#conts #formWrap .formBox .birth_wrap .item select {
  width: 130px;
}

/* 予約希望日 */
#conts #formWrap .formBox .f_pereferred .cap {
  margin: 0 0 24px;
  text-align: center;
  font-size: 14px;
  color: #595757;
}

#conts #formWrap .formBox .f_pereferred .list02 {
  margin: 0;
  padding: 0;
  list-style: none;
}

#conts #formWrap .formBox .f_pereferred .list02 li {
  margin: 0 0 24px;
  list-style: none;
}

#conts #formWrap .formBox .f_pereferred .list02 li:last-child {
  margin-bottom: 0;
}

#conts #formWrap .formBox .f_pereferred .list02 li .title02 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}

#conts #formWrap .formBox .f_pereferred .list02 li .date_time {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 12px;
}

#conts #formWrap .formBox .f_pereferred .list02 li .datepickerWrap,
#conts #formWrap .formBox .f_pereferred .list02 li .timeWrap {
  width: calc(50% - 6px);
  position: relative;
}

#conts #formWrap .formBox .f_pereferred .list02 li .datepickerWrap input {
  width: 100%;
  padding-right: 50px;
}

#conts #formWrap .formBox .f_pereferred .list02 li .timeWrap select {
  width: 100%;
}

/* 親権者同意書バナー */
#conts #formWrap .formBox .hiddenage {
  margin-top: 18px;
  padding: 18px 20px;
  background-color: #fff7f7;
  border: 1px solid #f4d3d3;
  border-radius: 8px;
}

#conts #formWrap .formBox .hiddenage .title {
  color: #d04d4d;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
}

#conts #formWrap .formBox .hiddenage p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}

#conts #formWrap .formBox .hiddenage img {
  max-width: 100%;
}

/* メモ・注意 */
#conts #formWrap .formBox .note {
  font-size: 14px;
  color: #595757;
  margin-top: 6px;
}

#conts #formWrap .formBox .discount_alert {
  margin: 6px 0 14px;
  padding: 12px 16px;
  background-color: #f0f1f1;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}

/* バリデーション
   form.css のオリジナルでは <span> が position:absolute の赤バルーンで
   表示されるが、inline-flex 内などで配置が崩れるため、
   通常の赤テキストとして再定義する */
#conts #formWrap .validation-alert {
  position: static;
  display: block;
  width: 100%;
  margin-top: 6px;
  color: #d04d4d;
  font-size: 14px;
  line-height: 1.4;
}

#conts #formWrap .validation-alert span {
  position: static !important;
  display: inline-block !important;
  width: auto !important;
  padding: 2px 8px !important;
  background-color: #d04d4d !important;
  border-radius: 4px !important;
  color: #fff !important;
  font-size: 13px !important;
  white-space: nowrap !important;
  top: auto !important;
  left: auto !important;
}

#conts #formWrap .validation-alert span::before {
  display: none !important;
  content: none !important;
}

/* 生年月日のバリデーションは絶対位置で .item 直下に表示
   （プルダウン3つの一列レイアウトを崩さない） */
#conts #formWrap .formBox .birth_wrap .item .validation-alert {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: max-content;
  margin-top: 0;
}

#conts .errors {
  margin: 0 0 24px;
  padding: 14px 20px;
  background-color: #fdecec;
  border: 1px solid #d04d4d;
  border-radius: 6px;
}

#conts .errors p {
  color: #d04d4d;
  font-size: 14px;
  line-height: 1.75;
}

/* ---------- プライバシー ---------- */
#conts #formWrap .privacy {
  width: 100%;
  height: 320px;
  margin: 50px auto 0;
  padding: 22px 28px;
  background-color: #f0f1f1;
  border: 1px solid #707070;
  border-radius: 0;
  overflow-y: scroll;
}

#conts #formWrap .privacy h3 {
  margin-bottom: 12px;
  color: #909090;
  font-size: 18px;
  font-weight: 700;
}

#conts #formWrap .privacy dl dt {
  margin-top: 1.5em;
  color: #909090;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
}

#conts #formWrap .privacy dl dd,
#conts #formWrap .privacy dl dd p,
#conts #formWrap .privacy dl dd p a {
  color: #909090;
  font-size: 15px;
  line-height: 1.9;
}

/* ---------- 同意 ---------- */
#conts #formWrap .agree {
  margin-top: 30px;
  text-align: center;
}

#conts #formWrap .agree .note {
  margin-bottom: 18px;
  font-size: 16px;
}

#conts #formWrap .agree .checkbox {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px;
}

#conts #formWrap .agree .checkbox > input[type="checkbox"] {
  display: none !important;
}

#conts #formWrap .agree .checkbox > .icheckbox_minimal-green {
  display: inline-block !important;
  width: 22px !important;
  height: 22px !important;
  margin: 0 10px 0 0 !important;
  background: #fff !important;
  border: 1.5px solid #1A78E6 !important;
  border-radius: 3px !important;
  position: relative;
  cursor: pointer;
}

#conts #formWrap .agree .checkbox > .icheckbox_minimal-green.checked::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 6px;
  width: 6px;
  height: 12px;
  border-right: 2.5px solid #1A78E6;
  border-bottom: 2.5px solid #1A78E6;
  transform: rotate(45deg);
}

#conts #formWrap .agree .checkbox label {
  margin-left: 0 !important;
  vertical-align: middle;
  cursor: pointer;
}

/* ---------- 送信ボタン ---------- */
#conts #formWrap .submitBtn {
  margin-top: 40px;
  margin-bottom: 80px;
  text-align: center;
}

#conts #formWrap .submitBtn button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 50px;
  padding: 0;
  background-color: #1A78E6;
  border: none;
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  position: relative;
}

#conts #formWrap .submitBtn button::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 24px;
  margin-top: -6px;
}

#conts #formWrap .submitBtn button.is-false {
  background-color: #cecece;
  cursor: default;
  opacity: 1;
}

@media (min-width: 768px) {
  #conts #formWrap .submitBtn button {
    transition: opacity 0.3s ease;
  }
  #conts #formWrap .submitBtn button:hover {
    opacity: 0.8;
  }
  #conts #formWrap .submitBtn button.is-false:hover {
    opacity: 1;
  }
}

/* =========================================================
    Smartphone (≤767px)
========================================================= */
@media screen and (max-width: 767px) {
  #conts > .inner {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  #conts .step {
    width: 100% !important;
    margin: 20px 0 21px !important;
    padding: 0 !important;
  }

  #conts .step li {
    width: 32% !important;
    height: 32px !important;
    font-size: 12px !important;
  }

  #conts .step li:first-child {
    width: 32% !important;
  }

  #conts .step li:not(:first-child),
  #conts .step li + li {
    margin-left: 0 !important;
  }

  #conts .step li:first-child::before,
  #conts .step li.current:first-child::before {
    height: 32px !important;
    width: 50vw !important;
    left: -50vw !important;
  }

  #conts .step li::after,
  #conts .step li + li::after {
    right: -8px !important;
    border-width: 16px 0 16px 8px !important;
  }

  #conts #formWrap .formBox {
    margin: 30px 0 0;
  }

  #conts #formWrap .formBox > dl {
    margin: 0 0 35px;
    padding: 0;
  }

  #conts #formWrap .formBox > dl > dt {
    height: 45px !important;
    padding: 11px 18px !important;
    margin-bottom: 18px !important;
    font-size: 14px !important;
  }

  #conts #formWrap .formBox > dl > dt p.required {
    width: 40px !important;
    height: 18px !important;
    padding: 3px !important;
    font-size: 12px !important;
    line-height: 1 !important;
  }

  #conts #formWrap .formBox > dl > dd {
    width: auto !important;
    padding: 0 40px !important;
    font-size: 14px;
  }

  #conts #formWrap .formBox .radioList .checkBoxBlock {
    margin-bottom: 10px;
  }

  /* SP では is-vertical の追加 margin-top を無効化（margin-bottom:10px のみで間隔を作る） */
  #conts #formWrap .formBox .radioList.is-vertical .checkBoxBlock + .checkBoxBlock {
    margin-top: 0;
  }

  #conts #formWrap .formBox .radioList .checkBoxBlock > label > .checkBoxText {
    height: 43px !important;
    padding: 0 20px !important;
    font-size: 14px !important;
    border-radius: 4px !important;
  }

  #conts #formWrap .formBox .placeRadioBlock .radioList {
    gap: 4px !important;
  }

  #conts #formWrap .formBox .placeRadioBlock .radioList .checkBoxBlock {
    width: calc((100% - 8px) / 3) !important;
    flex: 0 0 calc((100% - 8px) / 3);
  }

  #conts #formWrap .formBox .placeRadioBlock .radioList .checkBoxBlock > label > .checkBoxText {
    height: 43px !important;
    font-size: 13px !important;
    padding: 0 4px !important;
  }

  #conts #formWrap .formBox > dl > dd > .checkBoxBlock {
    margin-bottom: 10px;
  }

  #conts #formWrap .formBox > dl > dd > .checkBoxBlock > label > .checkBoxText {
    height: 43px !important;
    padding: 0 20px !important;
    font-size: 14px !important;
    border-radius: 4px !important;
  }

  #conts #formWrap .formBox input[type="text"],
  #conts #formWrap .formBox input[type="number"],
  #conts #formWrap .formBox input[type="tel"],
  #conts #formWrap .formBox input[type="email"],
  #conts #formWrap .formBox textarea {
    padding: 9.5px 14px;
    font-size: 13px;
    border-color: #8c8c8c;
    border-radius: 0;
  }

  #conts #formWrap .formBox input.short {
    width: 90px;
  }

  #conts #formWrap .formBox textarea {
    min-height: 124px;
  }

  #conts #formWrap .formBox select {
    padding: 9.5px 30px 9.5px 12px;
    font-size: 13px;
    border-color: #8c8c8c;
    border-radius: 0;
    background-position: calc(100% - 16px) 50%, calc(100% - 10px) 50%;
    background-size: 6px 6px, 6px 6px;
  }

  #conts #formWrap .formBox .birth_wrap {
    gap: 6px;
    flex-wrap: nowrap;
  }

  #conts #formWrap .formBox .birth_wrap .item {
    flex: 1 1 auto;
    font-size: 13px;
  }

  #conts #formWrap .formBox .birth_wrap .item select {
    width: 100%;
    min-width: 0;
  }

  #conts #formWrap .formBox .f_pereferred .notes {
    padding: 12px 14px;
    font-size: 12px;
  }

  #conts #formWrap .formBox .f_pereferred .list02 li + li {
    margin-top: 18px;
  }

  #conts #formWrap .formBox .f_pereferred .list02 li .title02,
  #conts #formWrap .formBox .f_pereferred .list02 li .title03 {
    font-size: 14px;
  }

  #conts #formWrap .formBox .hiddenage {
    padding: 14px 14px;
  }

  #conts #formWrap .formBox .hiddenage .title {
    font-size: 13px;
  }

  #conts #formWrap .formBox .hiddenage p {
    font-size: 12px;
  }

  #conts #formWrap .formBox .note {
    font-size: 12px;
  }

  #conts #formWrap .formBox .discount_alert {
    font-size: 12px;
  }

  #conts #formWrap .privacy {
    margin: 30px 40px 0;
    width: auto;
    height: 200px;
    padding: 12px 14px;
  }

  #conts #formWrap .privacy h3 {
    font-size: 14px;
  }

  #conts #formWrap .privacy dl dt,
  #conts #formWrap .privacy dl dd,
  #conts #formWrap .privacy dl dd p {
    font-size: 12px;
  }

  #conts #formWrap .agree {
    margin-top: 24px;
    padding: 0 40px;
  }

  #conts #formWrap .agree .note {
    font-size: 13px;
  }

  #conts #formWrap .agree .checkbox {
    font-size: 14px;
  }

  #conts #formWrap .submitBtn {
    margin-top: 30px;
    padding: 0 40px;
  }

  #conts #formWrap .submitBtn button {
    width: 100%;
    max-width: 295px;
    height: 45px;
    font-size: 14px;
  }

  #conts #formWrap .submitBtn button::after {
    width: 8px;
    height: 8px;
    border-width: 2px;
    right: 20px;
  }
}

/* =========================================================
    確認画面・完了画面の最低限のリスタイル
========================================================= */
#conts.confirm .step,
#conts.thanks .step {
  margin-top: 50px;
}

#conts.confirm #formWrap .formBox > dl > dt {
  background-color: #e1e2e1;
}

#conts.confirm #formWrap .formBox > dl > dd {
  font-weight: 500;
  font-size: 22px;
}

@media screen and (max-width: 767px) {
  #conts.confirm #formWrap .formBox > dl > dd {
    font-size: 16px;
  }
}

#conts.thanks .finish {
  color: #1A78E6;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}

/* =========================================================
    Sticky Footer & コンテンツ下マージン
    （thanks ページのようにコンテンツが短い場合に
    フッターをブラウザ下辺に貼り付け、白背景が見えないように）
========================================================= */
html, body {
  min-height: 100vh;
}

#wrap {
  display: flex !important;
  flex-direction: column !important;
  min-height: 100vh !important;
}

#wrap > main {
  flex: 1 0 auto;
}

#wrap > footer {
  flex-shrink: 0;
}

/* PC でもコンテンツ下に余白を確保 */
#conts {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  #conts {
    padding-bottom: 50px;
  }
}
footer .ft_logo_mark img {
  display: none !important;
}

footer .ft_logo_mark {
  margin-bottom: 20px;
  text-align: center;
}

footer .ft_logo_mark::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 75px;
  background-image: url(/lp/form/physical/assets/img/form/logo_mark.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

@media only screen and (max-width: 979px) {
  footer .ft_logo_mark::after {
    width: 36px;
    height: 45px;
  }
}
