@charset "utf-8";

/* -------------------------------------------------------------------------------------------- */
/* 基本スタイル */
/* -------------------------------------------------------------------------------------------- */
body {
  font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;

  font-weight: 500;
  margin: 0px;
  padding: 0px;
  background-color: #f0e8e8;
}
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
input,select {
  height: 24px;
  background-color: #fff;
  border: solid 1px #c0c0c0;
}
a.image_link {
  text-decoration: none;
  border-bottom: none;
}
a.button {
  display: table-cell;
  padding: 5px 20px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
  background-color: #a0a0a0;
  color: #ffffff;
  border-bottom: none;
  text-align: center;
}
a.button_min {
  margin: 1px 0 0 1px;
  line-height: 27px;
  padding: 0px 7px;
}
a.button_noline {
  border-bottom: none;
}
a.button:hover {
  background-color: #808080;
  color: #dddddd;
}
a.button_gray {
  background-color: #a0a0a0;
  color: #ffffff;
}
a.button_gray:hover {
  background-color: #808080;
  color: #dddddd;
}
a.button_green {
  background-color: #60c060;
  color: #ffffff;
}
a.button_green:hover {
  background-color: #40a040;
  color: #dddddd;
}
a.button_red {
  background-color: #ff6060;
  color: #ffffff;
}
a.button_red:hover {
  background-color: #e04040;
  color: #dddddd;
}
a.button_blue {
  background-color: #6080ff;
  color: #ffffff;
}
a.button_blue:hover {
  background-color: #4060e0;
  color: #dddddd;
}

.akeru { margin: 10px; }
.akeru_h { margin: 0 10px 0 10px; }
.akeru_v { margin: 10px 0 10px 0; }
.akeru_l { margin: 0 0 0 10px; }
.akeru_r { margin: 0 10px 0 0; }
.akeru_2 { margin: 10px 10px 0 0; }
.akeru_3 { margin: 10px 10px 10px 0; }
.akeru2 { margin: 20px; }
.akeru2_h { margin: 0 20px 0 20px; }
.akeru2_v { margin: 20px 0 20px 0; }
.akeru2_t { margin: 20px 0 0 0; }
.akeru0 { margin: 5px; }
.akeru0_h { margin: 0 5px 0 5px; }
.akeru0_v { margin: 5px 0 5px 0; }
.akeru0_t { margin-top: 5px; }
.akeru0_3b { margin: 0 5px 10px 5px; }
.yohaku { padding: 10px; }
.yohaku2 { padding: 20px; }
.yohaku0 { padding: 5px; }
.yohaku_t { padding: 10px 0 0 0; }
.yohaku2_t { padding: 20px 0 0 0; }

