@charset "UTF-8";

/*
*  Title:「 MEETIN 」共通CSS
*  File Nmae: base.css
*  Last Modified: 2016-12-29
*/


@font-face {
  font-family: 'IPAex明朝';
  src: url(../fonts/ipaexm.ttf);
}

/*----------------------------------------------------------------
  基本色
-----------------------------------------------------------------*/
/* 背景色 */
.mi_background-color {
  background-color: #fff;
}
/* 文字色 */
.mi_character-color {
  color: #6e6e6e;
}
/* 薄い文字色 */
.mi_thin-character-color {
  color: #c8c8c8;
}
/* グレー */
.mi_gray-color {
  background-color: #f5f5f5;
}
/* オレンジ */
.mi_orange-color {
  background-color: #ffaa00;
}
/* 黒 */
.mi_brack-color {
  background-color: #373228;
}

/* カラーピック */
.mi_blue {
  background-color: #3498db;
}
.mi_red {
  background-color: #c0392b;
}
.mi_yellow {
  background-color: #f1c40f;
}
.mi_green {
  background-color: #2ecc71;
}
.mi_black {
  background-color: #333333;
}
.mi_white {
  background-color: #fff;
}

/* マウスカーソルの定義 */
.ui-draggable:not(.ui-draggable-disabled) {
  cursor: move; /*適当なアイコン指定。なければ標準移動アイコンに*/
}
.ui-draggable.not-touch-move-area {
  cursor: pointer; /*適当なアイコン指定。なければ標準移動アイコンに*/
}
.move-item {
  cursor: move; /*適当なアイコン指定。なければ標準移動アイコンに*/
}
.move-item .not-touch-move-area {
  /*移動できるコンテンツの中にある移動させたくないエリア*/
  cursor: default; /*標準アイコンに*/
}

/* BACKGROUND TRANSITIONS */
/* Fade */
.hvr-fade {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  overflow: hidden;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
}

/* Underline From Center */
.hvr-underline-from-center {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  right: 50%;
  bottom: 0;
  background: #ffaa00;
  height: 2px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-center.active:before,
.hvr-underline-from-center:hover:before,
.hvr-underline-from-center:focus:before,
.hvr-underline-from-center:active:before {
  left: 20px;
  right: 20px;
}

.hvr-underline-from-center--headerMenu:hover {
  overflow: visible;
}

.hvr-underline-from-center--headerMenu.active:before,
.hvr-underline-from-center--headerMenu:hover:before,
.hvr-underline-from-center--headerMenu:focus:before,
.hvr-underline-from-center--headerMenu:active:before {
  left: 0;
  right: 0;
}

.click-fade {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*----------------------------------------------------------------
  基本定義
-----------------------------------------------------------------*/
body {
  font-size: 14px; /* デフォルトフォントサイズ */
  font-family: "Roboto Condensed", "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo,
    "ＭＳ ゴシック", sans-serif;
  color: #333;
  min-width: 1280px;
  min-height: 600px;
  background-color: #eee;
}

.mi_font-s {
  font-size: 85%;
}
.mi_font-m {
  font-size: 100%;
}
.mi_font-l {
  font-size: 115%;
}

/* Font face */
input,
select,
textarea,
th,
td {
  font-family: "Roboto Condensed", "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo,
    "ＭＳ ゴシック", sans-serif;
}

/* TABLE */
/* 横幅がはみ出るのを防ぐ */
table {
    table-layout: fixed;
    word-break: break-all;
    word-wrap: break-word;
}

/*--------------------------------------
  リンク要素
---------------------------------------*/
a {
  /* Hides from IE-mac \*/
  overflow: hidden;
  /* End hide from IE-mac */
  text-decoration: none;
  color: #222;
  font-size: 1em;
}
img,
a img {
  border: 0;
  vertical-align: bottom;
}

a:visited {
  text-decoration: none;
  color: #333;
}

a:hover {
  text-decoration: none;
  color: #ffaa00;
  cursor: pointer;
}

/*--------------------------------------
  補足設定
---------------------------------------*/
/* float指定 */
.mi_flt-l {
  float: left;
}

.mi_flt-r {
  float: right;
}

/* --- float周りこみ回避 --- */
.mi_clearfix:after {
  content: ".";
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
}

.mi_clearfix {
  display: inline-block;
}

/* Hides from IE-mac \*/
*html .mi_clearfix {
  height: 1%;
}
.mi_clearfix {
  display: block;
}
/* End hide from IE-mac */

/*----------------------------------------------------------------
  全体枠
-----------------------------------------------------------------*/
#mi_wrap {
  margin: 0 auto;
  width: 100%;
}

/*----------------------------------------------------------------
  ヘッダー領域
-----------------------------------------------------------------*/
header {
  background: #fff;
  position: fixed;
  top: 0;
  height: 50px;
  width: 100%;
  line-height: 50px;
  min-width: 1280px;
  border: 1px solid #e8e8e8;
  z-index: 500;
}

header .mi_flt-l > * {
  float: left;
}
header .mi_flt-r > * {
  float: right;
}

#mi_header_title > * {
  float: left;
}

#mi_header_logo {
  margin: 12px 0px 14px 15px;
  padding-right: 30px;
  border-right: 1px solid #e8e8e8;
  width: 120px;
  vertical-align: top;
}
#login_header #mi_header_logo {
  margin: 17px 15px;
  border-right: none;
}

#mi_header_logo_2 {
  width: 120px;
}
#login_header #mi_header_logo_2 {
  margin: 25% 25%;
}

#mi_header_logo_text {
  line-height: 26px;
  padding: 0 19px 0 4px;
  font-size: 14px;
  margin: 12px 0px 12px 0;
}

#login_header {
  background: none;
  border: none;
}

#mi_login_icon {
  font-size: 11px;
  display: inline-block;
  height: 27px;
  line-height: 27px;
  vertical-align: top;
}

#mi_login_text {
  color: #fff;
  font-size: 14px;
  line-height: 29px;
  height: 27px;
  display: inline-block;
  vertical-align: top;
}

.mi_login_btn a {
  color: #fff;
  display: block;
  background: none;
  border: 1px solid #fff;
  margin: 15% 15%;
  border-radius: 5px;
  height: 30px;
  width: 140px;
  text-align: center;
  opacity: 0.8;
  padding: 4px 0px 0px 0px;
}

.mi_login_btn a:hover {
  opacity: 1;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(235, 150, 0, 0.3);
}

.mi_header_link_list {
  list-style: none;
}

.mi_header_link_list li {
  position: relative;
  float: left;
  height: 50px;
  width: 160px;
  font-size: 14px;
  text-align: center;
}

.mi_header_link_list a {
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
}

.mi_header_link_list a:visited {
  color: #333;
}

.mi_header_link_list > li a {
  height: 50px;
  margin: 0 auto;
  float: none;
  display: inline-block;
  width: 100%;
}

.mi_header_link_list > li .mi_default_label_icon {
  padding-left: 0px;
}

