@charset "UTF-8";
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.header_cont,
.p_ber,
.q_box,
.q_title,
.q_title2,
.q_input,
.par_title,
label.slider_label,
.q_box.matrix_conf .q_input table tr td:first-of-type > div {
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: flex;
}

/***** 全体のレイアウト ******/
body,
form,
table {
  height: 100%;
  font-size: 16px;
  font-family: "Kosugi", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", "游ゴシック", "Yu Gothic", "Meiryo UI", "メイリオ", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
}

body {
  margin: 0;
  -webkit-text-size-adjust: 100%;
}

#wrapper {
  box-sizing: border-box;
  width: 95vw;
  max-width: 1025px;
  margin: 30px auto 180px;
}

/***** 文字関連 *****/
.font_s {
  font-size: 14.85px;
}

.font_ss {
  font-size: 11px;
}

.font_m {
  font-size: 16px;
}

.font_ms {
  font-size: 16px;
}

.font_l {
  font-size: 18px;
}

.font_2l {
  font-size: 21px;
}

.sp_red {
  color: #ef2f00;
}

.sp_bold {
  font-weight: 700;
}

.sp_normal {
  font-weight: normal;
}

.sp_ul {
  text-decoration: underline;
}

.sp_caution {
  color: #dc3838;
}

.al_left {
  text-align: left;
}

.al_right {
  text-align: right;
}

.al_center {
  text-align: center;
}

.sp_note {
  display: inline-block;
  margin: 5px 0;
  padding-left: 1em;
  font-size: 0.88em;
  text-indent: -1em;
  text-align: left;
}

.sp_indent {
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
}

.sp_num {
  display: inline-block;
  flex-basis: 8%;
  padding: 3px;
}

.head1 {
  /* font-weight: bold; */
  font-size: 18.5pt;
  margin-bottom: 30px;
}

.head2 {
  font-size: 20pt;
  padding: 5px;
}

.head0 {
  padding: 3px;
  color: #000000;
  font-weight: 700;
  text-align: left;
}

.head0::after,
.head0::before {
  content: "◆";
  color: #000000;
  text-align: left;
}

/***** ヘッダー *****/
.header {
  width: 100%;
  height: 98px;
  margin: 0 auto;
  padding-bottom: 10px;
}
.header .header_cont {
  margin: 0 auto;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: baseline;
  width: 95vw;
  /***** 題 *****/
  /***** プログレスバー（進捗状況） *****/
}
.header .header_cont .top_d {
  flex-basis: 100%;
  padding: 5px;
  font-size: 22pt;
  text-align: left;
}
.header .header_cont .top_d2 {
  width: 750px;
  padding: 5px;
  background-color: #08287f;
  color: #f0f8ff;
  font-size: 13pt;
  font-weight: bold;
}
.header .header_cont .logout {
  position: absolute;
  top: 18px;
  right: 30px;
  text-align: right;
}
.header .header_cont .p_ber {
  flex-flow: row nowrap;
  flex-basis: 100%;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}
.header .header_cont .p_ber div {
  box-sizing: border-box;
}
.header .header_cont .p_ber div.col1, .header .header_cont .p_ber div.col2, .header .header_cont .p_ber div.col3 {
  padding: 3px;
}
.header .header_cont .p_ber div.col1 {
  flex-basis: 38%;
  text-align: right;
}
.header .header_cont .p_ber div.col1 .p_str1 {
  padding: 3px;
  border: #fff 1px solid;
  border-radius: 4px;
  box-sizing: border-box;
}
.header .header_cont .p_ber div.col2 {
  flex-basis: 24%;
  text-align: center;
}
.header .header_cont .p_ber div.col3 {
  flex-basis: 38%;
  text-align: left;
}
.header .header_cont .p_ber div.p_ber0 {
  flex-basis: 100%;
  height: 100%;
  width: 115px;
  margin: auto;
  padding: 1px;
  border: 2px solid #fff;
  font-size: 1px;
  text-align: left;
}
.header .header_cont .p_ber div.p_ber1 {
  height: 8px;
  background-color: #ffffff;
}