.float_l {
  float: left;
}
.float_r {
  float: right;
}
.clear {
  clear: both;
}
.align_l {
  text-align: left !important;
}
.align_r {
  text-align: right;
}
.align_r_force {
  text-align: right !important;
}
.center {
  text-align: center;
}
.center_force {
  width: 100%;
  margin: 0 auto;  
}
.bottom {
  height: 100%;
  display: table-cell;
  vertical-align: bottom;
}
.middle {
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}
.middle_flex {
  align-items: center;
}
.shadow {
  box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.5);
  /*
  margin: 10px;
  */
  margin: 0 20px 20px 0;
  /*
  opacity: 0.7;
  */
}
.shadow0 {
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
  margin: 3px;
  /*
  opacity: 0.7;
  */
}
article {
  box-sizing: border-box;
  margin: 0px 10px;
}
.block {
  display: block !important;
}
.show {
  display: inline-block !important;
}
.hide {
  display: none !important;
}
.drag_obj {
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
a {
  color: #f04040;
  /*
  text-decoration: underline dotted 3px red;
  */
  text-decoration: none;
  border-bottom: dotted 1px red;
}
.error {
  color: #ff0000;
}
.readonly {
  background-color: #fff8f0;
}

/* -------------------------------------------------------------------------------------------- */
/* ダイアログ */
/* -------------------------------------------------------------------------------------------- */
.dialog {
  position: fixed;
  background-color: #ffffff;
  width: 300px;
  height: 200px;
  left: calc(100% / 2 - 150px);
  top: calc(100% / 2 - 100px);
  display: none;
  border: solid 5px #ffb0b0;
}
.mask {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-color: #000000;
  z-index: 100;
  display: none;
}
.dialog_contents {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow-y: auto;
}
.dialog_alert {
  width: 300px;
  height: 150px;
/*
  padding: 0 10px;
*/
  padding: 0px;
}
.dialog_close {
  position: absolute;
  right: -18px;
  top: -18px;
  border-radius: 15px !important;
  text-align: center;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  line-height: 36px !important;
}
.dialog_close i {
  font-size: 14pt;
}
.dialog_max {
  position: absolute;
  right: 18px;
  top: -18px;
  border-radius: 15px !important;
  text-align: center;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  line-height: 36px !important;
}
.dialog_max i {
  font-size: 12pt;
}

/* -------------------------------------------------------------------------------------------- */
/* datepicker */
/* -------------------------------------------------------------------------------------------- */
.datepicker_component table {
  margin: 10px 2px 0px 2px;
  border-collapse: collapse;
  border: solid 1px rgba(125, 125, 125, 1);
  width: 100%;
}
.datepicker_component table td {
  border: solid 1px rgba(125, 125, 125, 1);
  text-align: center;
  line-height: 20px;
  cursor: pointer;
}
.sunday_head {
  color: rgba(255, 0, 0, 1);
  background: rgba(255, 150, 150, 1) !important;
}
.sunday {
  color: rgba(255, 0, 0, 1);
  background: rgba(255, 200, 200, 1);
}
.saturday_head {
  color: rgba(0, 0, 255, 1);
  background: rgba(200, 200, 255, 1) !important;
}
.saturday {
  color: rgba(0, 0, 255, 1);
  background: rgba(225, 225, 255, 1);
}
.monday, .tuesday, .wednesday, .thursday, .friday {
  background: rgba(255, 255, 255, 1);
}
.monday_head, .tuesday_head, .wednesday_head, .thursday_head, .friday_head {
  background: rgba(220, 220, 220, 1) !important;
}
.today_head {
  color: #00c000;
  background-color: #e0ffe0 !important;
  font-weight: bold;
}
.prev_pickdate, .next_pickdate {
  color: rgba(150, 150, 150, 1);
}
.today {
  color: #00c000;
  background-color: #e0ffe0;
  font-weight: bold;
}
.dialog_datepicker_area select {
  height: 26px;
}
.dialog_datepicker_area a {
  border-bottom: 0px;
}

/* -------------------------------------------------------------------------------------------- */
/* timesetter */
/* -------------------------------------------------------------------------------------------- */
.dialog_timesetter_area select {
  height: 26px;
}

/* -------------------------------------------------------------------------------------------- */
/* ヘッダー */
/* -------------------------------------------------------------------------------------------- */
header {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 60px;
  background-color: #404040;
  opacity: 0.75;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  box-shadow: 0px 5px 3px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
body {
  margin: 70px 0px 60px 0px;
}
div.header_title {
  font-size: 14pt;
  line-height: 24px;
  margin: 5px 0 0 10px;
  color: #ffffff;
  font-weight: bold;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  border-radius: 22px;
}
img.logo_s {
  height: 40px;
  margin: 10px 0 0 10px;
}
img.logo_m {
  height: 60px;
  margin: 10px 0 0 10px;
}
img.logo_l {
  max-width: 400px;
  margin: 0px;
}
div.header_icon {
  text-shadow: 1px 1px 1px #f8f8f8, -1px 1px 1px #f8f8f8, 1px -1px 1px #f8f8f8, -1px -1px 1px #f8f8f8, 1px 1px 1px #f8f8f8, -1px 1px 1px #f8f8f8, 1px -1px 1px #f8f8f8, -1px -1px 1px #f8f8f8;
  border-radius: 22px;
  margin: 7px 12px 0 0;
}
div.header_title2 {
  white-space: nowrap;
  font-size: 20pt;
  color: #606060;
  font-weight: bold;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
div.header_title3 {
  font-size: 16pt;
  color: #606060;
  font-weight: bold;
  /*
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  */
}
ul.header_menu {
  list-style: none;
  height: 60px;
  margin: 0px;
  padding: 0px;
  opacity: 1;
  display: block;
}
ul.header_menu li {
  float: left;
  line-height: 60px;
  color: #ffffff;
  background-color: #404040;
}
ul.header_menu li a {
  color: #ffffff;
  display: table-cell;
  text-decoration: none;
  border-bottom: none;
  padding: 0 10px 0 10px;
  font-size: 120%;
}
ul.header_menu li a:hover {
  color: #ff8080;
  background-color: #202020;
}
ul.header_sub_menu {
  position: fixed;
  clear: both;
  list-style: none;
  opacity: 0;
  display: none;
  margin: 0px;
  padding: 0px;
}
ul.header_sub_menu li {
  background-color: #282828 !important;
  clear: both;
  white-space: nowrap;
  line-height: 24px;
  margin-left : 0px;
  width: 200px;
}
ul.header_sub_menu li a {
  padding: 10px 20px 10px 10px;
  display: table-cell;
  width: inherit;
  font-size: 100%;
  border-bottom: none;
}
ul.header_sub_menu li a:hover {
  background-color: #090909;
  color: #ff6060;
}
div#header_menu_icon {
  float: right;
  font-size: 24pt;
  line-height: 60px;
  color: #ffffff;
  display: none;
  margin-right: 20px;
  cursor: pointer;
}
div#header_menu_icon i {
  font-size: 24pt;
}

@media(max-width: 840px) {
  div#header_menu_icon {
    display: block;
  }
  ul.header_menu {
    clear: both;
    display: none;
    opacity: 0;
  }
  ul.header_menu li {
    float: none;
    width: 170px;
    margin: 0px;
  }
  ul.header_menu li a {
    width: 170px;
  }
  ul.header_sub_menu {
    position: static;
    margin: 0px;
  }
  ul.header_sub_menu li {
    margin-left: 0px;
  }
}

