@charset "UTF-8";
* {
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
}

body {
  font-family: Verdana, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
}

ul {
  margin-top: 0;
  margin-bottom: 0;
}

:-ms-input-placeholder {
  color: #AAA;
}

a:link,
a:visited {
  color: #1565C0;
}

a:hover {
  color: #C62828;
}

input[type=text],
input[type=password],
textarea {
  margin: 0;
  padding: 4px 8px;
  background-color: #FFF;
  border: 1px solid #999;
  font-family: Verdana, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
}
input[type=text]:read-only,
input[type=password]:read-only,
textarea:read-only {
  background-color: #EEE;
}
input[type=text]:disabled,
input[type=password]:disabled,
textarea:disabled {
  background-color: #F7F7F7;
  border-color: #CCC;
  color: #A0A0A0;
}
input[type=text]:focus,
input[type=password]:focus,
textarea:focus {
  border-color: #F7677B;
  outline: none;
}

input[type=radio] {
  position: relative;
  margin-top: 0.2em;
  width: 1em;
  height: 1em;
  background-color: #FFF;
  border: 1px solid #999;
  border-radius: 1.5em;
  -webkit-appearance: button;
  appearance: button;
  content: "";
}
input[type=radio]:hover {
  border-color: #FFDEDE;
}
input[type=radio]:focus {
  outline-color: rgba(255, 222, 222, 0.7);
}
input[type=radio]:checked::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -0.25em;
  margin-top: -0.25em;
  width: 0.5em;
  height: 0.5em;
  background: #FFDEDE;
  border-radius: 1em;
  content: "";
}
input[type=radio]:checked:disabled::after {
  background-color: #CCC;
}
input[type=radio]:disabled {
  border-color: #CCC;
}
input[type=radio] + label {
  margin-left: 4px;
  margin-right: 8px;
}
input[type=radio]:disabled + label {
  color: #CCC;
}

label > input[type=radio] {
  margin-right: 4px;
}

input[type=checkbox] {
  position: relative;
  margin-top: 0.2em;
  width: 1em;
  height: 1em;
  background-color: #FFF;
  border: 1px solid #999;
  -webkit-appearance: button;
  appearance: button;
  content: "";
}
input[type=checkbox]:hover {
  border-color: #FFDEDE;
}
input[type=checkbox]:focus {
  outline-color: rgba(255, 222, 222, 0.7);
}
input[type=checkbox]:checked::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 60%;
  margin-left: -0.3em;
  margin-top: -0.3em;
  border-right: 2px solid #FFDEDE;
  border-bottom: 2px solid #FFDEDE;
  content: "";
  width: 0.2em;
  height: 0.5em;
  -webkit-transform: translate(0.06em, -0.15em) rotate(45deg);
      -ms-transform: translate(0.06em, -0.15em) rotate(45deg);
          transform: translate(0.06em, -0.15em) rotate(45deg);
}
input[type=checkbox]:indeterminate::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1px;
  margin-left: 20%;
  border-top: 2px solid #FFDEDE;
  width: 60%;
  content: "";
}
input[type=checkbox]:disabled {
  border-color: #CCC;
}
input[type=checkbox]:disabled:checked::after {
  border-color: #CCC;
}
input[type=checkbox] + label {
  margin-left: 0.2em;
}
input[type=checkbox]:disabled + label {
  color: #CCC;
}

label > input[type=checkbox] {
  margin-right: 0.1em;
}

label + input,
label + label {
  margin-left: 12px;
}