/***** 大問タイトル *****/
.par_title {
  display: flex;
  flex-flow: row wrap;
  flex-basis: 100%;
  margin-top: 1em;
  margin-bottom: 1em;
  padding: 5px;
  background: #d4d4d4;
  color: #000;
  font-size: 1.2em;
  text-align: left;
}

.par_num {
  flex-basis: 12%;
  padding-left: 0.5em;
}

.par_str {
  flex-basis: 83%;
  text-align: left;
}

/***** 設問 *****/
.q_box {
  flex-flow: row wrap;
  width: 100%;
  animation: show 0.2s linear 0s;
  margin-bottom: 50px;
}
.q_box.disabled {
  display: none;
}
.q_box.basic_conf .q_input .col1 {
  margin-left: 10%;
}

.q_title {
  flex-basis: 100%;
  padding: 5px;
  color: #000;
  font-size: 18.5px;
}
.q_title .q_num {
  width: 100%;
}
.q_title .q_num:empty {
  display: none;
}
.q_title .q_num:empty + .q_str {
  flex-basis: 100%;
  padding-left: 1em;
}
.q_title .q_str {
  width: 100%;
  text-align: left;
}
.q_title .q_str.q_str_indent {
  padding-left: 1em;
  text-indent: -1em;
}

.q_title2 {
  display: flex;
  flex-flow: row wrap;
  flex-basis: 100%;
  margin-top: 3px;
  margin-bottom: 1em;
  padding: 3px;
  background: none;
  color: #000;
  font-size: 17px;
  text-align: left;
}
.q_title2 .q_num2 {
  flex-basis: 8%;
  height: 28px;
  margin-right: 8px;
  padding: 3px;
  background: #08287f;
  color: #fff;
  text-align: center;
  vertical-align: middle;
}
.q_title2 .q_num2.bgno {
  background: #fff;
  color: #000;
  text-align: right;
  vertical-align: top;
  padding-top: 0;
}
.q_title2 .q_str2 {
  flex-basis: 88%;
  text-align: left;
  line-height: 1.8;
}

.q_note {
  font-size: 13pt;
  margin-top: 3px;
}

.q_note2 {
  padding: 8px 14px;
  margin-bottom: 20px;
  padding-left: calc(1em + 14px);
  text-indent: -1em;
  letter-spacing: 0.5px;
  font-size: 1.035rem;
}

_:-ms-lang(x)::-ms-backdrop,
.q_num2 {
  height: 30px;
}

.q_num2_inline {
  display: inline-block;
  box-sizing: border-box;
  width: 57px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 3px 5px;
  background: #08287f;
  color: #fff;
  font-size: 0.95rem;
  text-align: center;
  vertical-align: middle;
  text-indent: 0;
  line-height: 1.7;
}

_:-ms-lang(x)::-ms-backdrop,
.q_num2_inline {
  height: 1.7em;
}

.q_input {
  flex-flow: row wrap;
  flex-basis: 100%;
  justify-content: space-around;
  padding: 5px;
  font-size: 17px;
  line-height: 2;
}
.q_input .col0,
.q_input .col1,
.q_input .col2,
.q_input .col3 {
  text-align: left;
}
.q_input .col0 {
  flex-basis: 13%;
}
.q_input .col1 {
  flex-basis: 100%;
}
.q_input .col2 {
  /*1行2列*/
  flex-basis: 49.5%;
}
.q_input .col3 {
  /*1行3列*/
  flex-basis: 32.5%;
}
.q_input .col4 {
  /*1行4列*/
  flex-basis: 24.5%;
}
.q_input .col5 {
  /*1行5列*/
  flex-basis: 19.5%;
}
.q_input .q_title2 {
  margin-bottom: 0;
  padding-bottom: 0;
}
.q_input .q_input {
  padding-top: 0;
  margin-bottom: 0.5em;
}
.q_input hr {
  border: 2px solid #fff;
}
.q_input input[type=radio],
.q_input input[type=checkbox] {
  width: 20px;
  height: 20px;
}
.q_input input[type=radio] + label,
.q_input input[type=checkbox] + label {
  font-size: 0.95rem;
}
.q_input .opt-cont {
  display: flex;
  width: 100%;
  font-weight: 500;
}
.q_input .opt-cont .opt-num {
  min-width: 24px;
  max-width: 24px;
  padding-right: 0;
  flex-basis: 10%;
  padding-right: 5px;
}
.q_input .opt-cont .opt-str {
  width: auto;
  flex-basis: 90%;
}