.mi_header_link_list .mi_select_option a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
}
.mi_header_link_list .mi_select_option a.noIcon {
  padding-left: 17px;
}

.user_settingInner {
  border-left: 1px solid #e8e8e8;
  height: 24px;
  margin: 13px 0;
  padding-left: 12px;
  width: 100%;
}
.mi_user_detail .user_icon {
  margin: 0;
  margin-right: 7px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.user_setting_staff-name {
  float: none;
  vertical-align: top;
  display: inline-block;
  width: 115px;
  margin-right: 2px;
  line-height: 24px;
  padding-left: 27px;
}

/* ヘッダーサポートツールボタン */
.mi_utility_headerBtn {
  cursor: pointer;
  position: relative;
  width: 47px;
}
.mi_utility_headerBtnInner {
  border-left: 1px solid #e8e8e8;
  height: 24px;
  margin: 13px 0;
}
.mi_utility_headerBtnLink {
  display: block;
}
.mi_utility_headerBtnIcon {
  color: #b1b1b1;
  font-size: 20px;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
}
.mi_utility_headerBtn:hover .mi_utility_headerBtnIcon {
  color: #ffaa00;
}

/* ヘッダーお知らせ件数バッジ */
.mi_utility_headerBtnInner .notification-budge {
  position: absolute;
  top: 8px;
  left: 23px;
  width: 16px;
  height: 16px;
  background-color: #FFAA00;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mi_utility_headerBtnInner .notification-budge #notification-unread-count {
  color: #FFFFFF;
  font-size: 10px;
}

/* サポートアイコンCSS */
.icon-help-wrap {
}

/* 電話ダイアログボタン */
.icon-call {
}

/* お知らせ */
.icon-notification {
}

.mi_default_label_icon {
  width: 20px;
  height: 20px;
  font-size: 15px;
  padding: 17px 10px 13px 15px;
  cursor: pointer;
}

.mi_default_label_icon.tel_btn {
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
}

.mi_default_label_icon.tel_btn:hover {
  color: #ffaa00;
}

.mi_default_label_icon.icon-help {
  color: #b4b4b4;
  padding: 17px 10px 0 13px;
}

.mi_default_label_icon.icon-help:hover {
  color: #ffaa00;
}

.mi_default_label_icon_2 {
  font-size: 20px;
  margin-right: 10px;
  vertical-align: sub;
  cursor: pointer;
}

.mi_default_label_icon_3 {
  font-size: 20px;
  vertical-align: sub;
  margin-left: 10px;
}

.mi_header_select {
  width: 252px;
  height: 50px;
  position: relative;
  cursor: pointer;
}

.mi_header_select .mi_default_label_icon {
  color: #fa0;
}
.mi_header_select .mi_default_label_icon.mi_default_label_icon--b{
  color: #222;
}

.mi_header_select:hover {
  color: #222;
}

.mi_header_select .mi_header_select_icon {
  padding: 10px 0 5px;
  display: block;
  float: none;
  font-size: 16px;
}

.mi_header_select .mi_header_select_block {
  line-height: 1;
  float: none;
  font-size: 10px;
  position: relative;
}

.mi_header_select .mi_header_select_arrow_icon {
  position: absolute;
  margin-left: 10px;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 10px;
}

.mi_header_select .mi_header_arrow_icon {
  float: right;
  font-size: 12px;
  padding: 19px 10px 11px 0px;
  color: #222;
}

.mi_header_select * {
  float: left;
}

.mi_header_select > div {
  height: 50px;
  width: 100%;
}
.mi_header_select .client_setting a > div {
  width: 150px;
  overflow: hidden;
  height: 50px;
}

.mi_header_select ul.mi_select_option {
  visibility: hidden;
  opacity: 0;
  width: 100%;
  list-style: none;
  box-shadow: 0px 4px 6px 2px rgba(128, 128, 128, 0.24);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-top: -10px;
  height: 0;
  width: 190px;
  min-width: 100%;
}
.mi_header_select:hover ul.mi_select_option {
  width: 225px;
  position: relative;
  right: 26px;
  margin-top: 0px;
  visibility: visible;
  opacity: 1;
  height: auto;
}

ul.mi_select_option{
    max-height: calc(100vh - 50px);
    overflow: auto;
}

ul.mi_select_option li {
  width: 100%;
  height: 50px;
  background-color: #fff;
  text-align: center;
}

ul.mi_select_option a {
  width: 100%;
  height: 50px;
  color: #222;
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
}
ul.mi_select_option a.fontsize_12 {
  font-size: 12px;
  padding-left: 20px;
  box-sizing: border-box;
}
ul.mi_select_option img.option_icon {
  width: 20px;
  margin: 16px 10px 0 0;
}

.mi_header_select ul.mi_select_option a:hover {
  background: #f5f5f5;
}

/* 契約メニューのCSS */
.mi_header_select ul.mi_select_option.e_contract {
  width: 200px;
}
.mi_header_select ul.mi_select_option.e_contract a {
  padding: 0 20px;
  width: 200px;
  box-sizing: border-box;
}

.mi_user_detail {
  width: 200px;
  height: 50px;
}

.mi_active {
  color: #ffaa00;
}

.mi_guest_head_controller {
  margin-right: 56px;
}

/*----------------------------------------------------------------
  コンテンツ領域
-----------------------------------------------------------------*/
#mi_content_area {
  margin: 0 auto;
  display: block;
  width: 800px;
  padding: 30px 0 25px 0;
}

#mi_content_area.room_e_contract {
  margin: 0 auto;
  display: block;
  width: 800px;
  padding: 30px 0 0 0;
}

.mi_content_title {
  width: 100%;
  height: 50px;
  margin-bottom: 20px;
}
.mi_second_title {
  margin-top: 100px;
}
.mi_content_title h1 {
  color: #333;
  float: left;
  font-size: 20px;
  line-height: 50px;
  font-weight: bold;
}
.mi_content_title h1.mi_content_title_text {
  color: #555;
  float: left;
  font-size: 18px;
  line-height: 50px;
  font-weight: bold;
}
.mi_content_title_icon {
  margin: 13px 10px 15px 0;
  height: 20px;
  width: 20px;
  font-size: 20px;
  float: left;
  color: #ffaa00;
}
.mi_content_title_option span {
  width: 50px;
  height: 1em;
  position: absolute;
  top: 29px;
  left: 0px;
  text-align: center;
}
.mi_content_title_option span:first-child {
  color: #ffaa00;
  width: 20px;
  height: 20px;
  font-size: 20px;
  top: 7px;
  left: 15px;
}

.mi_title_action_btn span {
  font-size: 10px;
}
.mi_content_title_option .mi_title_action_btn {
  position: relative;
  float: left;
  width: 50px;
  height: 50px;
  margin-left: 8px;
  border-radius: 4px;
  background: #fff;
  color: #222;
  cursor: pointer;
  display: block;
}

.mi_content_title_option .mi_title_action_btn:hover {
  color: #222;
  background: #f5f5f5;
}

.mi_content_title_option .mi_title_action_btn:active {
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  color: #fff;
  background-color: #ffaa00;
}