/* -------------------------------------------------------------------------------------------- */
/* フッター */
/* -------------------------------------------------------------------------------------------- */
footer {
  width: 100%;
  height: 40px;
  background-color: #404040;
  opacity: 0.75;
  margin: 20px 0px 0px 0px;
  padding: 10px;
  color: #ffffff;
  box-sizing: border-box;
  box-shadow: 0px -5px 3px rgba(0, 0, 0, 0.5);
}
footer a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: none;
}
footer a:hover {
  color: #ff8080;
}
.pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  clear: both;
  text-align: right;
  display: none;
}
.pagetop a:active {
  outline: 0 none black;
}
.pagetop img {
  width: 40px;
  height: 40px;
}

/* -------------------------------------------------------------------------------------------- */
/* コンテンツ内 */
/* -------------------------------------------------------------------------------------------- */
.calendar_price_form {
  width: 85%;
}
h1 {
  font-weight: normal;
  background-color: #ffffff;
  /*
  border-right: solid 15px #ffa0a0;
  */
  padding: 4px 20px 4px 20px;
  display: inline;
  box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.5);
}
.bread {
  color: #606060;
}

.home_dbinfo th {
  width: 100px;
}
.home_dbinfo td {
  width: 100px;
}

.width_800 {
  width: 800px;
}
.width_600 {
  width: 600px;
}
.width_400 {
  width: 400px;
}

#login_form {
  position: fixed;
  left: calc(50% - 200px);
  top: calc(50% - 150px);
}
.login_back1 {
  position: fixed;
  left: -50px;
  bottom: 0px;
  color: #f0e0d0;
  overflow: hidden;
  z-index: -10;
}
.login_back1 i {
  font-size: 500px;
}
.login_back2 {
  position: fixed;
  right: -50px;
  top: 0px;
  color: #f0e0d0;
  overflow: hidden;
  z-index: -10;
}
.login_back2 i {
  font-size: 500px;
}
#sabatora_dialog_dialog_loading {
/* 猫 */
/*  background: url(/img/loading-01.gif) center no-repeat;*/