/* .col5:nth-last-of-type(5) {
  text-align: left; } */
/***** フッター *****/
.btn-box {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  border-top: 3px solid #c1c1c1;
  border-bottom: 2px solid aliceblue;
}
.btn-box .btn-unit > input[type=submit],
.btn-box .btn-unit > input[type=button],
.btn-box .btn-unit > button {
  width: 200px;
  box-sizing: border-box;
  margin: 25px auto;
  font-size: 19px;
}
.btn-box .btn-unit > input[type=submit].focus-visible,
.btn-box .btn-unit > input[type=button].focus-visible,
.btn-box .btn-unit > button.focus-visible {
  box-shadow: 1px 1px 1px 3px blue;
}
.btn-box .progress-unit {
  font-size: 18px;
}

/*****ボタン *****/
input[type=button],
input[type=submit],
button {
  /* width: 120px;
  padding: 10px;
  box-sizing: content-box;
  background-color: #08287f;
  color: #fff;
  font-size: 1rem; */
  padding: 15px 4px;
}

input[name=btn_out] {
  width: 120px;
  font-size: 16px;
  padding: 8px 5px;
}

input[name=btn_close] {
  width: 120px;
  padding: 6px;
  font-size: 0.95em;
}

input[type=button].fix {
  width: 100px;
  padding: 5px;
  font-size: 0.925em;
  position: relative;
  top: -5px;
  left: 39%;
}

input[type=button]:hover, input[type=button]:focus,
input[type=submit]:hover,
input[type=submit]:focus,
button:hover,
button:focus {
  opacity: 0.8;
}
input[type=button][name=next]::after, input[type=button][name=nextpage]::after,
input[type=submit][name=next]::after,
input[type=submit][name=nextpage]::after,
button[name=next]::after,
button[name=nextpage]::after {
  content: "";
  position: absolute;
  top: 0;
  right: -17px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 29px 0 31px 19px;
  border-color: transparent transparent transparent #bf0000;
}
input[type=button][name=back]::after, input[type=button][name=backpage]::after,
input[type=submit][name=back]::after,
input[type=submit][name=backpage]::after,
button[name=back]::after,
button[name=backpage]::after {
  content: "";
  position: absolute;
  top: 0;
  left: -17px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 29px 19px 31px 0;
  border-color: transparent #7e7e7e transparent transparent;
}

_:-ms-lang(x)::-ms-backdrop,
.btn-box .btn-unit {
  position: relative;
}

_:-ms-lang(x)::-ms-backdrop,
.btn-box .btn-unit > button:hover {
  opacity: 1;
  letter-spacing: 0.6px;
}

_:-ms-lang(x)::-ms-backdrop,
.btn-box .btn-unit > button:focus {
  opacity: 1;
  letter-spacing: 0.6px;
}

_:-ms-lang(x)::-ms-backdrop,
.btn-box .btn-unit.next::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 25px;
  right: calc((100% - 200px) / 2 - 19px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 29px 0 31px 21px;
  border-color: transparent transparent transparent #bf0000;
}

_:-ms-lang(x)::-ms-backdrop,
.btn-box .btn-unit.back::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 25px;
  left: calc((100% - 200px) / 2 - 19px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 29px 21px 31px 0;
  border-color: transparent #7e7e7e transparent transparent;
}

/*****汎用的な枠 *****/
.box,
.box_border {
  width: 100%;
  max-width: 850px;
  margin: auto;
}

.box_border {
  /*太枠・文字強調あり*/
  padding: 5px 1rem;
  box-sizing: border-box;
  border: 2px solid #000;
  font-weight: 400;
}

.box_border.sp_normal {
  font-weight: normal;
}

.box_border hr {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  border: 0;
  border-top: 2px solid #424242;
}

.box_left {
  padding: 1em 0.5em;
  text-align: left;
}

.box_border > p.p_short {
  margin: 15px;
  text-align: center;
}