.mi_content_title_option .mi_title_action_link {
  color: #fff;
  text-align: center;
  background-color: #ffaa00;
  display: inline-block;
  width: 180px;
  height: 50px;
  line-height: 50px;
  border-radius: 4px;
  margin-left: 20px;
}

.mi_content_title_option .mi_title_action_link:hover {
  opacity: 0.7;
}

.mi_content_notification {
  background-color: #fff;
  padding: 50px 40px;
}

.mi_content_notification p {
  font-size: 13px;
  color: #666;
}

.mi_content_notification h2 {
  font-size: 18px;
  margin: 5px 0 20px;
  color: #333;
}

.mi_content_notification .mi_content_notification_text {
  color: #333;
}

.mi_content_button_area {
  width: 100px;
  height: 100%;
  float: right;
}

.all_read_button_area {
  text-align: right;
  font-size: 12px;
}
#all_read_button {
  width: 50px;
  height: 50px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border-radius: 2px;
  padding: 7px 0 0 0;
  text-align: center;
}
#all_read_button p {
  color: #333333;
  font-size: 10px;
  width: 40px;
  padding: 5px 0;
  text-align: center;
  margin: 0 auto;
}
/* ipad PCモード時にテキストがボタン内に収まらないため、別で指定する */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  #all_read_button p {
    font-size: 7px;
  }
}
#all_read_button:hover {
  background: #F5F5F5;
}


/* ページネーション
------------------------------------ */

.mi_pagenation {
  width: 100%;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  margin: 24px 0 12px 0;
}
.mi_pagenation_result {
  float: left;
  margin-left: 40px;
  vertical-align: middle;
}
.file_count_wrap{
  float: left;
  height: 30px;
}
.file_all_delete{
  margin: 0 20px 0 5px;
}
.mi_pagenation_option {
  float: right;
  /* margin-right: 20px; */
  vertical-align: middle;
}

.mi_pagenation_option select {
  width: 100px;
  height: 32px;
  background: #fff;
  border: 1px solid #e1e1e1;
  font-size: 14px;
  margin-bottom: 4px;
}

.mi_page_select {
  float: right;
  margin: 0px 0px 0px 20px;
}
.mi_page_select a.mi_page_number {
  margin: 2.5px 4px;
  background: none;
  padding: 0;
  border: none;
  font-size: 14px;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  line-height: 25px;
  outline: none;
  font-weight: bold;
  color: #333;
  display: inline-block;
  text-align: center;
}
.mi_page_select a.mi_page_number:hover {
  background: #e1e1e1;
}
.mi_page_select a.mi_page_number.active,
.mi_page_select a.mi_page_number:active {
  background: #ffaa00;
  color: #fff;
}

.mi_page_select .mi_page_arrow_icon {
  cursor: pointer;
  font-size: 26px;
  color: #333;
  height: 25px;
  line-height: 25px;
  display: inline-block;
}

/* メインコンテンツ
------------------------------------ */
#mi_main_contents {
  min-height: calc(100vh - 150px);
  line-height: 1.8;
  padding: 50px 0;
}

#mi_top_nav {
  height: 50px;
  width: 100%;
}
#mi_top_nav.acount_manage_on {
  background: #fff;
}

#mi_top_nav .mi_default_label_icon {
  padding: 25px 5px 5px 17px;
  font-size: 12px;
}

#mi_top_nav li {
  position: relative;
  float: left;
  list-style: none;
  width: 187px;
  height: 50px;
}
#mi_top_nav li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
}
#mi_top_nav li a:hover {
  color: #222;
}
#mi_top_nav li a:active {
  color: #222;
}
#mi_top_nav li a > * {
  float: left;
}
#mi_top_nav li a > div {
  height: 50px;
  line-height: 60px;
}
#mi_top_nav li.mi_select a {
  color: #ffaa00;
}
#mi_top_nav li.mi_select:after {
  content: "";
  position: absolute;
  width: 80%;
  height: 2px;
  background-color: #ffaa00;
  bottom: 0;
  left: 10%;
}
#mi_top_nav li.mi_select span {
  color: #ffaa00;
}

#mi_top_nav .mi_breadcrumb_list {
  width: 88%;
  margin: 0 auto;
  text-align: right;
  padding-top: 17px;
  font-size: 12px;
}
#mi_top_nav .mi_breadcrumb_list a {
  color: #6e6e6e;
}
#mi_top_nav .mi_breadcrumb_list a:hover {
  color: #333;
}

#mi_top_nav .notification {
  position: relative;
  text-align: center;
  color: #fff;
  /* background-color: #2b125c; 元色 TODO: プルリク時に消す*/
  background-color: rgba(255, 170, 0, 0.6);
   /* ↑#FFAA00のrgb変換値 */
  height: 50px;
  padding: 0 30px;
}

#mi_top_nav .notification .icon-notification {
  font-size: 24px;
  position: absolute;
  top: 13px;
}

#mi_top_nav .notification a {
  color: #fff;
  text-decoration: underline;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
  line-height: 50px;
  max-width: calc(100% - 150px);
  margin-left: 45px;
}

#mi_top_nav .notification button {
  position: absolute;
  top: 10px;
  right: 30px;
  font-size: 14px;
  width: auto;
  height: 34px;
  line-height: 32px;
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: #2b125c;
  padding: 0 20px;
}

#mi_top_nav .notification button:hover {
  opacity: 0.8;
}

.document_narrow_flg {
  vertical-align: top;
}
/*----------------------------------------------------------------
  テーブル領域
-----------------------------------------------------------------*/

/* テーブル基本設定
-------------------------------------------------*/
.mi_table_main {
  background: #fff;
  margin: 0 auto;
  height: auto;
  table-layout: fixed;
  width: 100%;
}

.mi_table_main_wrap {
  width: 100%;
  max-width: 800px;
  overflow: auto;
  max-height: calc(100vh - 340px);
  min-height: 200px;
  clear: both;
}

.mi_table_main_wrap_top {
  width: 100%;
  max-width: 800px;
  clear: both;
  height: 130px;
  min-height: 130px;
  background: #fff;
}

.mi_table_main th {
  height: 40px;
  color: #fff;
  background-color: #ffaa00;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  position: sticky;
  top: 0px;
}

.mi_table_main td {
  width: auto;
  height: 42px;
  padding: 0 20px;
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid #e8e8e8;
  vertical-align: middle;
}

.mi_table_main .mi_table_item_1 {
  width: 55px;
  min-width: 55px;
  padding: 0;
}

.mi_table_main tbody tr:hover {
  background-color: #fff4e1;
}

.mi_table_main td input[type="checkbox"] {
  vertical-align: 0;
}

.mi_table_main td .mi_edit_icon {
  width: 16px;
  height: 16px;
  margin: 11px 0;
}

/* inputありテーブル設定
-------------------------------------------------*/

.mi_table_input_right_wrap_all {
  height: auto;
}
.mi_table_input_right tbody tr:nth-child(-n+2) {
  border-top: 1px solid #e8e8e8;
}

