/* spacer */
.height-space-xs{
  height: 10px;
}

.height-space-sm{
  height: 20px;
}

.height-space-md{
  height: 50px;
}

.height-space-lg{
  height: 100px;
}
/* end spacer */


/* 短縮備考 */
.shortening_remark{
  max-width: 500px;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shortening_remark_open{
  max-width: 500px;
  white-space:normal;
  height:auto !important;
}
/* end 短縮備考 */



.tooltips :hover{
  cursor: pointer;
}

.login_img{
  position: relative;
}

.login_img .login_logo{
  position: absolute;
  display: flex;
  justify-content: center;
    align-items: center;
  top: 35%;
  left: 0;
}

.login_img .login_logo_mobile{
  position: absolute;
  display: flex;
  justify-content: center;
    align-items: center;
  top: 25%;
  left: 0;
}

.login_logo img{
  width:40%;
  height:auto;
}

.login_img .login_fullimg{
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}


.card .title{
  margin: 0;
  padding: 1rem !important;
}

.card .content{
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.input-sm{
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.max-300{
  display: block;
  width: 300px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* 設備予約系 */
.minute-wrapper{
  padding:0
}

.reserve_hour_top,
.reserve_hour_body {
  border: 1px solid black;
  border-bottom: 0;
  text-align: center;
}

.reserve_hour_bottom {
  border: 1px solid black;
  text-align: center;
}

.s_name {
  border: 1px solid black;
  border-left: 0;
  text-align: center;
}

.reserve_space_top {
  border-right: 1px solid black;
}

.reserve_space_body {
  border-top: 1px dotted black;
  border-right: 1px solid black;
  border-left: 0;
}

.reserve_space_bottom {
  border: 1px solid black;
  border-top: 1px dotted black;
  border-left: 0;
}

/*div要素全体にリンクをつけるために必要な要素*/
.linkbox {
  position: relative;
}
.linkbox a {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

/* 以下見た目をわかりやすくするための設定*/
.linkbox a:hover {
  /* マウスオーバー時に色変更*/
  opacity: 0.1;
  background-color: #000000;
}


#pwainstall_button:after{
  content: none;
}

.table-pointer tbody tr {
  cursor:pointer;
}



/* スケジュール */
.googleCalendar iframe {
  width: 100%;
  height: 400px;
}
@media(min-width: 768px) {
  .googleCalendar iframe {
	height: 600px;
  }
}


/**** 進捗一覧ページ ****/
#mikomi_table tbody tr td{
  padding-top: 4px;
  padding-bottom: 4px;
}

.progress-list-tr{
  cursor:pointer;
  height:45px;
}

.progress-list-icon{
  padding:.2rem;
  width:17px;
  height:17px;
  border-radius:50%;
}

.icon-yellow{
  background-color: #ff0;
}

.icon-pink{
  background-color: #ffc5e0;
}

.icon-skyblue{
  background-color: skyblue;
}



/*** 案件進捗　新規登録 ****/

/* ステップバー */
.stepBar {
  position: relative;
  list-style: none;
  margin: 0 0 1em;
  padding: 0;
  text-align: center;
  width: 100%;
  overflow: hidden;
  *zoom: 1;
}
.stepBar .step {
  position: relative;
  float: left;
  display: inline-block;
  line-height: 40px;
  padding: 0 40px 0 20px;
  background-color: #eee;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
}
.stepBar .step:hover, .stepBar .step:hover:before, .stepBar .step:hover:after{
  background-color: rgb(227, 174, 255)
}
.stepBar .step:before, .stepBar .step:after {
  position: absolute;
  left: -15px;
  display: block;
  content: '';
  background-color: #eee;
  border-left: 4px solid #FFF;
  width: 20px;
  height: 20px;
}
.stepBar .step:after {
  top: 0;
  -moz-transform: skew(30deg);
  -ms-transform: skew(30deg);
  -webkit-transform: skew(30deg);
  transform: skew(30deg);
}
.stepBar .step:before {
  bottom: 0;
  -moz-transform: skew(-30deg);
  -ms-transform: skew(-30deg);
  -webkit-transform: skew(-30deg);
  transform: skew(-30deg);
}
.stepBar .step:first-child {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.stepBar .step:first-child:before, .stepBar .step:first-child:after {
  content: none;
}
.stepBar .step:last-child {
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.stepBar .step.current {
  border-radius: 50px 0 0 50px;
}
.stepBar .step.current:before, .stepBar .step.current:after {
  background-color: #E3A62F;
}
.stepBar .step.end {
  border-radius: 0 50px 50px 0;
}
.stepBar .step.active, .stepBar .step.active:before, .stepBar .step.active:after {
  background-color: #E3A62F;
  color: #FFF;
}
.stepBar .step.current_end {
  border-radius: 50px;
}
.stepBar.step1 .step {
  width: 100%;
}
.stepBar.step2 .step {
  width: 50%;
}
.stepBar.step3 .step {
  width: 33.333%;
}
.stepBar.step4 .step {
  width: 25%;
}
.stepBar.step5 .step {
  /* width: 16.666%; */
  /* width: 14.7%; */
  width: 20%;
}

.cd-breadcrumb{
  width: 100%;
  /* max-width: 768px; */
  padding: 0.5em 1em;
  background-color: #edeff0;
  border-radius: 0.25em;
  list-style: none;
}
.cd-breadcrumb li{
  display: inline-block;
  margin: 0.5em 0;
  cursor: pointer;
}

.cd-breadcrumb li:hover{
  opacity: 0.5;
  color: #E3A62F;
}

.cd-breadcrumb .active{
  /* background-color: #E3A62F; */
  color: #E3A62F;
  font-weight:700;
  text-decoration: double;
}

.cd-breadcrumb li::after {
  display: inline-block;
  content: '\00bb';
  margin: 0 0.6em;
  color: #959fa5;
}
.cd-breadcrumb .current::after{
  clear: both !important;
  content: "" !important;
  display: table !important;
}

/* saveボタン */
#project_save_btn{
  position: fixed;
  bottom: 10px;
  right: 10px;
  padding: 6px 40px;
}

.progress_edit_btn a{
  cursor:pointer;
  color: #1cc88a !important;
}

.progress_edit_btn :hover, .step :hover{
  cursor:pointer;
  background-color: #1cc88a;
  color: #fff !important;
  border-radius: 0.1rem;
}

/* ワンポイントアドバイス */
.bd-callout {
  padding: 20px;
  border: 1px solid #eee;
  border-left-width: 5px;
  border-radius: 3px;
}
.bd-callout h6 {
  margin-top: 0;
  margin-bottom: 5px;
}
.bd-callout p:last-child {
  margin-bottom: 0;
}
.bd-callout code {
  border-radius: 3px;
}
.bd-callout+.bd-callout {
  margin-top: -5px;
}
.bd-callout-info {
  border-left-color: #5bc0de;
}
.bd-callout-info h6 {
  color: #5bc0de;
}


/*** 顧客・紹介者関連 ****/
/* 性別の入力に関して */
#gender_text, #spouse_gender, #spouse_gender_edit{
  display: none;
}

/*** ヒアリングシート ****/
#hearingsheet_table{
  width: 800px;
}

#hearingsheet_table tbody tr td{
  border: 1px solid #000;
  font-size: 12px;
}

.hs-td-bg{
  background-color: #4c4c4c;
  color: #fff;
}

.hs-td-subbg{
  background-color: #ddd;
}

/* 編集モード */
.hs-input{
  border-top: 0 !important;
  border-right: 0 !important;
  border-left: 0 !important;
  border-bottom: 1px solid #858796 !important;
}

.hs-input:focus-visible{
  outline:0;
  border-bottom: 2px solid #E3A62F !important;
}




/*** BD ****/
/* OCR文字列選択時のツールチップ */

.result_ocr_toolTip{
  display: none;
  margin: 0;
  padding: 10px;
  background-color: #8587966a;
  color: #fff;
  border-radius: 5px;
  -moz-border-radius: 5px;
  min-height: 30px;
  position: absolute;
  z-index: 50;
}


/*** REINS ****/
/* こだわり条件 初期状態 */
.reins_option{
  display: none;
}


/*** ATBB ****/
/* 物件種目【中】その他 */
#syumoku_tyu_hidden{
  display: none;
}


/*** KPI ****/
/* データ集計（個別） */
.kobetsu_chart{
  height:300px;
}

.pl-analysis-table thead tr th,
.pl-analysis-table tbody tr td{
  vertical-align: middle;
}

/*** 事務専用 ****/
/* 経費 */
.keihi_detail_link{
  cursor: pointer;
}

.keihi-table td{
  vertical-align: middle !important;
}
