@charset "UTF-8";
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes ber {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    display: none;
    opacity: 0;
    z-index: -1;
  }
}
@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
/***** focus-visible Polyfill *****/
.js-focus-visible :focus:not(.focus-visible) {
  outline: 0;
}

/***** loader *****/
#loader {
  width: 100vw;
  height: 100vh;
  background-color: #f6f7f8;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  flex-flow: column;
  /* 読み込み完了後に「loaded」を付与する */
}
#loader.loaded {
  animation: fadeOut 1.5s forwards;
}

.spinner {
  margin: auto;
  width: 70px;
  text-align: center;
}
.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #ea0b00;
  border-radius: 100%;
  display: inline-block;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.spinner .bounce1 {
  animation-delay: -0.32s;
}
.spinner .bounce2 {
  animation-delay: -0.16s;
}

.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #333;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: sk-bounce 2s infinite ease-in-out;
}

.double-bounce2 {
  animation-delay: -1s;
}

/***** 全体のレイアウト ******/
html {
  font-size: 16px;
}

* {
  line-height: 1.6;
  font-feature-settings: "palt";
}

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

*[disabled] {
  cursor: not-allowed;
}

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

body,
form,
table {
  font-family: "Kosugi", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", "游ゴシック", "Yu Gothic", "Meiryo UI", "メイリオ", Meiryo, "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
  margin: 0;
}

input,
textarea {
  font-family: "Kosugi", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", "游ゴシック", "Yu Gothic", "Meiryo UI", "メイリオ", Meiryo, "Helvetica Neue", Arial, sans-serif;
  box-sizing: border-box;
}
input[disabled],
textarea[disabled] {
  /* テキスト使用不可 */
  color: #999;
}

select {
  font-family: "Kosugi", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDGothic", "メイリオ", Meiryo, "Helvetica Neue", Arial, sans-serif;
  box-sizing: border-box;
}

/*背景色*/
.err {
  background-color: #ffe5e2 !important;
}

/* テキスト使用不可 */
input[type=text].err-sub,
input[type=password].err-sub,
textarea.err-sub {
  background-color: rgb(255, 209, 209) !important;
}
input[type=text].disabled-text,
input[type=password].disabled-text,
textarea.disabled-text {
  background-color: #999;
}

/* セレクトボックス使用不可 */
select.err-sub {
  background-color: rgb(255, 209, 209) !important;
}
select.disabled-select {
  background-color: #bbb;
}

.hidden {
  display: none !important;
}

.hidden-do {
  animation: 0.3s linear 0.1s 1 reverse both show;
}

.visible {
  animation: 0.4s linear 0.1s 1 forwards show;
}

/*文字色*/
.sp_red {
  color: #aa0101 !important;
}

.sp_blue {
  color: #1967d2;
}

.sp_green {
  color: #375623;
}

.sp_darkbrown {
  color: rgb(218, 11, 0);
}

.sp_bold {
  font-weight: 700 !important;
}

.sp_sb {
  font-weight: 500;
}

.sp_normal {
  font-weight: normal;
}

.sp_ul {
  text-decoration: underline;
}

.sp_ul2 {
  border-bottom: 4px double #000;
}

.sp_caution {
  color: #dc3838;
}

.al_left {
  text-align: left !important;
}

.al_right {
  text-align: right !important;
}

.al_center {
  text-align: center !important;
}

/*リンク*/
a:link {
  color: #0099cc;
}

a:visited {
  color: #0066cc;
}

a:hover,
a:active {
  color: #3333ff;
}