.mi_table_input_right .mi_check_td {
  width: 50px;
  min-width: 50px;
  padding: 0;
  background: #fff;
  border-right: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  color: #6e6e6e;
}
.mi_table_input_right .mi_tabel_title {
  width: 185px;
  background: #fff;
  border-right: 1px solid #e8e8e8;
  vertical-align: top;
  line-height: 58px;
  border-bottom: 1px solid #e8e8e8;
  color: #333;
  text-align: left;
  padding-left: 20px;
  padding-right: 15px;
  position: static;
}

.mi_table_input_right .mi_tabel_title_2_rows {
  width: 185px;
  background: #fff;
  border-right: 1px solid #e8e8e8;
  vertical-align: top;
  border-bottom: 1px solid #e8e8e8;
  color: #333;
  text-align: left;
  padding-left: 20px;
  padding-right: 15px;
  position: static;
}

.mi_table_input_right .mi_tabel_title_2_rows p:first-child {
  margin-top: 15px;
}

.mi_table_input_right .mi_tabel_title_2_rows p:last-child {
  margin-bottom: 15px;
}

.mi_table_input_right .mi_tabel_title_2 {
  width: 115px;
  background: #fff;
  border-right: 1px solid #e8e8e8;
  vertical-align: top;
  line-height: 55px;
  border-bottom: 1px solid #e8e8e8;
  color: #333;
  text-align: left;
  padding: 38px 20px 0px 30px;
}

.mi_table_input_right .mi_tabel_content.text {
  text-align: left;
  padding: 8px 8px 8px 30px;
  background: #fff;
  color: #333;
}

.mi_table_input_right .mi_tabel_content {
  text-align: left;
  padding: 8px 8px 8px 8px;
  background: #fff;
  color: #6e6e6e;
}

#sortButtonId {
  float: left;
  width: 20%;
  text-align: right;
}

/*-- inputのtd用 --*/
.mi_table_input_right .mi_default_input.input_hidden:focus,
.mi_table_input_right .mi_default_input {
  background: #fff;
  border: 1px solid #e8e8e8;
  text-align: left;
  height: 40px;
  padding: 0 20px;
  font-size: 14px;
}
.mi_table_input_right .mi_default_input.input_hidden {
  background: none;
  padding: 0px 0px 0px 20px;
  text-align: left;
  font-size: 14px;
  color: #6e6e6e;
}
.mi_table_input_right textarea.mi_default_input.input_hidden:focus,
.mi_table_input_right textarea.mi_default_input {
  padding: 11px 30px;
  height: 130px;
  width: 700px;
  border: 1px solid #e8e8e8;
}
.mi_table_input_right textarea.mi_default_input.input_hidden {
  padding-top: 11px;
}
.mi_table_input_right .mi_tabel_title .mi_default_input:focus,
.mi_table_input_right .mi_tabel_title .mi_default_input {
  text-align: left;
  width: 126px;
  height: 40px;
  padding: 0px 0px 0px 10px;
}
.mi_table_input_right .mi_free_title {
  vertical-align: middle;
  padding: 0px 0px 0px 8px;
}

.mi_table_input_right .mi_content_textarea {
  min-height: 180px;
  color: #6e6e6e;
  width: 100%;
  box-sizing: border-box;
  height: 50px;
  padding: 10px 10px 0px 10px;
  border: 1px solid #e9e8e7;
  resize: none;
  overflow: auto;
  white-space: pre-wrap;
  font-family: sans-serif;
  font-size: 13.3px;
}

.mi_tabel_content p.input_info_text {
  font-size: 85%;
}

/*-- inputテーブルの登録、キャンセルボタン表示 --*/

.mi_tabel_btn_area {
  margin-top: 20px;
  text-align: center;
}

/*-- inputテーブルのモーダル表示ボタン --*/
.mi_select_person_td .select_person {
  margin-right: 10px;
}
.mi_select_person_td .mi_cancel_btn {
  width: 70px;
}

/* 接続履歴用のテーブル
-------------------------------------------------*/

table.conect_list tbody tr:first-child {
  border-top: 1px solid #e8e8e8;
}

table.conect_list td {
  padding: 0 10px;
  cursor: pointer;
}