/* 地球 */
/*  background: url(/img/loading-02.gif) center no-repeat;*/

/* サークル */
/*  background: url(/img/loading-03.gif) center no-repeat;*/

/* DNA */
  background: url(/img/loading-04.gif) center no-repeat;

/* プログレスバー */
/*  background: url(/img/loading-05.gif) center no-repeat #fff;*/

  border: 0px !important;
}

@media(max-width: 840px) {

.width_800 {
  width: 100%;
}
.width_600 {
  width: 100%;
}
.width_400 {
  width: 100%;
}

#login_form {
  position: static;
}
.login_back1 {
  position: fixed;
  left: -10px;
  bottom: 20px;
}
.login_back2 {
  position: fixed;
  right: -10px;
  top: 20px;
}
.login_back1 i {
  font-size: 200px;
}
.login_back2 i {
  font-size: 200px;
}

}

/* -------------------------------------------------------------------------------------------- */
/* フォーム */
/* -------------------------------------------------------------------------------------------- */
.form_block_table {
  display: table;
  border-collapse: collapse;
  width: 800px;
}
.form_block_row {
  display: table-row;
}
.form_block {
  display: table-cell;
  border: solid 1px #c0c0c0;
  background-color: #f0f0f0;
  height: 30px;
/*
  white-space: nowrap;
*/
  overflow: hidden;
  box-sizing: border-box;
  text-align: center;
  margin: 0px;
  padding: 2px;
}
.form_block1 {
  width: 12.5%;
}
.form_block2 {
  width: 25%;
}
.form_block3 {
  width: 37.5%;
}
.form_block4 {
  width: 50%;
}
.form_block5 {
  width: 62.5%;
}
.form_block6 {
  width: 75%;
}
.form_block7 {
  width: 87.5%;
}
.form input[type="text"], .form input[type="tel"], .form input[type="password"], .form select, .form textarea {
  padding: 0px 5px;
  border: 1px solid #c0c0c0;
  width: 100%;
  box-sizing: border-box;
  font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
}
.form input[type="radio"], .form input[type="checkbox"] {
  padding: 0px 5px;
  border: 0px;
  box-sizing: border-box;
  font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
  line-height: 30px;
}
.form .form_msg {
  clear: both;
  text-align: left;
  font-size: 8pt;
  margin: 0px;
  color: #ff6060;
}
.form label span {
  display: block;
  margin-top: 10px;
  cursor: pointer;
  text-align: left;
}
.form input, .form select {
  height: 32px;
  background-color: #ffffff;
}
.form textarea {
  /* ここの挙動はよくわからない */
  /*
  margin: -4px 0 -6px 0;
  */
  padding: 4px 5px;
  height: 36px;
  background-color: #ffffff;
}
.form input.date_form {
  width: calc(100% - 30px);
}
.form input.datetime_form {
  width: calc(100% - 56px);
}
.form textarea.textarea_with_button {
  width: calc(100% - 30px);
  text-align: left;
}
.form_button {
  margin-top: 10px;
  width: 100%;
  /*
  text-align: center;
  */
}
}
div.form_must, td.form_must {
/*
  background-color: #ffe0e0 !important;
*/
}
div.form_must2, td.form_must2 {
  background-color: #fff0f0 !important;
}
.form_must input, .form_must select, .form_must textarea {
  border: solid 1px #ffa0a0 !important;
  background-color: #fff4f4 !important;
}
.form_flag {
  text-align: center;
}
.form_number {
  text-align: right;
}
.form_readonly input, .form_readonly select, .form_readonly textarea, .form_readonly {
  background-color: #fff8f0;
}
.form_error {
  display: none;
  box-sizing: border-box;
  max-width: 800px;
  margin: 10px 0px;
  padding: 10px;
  border: solid 1px #f0f0f0;
  background-color: #ffffff;
  color: #ff0000;
  border-radius: 5px;
}
.form .form_msg {
  clear: both;
  text-align: left;
  font-size: 8pt;
  margin: 0px;
  color: #ff6060;
}
.form {
  max-width: 800px;
}
input.sql_search {
  width: 300px;
  height: 26px;
  display: none;
  margin: 0 0 0 10px;
}