.box_caution {
  border: 2px solid #dc3838;
  color: #dc3838;
  font-weight: 500;
  font-size: 1em;
}

/**** 背景色 ****/
/* エラー */
.error {
  background-color: #ffe4e1;
}

*,
*:before,
*:after {
  box-sizing: unset;
}

/*************** 追加 ***************/
/**ページトップへ戻るボタン**/
#pagetop {
  position: fixed;
  bottom: 20px;
  right: 30px;
  padding: 22px 30px;
  border-radius: 50%;
  background-color: #fcefa1;
  cursor: pointer;
}

#pagetop:hover {
  opacity: 0.8;
}

#pagetop i {
  color: #000;
  font-size: 2em;
  font-weight: 600;
}

.cont_fa {
  display: block;
  font-size: 0.95em;
}
.cont_fa > input[type=text].txt_fa {
  width: 80%;
}
.cont_fa > input[type=text].txt_fa2 {
  width: 85%;
}

form[name=index] .q_input input[type=button],
form[name=index] .q_input button {
  width: 250px;
  font-size: 18px;
}
form[name=index] .q_input input[type=text],
form[name=index] .q_input input[type=password] {
  min-height: 1.5em;
  width: 395px;
}
form[name=index] .q_input label {
  font-size: 1em;
}

.confirm_note {
  margin-bottom: 45px;
}

.matrix_table {
  width: 100%;
  display: table;
  border: 1px solid #837b76;
  border-collapse: collapse;
}
.matrix_table > colgroup > col.num {
  width: 3.5%;
}
.matrix_table > colgroup > col.str {
  width: 33.5%;
}
.matrix_table > colgroup > col.wid19 {
  width: 19%;
}
.matrix_table > colgroup > col.wid15 {
  width: 15%;
}
.matrix_table > thead > tr.matrix_row {
  background: #dddcdb;
}
.matrix_table > thead > tr.matrix_row > th {
  text-align: center;
  font-size: 0.975em;
}
.matrix_table > tbody > .matrix_row:nth-of-type(2n) {
  background-color: #f4f2f0;
}
.matrix_table > tbody > .matrix_row > th {
  font-weight: 500;
  text-align: left;
}
.matrix_table > tbody > .matrix_row > td {
  text-align: center;
}
.matrix_table > tbody > .matrix_row > td.cont_str, .matrix_table > tbody > .matrix_row > td.cont_str2, .matrix_table > tbody > .matrix_row > td.cont_str3 {
  text-align: left;
  line-height: 1.6;
  font-size: 0.925em;
}
.matrix_table > tbody > .matrix_row > td:empty {
  background-color: #c3c3c3;
}
.matrix_table .matrix_row {
  display: table-row;
  justify-content: space-between;
  border: 1px solid #837b76;
}
.matrix_table .matrix_row td,
.matrix_table .matrix_row th {
  padding: 5px;
  text-align: center;
  vertical-align: middle;
  border-left: 1px solid #837b76;
  border-right: 1px solid #837b76;
}
.matrix_table .matrix_row td.cont_num,
.matrix_table .matrix_row th.cont_num {
  display: table-cell;
  width: 3.5%;
  padding: 3px;
  /*border-left:1px dotted #ddd;*/
  border-right: 1px solid #837b76;
  font-size: 0.89em;
  text-align: center;
}
.matrix_table .matrix_row td.cont_str,
.matrix_table .matrix_row th.cont_str {
  display: table-cell;
  width: 48.5%;
  padding: 4px 4px 3px 3px;
  /*border-left:1px solid #bbb;*/
  border-right: 1px solid #837b76;
  font-size: 0.925em;
  line-height: 1.6;
}
.matrix_table .matrix_row td.cont_str2,
.matrix_table .matrix_row th.cont_str2 {
  width: 51.5%;
  padding: 3px;
}
.matrix_table .matrix_row td.cont_str3,
.matrix_table .matrix_row th.cont_str3 {
  width: 59.5%;
  padding: 3px;
}
.matrix_table .matrix_row td .cont,
.matrix_table .matrix_row th .cont {
  border: 1px solid #837b76;
}
.matrix_table .matrix_row td.disabled,
.matrix_table .matrix_row th.disabled {
  background-color: #c7c7c7;
}
.matrix_table .matrix_row td.cont2,
.matrix_table .matrix_row th.cont2 {
  width: 18.5%;
  display: table-cell;
  padding: 5px;
  font-size: 0.95em;
  vertical-align: middle;
}
.matrix_table .matrix_row td.cont6,
.matrix_table .matrix_row th.cont6 {
  display: table-cell;
  padding: 5px;
  font-size: 0.875em;
  vertical-align: middle;
}
.matrix_table .matrix_row.matrix_str {
  font-size: 0.9em;
  font-weight: bold;
  line-height: 1.5;
}
.matrix_table .matrix_row.matrix_str th.cont_str,
.matrix_table .matrix_row.matrix_str td.cont_str {
  display: table-cell;
  width: 48%;
  padding: 3px;
  border-right: 1px solid #837b76;
  font-size: 0.85em;
  text-align: center;
}
.matrix_table .matrix_row:not(.matrix_str) td.cont_str2 {
  font-size: 0.9em;
}
.matrix_table .matrix_row:not(.matrix_str) td.cont6.cont_chk .form-check {
  margin-bottom: 0;
}
.matrix_table .matrix_row:not(.matrix_str) td .form-check {
  margin-bottom: 0;
}
.matrix_table .matrix_row:not(.matrix_str) td .form-check .form-checkbox {
  width: auto;
}
.matrix_table .matrix_row:not(.matrix_str) td .form-check .form-radio {
  width: auto;
}
.matrix_table .matrix_row:not(.matrix_str) td .form-check .form-radio .form-radio-icon {
  left: 2px;
  top: 0;
}