table.conect_list td:nth-child(1) {
  vertical-align: top;
  text-align: left;
  padding: 24px 30px;
  width: 530px;
}
table.conect_list td:nth-child(1) h2 {
  font-size: 16px;
}
table.conect_list td:nth-child(1) span {
  margin-right: 30px;
}
table.conect_list td:nth-child(1) span:before {
  color: #ffaa00;
}
table.conect_list td:nth-child(1) div {
  font-size: 12px;
}
table.conect_list td:nth-child(1) p {
  max-width: 575px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
}
table.conect_list td:nth-child(2) {
  width: 100px;
}
table.conect_list td:nth-child(2) a span {
  font-size: 25px;
}
table.conect_list td:nth-child(2) a {
  color: #b4b4b4;
  display: block;
}
table.conect_list td:nth-child(2) a:hover {
  color: #ffaa00;
}
table.conect_list td:nth-child(3) {
  padding: 0;
}
table.conect_list td:nth-child(3) a {
  display: block;
  height: 100%;
  padding-right: 20px;
  width: 40px;
  position: relative;
  float: right;
}
table.conect_list td:nth-child(3) span {
  width: 30px;
  display: inline-block;
  font-size: 50px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
table.conect_list td:nth-child(3):hover a {
  color: #222;
  background: #ffe1a0;
}

/* お知らせ用のテーブル
-------------------------------------------------*/
table.notification_list tbody tr:first-child {
  border-top: 1px solid #e8e8e8;
  width: 100%;
}

table.notification_list td {
  padding: 0 10px;
  cursor: pointer;
}

table.notification_list td:nth-child(1) {
  vertical-align: top;
  text-align: left;
  /* padding: 24px 30px; */
  padding: 24px 30px 24px 0px;
  width: 680px;
}
table.notification_list td:nth-child(1) .unread_circle {
  width: 10px;
  height: 10px;
  background-color: #FFAA00;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px 0 20px;
}
table.notification_list td:nth-child(1) .already_read {
  visibility: hidden;
}
table.notification_list td:nth-child(1) h2 .notification_title {
  font-size: 16px;
}
table.notification_list td:nth-child(1) p {
  max-width: 680px;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;

  margin-left: 40px;
}
table.notification_list td:nth-child(2) {
  padding: 0;
}
table.notification_list td:nth-child(2) a {
  display: block;
  height: 100%;
  padding-right: 20px;
  width: 40px;
  position: relative;
  float: right;
}
table.notification_list td:nth-child(2) span {
  width: 30px;
  display: inline-block;
  font-size: 50px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
table.notification_list td:nth-child(2):hover a {
  color: #222;
  background: #ffe1a0;
}

/* リストタイプのテーブル
-------------------------------------------------*/
table.table_listtype {
  width: 100%;
  table-layout: fixed;
}
table.table_listtype td {
  padding: 0 10px;
  cursor: pointer;
  height: 44px;
  line-height: 44px;
}
table.table_listtype td.mi_table_item_1 {
  padding: 0;
  width: 40px;
}
table.table_listtype td.mi_table_item_1 label {
  width: 45px;
  height: 45px;
  cursor: pointer;
  display: block;
}
table.table_listtype td.mi_table_item_1 input[type="checkbox"] {
  height: auto;
}
table.table_listtype td.mi_list_title {
  text-align: left;
  width: 44%;
}
table.table_listtype td.mi_list_title h2 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: normal;
}
table.table_listtype td.mi_list_share_stu {
  text-align: left;
  padding-left: 45px;
}
table.table_listtype td .mi_content_title_icon {
  margin: 11px 10px 6px 0;
}
table.table_listtype td.mi_list_arrow span {
  width: 30px;
  font-size: 27px;
  vertical-align: middle;
  display: block;
  float: right;
  padding-right: 10px;
}

/* リストタイプのテーブル
-------------------------------------------------*/

.mi_table_main_wrap.result_temp_type_wrap {
  height: auto;
}
table.result_temp_type tbody tr:first-child {
  border: none;
}
table.result_temp_type tbody tr:hover {
  background: none;
}
table.result_temp_type th {
  background: none;
  color: #333;
  text-align: right;
  padding: 25px 20px 0 0;
  vertical-align: top;
}
table.result_temp_type td {
  border: none;
  text-align: left;
  padding: 12px 20px 40px;
}
table.result_temp_type .mit_tmp_title_wrap td {
  padding-bottom: 16px;
}
table.result_temp_type td ul {
  list-style-type: none;
}
table.result_temp_type td li {
  margin-bottom: 8px;
}
table.result_temp_type td input {
  width: calc(100% - 40px);
  padding: 0 20px;
  text-align: left;
}
table.result_temp_type td .mi_tmp_answer {
  position: relative;
}
table.result_temp_type td .mi_tmp_answer .mi_tmp_answer_title {
  width: 80px;
  height: 52px;
  color: #fff;
  text-align: center;
  line-height: 52px;
  display: block;
  float: left;
  background: #a7a7a7;
}
table.result_temp_type td .mi_tmp_answer .mi_input_clear_btn {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 10px;
  font-weight: bold;
  color: #fff;
  display: block;
  background: #b4b4b4;
  border-radius: 20px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
table.result_temp_type td .mi_tmp_answer input {
  width: calc(100% - 150px);
  padding-right: 50px;
}
table.result_temp_type td .mi_add_answer_btn {
  width: 105px;
  height: 30px;
  color: #6e6e6e;
  line-height: 30px;
  padding: 0 15px;
  cursor: pointer;
}
table.result_temp_type td .mi_add_answer_btn:hover {
  background: #e1e1e1;
}
table.result_temp_type td .icon-puls {
  font-size: 13px;
  display: inline-block;
  font-weight: bold;
  margin-right: 10px;
}

/* 担当者のテーブル
-------------------------------------------------*/

.idsselect_table th:first-child {
  width: 50px;
}

.idsselect_table td {
  text-align: center;
}

/* カメラ設定のテーブル
-------------------------------------------------*/

.mi_camera_setting_table .mi_tabel_title {
  width: 250px;
}

/*----------------------------------------------------------------
  サイドバー設定
-----------------------------------------------------------------*/

/* サイドバーありのコンテンツ設定
------------------------------------ */
.sidemenu_contents {
  margin-left: 200px;
  min-width: 800px;
}
.sidemenu_contents #mi_content_area {
  width: 100%;
  max-width: 800px;
}
.sidemenu_contents .mi_table_main,
.sidemenu_contents .mi_table_main_wrap {
  width: 100%;
}

.anim_add {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

/* サイドバーの設定
------------------------------------ */
#mi_sidemenu {
  background: #fff;
  border-right: 1px solid #e8e8e8;
  position: fixed;
  cursor: pointer;
  height: 100%;
  overflow: hidden;
  width: 200px;
  left: -200px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  z-index: 9;
}
#mi_sidemenu.mi_onmenu {
  left: 0;
}
.mi_sidemenu_butn {
  height: 50px;
  line-height: 50px;
  text-align: left;
}
.mi_s_open_btn {
  position: fixed;
  cursor: pointer;
  width: 50px;
  left: 0;
  z-index: 10;
}

.mi_sidemenu_butn .mi_default_label_icon {
  font-size: 30px;
  line-height: 50px;
  padding: 0 10px;
}

#mi_sidemenu .mi_sidemenu_list.mi_active,
#mi_sidemenu .mi_sidemenu_list a {
  height: 50px;
  line-height: 50px;
  display: block;
  padding-left: 15px;
}

.mi_sidemenu_butn:hover,
#mi_sidemenu .mi_sidemenu_list a:hover {
  background: #e1e1e1;
}

#mi_sidemenu .mi_sidemenu_list.mi_active span,
#mi_sidemenu .mi_sidemenu_list.mi_active {
  background: #ffaa00;
  color: #fff;
}

/*----------------------------------------------------------------
  フッター領域
-----------------------------------------------------------------*/
/* Footer */
footer {
  height: 50px;
  width: 100%;
  min-width: 1280px;
  background-color: #ffaa00;
  z-index: 20;
  position: relative;
}

footer.mi_video {
  position: fixed;
  bottom: 0;
  text-align: center;
}

footer.footer-min-none {
  min-width: 0;
}
/* 商談中フッタ
------------------------------------ */
.mi_footer_link_button button {
  width: 145px;
  height: 50px;
  background: #ffaa00;
  font-size: 13px;
}
.mi_footer_link_button {
  display: flex;
  justify-content: center;
}

/* 資料追加する部分のレイアウト調整 */
.document_addition_wrap {
  margin: 10px 0px 10px 60px;
  height: 50px;
  float: left;
  overflow-x: hidden;
  flex-shrink: 2;
}

/* CROME以外の時、「画面共有」のボタンをホバー不可にする */
.invisible_share_screen_button {
  pointer-events: none;
}

.footer_button_wrap {
  flex-shrink: 1;
}

.mi_footer_link_button button:hover {
  background: #eb9600;
}
.mi_footer_link_button button.active {
  background: #eb9600;
}

.button_reconnect_disable_user {
  background: #ffaa00 !important;
}

.mi_memo_icon {
  font-size: 20px;
  vertical-align: middle;
  margin-right: 10px;
}

.manual_download {
  width: auto;
  color: #fff;
  text-align: right;
  margin-left: 20px;
  line-height: 50px;
  margin-top: 15px;
}

/* copyright */
.mi_copyright {
  float: right;
  width: auto;
  color: #fff;
  text-align: right;
  margin-right: 50px;
  line-height: 35px;
  margin-top: 15px;
}