/**見出し**/
.header {
  background: linear-gradient(#ea0b00, #ce2a19);
  background-color: #ce2a19;
  color: rgb(255, 255, 255);
  border-bottom: 3px solid rgb(193, 193, 193);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.header .top_d {
  width: 100%;
  margin-top: 10px;
  padding: 5px;
  line-height: 1.2;
}
.header .p_ber .col1 .ber-out > .ber-in {
  animation: 3s ease-out 5s 1 forwards ber;
}
.header input[name=btn_out] {
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
}
.header input[name=btn_out]:hover, .header input[name=btn_out]:focus {
  opacity: 1 !important;
  position: relative;
  top: 1px;
}

.head2 {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  margin: 15px 0 10px;
  padding: 5px;
  border-bottom-color: rgb(193, 193, 193);
  border-bottom-width: 5px;
  border-bottom-style: solid;
  border-radius: 1px;
  background-color: #fff;
  font-weight: normal;
  color: #000;
  text-align: left;
}

.head1 {
  position: relative;
  box-sizing: border-box;
  display: block;
  width: 100%;
  margin: 3px 0 8px;
  padding: 5px;
  color: #000;
  text-align: left;
  border-bottom-color: #cdcdcd;
  border-bottom-width: 3px;
  border-bottom-style: solid;
}
.head1::after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #e73f24;
  bottom: -3px;
  left: 0;
  width: 25%;
}

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

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

.head-normal {
  font-weight: normal;
  font-size: 1rem;
  margin: 8px 0 6px;
}

.end_note {
  box-sizing: border-box;
  display: block;
  line-height: 1.5;
  padding: 4px 6px;
  margin-bottom: 16px;
  text-align: left;
}
.end_note .head2:first-of-type {
  display: block;
  margin-bottom: 6px;
}

/***** 大問 *****/
.par_title {
  box-sizing: border-box;
  width: 100%;
  margin: 20px 0;
  padding: 5px 8px;
  background: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  font-size: 1rem;
  text-align: left;
}
.par_title.futai {
  font-size: 1.075rem;
  font-weight: bold;
  padding: 8px;
  background-color: #990505;
  text-align: center;
}

.box_tips {
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto 22px;
  padding: 5px 8px;
  border: 1px solid rgb(0, 0, 0);
}
.box_tips .title {
  font-weight: bold;
  margin-bottom: 7px;
}
.box_tips .main {
  text-align: left;
  font-weight: normal;
  font-size: 0.975em;
}

/***** 設問 *****/
.q_box,
.q_title,
.q_num,
.q_str,
.q_note,
.q_input {
  box-sizing: border-box;
}

.q_box,
.q_title,
.q_input {
  display: flex;
}

.q_num {
  color: #e62000;
  font-weight: bold;
  text-align: left;
}

.q_note {
  color: rgb(16, 16, 16);
  text-align: right;
}

.q_note2 {
  width: auto;
  color: rgb(0, 0, 0);
  border: 2px solid #c1c1c1;
  border-radius: 2px;
  text-align: left;
  background-color: #ffffcf;
  -webkit-text-stroke: 0.5px #000;
}
.q_note2::-moz-selection {
  background: #2d94ff;
  -webkit-text-fill-color: white;
  -webkit-text-stroke: 0;
}
.q_note2::selection {
  background: #2d94ff;
  -webkit-text-fill-color: white;
  -webkit-text-stroke: 0;
}

.q_box {
  flex-flow: row wrap;
  max-width: 850px;
  width: 100%;
  margin-bottom: 30px;
}
.q_box .q_edit {
  padding-bottom: 10px;
}
.q_box .q_title {
  flex-flow: column;
  width: 100%;
  flex-basis: 100%;
  color: #000;
}
.q_box .q_note {
  width: 100%;
  flex-basis: 100%;
}
.q_box .q_input {
  flex-flow: row wrap;
  flex-basis: 100%;
  justify-content: space-around;
  padding: 6px 3px;
  line-height: 1.8;
}
.q_box .q_input.matrix {
  overflow-x: auto;
}
.q_box .q_input .col1,
.q_box .q_input .col2,
.q_box .q_input .col3 {
  text-align: left;
  margin-bottom: 5px;
}
.q_box .q_input .col1 .opt-cont,
.q_box .q_input .col2 .opt-cont,
.q_box .q_input .col3 .opt-cont {
  display: flex;
  width: 100%;
  box-sizing: border-box;
}
.q_box .q_input .col1 .opt-cont .opt-num,
.q_box .q_input .col1 .opt-cont .opt-str,
.q_box .q_input .col2 .opt-cont .opt-num,
.q_box .q_input .col2 .opt-cont .opt-str,
.q_box .q_input .col3 .opt-cont .opt-num,
.q_box .q_input .col3 .opt-cont .opt-str {
  display: inline-block;
}

/***FA***/
.cont_fa.num > input[type=text].txt_num {
  margin-left: 3px;
  margin-right: 3px;
}
.cont_fa:not(.num):not(.free) {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.cont_fa:not(.num):not(.free)::before {
  content: "（";
  display: inline;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.cont_fa:not(.num):not(.free)::after {
  content: "）";
  display: inline;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.cont_fa:not(.num):not(.free) > input[type=text] {
  pointer-events: auto;
  margin-left: 3px;
  margin-right: 3px;
}

/**テーブル**/
table {
  box-sizing: border-box;
}
table.tbl1 {
  width: 100%;
}
table.tbl1 tr td {
  vertical-align: baseline;
}
table.tbl1.striped {
  border-collapse: collapse;
}
table.tbl1.striped > thead > tr {
  background-color: #dddcdb;
}
table.tbl1.striped > thead > tr > th {
  border: 1px solid #837b76;
  font-size: 0.85rem;
}
table.tbl1.striped > tbody > tr {
  background-color: transparent;
}
table.tbl1.striped > tbody > tr:nth-of-type(even) {
  background-color: #f4f2f0;
}
table.tbl1.striped > tbody > tr > th,
table.tbl1.striped > tbody > tr > td {
  vertical-align: middle;
  border: 1px solid #837b76;
}
table.tbl1.striped > tbody > tr > th {
  padding: 0.5rem;
  font-weight: normal;
}
table input[type=text] {
  min-width: 40px;
  padding: 0.3em 6px;
}
table select {
  min-width: 40px;
}

_:-ms-lang(x)::-ms-backdrop,
table.tbl1.striped {
  border: 1px solid #837b76;
  border-collapse: separate;
  border-spacing: 0;
}

_:-ms-lang(x)::-ms-backdrop,
table.tbl1.striped > thead > tr > th {
  border: 0;
  border-right: 1px solid #837b76;
  border-bottom: 1px solid #837b76;
}

_:-ms-lang(x)::-ms-backdrop,
table.tbl1.striped > tbody > tr > td {
  border: 0;
  border-bottom: 1px solid #837b76;
  border-right: 1px solid #837b76;
}

_:-ms-lang(x)::-ms-backdrop,
table.tbl1.striped > tbody > tr:last-of-type > td {
  border-bottom: 0;
}

_:-ms-lang(x)::-ms-backdrop,
table.tbl1.striped > tbody > tr > th {
  border: 0;
  border-bottom: 1px solid #837b76;
  border-right: 1px solid #837b76;
}

_:-ms-lang(x)::-ms-backdrop,
table.tbl1.striped > tbody > tr:last-of-type > th {
  border-bottom: 0;
}

_:-ms-lang(x)::-ms-backdrop,
table.tbl1.striped > thead > tr > th:last-of-type {
  border-right: 0;
}

_:-ms-lang(x)::-ms-backdrop,
table.tbl1.striped > thead > tr > th.th-r {
  border-right: 1px solid #837b76;
}

_:-ms-lang(x)::-ms-backdrop,
table.tbl1.striped > tbody > tr > td.desktop_only:nth-last-child(2) {
  border-right: 0;
}

_:-ms-lang(x)::-ms-backdrop,
table.tbl1.striped > tbody > tr > td:last-of-type {
  border-right: 0;
}

/***** フッター *****/
.footer .btn-box {
  width: 100%;
}

.btn-box {
  display: flex;
  box-sizing: border-box;
  flex-flow: row nowrap;
  justify-content: space-between;
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 6;
}
.btn-box .btn-unit {
  flex-basis: 44%;
  width: 44%;
  text-align: center;
}
.btn-box .btn-unit > input[type=submit],
.btn-box .btn-unit > input[type=button],
.btn-box .btn-unit > button {
  position: relative;
  color: #fff;
}
.btn-box .btn-unit > input[type=submit][name=next], .btn-box .btn-unit > input[type=submit][name=nextpage],
.btn-box .btn-unit > input[type=button][name=next],
.btn-box .btn-unit > input[type=button][name=nextpage],
.btn-box .btn-unit > button[name=next],
.btn-box .btn-unit > button[name=nextpage] {
  background-color: #bf0000;
}
.btn-box .btn-unit > input[type=submit][name=back], .btn-box .btn-unit > input[type=submit][name=backpage],
.btn-box .btn-unit > input[type=button][name=back],
.btn-box .btn-unit > input[type=button][name=backpage],
.btn-box .btn-unit > button[name=back],
.btn-box .btn-unit > button[name=backpage] {
  background-color: #7e7e7e;
}
.btn-box .btn-unit > input[type=submit]:hover,
.btn-box .btn-unit > input[type=button]:hover,
.btn-box .btn-unit > button:hover {
  opacity: 0.8;
}
.btn-box .progress-unit {
  flex-basis: 12%;
  width: 12%;
  margin-bottom: 15px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

input[type=submit],
input[type=button],
button {
  box-sizing: border-box;
  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;
  border-radius: 5px;
  border-style: none;
  text-align: center;
  cursor: pointer;
}

/** パーツ **/
input,
select,
textarea {
  box-sizing: border-box;
}

input[type=text],
input[type=password] {
  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-size: 1rem;
  border: 2px solid #888;
  padding: 5px;
  border-radius: 2px;
}
input[type=text].txt_ss,
input[type=password].txt_ss {
  width: 30%;
}
input[type=text].txt_s,
input[type=password].txt_s {
  width: 50%;
}
input[type=text].txt_m,
input[type=password].txt_m {
  width: 70%;
}
input[type=text].txt_l,
input[type=password].txt_l {
  width: 85%;
}
input[type=text].txt_max,
input[type=password].txt_max {
  width: 100%;
}
input[type=text] + label,
input[type=password] + label {
  padding-left: 4px;
}

select {
  width: 100%;
  padding: 5px;
  font-size: 1rem;
}

textarea {
  width: 100%;
  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-size: 1rem;
  border-radius: 2px;
  border: 2px solid #888;
  margin-right: auto;
  min-height: 2em;
  resize: vertical;
}

_:-ms-lang(x)::-ms-backdrop,
textarea {
  height: 90px;
}

/*
--------------------
checkbox
--------------------
*/
.form-check {
  width: 100%;
  margin-bottom: 5px;
}

label.form-checkbox,
label.form-radio {
  transition: 0.3s ease-in all;
  border: 2px solid #ddd;
  border-radius: 2px;
  margin-bottom: 4px;
  background-color: #f7f7f7;
  box-shadow: 0px 1px 5px -2px #b8b8b8;
  line-height: 1.3;
}
label.form-checkbox:hover:not(.disabled),
label.form-radio:hover:not(.disabled) {
  background-color: aliceblue;
  border-color: #cecece;
  transition: 20ms ease-in background-color;
}
label.form-checkbox.active,
label.form-radio.active {
  background-color: #ffeadd;
  border-color: rgb(193, 193, 193);
  box-shadow: 0px 1px 7px -1px #b1b1b1;
}
label.form-checkbox.active:hover,
label.form-radio.active:hover {
  background-color: #ffeadd;
}
label.form-checkbox.disabled,
label.form-radio.disabled {
  opacity: 0.6;
  background-color: #c9c9cb;
  border-color: #a8a8a8;
}
label.form-checkbox .form-checkbox-icon,
label.form-checkbox .form-radio-icon,
label.form-radio .form-checkbox-icon,
label.form-radio .form-radio-icon {
  transition: 0.25s;
}

label.form-checkbox {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  cursor: pointer;
  padding: 8px;
  padding-right: 5px;
  width: 100%;
}
label.form-checkbox .form-checkbox-icon {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 1.25em;
  height: 1.25em;
  border: 2px solid #9d9d9d;
  background-color: #fff;
  border-radius: 0.1em;
  z-index: 4;
}
label.form-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  top: 8px;
  left: 8px;
  width: 1.4em;
  height: 1.4em;
  margin: 0;
  font-size: 1em;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  box-sizing: border-box;
  z-index: 2;
}
label.form-checkbox input[type=checkbox]:focus {
  opacity: 1;
}
label.form-checkbox input[type=checkbox]:focus-visible {
  outline: 0;
}
label.form-checkbox input[type=checkbox]:focus-visible + .form-checkbox-icon {
  box-shadow: 0px 0px 2px 3px #ffb1b1;
}
label.form-checkbox input[type=checkbox]:disabled + .form-checkbox-icon {
  border: 2px solid rgb(200, 200, 203);
  background-color: rgb(200, 200, 203);
  opacity: 0.5;
  cursor: not-allowed;
}
label.form-checkbox input[type=checkbox]:disabled + .form-checkbox-icon + .form-checkbox-label {
  opacity: 0.7;
  cursor: not-allowed;
}
label.form-checkbox input[type=checkbox]:checked + .form-checkbox-icon {
  background: #7a7a7a;
  border: 2px solid #7a7a7a;
}
label.form-checkbox input[type=checkbox]:checked + .form-checkbox-icon:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 30%;
  height: 60%;
  border-bottom: 0.2em solid #fff;
  border-right: 0.2em solid #fff;
  transform: translate(-50%, 0) rotate(45deg);
}
label.form-checkbox .form-checkbox-label {
  display: inline-block;
  position: relative;
  padding-left: calc(1.95em + 5px);
  z-index: 3;
  width: 100%;
  box-sizing: border-box;
}
label.form-checkbox .form-checkbox-label > .form-checkbox-label-num {
  font-weight: bold;
  padding-right: 8px;
}

_:-ms-lang(x)::-ms-backdrop,
label.form-checkbox {
  line-height: 0 !important;
}

_:-ms-lang(x)::-ms-backdrop,
label.form-checkbox input[type=checkbox] {
  top: 9px;
  left: 9px;
  width: 1.35em;
  height: 1.35em;
}

_:-ms-lang(x)::-ms-backdrop,
label.form-checkbox input[type=checkbox]:focus {
  opacity: 1;
}

_:-ms-lang(x)::-ms-backdrop,
label.form-checkbox input[type=checkbox].focus-visible {
  outline: 0;
}

_:-ms-lang(x)::-ms-backdrop,
label.form-checkbox input[type=checkbox].focus-visible + .form-checkbox-icon {
  box-shadow: 0px 0px 2px 3px #ffb1b1;
}

_::-webkit-full-page-media,
_:future,
:root label.form-checkbox input[type=checkbox].focus-visible {
  outline: 0;
}

_::-webkit-full-page-media,
_:future,
:root label.form-checkbox input[type=checkbox].focus-visible + .form-checkbox-icon {
  box-shadow: 0px 0px 2px 3px #ffb1b1;
}

/*
--------------------
radio
--------------------
*/
label.form-radio {
  width: 100%;
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding: 8px;
  padding-right: 5px;
  box-sizing: border-box;
}
label.form-radio .form-radio-icon {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 20px;
  height: 20px;
  border: 2px solid #9d9d9d;
  background-color: #fff;
  border-radius: 50%;
  z-index: 4;
}
label.form-radio input[type=radio] {
  position: absolute;
  opacity: 0;
  top: 10px;
  left: 10px;
  width: 1.5em;
  height: 1.5em;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  z-index: 2;
}
label.form-radio input[type=radio]:focus {
  opacity: 1;
}
label.form-radio input[type=radio]:focus-visible {
  outline: 0;
}
label.form-radio input[type=radio]:focus-visible + .form-radio-icon {
  box-shadow: 0px 0px 2px 3px #ffb1b1;
}
label.form-radio input[type=radio]:disabled + .form-radio-icon {
  border: 2px solid #9d9d9d;
  background-color: #fff;
  opacity: 0.5;
  cursor: not-allowed;
}
label.form-radio input[type=radio]:disabled + .form-radio-icon + .form-radio-label {
  opacity: 0.7;
  cursor: not-allowed;
}
label.form-radio input[type=radio]:checked + .form-radio-icon {
  background: #fff;
  border: 2px solid #7a7a7a;
}
label.form-radio input[type=radio]:checked + .form-radio-icon:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background-color: #7a7a7a;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
label.form-radio .form-radio-label {
  position: relative;
  padding-left: calc(1.95em + 5px);
  z-index: 3;
  line-height: 2;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
}
label.form-radio .form-radio-label > .form-radio-label-num {
  font-weight: bold;
  padding-right: 8px;
}

_:-ms-lang(x)::-ms-backdrop,
label.form-radio {
  line-height: 0 !important;
}

_:-ms-lang(x)::-ms-backdrop,
label.form-radio input[type=radio] {
  top: 8px;
  left: 9px;
  width: 1.4em;
  height: 1.4em;
}

_:-ms-lang(x)::-ms-backdrop,
label.form-radio input[type=radio]:focus {
  opacity: 1;
}

_:-ms-lang(x)::-ms-backdrop,
label.form-radio input[type=radio].focus-visible {
  outline: 0;
}

_:-ms-lang(x)::-ms-backdrop,
label.form-radio input[type=radio].focus-visible + .form-radio-icon {
  box-shadow: 0px 0px 2px 3px #ffb1b1;
}

_::-webkit-full-page-media,
_:future,
:root label.form-radio input[type=radio].focus-visible {
  outline: 0;
}

_::-webkit-full-page-media,
_:future,
:root label.form-radio input[type=radio].focus-visible + .form-radio-icon {
  box-shadow: 0px 0px 2px 3px #ffb1b1;
}

/*スライダー*/
.form-slider {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 10px;
  padding: 10px 0;
  border: 2px solid #ddd;
  border-radius: 2px;
  background: #f7f7f7;
  box-shadow: 0px 1px 5px -2px #b8b8b8;
}

.slider-box {
  width: auto;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  padding-top: 28px;
}
.slider-box.readonly .slider-check {
  border-color: #6c6b6b !important;
}
.slider-box .slider-check {
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: calc((100% - 24px) / 10);
  height: 13px;
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
  position: relative;
}
.slider-box .slider-check:first-of-type {
  border: 0;
  width: 12px;
}
.slider-box .slider-check:nth-of-type(2) {
  border-left: 2px solid #000;
}
.slider-box .slider-check:nth-last-of-type(2) {
  border-right: 2px solid #000;
}
.slider-box .slider-check:last-of-type {
  border: 0;
  width: 12px;
}
.slider-box .slider-check:last-of-type label.slider-radio {
  position: absolute;
  top: -2em;
  left: -11px;
}
.slider-box .slider-check label.slider-radio {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: block;
  position: relative;
  top: -24px;
  right: 50%;
  transition: 0.25s;
  width: 1.5em;
  height: 1.5em;
  background-color: transparent;
  z-index: 4;
  text-align: center;
}
.slider-box .slider-check .slider-radio-icon {
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: transparent;
  color: rgb(0, 0, 0);
}
.slider-box .slider-check input[type=radio] {
  position: absolute;
  opacity: 0;
  top: -2em;
  left: -11px;
  width: 1.5em;
  height: 1.5em;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  z-index: 2;
}
.slider-box .slider-check input[type=radio]:disabled + label.slider-radio > .slider-radio-icon {
  cursor: auto;
  color: #6c6b6b;
}
.slider-box .slider-check input[type=radio]:checked + label.slider-radio > .slider-radio-icon {
  background: #009fff;
  /* border: 2px solid #9b9b9b; */
  color: #fff;
}
.slider-box .slider-check input[type=radio]:focus {
  opacity: 1;
}

.slider-val-box {
  width: 100%;
  padding: 10px;
  margin: 0 0 14px;
  font-size: 14pt;
  display: flex;
  justify-content: end;
  box-sizing: border-box;
}
.slider-val-box select.slider-val {
  width: 94px;
  font-size: 16px;
  box-sizing: border-box;
  border: 2px solid #888;
  border-radius: 2px;
  background: #fff;
  padding: 6px 4px;
}

.slider-lbl-box {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 40px;
  padding: 10px;
  box-sizing: border-box;
}
.slider-lbl-box.readonly {
  color: #6c6b6b;
}
.slider-lbl-box .slider-lbl-unit {
  width: auto;
  margin: 0;
  padding: 3px 1px;
  font-size: 10pt;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.slider-lbl-box .slider-lbl-unit::before {
  content: "(";
}
.slider-lbl-box .slider-lbl-unit::after {
  content: ")";
}

_:-ms-lang(x)::-ms-backdrop,
.slider-box .slider-check input[type=radio]:focus {
  opacity: 0;
}

/*入力欄*/
.form-input {
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  transition: 0.3s ease-in all;
  border: 2px solid #ddd;
  border-radius: 2px;
  margin-bottom: 10px;
  background-color: #f7f7f7;
  box-shadow: 0px 1px 5px -2px #b8b8b8;
  text-align: left;
  padding: 16px 12px;
  cursor: auto;
  line-height: 1.5;
  pointer-events: none;
}
.form-input > .cont_fa {
  margin-top: 0;
}
.form-input > .cont_fa:not(.num):not(.free)::before {
  content: "その他の内容";
  display: block;
  color: #888;
  font-size: 16px;
  padding: 3px;
  pointer-events: auto;
}
.form-input > .cont_fa:not(.num):not(.free)::after {
  content: none;
}
.form-input > .cont_fa > input[type=text],
.form-input > .cont_fa > textarea {
  width: 100%;
  margin: 0;
  pointer-events: auto;
}
.form-input > .cont_zipcode {
  margin-top: 0;
}
.form-input > .cont_zipcode::before {
  content: "半角数字7桁（ハイフン無し）";
  display: block;
  color: #888;
  font-size: 16px;
  padding: 3px;
  pointer-events: auto;
}
.form-input > .cont_zipcode::after {
  content: none;
}
.form-input > .cont_zipcode > input[type=text],
.form-input > .cont_zipcode > textarea {
  width: 150px;
  margin: 0;
  pointer-events: auto;
}
.form-input input[type=text],
.form-input textarea {
  pointer-events: auto;
}

/*確認画面トップ*/
.confirm_note {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 35px;
  padding: 0 2.5%;
  text-align: left;
  line-height: 150%;
}

.btn_footer {
  box-sizing: border-box;
  width: 100%;
  max-width: 850px;
}
.btn_footer .confirm_note {
  margin-bottom: 155px;
}

@media only screen and (max-width: 383.99px) {
  .space-over-m {
    display: none;
  }
}
@media only screen and (max-width: 450.99px) {
  .space-over-l {
    display: none;
  }
}
@media only screen and (min-width: 384px) {
  br.br-m {
    display: none;
  }
}
@media only screen and (min-width: 451px) {
  br.br-l {
    display: none;
  }
}
.snap-cont {
  scroll-snap-type: y mandatory;
}

.snap {
  scroll-snap-align: start;
  scroll-behavior: smooth;
}

form[name=form_confirm] {
  scroll-snap-type: y mandatory;
}
form[name=form_confirm] > div .q_box {
  scroll-snap-align: start;
  scroll-behavior: smooth;
}
form[name=form_confirm] ul {
  box-sizing: border-box;
  padding-left: 2em;
  margin: 8px 0;
}
form[name=form_confirm] ul > li {
  box-sizing: border-box;
}
form[name=form_confirm] ul > li > ul {
  padding-left: 10px;
  list-style: none;
}
form[name=form_confirm] ul > li > ul > li {
  list-style: none;
  width: calc(100% - 2em);
  border: 2px solid #a5a5a5;
  border-radius: 2px;
  background: #fff;
}
/* form[name=form_confirm] ul > li > ul > li::before {
  display: block;
  padding: 3px 8px;
  box-sizing: border-box;
  content: "変更後";
  font-weight: normal;
  font-size: 0.975rem;
  text-align: left;
  width: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #e7f9fb;
  color: #1967d2;
  border-bottom: 2px solid #cfdfe1;
} */
form[name=form_confirm] ul > li > ul > li span {
  display: block;
  font-size: 1em;
  padding: 6px 8px;
}

form[name=index] .q_box {
  max-width: 600px;
  margin-bottom: 10px;
}
form[name=index] .q_box .q_input {
  margin-top: 20px;
}
form[name=index] .q_box .q_input .part {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 10px;
}
form[name=index] .q_box .q_input .part label {
  width: 11em;
}
form[name=index] .q_box .q_input .part.part-btn {
  width: 100%;
  margin-top: 30px;
  justify-content: center;
}
form[name=index] .q_box .q_input input[type=button],
form[name=index] .q_box .q_input button {
  border: 2px solid #bf0000;
  background-color: rgb(255, 255, 255);
  color: #bf0000;
}
form[name=index] .q_box .q_input input[type=button]:hover,
form[name=index] .q_box .q_input button:hover {
  opacity: 0.8;
  position: relative;
  top: 1px;
}/*# sourceMappingURL=base.css.map */