form[name=form_confirm] .q_box:last-of-type {
  margin-bottom: 60px;
}

/*カスタム*/
.form-check.form-fa {
  margin-bottom: 30px;
}

.form-slider {
  padding-right: 3px;
  padding-left: 1px;
}

.wid85 {
  width: 85%;
  margin: auto;
  margin-left: 15%;
}

/**** スライダー ****/
#slider {
  height: 0.7em;
  width: 96%;
  margin: 5px 0;
  background: #ddd;
}

.ui-slider-labels {
  width: 96%;
}

div#slider.ui-state-disabled {
  opacity: 1;
}

#slider .ui-slider-handle {
  height: 1em;
  width: 1em;
  border-radius: 1em;
  background: #08287f;
}

/*範囲指定オンの場合*/
#slider .ui-slider-range {
  background: #c7e7f7;
}

label.slider_label {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  width: 96%;
  font-size: 0.8rem;
  color: #464646;
}

label.slider_label div {
  margin: 2px 0;
  padding: 3px;
}

#spinner {
  width: 35px;
  font-size: 1.1em;
  font-weight: bold;
}

div#spinner_label {
  display: inline-block;
  position: relative;
  top: 0.8em;
  margin-left: 4px;
  font-size: 0.8em;
}

.mobile_only,
.desktop_only_ie {
  display: none !important;
}

img.logo {
  width: 22vw;
  min-width: 150px;
  max-width: 230px;
  image-rendering: -webkit-optimize-contrast;
}

.note_footer {
  line-height: 100%;
}