.move_thumbnail_prev {
  margin: 10px 30px 10px 30px;
  position: absolute;
  left: 40px;
  top: 0;
  font-size: 32px;
  display: none;
}
.move_thumbnail_prev:hover {
  cursor: pointer;
}
.move_thumbnail_next {
  margin: 10px 0px 10px 30px;
  position: absolute;
  left: 250px;
  top: 0;
  font-size: 32px;
  display: none;
}
.move_thumbnail_next:hover {
  cursor: pointer;
}
.mi_document_select {
  margin: 10px 0px 10px 60px;
  /* padding-right: 40px; */
  height: 50px;
  position: absolute;
  left: 34px;
  top: 0;
  width: 50px;
  overflow-x: hidden;
}
.mi_document_select ul {
  width: 50px;
  height: 50px;
}
.mi_document_select li {
  list-style: none;
  float: left;
  width: 42px;
  margin-right: 8px;
  cursor: pointer;
}
.mi_document_icon {
  width: 42px;
  height: 30px;
  margin-right: 8px;
}
.mi_document_arrow_icon {
  position: absolute;
  width: 15px;
  height: 50px;
  margin-left: 8px;
  right: 0;
  top: 0px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

/* ゲスト商談中フッタ
------------------------------------ */

.mi_guest_footer .mi_offview {
  display: none;
}
.mi_guest_footer .mi_screen_share {
  width: 210px;
}
.mi_guest_footer .mi_video_toggle {
  width: 235px;
}
.mi_guest_footer .video_thumbnail {
  display: inline-block;
  border: 2px dotted #fff;
  height: 26px;
  width: 40px;
  margin-top: -4px;
  vertical-align: middle;
  margin-right: 10px;
}
.mi_guest_footer .mi_reconnect {
  position: absolute;
  right: 0;
}

/*----------------------------------------------------------------
  フォーム部品
-----------------------------------------------------------------*/

/* フォーム共通デザイン */
.mi_mtin .mi_input {
  height: 30;
  width: 250px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #e8e8e8;
}

input.mi_default_input {
  width: 270px;
  height: 50px;
  text-align: center;
  font-size: 16px;
  border: 1px solid #e8e8e8;
}
input.mi_default_input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}
input:placeholder-shown {
  color: #a7a7a7;
}
input::-webkit-input-placeholder {
  color: #a7a7a7;
}
input:-moz-placeholder {
  color: #a7a7a7;
  opacity: 1;
}
input::-moz-placeholder {
  color: #a7a7a7;
  opacity: 1;
}
input:-ms-input-placeholder {
  color: #a7a7a7;
}

/* 共通ボタンデザイン */
button {
  cursor: pointer;
    outline: none;
    border: none;
    color: #fff;
    background-color: #ffaa00;
    text-align: center;
    height: 40px;
    width: 130px;
    font-size: 16px;
    cursor: pointer;
}

.mi_mtin .mi_btn {
  background: #f5f5f5;
  color: #fff;
  background: #ffaa00;
  text-align: center;
}

.mi_default_button {
  width: 200px;
}

.mi_default_button:active {
  background-color: #D86B00;
}
  
.mi_default_button:hover {
  opacity: 0.7;
}

.mi_btn_s {
  height: 30px;
  width: 100px;
}
.mi_btn_m {
  height: 40px;
  width: 130px;
}
.mi_btn_l {
  height: 45px;
  width: 360px;
}
.mi_solid_btn {
  border-bottom: 5px solid #eb9600;
}

.mi_cancel_btn {
  background: #b4b4b4;
  color: #fff;
  margin-right: 4px;
}
.mi_cancel_btn:hover {
  background: #c8c8c8;
  color: #fff;
}

.mi_inactive_btn {
  background: #e1e1e1;
  color: #f7f7f7;
}

.mi_dl_btn {
  background: #fff;
  border: 1px solid #c8c8c8;
  color: #6e6e6e;
  margin-right: 4px;
  display: inline-block;
  font-size: 12px;
  line-height: 38px;
  height: 38px;
  cursor: pointer;
  outline: none;
  text-align: center;
  vertical-align: middle;
}
.mi_dl_btn:hover {
  background: #c8c8c8;
  color: #fff;
  border: 1px solid #c8c8c8;
}

/* ログインフォームタイトル */
img.mi_logo_image {
  top: 110px;
  width: 300px;
  left: 17%;
}
.mi_subtitle {
  top: 80px;
}

.mi_half_background {
  width: 50%;
  height: 100vh;
  min-height: 450px;
  float: left;
}

/*----------------------------------------------------------------
  検索ボックス
-----------------------------------------------------------------*/
.search_box {
  line-height: 50px;
  height: 50px;
  width: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-left: 8px;
}
.search_box--on {
  margin: 0;
  width: 300px;
}
.search_box button {
  line-height: 50px;
  height: 50px;
  width: 50px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
}
.search_box input {
  width: 300px;
  left: 0;
  height: 50px;
  position: absolute;
  box-sizing: border-box;
  font-size: 14px;
  padding: 0 84px 0 20px;
  outline: none;
  color: #6e6e6e;
  border: 1px solid #e1e1e1;
}
/* ieで表示されるinputのバツボタンを非表示 */
.search_box input::-ms-clear {
  visibility: hidden;
}

.search_close_button {
  position: absolute;
  color: #6e6e6e;
  top: 18px;
  left: 225px;
  cursor: pointer;
}

/*----------------------------------------------------------------
  ON/OFF スイッチボタン
-----------------------------------------------------------------*/

 /* ボタンを表示するエリア */
 .switchArea {
  line-height    : 36px;
  letter-spacing : 0;
  text-align     : center;
  font-size      : 16px;
  position       : relative;
  width          : 92px;
}

 /* チェックボックス */
.switchArea input[type="checkbox"] {
  display        : none;
}

 /* チェックボックスのラベル（標準）*/
.switchArea label {
  display          : block;
  box-sizing       : border-box;
  border           : 2px solid #B1B1B1;
  border-radius    : 20px;
  opacity          : 1;
  background-color : #B1B1B1;
  height           : 36px;
}
.switchArea label:checked {
  background-color : #FFA000;
}

 /* チェックボックスのラベル（ONのとき）*/
.switchArea input[type="checkbox"]:checked +label {
  border-color   : #FFA000;
}

 /* 表示する文字（標準）*/
.switchArea label span:after{
  content          : "OFF";
  padding          : 0 0 0 20px;
  background-color : #B1B1B1;
  color            : #FFFFFF;
}

 /* 表示する文字（ONのとき）*/
.switchArea  input[type="checkbox"]:checked +label span:after{
  content          : "ON";
  padding          : 0 20px 0 0;
  color            : #FFFFFF;
  background-color : #FFA000;
}

 /* 丸部分（標準）*/
.switchArea #swImg {
  position       : absolute;
  width          : 30px;
  height         : 30px;
  background     : #FFFFFF;
  top            : 3px;
  left           : 4px;
  border-radius  : 26px;
  transition     : .2s;
}

 /* 丸部分（ONのとき） */
.switchArea input[type="checkbox"]:checked ~ #swImg {
  transform      : translateX(55px);    /* 丸も右へ移動 */
  background     : #FFFFFF;
}