.form_html {
  text-align: left;
}
.html_block {
  display: table-cell;
  border: solid 1px #c0c0c0;
  background-color: #ffffff;
  height: 30px;
  overflow: hidden;
  box-sizing: border-box;
  text-align: center;
  margin: 0px;
  padding: 2px;
}
.caption_wrap {
  white-space: normal;
}
.form_value {
/* これをやると必須項目が赤くならなくなる
  background-color: #ffffff;
*/
  background-color: #ffffff;
}

.formlen_100 {
  width: 100px !important;
  float: left;
}
.formlen_200 {
  width: 200px !important;
  float: left;
}
.form_value img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}
.form_block7 img {
  max-width: none;
}

.form_caption {
  font-size: 8pt;
}

@media(max-width: 840px) {
.form {
  width: 100%;
}
.form_block_table {
  width: 100%;
}
.form_detail_table {
  width: 100%;
}
.form_block {
  white-space: normal;
  text-align: left;
}
.form_block1 {
/*
  width: 25%;
*/
  width: 100%;
}
.form_block2 {
  width: 50%;
}
.form_block3 {
  width: 75%;
}
.form_block4 {
  width: 100%;
}
.form_caption {
/*
  width: 25% !important;
*/
  width: 100%;
  padding-left: 10px;
}
.form_value {
/*
  width: 75% !important;
*/
  width: 100%;
}
.form input[type="radio"], .form input[type="checkbox"] {
  clear: both;
}
}


.texteditor_area {
  box-sizing: border-box;
}
.texteditor_area textarea {
  width: 100%;
  height: 540px;
  box-sizing: border-box;
}

/* -------------------------------------------------------------------------------------------- */
/* グリッド */
/* -------------------------------------------------------------------------------------------- */
.grid_table_div {
  width: 100%;
  overflow-x: auto;
}
.grid table {
  border-collapse: collapse;
  width: 100%;
}
.grid th, .grid td {
  border: solid 1px #c0c0c0;
  font-weight: normal;
  padding: 0px 5px;
  overflow: hidden;
  white-space: nowrap;
  height: 26px;
}
.grid th {
  background-color: #f0f0f0;
  cursor: pointer;
}
.grid img {
  margin-top: 5px;
  width: 60px;
  height: 60px;
  object-fit: cover;
}
.grid .check_cell {
  line-height: 14px;
  padding: 1px 2px 0 2px;
  width: 20px;
}
.grid tr.delete, .grid tr.delete td {
  background-color: #b8b8b8 !important;
}
.grid tr {
  background-color: #ffffff;
}
.grid tr:nth-child(even) {
  background-color: #fff8f0;
}
.grid .pager {
  line-height: 20px;
}
}
.grid {
/*
  max-width: 800px;
*/
}
.grid_col_select_outer {
  /*
  height: 300px;
  overflow-y: scroll;
  */
}
.col_select_pulldown {
  width: 205px;
  height: 260px;
}
.col_select_btn {
  margin: 100px 10px 0px 10px;
}
.grid_col_select {
  display: table;
  border-collapse: collapse;
}
.grid_col_select_row {
  display: table-row;
  width: 240px;
}
.grid_col_select div div {
  display: table-cell;
  height: 30px;
  line-height: 30px;
  border: solid 1px #c0c0c0;
  background-color: #f0f0f0;
  overflow: hidden;
  white-space: nowrap;
}
.grid_col_select_div {
  width: 200px;
}
.grid_col_select input {
  vertical-align: middle;
  display: table-cell;
}
.grid_col_select_drag {
  width: 40px;
  text-align: center;
  color: #808080;
  cursor: move;
}
.not_sort {
  cursor: default !important;
}