select {
  padding: 2px 4px;
  border: 1px solid #999;
  font-family: Verdana, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
select:focus {
  outline-color: rgba(255, 222, 222, 0.7);
}
select:disabled {
  border-color: #CCC;
  color: #A0A0A0;
}

.mn_common_button, .mn_common_alt_button, .mn_common_del_button {
  position: relative;
  padding-left: 1em;
  padding-right: 1em;
  border: 1px solid #AA3C4B;
  border-radius: 3px;
  color: #AA3C4B;
  font-weight: bold;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  background-color: #FFC1C1;
  background-image: -webkit-linear-gradient(270deg, #FFE6E6 0%, #FFC1C1 100%);
  background-image: linear-gradient(180deg, #FFE6E6 0%, #FFC1C1 100%);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
.mn_common_button.mn_size_large, .mn_size_large.mn_common_alt_button, .mn_size_large.mn_common_del_button {
  padding: 8px 16px;
  font-size: 18px;
}
.mn_common_button.mn_size_medium, .mn_size_medium.mn_common_alt_button, .mn_size_medium.mn_common_del_button {
  padding: 4px 8px;
  font-size: 16px;
}
.mn_common_button.mn_size_small, .mn_size_small.mn_common_alt_button, .mn_size_small.mn_common_del_button {
  font-size: 11px;
  padding: 1px 4px;
  border-radius: 0;
}
.mn_common_button:hover:enabled, .mn_common_alt_button:hover:enabled, .mn_common_del_button:hover:enabled {
  color: #9c1f1f;
  color: #F7677B;
}
.mn_common_button:focus, .mn_common_alt_button:focus, .mn_common_del_button:focus {
  outline: none;
  box-shadow: 0 0 3px #F7677B;
}
.mn_common_button:active, .mn_common_alt_button:active, .mn_common_del_button:active {
  position: relative;
  top: 1px;
  text-shadow: none;
  background-image: -webkit-linear-gradient(270deg, #FFC1C1 0%, #FFE6E6 100%);
  background-image: linear-gradient(180deg, #FFC1C1 0%, #FFE6E6 100%);
  box-shadow: 0 0 1px #F7677B;
  box-shadow: none;
}
.mn_common_button:disabled, .mn_common_alt_button:disabled, .mn_common_del_button:disabled {
  color: #999;
  border-color: #999;
  background-color: #CCC;
  background-image: -webkit-linear-gradient(270deg, #eaeaea 0%, #d2d2d2 100%);
  background-image: linear-gradient(180deg, #eaeaea 0%, #d2d2d2 100%);
  box-shadow: 0 1px 0px rgba(0, 0, 0, 0.1);
}
.mn_common_button i.fa, .mn_common_alt_button i.fa, .mn_common_del_button i.fa {
  padding-right: 0.5em;
}

.mn_common_alt_button {
  background-image: -webkit-linear-gradient(270deg, white 0%, #cccccc 100%);
  background-image: linear-gradient(180deg, white 0%, #cccccc 100%);
}
.mn_common_alt_button:active {
  background-image: -webkit-linear-gradient(90deg, white 0%, #cccccc 100%);
  background-image: linear-gradient(0deg, white 0%, #cccccc 100%);
}

.mn_common_del_button {
  background-image: -webkit-linear-gradient(270deg, #ff6688 0%, #ff0022 100%);
  background-image: linear-gradient(180deg, #ff6688 0%, #ff0022 100%);
}
.mn_common_del_button:hover:enabled {
  color: #EEE;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
}
.mn_common_del_button:active {
  background-image: -webkit-linear-gradient(90deg, #ff6688 0%, #ff0022 100%);
  background-image: linear-gradient(0deg, #ff6688 0%, #ff0022 100%);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5) !important;
}

.mn_common_page_container {
  margin: 0;
  padding: 0;
}

.mn_common_page_header {
  margin-bottom: 10px;
  background-color: #FFDEDE;
  box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.2);
}
.mn_common_page_header table {
  width: 100%;
  padding: 8px 20px 8px 20px;
  border-collapse: separate;
  border-spacing: 0px;
}
.mn_common_page_header table a {
  color: #FFF !important;
}
.mn_common_page_header table td.mn_header_title {
  padding: 4px 0;
  color: #AA3C4B;
  font-size: 24px;
  font-weight: bold;
  white-space: nowrap;
  letter-spacing: 0.1em;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
.mn_common_page_header table td.mn_header_user {
  width: 1%;
  padding: 2px 16px;
  color: #FFF;
  text-align: center;
  white-space: nowrap;
}
.mn_common_page_header table td.mn_header_user:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.mn_common_page_header table td.mn_header_user + td.mn_header_help {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.mn_common_page_header table td.mn_header_user > .mn_userid i.fa {
  font-size: 100%;
}
.mn_common_page_header table td.mn_header_user > .mn_userfunc {
  padding-top: 2px;
}
.mn_common_page_header table td.mn_header_user > .mn_userfunc > a {
  padding: 0 8px;
  font-size: 12px;
}
.mn_common_page_header table td.mn_header_user > .mn_userfunc > a:first-child {
  padding-left: 0;
}
.mn_common_page_header table td.mn_header_user > .mn_userfunc > a:last-child {
  padding-right: 0;
}
.mn_common_page_header table td.mn_header_help {
  width: 1%;
  padding-left: 16px;
  color: #FFF;
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
}
.mn_common_page_header .mn_header_log {
  height: 1.5em;
  background-color: #555;
  color: #FFF;
  font-size: 10px;
  text-align: right;
}
.mn_common_page_header .mn_header_log > .mn_label {
  font-weight: bold;
}
.mn_common_page_header .mn_header_log > .mn_value {
  margin-right: 2em;
}
.mn_common_page_header .mn_header_waraning {
  padding: 4px;
  background-color: #D66;
  color: #FFF;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
}

.mn_common_page_contents {
  width: 900px;
  margin: 0 auto;
}

.mn_common_page_title {
  position: relative;
  max-width: 900px;
  margin: 20px auto;
  padding: 8px 8px 8px 16px;
  background-color: #FFE6E6;
  border-left: 4px solid #FFDEDE;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.4);
  color: #AA3C4B;
  font-size: 20px;
  letter-spacing: 0.1em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.mn_common_page_footer {
  min-width: 820px;
  margin: 20px 40px 10px 40px;
  padding-top: 10px;
  border-top: 1px solid #A0A0A0;
  color: #A0A0A0;
  font-size: 12px;
  text-align: center;
}

.mn_common_dialog {
  position: relative;
  min-height: 200px;
  max-height: 750px;
  margin: 0 auto;
  background-color: #FFF;
  border: 3px solid #FFDEDE;
  border-radius: 5px;
  box-shadow: 0px 0px 8px 0 rgba(255, 255, 255, 0.6);
  color: #333;
}
.mn_common_dialog.mn_size_large {
  width: 900px;
}
.mn_common_dialog.mn_size_medium {
  width: 700px;
}
.mn_common_dialog.mn_size_small {
  width: 480px;
}
.mn_common_dialog .mn_dialog_title {
  padding: 4px 16px;
  background-color: #FFDEDE;
  color: #FFF;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
}
.mn_common_dialog .mn_dialog_contents {
  padding: 12px 24px;
  margin-bottom: 48px;
}
.mn_common_dialog .mn_dialog_contents .mn_dialog_message {
  padding: 4px 20px 16px 20px;
  color: #555;
}
.mn_common_dialog .mn_dialog_contents div.mn_dialog_item_label {
  margin: 12px 4px 2px 4px;
  color: #FFDEDE;
  font-size: 14px;
  font-weight: bold;
  text-align: left;
}
.mn_common_dialog .mn_dialog_contents div.mn_dialog_item_value {
  margin: 4px 4px 4px 32px;
  font-size: 14px;
  text-align: left;
}
.mn_common_dialog .mn_dialog_contents div.mn_dialog_item_value .mn_note {
  padding: 4px 12px;
  color: #555;
  font-size: 12px;
}
.mn_common_dialog .mn_dialog_attention {
  padding: 4px 8px;
  color: #555;
  font-size: 12px;
}
.mn_common_dialog .mn_dialog_buttons {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 16px;
  text-align: center;
  background-color: #EEE;
}
.mn_common_dialog .mn_dialog_buttons .mn_common_button, .mn_common_dialog .mn_dialog_buttons .mn_common_alt_button, .mn_common_dialog .mn_dialog_buttons .mn_common_del_button,
.mn_common_dialog .mn_dialog_buttons .mn_common_alt_button,
.mn_common_dialog .mn_dialog_buttons .mn_common_del_button {
  min-width: 10em;
  margin-left: 6px;
  margin-right: 6px;
}

.mn_common_info_box, .mn_common_info_tab_panel .mn_tab_box {
  max-width: 860px;
  margin: 0 auto;
  margin-bottom: 24px;
  font-size: 12px;
  border: 2px solid #FFC1C1;
  border-radius: 4px;
  background-color: #F7F7F7;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
}
.mn_common_info_box .mn_title, .mn_common_info_tab_panel .mn_tab_box .mn_title {
  padding: 4px 16px;
  background-color: #FFC1C1;
  color: #AA3C4B;
  font-size: 14px;
  font-weight: bold;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
.mn_common_info_box .mn_contents, .mn_common_info_tab_panel .mn_tab_box .mn_contents {
  padding: 4px 16px 12px 16px;
}
.mn_common_info_box .mn_buttons, .mn_common_info_tab_panel .mn_tab_box .mn_buttons {
  margin-top: 8px;
  text-align: center;
}
.mn_common_info_box .mn_buttons .mn_common_button, .mn_common_info_tab_panel .mn_tab_box .mn_buttons .mn_common_button, .mn_common_info_box .mn_buttons .mn_common_alt_button, .mn_common_info_tab_panel .mn_tab_box .mn_buttons .mn_common_alt_button, .mn_common_info_box .mn_buttons .mn_common_del_button, .mn_common_info_tab_panel .mn_tab_box .mn_buttons .mn_common_del_button,
.mn_common_info_box .mn_buttons .mn_common_alt_button,
.mn_common_info_tab_panel .mn_tab_box .mn_buttons .mn_common_alt_button,
.mn_common_info_box .mn_buttons .mn_common_del_button,
.mn_common_info_tab_panel .mn_tab_box .mn_buttons .mn_common_del_button {
  margin: 0px 8px;
  min-width: 8em;
  font-size: 14px;
}

.mn_common_info_tab_panel {
  width: 720px;
  margin: 0 auto;
  margin-bottom: 24px;
}
.mn_common_info_tab_panel ul.mn_tabs {
  padding: 0;
  text-align: center;
}
.mn_common_info_tab_panel ul.mn_tabs li {
  display: inline-block;
  margin-left: 4px;
  margin-right: 4px;
  margin-bottom: -2px;
  padding: 2px 1.5em;
  list-style: none;
  border: 2px solid #FFC1C1;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: #FFE6E6;
  color: #A0A0A0;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: inset 0 -1px 2px rgba(0, 0, 0, 0.1);
}
.mn_common_info_tab_panel ul.mn_tabs li:hover {
  color: #AA3C4B;
}
.mn_common_info_tab_panel ul.mn_tabs li:active {
  background-color: #FFFEFE;
}
.mn_common_info_tab_panel ul.mn_tabs li.mn_selected {
  border-bottom-color: #FFC1C1;
  background-color: #FFC1C1;
  color: #AA3C4B;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  box-shadow: none;
}
.mn_common_info_tab_panel .mn_tab_box {
  margin-bottom: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.mn_common_info_table {
  width: 100%;
}
.mn_common_info_table > tbody > tr > th {
  width: 1%;
  padding: 8px 8px 4px 8px;
  color: #F7677B;
  text-align: right;
  white-space: nowrap;
  vertical-align: top;
}
.mn_common_info_table > tbody > tr > td {
  padding: 8px 8px 4px 4px;
}
.mn_common_info_table > tbody > tr > td input[type=text] {
  margin-top: -4px;
}
.mn_common_info_table > tbody > tr > td select {
  margin-top: -2px;
}
.mn_common_info_table > tbody > tr > td .mn_size_50 {
  width: 50%;
}
.mn_common_info_table > tbody > tr > td .mn_size_60 {
  width: 60%;
}
.mn_common_info_table > tbody > tr > td .mn_size_70 {
  width: 70%;
}
.mn_common_info_table > tbody > tr > td .mn_size_80 {
  width: 80%;
}
.mn_common_info_table > tbody > tr > td .mn_size_90 {
  width: 90%;
}
.mn_common_info_table > tbody > tr > td .mn_size_full {
  width: 100%;
}
.mn_common_info_table > tbody > tr > td .mn_note {
  color: #A0A0A0;
}
.mn_common_info_table > tbody > tr > td .mn_link_item.mn_selected {
  font-weight: bold;
}

.mn_common_search_result_table_wrapper, .mn_common_grid_table_wrapper {
  border: 2px solid #F7677B;
  overflow: auto;
}

.mn_common_grid_table_wrapper {
  border-width: 1px;
  border-color: #A0A0A0;
}

.mn_common_search_result_table, .mn_common_grid_table {
  width: 100%;
  font-size: 12px;
  border: none;
}
.mn_common_search_result_table thead tr, .mn_common_grid_table thead tr {
  border-bottom: 1px solid #F7677B;
}
.mn_common_search_result_table thead tr th, .mn_common_grid_table thead tr th {
  padding: 0px 2px;
  background-color: #FFE6E6;
  border: none;
  border-right: 1px solid rgba(247, 103, 123, 0.3);
  color: #AA3C4B;
  text-align: center;
  line-height: 1.8em;
  letter-spacing: 0.2em;
  white-space: nowrap;
}
.mn_common_search_result_table thead tr th:last-child, .mn_common_grid_table thead tr th:last-child {
  border-right: none;
}
.mn_common_search_result_table thead tr th.mn_col_orderable, .mn_common_grid_table thead tr th.mn_col_orderable {
  cursor: pointer;
  padding-left: 1.2em;
  padding-right: 1.2em;
}
.mn_common_search_result_table thead tr th.mn_col_orderable.mn_order_asc::after, .mn_common_grid_table thead tr th.mn_col_orderable.mn_order_asc::after {
  position: absolute;
  top: 50%;
  margin-top: -0.9em;
  right: 0;
  content: "▲";
}
.mn_common_search_result_table thead tr th.mn_col_orderable.mn_order_desc::after, .mn_common_grid_table thead tr th.mn_col_orderable.mn_order_desc::after {
  position: absolute;
  top: 50%;
  margin-top: -0.9em;
  right: 0;
  content: "▼";
}
.mn_common_search_result_table thead tr th.mn_col_orderable:hover, .mn_common_grid_table thead tr th.mn_col_orderable:hover {
  background-color: #FFC1C1;
}
.mn_common_search_result_table thead tr th.mn_col_orderable:active, .mn_common_grid_table thead tr th.mn_col_orderable:active {
  background-color: #FFDEDE;
  color: #FFE6E6;
}
.mn_common_search_result_table tbody tr, .mn_common_grid_table tbody tr {
  background-color: #FFF;
  border-bottom: 1px solid #FFE6E6;
}
.mn_common_search_result_table tbody tr:nth-chlid(even), .mn_common_grid_table tbody tr:nth-chlid(even) {
  background-color: #FFFEFE;
}
.mn_common_search_result_table tbody tr td, .mn_common_grid_table tbody tr td {
  padding: 1px 4px;
  border: none;
  border-right: 1px solid #FFE6E6;
}
.mn_common_search_result_table tbody tr td:last-child, .mn_common_grid_table tbody tr td:last-child {
  border-right: none;
}

.mn_common_grid_table thead tr {
  border-color: #A0A0A0;
}
.mn_common_grid_table thead tr th {
  background-color: #EEE;
  border-color: #A0A0A0;
}
.mn_common_grid_table tbody tr {
  border-color: #A0A0A0;
}
.mn_common_grid_table tbody tr td {
  border-color: #A0A0A0;
}
.mn_common_grid_table.mn_common_row_selectable tbody tr.mn_selected {
  background-color: #FFDEDE;
  color: #FFF;
}
.mn_common_grid_table.mn_common_row_selectable tbody tr:hover {
  background-color: #FFE6E6;
}
.mn_common_grid_table.mn_common_row_selectable tbody tr:active {
  background-color: #FFFEFE;
}

.mn_common_hide {
  display: none;
}

.mn_common_invisible {
  visiibilty: hidden;
}

.mn_common_error_message {
  margin: 8px 16px;
  padding: 4px;
  color: #F33;
  background-color: rgba(255, 51, 51, 0.2);
  border-radius: 1em;
  font-weight: bold;
  text-align: center;
}
.mn_common_error_message::before {
  margin-right: 4px;
  content: "\F071";
  font-family: FontAwesome;
  font-size: larger;
}

.mn_common_search_message {
  padding: 20px;
  color: black;
  background-color: #E6F4EA;
  border-radius: 2em;
  text-align: left;
  box-shadow:0 4px 8px rgba(0,0,0,0.2)
}

.mn_common_search_message_title{
  text-align:center;
  color:#2E7D32;
  font-size:20px;
  font-weight:bold;
}

.mn_common_search_condition {
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 6px;
  padding: 1px 1em;
  color: #AA3C4B;
  background-color: #FFE6E6;
  border-radius: 1em;
}
.mn_common_search_condition .mn_keyword {
  font-weight: bold;
  padding-left: 0.5em;
  padding-right: 0.5em;
}

.mn_common_search_result_arrow {
  margin-bottom: 10px;
  color: #FFC1C1;
  font-size: 48px;
  line-height: 20px;
  text-align: center;
}

.mn_common_pager {
  padding-top: 8px;
  padding-bottom: 8px;
  text-align: center;
  font-size: 14px;
}
.mn_common_pager .mn_current_count {
  padding-left: 4px;
  padding-right: 4px;
  font-size: 16px;
}
.mn_common_pager .mn_total_count {
  padding-left: 4px;
  padding-right: 4px;
}
.mn_common_pager .mn_current_page {
  padding-right: 4px;
  color: #F7677B;
  font-size: 16px;
}
.mn_common_pager .mn_max_page {
  padding-left: 4px;
}
.mn_common_pager .mn_common_button, .mn_common_pager .mn_common_alt_button, .mn_common_pager .mn_common_del_button {
  width: 2em;
  height: 2em;
  margin-left: 12px;
  margin-right: 12px;
}

i.fa {
  padding-right: 0.3em;
  font-size: 110%;
}
