@charset "UTF-8";
@keyframes MsgShow {
  0% {
    opacity: 0.1;
    transform: scaleY(0);
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/***** 全体のレイアウト ******/
html {
  font-size: 18px;
  scroll-behavior: smooth;
}

* {
  line-height: 1.6;
  letter-spacing: 0.03em;
  font-feature-settings: "palt";
}

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

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

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

body,
form,
table {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDGothic", "Noto Sans JP", Meiryo, "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
  margin: 0;
}

input,
textarea {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDGothic", "Noto Sans JP", Meiryo, "Helvetica Neue", Arial, sans-serif;
  box-sizing: border-box;
}

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

/*背景色*/
.err {
  background-color: rgb(255, 209, 209) !important;
}

.err.notice {
  background-color: rgb(255, 227, 203) !important;
}

input[type=text].err-sub,
input[type=number].err-sub,
textarea.err-sub,
select.err-sub {
  background-color: rgb(255, 209, 209) !important;
}
input[type=text][disabled],
input[type=number][disabled],
textarea[disabled],
select[disabled] {
  background-color: #ddd !important;
  color: #ddd;
}

/* テキスト使用不可 */
.q_input input[type=text].disabled-text,
.q_input textarea.disabled-text {
  background-color: #999;
}

/* セレクトボックス使用不可 */
.q_input select.disabled-select {
  background-color: #bbb;
}

.hidden {
  display: none !important;
  opacity: 0;
}

.visible {
  animation: MsgShow 0.5s ease 0s 1 normal;
}

label.disabled {
  color: #999 !important;
  cursor: not-allowed !important;
}

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

.sp_blue {
  color: #0d4a9b;
}

.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;
}

/**見出し**/
.head1 {
  font-weight: normal;
  margin: 10px 0 12px;
}

.head2 {
  padding: 5px;
  color: #000000;
  font-weight: 700;
}

.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;
}

.head-grey {
  background-color: lightgrey;
}

/***** 大問 *****/
.par_title {
  box-sizing: border-box;
  width: 100%;
  margin: 20px 0;
  padding: 5px 8px;
  background-color: #004082;
  color: white;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDGothic", Meiryo, "Helvetica Neue", Arial, sans-serif;
  text-align: left;
}
.par_title.futai {
  font-size: 1.075rem;
  font-weight: bold;
  padding: 8px;
  background-color: #990505;
  text-align: center;
}

.par2_title {
  display: flex;
  font-weight: bold;
  font-size: 1.2rem;
}

form[name=form_confirm] .par2_title {
  font-size: 1.3rem;
}

.sub_title {
  display: inline-block;
  box-sizing: border-box;
  max-width: 975px;
  width: 100%;
  padding: 4px 1em;
  background-color: #dfdfdf;
  text-decoration: underline;
  text-align: left;
}

.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_input {
  box-sizing: border-box;
}

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