.edit_mark {
  font-size: inherit;
  padding: 2px 6px;
  /*
  background-color: #ffa080;
  */
  border-radius: 2px;
  color: #fdfdfd;

  /*
  display: table-cell;
  */
  display: inline-block;

  border-radius: 3px;
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
  /*
  background-color: #a0a0a0;
  */
  background-color: #80a0ff;
  color: #fdfdfd;
  border-bottom: none;

  margin: 2px;
}
.edit_mark:hover {
  background-color: #7090ff;
}
.filter_icon i {
  font-size: 8pt;
  padding: 5px 3px 3px 3px;
  background-color: #80a0ff;
  border-radius: 2px;
  color: #ffffff;
}
.direct_icon i {
  font-size: 8pt;
  padding: 5px 3px 3px 3px;
  background-color: #ffa080;
  border-radius: 2px;
  color: #ffffff;
  cursor: pointer;
}
tr.sum_row {
  background-color: #e0f0ff !important;
}
.grid tr th.fix_col {
  position: sticky;
  background-color: rgba(230, 230, 230, 1);
  border: solid 1px #808080 !important;
}
.grid tr td.fix_col {
  position: sticky;
  background-color: rgba(255, 245, 235, 1);
  border: solid 1px #808080 !important;
}
.grid tr:nth-child(even) td.fix_col {
  position: sticky;
  background-color: rgba(245, 235, 225, 1);
  border: solid 1px #808080 !important;
}
.grid tr td.fix_col:nth-child(even) {
  position: sticky; 
  background-color: rgba(250, 240, 230, 1);
  border: solid 1px #808080 !important;
}
.grid tr:nth-child(even) td.fix_col:nth-child(even) {
  position: sticky; 
  background-color: rgba(240, 230, 220, 1);
  border: solid 1px #808080 !important;
}

.scrollbar {
  width: 100%;
  height: 20px;
  overflow-x: scroll;
  overflow-y: hidden;
}
.scrollbar .inner {
  width: 500px;
  height: 1px;
}

/* スクロールバーのスタイル */
.scrollbar::-webkit-scrollbar,
.scrollbox::-webkit-scrollbar {
/*
  height: 10px;
*/
}
.scrollbar::-webkit-scrollbar-track,
.scrollbox::-webkit-scrollbar-track {
/*
  border-radius: 5px;
*/
}
.scrollbar::-webkit-scrollbar-thumb,
.scrollbox::-webkit-scrollbar-thumb {
/*
  border-radius: 5px;
  background-color: #e7e7e7;
*/
}

/* -------------------------------------------------------------------------------------------- */
/* ツリー */
/* -------------------------------------------------------------------------------------------- */
.tree ul {
  list-style: none;
  margin: 0 0 0 10px;
  padding: 0px;
}
.tree li {
  white-space: nowrap;
}
.folder_mark {
  color: #f0c060;
}
.file_mark {
  color: #808080;
}
.tree_contents {
  border: solid 1px #c0c0c0;
  background-color: #ffffff;
  width: 350px;
  overflow: scroll;
}
.tree_header {
  height: 40px;
}
.upload_area {
  box-sizing: border-box;
  border: dashed 2px #ffc0c0;
  background-color: #fff0f0;
  width: 100%;
  height: 100%;
  padding-top:100px;
  text-align: center;
  color: #808080;
}

@media(max-width: 840px) {
.tree_contents {
  width: 100%;
  height: 300px !important;
}
.tree {
  float: none !important;
}
}

/* -------------------------------------------------------------------------------------------- */
/* エディター */
/* -------------------------------------------------------------------------------------------- */
.editor {
  width: calc(100% - 360px);
}
.editor_100 {
  max-width: 800px;
}
.editor_contents {
  width: 100%;
}
.editor_header {
  height: 40px;
}
.editor_contents textarea {
  width: 100%;
  height: 100%;
  border: 0px;
  font-size: 12pt;
  color: #ffffff;
/*
  line-height: 1.2em;
*/
  background-color: #404040;
}
.editor input, .editor select, .editor_100 input, .editor_100 select {
  width: 300px;
  height: 26px;
  border: solid 1px #c0c0c0;
  padding: 2px 5px 2px 5px;
}
.sql textarea {
  height: 200px;
}
.sql_name {
  width: calc(100% - 110px) !important;
}