/*----------------------------------------------------------------
  モーダル
-----------------------------------------------------------------*/

/* モーダル共通
------------------------------------ */

.mi_modal_wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1000;
  top: 0;
  left: 0;
}
.mi_modal_shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  top: 0;
  left: 0;
}
.mi_modal_default {
  position: fixed;
  margin: auto;
  width: 600px;
  height: 310px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  border-radius: 6px;
}

.mi_modal_type_m {
  line-height: 1.5em;
  font-size: 18px;
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.mi_modal_type_m .icon-connect {
  font-size: 75px;
  display: block;
  margin-bottom: 35px;
  color: #b4b4b4;
}

.mi_modal_type_m .icon {
  font-size: 75px;
  margin-bottom: 35px;
  display: block;
  color: #b4b4b4;
}

.mi_modal_type_s {
  width: 370px;
  height: 85%;
}

.mi_modal_default .mi_content_title {
  height: auto;
}
.mi_modal_default .mi_content_title h2 {
  font-size: 20px;
  line-height: 50px;
  font-weight: bold;
}
.mi_modal_default .modal_search {
  width: auto;
  margin: 0;
}
.mi_modal_default .modal_search input {
  width: 385px;
}
.mi_modal_default .modal_search .search_close_button {
  left: auto;
  right: 59px;
}
.mi_modal_default .mi_table_main_wrap {
  height: calc(100% - 180px);
  min-height: 150px;
}

.mi_modal_default .mi_close_icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 25px;
  padding: 10px 0;
  cursor: pointer;
  text-align: center;
  background: #f5f5f5;
}
.mi_modal_default .mi_close_icon:hover {
  background: #e1e1e1;
}
.mi_modal_default .mi_close_icon:active {
  background: #e1e1e1;
}

.mi_modal_default .mi_close_icon span {
  font-size: 25px;
  color: #6e6e6e;
}
.mi_modal_default .mi_close_icon:hover span {
  color: #fff;
}
.mi_modal_default .mi_close_icon:active span {
  color: #fff;
}

/* 担当者選択モーダル
------------------------------------ */

.mi_modal_type_s {
  width: 370px;
  height: 85%;
}

.mi_modal_title {
  padding: 20px 30px;
  font-size: 16px;
  border-bottom: 1px solid #e1e1e1;
}

.mi_modal_contents_body {
  padding: 20px 30px;
}

.mi_modal_contents_body .mi_table_main {
  width: 100%;
}

.mi_modal_contents_body .mi_table_main_wrap {
  width: 100%;
  min-width: auto;
}

.mi_modal_contents_body #search_form {
  margin-bottom: 20px;
}

.mi_modal_contents_body .search_box input {
  width: 310px;
}

/* ゲスト終了モーダル
------------------------------------ */

.mi_modal_default .mi_gest_close_buton {
  width: 250px;
  margin-top: 20px;
}

/* 再接続モーダル
------------------------------------ */

.progress_bar_wrap {
  position: relative;
  height: 5px;
  width: 370px;
  background: #e1e1e1;
  margin: 20px auto 0;
}
.progress_bar {
  height: 5px;
  width: 20%;
  background: #ffaa00;
}

/* 許可モーダル
------------------------------------ */

.mi_modal_btn_wap {
  margin-top: 20px;
}

/* 電話モーダル
------------------------------------ */
#mi_tel_modal {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #f5f5f5;
  top: 0;
}

#mi_tel_modal.mi_onview {
  display: block;
}
#mi_tel_modal .mi_tel_modal_inner {
  background: #f5f5f5;
  height: 455px;
}
#mi_tel_modal .mi_close_icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 25px;
  padding: 10px 0;
  cursor: pointer;
  text-align: center;
  background: #f5f5f5;
}
#mi_tel_modal .mi_close_icon:hover {
  background: #e1e1e1;
}
#mi_tel_modal .mi_close_icon:active {
  background: #e1e1e1;
}

#mi_tel_modal .mi_close_icon span {
  font-size: 25px;
  color: #6e6e6e;
}
#mi_tel_modal .mi_close_icon:hover span {
  color: #fff;
}
#mi_tel_modal .mi_close_icon:active span {
  color: #fff;
}

#mi_tel_modal .mi_display_title {
  margin-bottom: 10px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  height: 45px;
  line-height: 45px;
  font-size: 14px;
}

#mi_tel_modal .mi_display_title .mi_title_icon {
  margin-right: 5px;
  color: #ffaa00;
}

#mi_tel_modal .mi_number_display {
  width: 100%;
  background-color: #fff;
  padding: 20px 0 10px;
  box-sizing: border-box;
  overflow: hidden;
  height: 65px;
  position: relative;
}

#mi_tel_modal .mi_call_number {
  font-size: 28px;
  text-align: center;
  height: 1em;
  width: 230px;
  padding: 0 20px;
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
}

#mi_tel_modal .mi_clear_btn {
  background: #fff;
  position: absolute;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(115px);
  line-height: 65px;
  text-align: center;
  width: 20px;
}
#mi_tel_modal .mi_number_clear_btn {
  width: 15px;
  height: 15px;
  text-align: center;
  line-height: 15px;
  font-size: 10px;
  color: #fff;
  display: inline-block;
  background: #e1e1e1;
  border: 1px solid #e1e1e1;
  border-radius: 15px;
  cursor: pointer;
}

#mi_tel_modal .mi_number_button {
  width: 270px;
  margin: 24px auto;
}

#mi_tel_modal .mi_number_button td {
  width: 90px;
  height: auto;
  font-size: 22px;
  height: 45px;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  background: #fff;
  border: 1px solid #e1e1e1;
}
#mi_tel_modal .mi_number_button td:hover {
  background-color: #f5f5f5;
}
#mi_tel_modal .mi_number_button td:active {
  background-color: #ffaa00;
  color: #fff;
}

#mi_tel_modal .mi_call_option {
  width: 270px;
  margin: 0 auto;
  height: 40px;
  text-align: center;
}

#mi_tel_modal .mi_call_option button {
  width: 128px;
  margin-right: 8px;
  border: 1px solid #e1e1e1;
  background: #fff;
  color: #6e6e6e;
  font-size: 12px;
  display: inline-block;
  vertical-align: top;
}
#mi_tel_modal .call_option_icon {
  color: #ffaa00;
  display: inline-block;
  position: relative;
  font-size: 14px;
  font-weight: bold;
  padding-top: 6px;
  margin-right: 2px;
}
#mi_tel_modal .call_option_text1 {
  text-align: left;
  display: inline-block;
  line-height: 1.2;
  cursor: pointer;
  font-size: 15px;
  padding-bottom: 5px;
}

#mi_tel_modal .call_option_text2 {
  text-align: left;
  display: inline-block;
  line-height: 1.2;
  cursor: pointer;
  font-size: 15px;
}

#mi_tel_modal .call_option_text3 {
  text-align: left;
  display: inline-block;
  line-height: 1.2;
  cursor: pointer;
  font-size: 15px;
  padding-bottom: 4px;
  color: #ffffff;
}