.q_box {
  flex-flow: row wrap;
  max-width: 100%;
  width: 100%;
  margin-bottom: 30px;
}
.q_box.hidden {
  transform: scaleY(0);
}
.q_box .q_edit {
  padding-bottom: 10px;
}
.q_box .q_title {
  flex-flow: row;
  width: 100%;
  flex-basis: 100%;
  background: #f4f2f0;
  color: #000;
  justify-content: space-between;
}
.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 .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;
}
.q_box .q_input .col1 .cont_fa,
.q_box .q_input .col2 .cont_fa,
.q_box .q_input .col3 .cont_fa {
  margin-top: 4px;
}
.q_box .q_input .col1 .cont_fa.num > input[type=text].txt_num,
.q_box .q_input .col2 .cont_fa.num > input[type=text].txt_num,
.q_box .q_input .col3 .cont_fa.num > input[type=text].txt_num {
  margin-left: 3px;
  margin-right: 3px;
}
.q_box .q_input .col1 .cont_fa:not(.num),
.q_box .q_input .col2 .cont_fa:not(.num),
.q_box .q_input .col3 .cont_fa:not(.num) {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.q_box .q_input .col1 .cont_fa:not(.num)::before,
.q_box .q_input .col2 .cont_fa:not(.num)::before,
.q_box .q_input .col3 .cont_fa:not(.num)::before {
  content: "（";
  display: inline;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.q_box .q_input .col1 .cont_fa:not(.num)::after,
.q_box .q_input .col2 .cont_fa:not(.num)::after,
.q_box .q_input .col3 .cont_fa:not(.num)::after {
  content: "）";
  display: inline;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.q_box .q_input .col1 .cont_fa:not(.num) > input[type=text],
.q_box .q_input .col2 .cont_fa:not(.num) > input[type=text],
.q_box .q_input .col3 .cont_fa:not(.num) > input[type=text] {
  pointer-events: auto;
  padding: 2px;
  margin-left: 3px;
  margin-right: 3px;
}
.q_box .q_input .col1 .select-box,
.q_box .q_input .col2 .select-box,
.q_box .q_input .col3 .select-box {
  display: flex;
  width: 100%;
}
.q_box .q_input .col1 .select-box select,
.q_box .q_input .col2 .select-box select,
.q_box .q_input .col3 .select-box select {
  width: auto;
  max-width: 220px;
}
.q_box .q_input .col1 .select-box.child,
.q_box .q_input .col2 .select-box.child,
.q_box .q_input .col3 .select-box.child {
  display: none;
}
.q_box .q_input .col1 .select-box.child.show,
.q_box .q_input .col2 .select-box.child.show,
.q_box .q_input .col3 .select-box.child.show {
  padding: 4px;
  display: inline-block;
}

.opt-box {
  display: flex;
  width: 100%;
}

.opt-row {
  display: flex;
  flex-flow: row wrap;
  flex-basis: 100%;
  justify-content: flex-start;
  padding: 8px 4px;
  border: 1px solid #111;
}
.opt-row.confirm {
  flex-flow: column wrap;
}

.opt-column {
  font-size: 0.95rem;
  padding: 4px 6px;
  box-sizing: border-box;
}
.opt-column.six.wide {
  width: 50%;
}
.opt-column.four.wide {
  width: 33.3333333333%;
}
.opt-column.twelve.wide {
  width: 100%;
}

/* Chrome/Safari */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/**テーブル**/
table {
  box-sizing: border-box;
}
table.matrix_table {
  border: 0;
  width: 100%;
}
table.matrix_table > tbody > tr td:empty {
  width: 20px;
  padding: 0;
  background-color: #fff;
  border: 0;
}
table.matrix_table > tbody > tr:nth-child(2n) {
  background-color: rgb(233, 244, 253);
}
table.matrix_table .matrix_num {
  width: 4%;
  text-align: center;
  border: 1px solid #a7a7a7;
}
table.matrix_table .matrix_str {
  text-align: left;
  min-width: 28%;
  border: 1px solid #a7a7a7;
}
table.matrix_table .matrix_col {
  width: 64px;
  text-align: center;
  padding: 0;
  border: 1px solid #a7a7a7;
}
table.matrix_table .matrix_col label {
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  padding: 8px;
}
table.matrix_table .matrix_col label[for] {
  cursor: pointer;
}
table.matrix_table .matrix_col label[for]:hover {
  background-color: mintcream;
}
table.matrix_table .matrix_col input[type=radio] {
  width: 15.3px;
  height: 15.3px;
  cursor: pointer;
}
table.matrix_table .matrix_col_text {
  width: 68%;
  text-align: center;
  padding: 8px 8px 0px;
  border: 1px solid #a7a7a7;
}
table.matrix_table .matrix_col_text.confirm {
  text-align: left;
  line-height: 1.4;
  padding: 8px;
}
table.matrix_table .matrix_head {
  border: 1px solid #a7a7a7;
  padding: 4px;
  text-align: center;
}
table.matrix_table .matrix_head_col {
  border: 1px solid #a7a7a7;
}
table.matrix_table .matrix_head_col div {
  font-size: 0.95em;
  text-align: center;
  writing-mode: vertical-rl;
  height: 10em;
  margin: auto;
}
table.tbl1 {
  width: 100%;
}
table.tbl1 tr td {
  vertical-align: baseline;
}
table.word-table {
  width: 100%;
  margin-top: 24px;
  font-size: 0.9rem;
}
table.word-table > tbody > tr td,
table.word-table > tbody > tr th {
  text-align: left;
  box-sizing: border-box;
  vertical-align: top;
  padding: 4px 0;
}
table.word-table > tbody > tr td *,
table.word-table > tbody > tr th * {
  line-height: 1.4;
}
table.word-table > tbody > tr > td {
  padding-left: 2px;
}
table label.form-checkbox {
  line-height: 1;
  display: inline-block;
}
table label.form-radio {
  display: inline-block;
  line-height: 1.3;
}
table label.form-radio .form-radio-icon {
  left: 2px;
}
table label.form-radio input[type=radio] {
  opacity: 1;
}
table input[type=number],
table input[type=text] {
  min-width: 40px;
  padding: 0.3em 6px;
}
table select {
  min-width: 40px;
}

.matrix.desktop, .matrix.tablet {
  display: block;
}
.matrix.sp {
  display: none;
}

.rank_box {
  display: flex;
  flex-flow: column;
}
.rank_box .rank1,
.rank_box .rank2,
.rank_box .rank3 {
  padding: 4px;
  text-align: left;
  margin-bottom: 4px;
}
.rank_box .rank1 label,
.rank_box .rank2 label,
.rank_box .rank3 label {
  display: inline-block;
  width: 10em;
  max-width: 100%;
}
.rank_box .rank1 select,
.rank_box .rank2 select,
.rank_box .rank3 select {
  width: 520px;
  max-width: 100%;
}

@media screen and (max-width: 650px) {
  .matrix.desktop, .matrix.tablet {
    display: none;
  }
  .matrix.sp {
    display: block;
  }
  .matrix.sp .matrix_box {
    margin-bottom: 20px;
  }
  .matrix.sp .matrix_box .matrix_title {
    box-sizing: border-box;
    border-bottom: 1px solid #949494;
    display: flex;
    font-weight: bold;
  }
  .matrix.sp .matrix_box .matrix_title .matrix_num {
    box-sizing: border-box;
    width: 7%;
    padding: 4px;
    padding-right: 6px;
    text-align: center;
  }
  .matrix.sp .matrix_box .matrix_title .matrix_str {
    box-sizing: border-box;
    padding: 4px;
    width: 93%;
  }
  .matrix.sp .matrix_box .matrix_input {
    box-sizing: border-box;
    width: 100%;
    padding: 0 4px;
    display: flex;
    flex-flow: column;
  }
  .matrix.sp .matrix_box .matrix_input_col {
    padding-top: 8px;
  }
  .matrix.sp .matrix_box .matrix_input_col label {
    font-size: 0.975em;
    font-weight: bold;
  }
  .matrix.sp .matrix_box .matrix_input_col select {
    margin-top: 2px;
  }
  .matrix.sp .matrix_box .matrix_title {
    background-color: rgb(233, 244, 253);
  }
  .q_box .q_input .cont_fa {
    display: flex;
    flex-flow: column;
    color: #444;
  }
  .q_box .q_input .cont_fa::after, .q_box .q_input .cont_fa::before {
    content: none !important;
  }
  .q_box .q_input .cont_fa > input[type=text].txt_fa, .q_box .q_input .cont_fa > input[type=text].txt_fa2 {
    box-sizing: border-box;
    max-width: 720px;
    margin: 0 !important;
    width: 100%;
  }
}
/** パーツ **/
input,
select,
textarea {
  box-sizing: border-box;
}

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

textarea {
  width: 100%;
  font-size: 1rem;
  margin-right: auto;
  resize: vertical;
}

input[type=text].text-input {
  width: 100%;
  border: 1px solid #999;
  padding: 4px 8px;
  border-radius: 2px;
  background-color: #fff;
}

/*
--------------------
checkbox
--------------------
*/
.form-check {
  width: 100%;
}

label.form-checkbox {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  display: inline-flex;
  align-items: baseline;
  cursor: pointer;
  line-height: 1.5;
}
label.form-checkbox:hover {
  background-color: #f2fcff;
}
label.form-checkbox .form-checkbox-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  border: 0.0625rem solid #000;
  background-color: #fff;
  border-radius: 0.1em;
  z-index: 4;
}
label.form-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 1;
  width: 18px;
  height: 18px;
  top: 0;
  left: 0;
}
label.form-checkbox input[type=checkbox]:disabled + .form-checkbox-icon {
  border: 0.0625rem 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 {
  cursor: not-allowed;
}
label.form-checkbox input[type=checkbox]:checked + .form-checkbox-icon {
  background: #04c;
  border: 0.0625rem solid #04c;
}
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 input[type=checkbox]:focus {
  opacity: 1;
}
label.form-checkbox .form-checkbox-label {
  display: inline-block;
  position: relative;
  padding-left: calc(1em + 18px);
  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 input[type=checkbox] {
  top: 0;
  left: 0;
  width: 1.35em;
  height: 1.35em;
}

/*
--------------------
radio
--------------------
*/
label.form-radio {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  cursor: pointer;
  width: 100%;
  line-height: 1.5;
}
label.form-radio:hover {
  background-color: #f2fcff;
}
label.form-radio input[type=radio] {
  position: absolute;
  opacity: 1;
  width: 18px;
  height: 18px;
}
label.form-radio input[type=radio]:disabled + .form-radio-icon {
  border: 1px solid #000;
  background-color: #fff;
  opacity: 0.5;
  cursor: not-allowed;
}
label.form-radio input[type=radio]:disabled + .form-radio-icon + .form-radio-label {
  cursor: not-allowed;
}
label.form-radio input[type=radio]:checked + .form-radio-icon {
  background: #fff;
  border: 1px solid #04c;
}
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: #04c;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
label.form-radio input[type=radio]:focus {
  opacity: 1;
}
label.form-radio .form-radio-label {
  position: relative;
  padding-left: calc(1em + 18px);
  width: 100%;
  z-index: 3;
  line-height: 2;
  display: inline-block;
}
label.form-radio .form-radio-label > .form-radio-label-num {
  font-weight: bold;
  padding-right: 8px;
}

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

[id^=move] {
  padding-top: 3px;
}
[id^=move]:empty {
  padding-top: 5px;
}

.sp_indent {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDGothic", Meiryo, "Helvetica Neue", Arial, sans-serif;
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
}

.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  color: #fff;
  background: #282928;
  border: solid 2px #282928;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  opacity: 0;
  filter: drop-shadow(0px 5px 3px #999);
}
.pagetop.show {
  animation: show 0.5s ease 0s 1 forwards;
}
.pagetop:hover {
  filter: drop-shadow(0px 5px 4px #888);
}
.pagetop .pagetop__arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateY(20%) rotate(-45deg);
}

.index_note {
  margin-bottom: 24px;
  padding: 8px;
}

.login {
  padding-top: 12px;
  display: flex;
  justify-content: center;
}
.login label {
  display: inline-block;
  width: 4em;
}

.confirm_note {
  margin: 0 auto !important;
}/*# sourceMappingURL=base.css.map */