@media(max-width: 840px) {
.editor_contents {
  height: 300px !important;
}
.editor {
  width: 100%;
  float: none !important;
}
.editor input, .editor select, .editor_100 input, .editor_100 select {
  width: 100%;
}
#editor_sqltype_div {
  width: calc(100% - 10px);
}
}


.map {
  box-sizing: border-box;
}

.map_contents {
  width: 400px;
  height: 400px;

}

.map_info_window {
  position: relative;
  width: 100px;
  padding: 10px;
  border-radius: 5px;
  background-color: #ffffff;
  overflow: hidden;
  font-size: 8pt;
}

.map_footer {
  padding: 5px;
}

.thumbnail_div {
  position: relative;
  display: inline-block;
  padding-left: 0px !important;
}
.view_img {
  object-fit: cover;
  box-sizing: border-box;
  margin: 0px 2px;
  max-width: 200px;
  max-height: 200px;
  border: solid 1px #808080;
  border-radius: 5px;
}

.play_icon_s {
  position: absolute;
  left: 50%;
  top: 50%;
  color: #fff;
  font-size: 24px;
  transform: translate(-50%, -50%);
}
.play_icon_m {
  position: absolute;
  left: 50%;
  top: 50%;
  color: #fff;
  font-size: 40px;
  transform: translate(-50%, -50%);
}

#login_user {
  font-size: 12pt;
  display: table-cell;
  line-height: 60px;
  white-space: nowrap;
  overflow: hidden;
  padding-left: 10px;
  color: #ffffff;
  float: left;
}
#login_user i {
  color: #ffffff;
}


.fixed {
  position: fixed;
  top: 60px;
  z-index: 999;
  width: calc(100% - 440px);
}

.nippou {
  display: none;
  width: 100%;
  padding: 20px;
  background-color: #f0f0f0;
  border: solid 1px #d0d0d0;
  box-sizing: border-box;
  margin-bottom: 10px;
}

.max_map {
  position: fixed;
  z-index: 4;
  left: 0px;
  top: 0px;
  margin: 0px;
}
.max_map_footer {
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.view_dt_range, .view_dt_range i {
  font-size: 12pt;
  line-height: 30px;
}

.flex_left {
  display: flex;
  justify-content: left;
}
.flex_center {
  display: flex;
  justify-content: center;
}
.flex_right {
  display: flex;
  justify-content: right;
}

.button_150 {
  width: 150px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
}
.button_200 {
  width: 200px;
  text-align: center;
}

.ninushi_color {
  background-color: #ffe060 !important;
}
.return_color {
  background-color: #6080ff !important;
}

h2 {
  font-size: 12pt !important;
  font-weight: normal;
  border-left: solid 10px #c0c0c0;
  border-bottom: solid 1px #c0c0c0;
  padding: 0 10px;
}
h2 font {
  font-size: 12pt !important;
}

.double_button {
  display: flex;
}
.double_button a {
  width: 50%;
  max-width: 200px;
  margin: 5px;
}

#progress_num  {
  text-align: left;
}
#progress_bar {
  width: 100%;
}
#progress_end {
  background: url(/img/loading-05.gif) no-repeat #fff;
  background-size: 260px, 24px;
  height: 24px;
}

.simple_checkbox {
  display: flex;
  align-items: center;
  width: max-content;
}

.clamp5 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
.clamp3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.confirm_mode {
  border: 0px !important;
  background-color: #ffffff !important;
  pointer-events: none;
}

.kiyaku_frame {
  width: calc(100% - 1px);
  height: 200px;
  border: solid 1px #c0c0c0;
}
body.frame {
  background-color: #ffffff !important;
  margin: 10px !important;
}
body.frame p, body.frame li, body.frame h1, body.frame h2 {
  font-size: 10pt !important;
}