#mi_tel_modal .mi_call_option button:last-child {
  margin: 0;
}
#mi_tel_modal .mi_call_option button:last-child .call_option_icon {
  top: -1px;
  left: 1px;
}

#mi_tel_modal .mi_call_option button:hover {
  background: #f5f5f5;
}

#mi_tel_modal .call_option_img {
  width: 14px;
  color: #ffaa00;
  display: inline-block;
  position: relative;
  margin-right: 1px;
  padding-bottom: 2px;
  vertical-align: middle;
}

#mi_tel_modal .mi_call_button {
  width: 270px;
  height: 45px;
  margin: 10px auto 0;
  display: block;
  background-color: #ffaa00;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  border: none;
  outline: none;
  text-align: center;
}
#mi_tel_modal .mi_call_button > div {
  width: auto;
  height: 41px;
  line-height: 41px;
  font-size: 20px;
}
#mi_tel_modal .mi_call_button > div > span {
  margin: 5px;
  font-size: 24px;
  font-weight: bold;
  vertical-align: text-bottom;
}

#mi_tel_modal .mi_call_button > div > img {
  width: 20px;
  padding-bottom: 10px;
  margin-right: 5px;
}

#mi_tel_modal .mi_meetin_c {
  display: none;
}
#mi_tel_modal.meetin_call .mi_call_m {
  display: none !important;
}
#mi_tel_modal.meetin_call .mi_meetin_c {
  display: inline-block;
}
#mi_tel_modal.meetin_call .mi_tel_modal_inner,
#mi_tel_modal.meetin_call {
  background: #333;
}
#mi_tel_modal.meetin_call .mi_display_title.mi_meetin_c {
  color: #fff;
}

#mi_tel_modal.meetin_call #mi_changeMeetinCallButton {
  background: #333;
  border: 1px solid #ffaa00;
  color: #ffaa00;
}
#mi_tel_modal.meetin_call .mi_close_icon {
  background: #333;
}
#mi_tel_modal.meetin_call .mi_close_icon:hover {
  background: #5a5a5a;
}
#mi_tel_modal.meetin_call .mi_close_icon:active {
  background: #5a5a5a;
}
#mi_tel_modal.meetin_call .mi_close_icon span {
  color: #fff;
}

/* 自分がIEでSPユーザーは必ずビデオOFFにするためのクラス */
.forced_img_video_off {
  display: block !important;
}

/*--------------------------------------
  補足
---------------------------------------*/
.mi_mgn-auto {
  margin: 0 auto;
}
.mi_align-l {
  text-align: left;
}
.mi_align-r {
  text-align: right;
}
.mi_align-c {
  text-align: center;
}

/* ウェビナー設定の>アイコン */
.icon_arrow_webinar_setting{
  width: 20px;
  height: 20px;
  font-size: 23px;
  padding: 14px 10px 13px 45px;
  cursor: pointer;
}
.hide_style{
  display: none;
}


/*--------------------------------------
  標準ダイアログ.
---------------------------------------*/
#mi_alert_dialog_background {
  position: fixed;
  background: rgba(120, 120, 120, 0.5) 0% 0% no-repeat padding-box;
  width: 100%;
  height: 100%;
  top: 0;
  border-radius: 5px;

  z-index: 1000;
}

#mi_alert_dialog_background #mi_alert_dialog_area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 45px 40px 50px 40px;
  background: #fff;
}

#mi_alert_dialog_background #mi_alert_dialog_title {
  text-align: center;
  font-size: 18px;
  color: rgba(255, 170, 0, 1);
  font-weight: 700;
}

#mi_alert_dialog_background #mi_alert_dialog_content {
  text-align: left;
  margin: 15px auto 30px;
  width: max-content;
  font-size: 12px;
  line-height: 1.75;
}

#mi_alert_dialog_background #mi_alert_dialog_close {
  color: #fff;
  background-color: rgba(255, 170, 0, 1);
  width: 123px;
  margin: 0 auto;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

#mi_confirm_dialog_background {
  position: fixed;
  background: rgba(120, 120, 120, 0.5) 0% 0% no-repeat padding-box;
  width: 100%;
  height: 100%;
  top: 0;
  border-radius: 5px;

  z-index: 1000;
}

#mi_confirm_dialog_background #mi_confirm_dialog_area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 45px 90px 50px;
  background: #fff;
  border-radius: 5px;
}

#mi_confirm_dialog_background #mi_confirm_dialog_area #mi_confirm_dialog_title {
  text-align: center;
  font-size: 18px;
  color: rgba(255, 170, 0, 1);
  font-weight: 700;
}

#mi_confirm_dialog_background #mi_confirm_dialog_area #mi_confirm_dialog_content {
  text-align: left;
  margin: 15px auto;
  width: max-content;
  font-size: 12px;
  line-height: 1.75;
}

#mi_confirm_dialog_background #mi_confirm_dialog_area #mi_confirm_dialog_checkbox {
  margin: 0px auto;
}

#mi_confirm_dialog_background #mi_confirm_dialog_area #mi_confirm_dialog_checkbox #mi_confirm_dialog_checkbox_val {
  display: none;
}

#mi_confirm_dialog_background #mi_confirm_dialog_area #mi_confirm_dialog_checkbox #mi_confirm_dialog_checkbox_text {
  font: normal normal normal 12px/21px Hiragino Sans;
  color: #585858;
  display:flex;
  position: relative;
}

#mi_confirm_dialog_background #mi_confirm_dialog_area #mi_confirm_dialog_checkbox #mi_confirm_dialog_checkbox_text::before{
  content: "";
  display: block;
  margin-right: 8px;
  margin-top: 2px;
  width: 15px;
  height: 15px;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
}

#mi_confirm_dialog_background #mi_confirm_dialog_area #mi_confirm_dialog_checkbox #mi_confirm_dialog_checkbox_val:checked + #mi_confirm_dialog_checkbox_text::after{
  content: "";
  display: block;
  position: absolute;
  margin-left:5px;
  margin-top:3px;
  width: 5px;
  height: 10px;
  transform: rotate(40deg);
  border-bottom: 1px solid #FFAA00;
  border-right: 2px solid #FFAA00;
}

#mi_confirm_dialog_background #mi_confirm_dialog_area #mi_confirm_dialog_button_area {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

#mi_confirm_dialog_background #mi_confirm_dialog_area #mi_confirm_dialog_button_area #mi_confirm_dialog_cancel {
  color: #fff;
  background: #B1B1B1 0% 0% no-repeat padding-box;
  width: 123px;
  margin: 0 auto;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

#mi_confirm_dialog_background #mi_confirm_dialog_area #mi_confirm_dialog_button_area #mi_confirm_dialog_submit {
  color: #fff;
  background-color: rgba(255, 170, 0, 1);
  width: 123px;
  margin: 0 auto;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-left: 30px;
}

.mi_table_main>thead>tr{
  background-color: rgba(255, 170, 0, 1);
}