_:-ms-lang(x)::-ms-backdrop,
body,
form,
table {
  font-family: "Kosugi", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

_:-ms-lang(x)::-ms-backdrop,
.q_num2_inline {
  padding: 0 5px 6px 5px;
}

_:-ms-lang(x)::-ms-backdrop,
.q_num2 {
  padding: 2px 3px 6px 3px;
}

_:-ms-lang(x)::-ms-backdrop,
.matrix_row .cont_num {
  padding: 3px;
  padding-bottom: 0;
}

/*****ボタン *****/
_:-ms-lang(x)::-ms-backdrop,
input[type=button],
input[type=submit] {
  width: 130px;
  padding: 10px;
  padding-bottom: 12px;
  box-sizing: content-box;
  font-weight: normal;
  letter-spacing: 1px;
}

_:-ms-lang(x)::-ms-backdrop,
.nakaguro {
  display: inline-block;
  width: 1em;
  /*padding:2px;*/
  text-align: center;
}

_:-ms-lang(x)::-ms-backdrop,
.nakaguro_indent {
  display: inline-block;
  width: 1em;
  /*padding:2px;*/
  padding-left: 1em;
  text-indent: -1em;
  text-align: center;
}

_:-ms-lang(x)::-ms-backdrop,
.desktop_only_ie {
  display: inline;
}

/*0523追加*/
[type=radio]:not(:checked) + label.col_label,
[type=radio]:checked + label.col_label {
  display: inline-block;
  position: relative;
  top: 1px;
  right: -1px;
  height: 25px;
  width: 1em;
  padding: 5px;
  line-height: 25px;
  font-size: 1rem;
  transition: 0.28s ease;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

_:-ms-lang(x)::-ms-backdrop,
[type=radio]:not(:checked) + label.col_label,
[type=radio]:checked + label.col_label {
  padding: 0;
}

[type=radio] + label.col_label:before,
[type=radio] + label.col_label:after {
  content: "";
  position: absolute;
  top: 29px;
  left: -1.6px;
  height: 16px;
  width: 16px;
  margin: 4px;
  z-index: 0;
  transition: 0.28s ease;
}

_:-ms-lang(x)::-ms-backdrop,
[type=radio] + label.col_label:before,
[type=radio] + label.col_label:after {
  left: -3.9px;
}

table.tbl1 tr th,
table.tbl1 tr td {
  padding: 0.5rem;
  box-sizing: border-box;
  text-align: center;
}
table.tbl1 tr th.str,
table.tbl1 tr td.str {
  text-align: left;
}
table.tbl1 tr th > table td,
table.tbl1 tr td > table td {
  padding: 0;
  font-size: 1rem;
  vertical-align: top;
}
table.tbl1 tr th > table td:first-of-type,
table.tbl1 tr td > table td:first-of-type {
  width: 2em;
  padding-right: 0;
}

.nps_tbl {
  display: table;
  table-layout: fixed;
  border-collapse: collapse;
  position: relative;
  top: 5px;
  left: 2px;
  width: 90%;
  font-size: 0;
  text-align: center;
  z-index: 0;
}

_:-ms-lang(x)::-ms-backdrop,
.nps_tbl {
  left: 0;
  width: 90%;
}

.nps_tbl div {
  height: 10px;
  font-size: 0.3em;
}

.nps_tbl .nps_tbl_row {
  display: table-row;
  height: 13px;
  border: 1px solid #5a5a5a;
  border-bottom: none;
}

.nps_tbl_cell {
  display: table-cell;
  border-collapse: collapse;
  width: 10%;
  box-sizing: border-box;
  border-right: 1px solid #5a5a5a;
}

select {
  margin-top: 0.5em;
}

select.select {
  max-height: 4rem;
  font-size: 1rem;
}

textarea {
  line-height: 1.3;
  height: 5em;
}
textarea.txt_fa {
  height: 3em;
}

i {
  font-size: 1.25em;
  margin: 4px 3px;
}

.q_input span.sp_chk {
  font-size: 1.25em;
}

br.br-sp {
  display: none;
}

.col_radio {
  display: flex;
  flex-flow: row-reverse;
  justify-content: space-between;
  width: 93%;
  margin: 3px;
  margin-top: 0;
  margin-bottom: 1.5em;
}
.col_radio .cell_radio .form-check {
  margin: 0;
}
.col_radio .cell_radio .form-check label.form-radio {
  width: auto;
}
.col_radio .cell_radio .form-check label.form-radio .form-radio-icon {
  top: 2rem;
  width: 16px;
  height: 16px;
  border-width: 2px;
  left: 2px;
}
.col_radio .cell_radio .form-check label.form-radio .form-radio-icon:not(:checked) {
  border-color: #5a5a5a;
}
.col_radio .cell_radio .form-check label.form-radio .form-radio-label {
  display: block;
  color: #464646;
  padding-left: 0;
  margin-bottom: 1.5rem;
  width: 20px;
  left: 2px;
}

_:-ms-lang(x)::-ms-backdrop,
input[type=text] {
  line-height: 1;
}

_:-ms-lang(x)::-ms-backdrop,
input[type=password] {
  line-height: 1;
}/*# sourceMappingURL=rs_style.css.map */