

@font-face{
  font-family: ipaexm;
  font-style: normal;
  font-weight: normal;
  src:url('{{ storage_path('fonts/ipaexm.ttf')}}');
}

@font-face {
    font-family: ipaexg;
    font-style: normal;
    font-weight: normal;
    src: url('{{ storage_path('fonts/ipaexg.ttf') }}') format('truetype');
}

@font-face {
    font-family: ipaexg;
    font-style: bold;
    font-weight: bold;
    src: url('{{ storage_path('fonts/ipaexg.ttf') }}') format('truetype');
}

html {
    position: relative;
    min-height: 100%;

}
body {
    font-family: 'ipaexm', sans-serif;
} 

.image-vw {
  max-width: 30%;
  max-height: 30%;
}

.container .text-muted {
    margin: 20px 0;
}

/* .footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  /* height: 60px;
  background-color: #cdcdcd;
  background: url("../img/bm_logo.jpg") no-repeat center center;
} */ 



/* main {
	padding: 30px;
} */
footer {
	background-color: #efefef ;
	width: 100%;
	text-align: center;
	padding: 30px;
  background: url("../img/bm_logo.jpg") no-repeat center center;
}

.background-image {
  background-image: url('../img/bm_back03.png'); /* 画像のパスを指定 */
  background-size: cover; /* 画像が要素を完全に覆うように設定 */
  background-position: center; /* 画像の位置を中央に設定 */
  background-repeat: no-repeat; /* 画像の繰り返しを防ぐ */
  height: 100vh; /* 背景画像を表示する要素の高さを設定（必要に応じて変更） */
}

.background-morning {
  background-image: url('../img/bm_morning.jpg');
}

.background-afternoon {
  background-image: url('../img/bm_daytime.jpg');
}

.background-evening {
  background-image: url('../img/bm_dusk.jpg');
}

.background-night {
  background-image: url('../img/bm_night.jpg');
}

/* カスタム CSS ファイルまたは <style> タグ内 */
.badge-adjusted {
  vertical-align: middle;
}

.card-img-top {
  width: 60px;
  height: 60px;
  object-fit: cover; /* 画像のアスペクト比を保ちつつ、指定されたサイズに合わせる */
}

.estate-info .info-title {
  font-weight: bold;
  margin-right: 8px;
}

.estate-info p {
  margin-bottom: 10px;
  line-height: 1.5;
}

.card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: none;
}

.card-title {
  font-size: 1.2em; /* タイトルのサイズを調整 */
}

.card-subtitle {
  color: #6c757d; /* サブタイトルの色を調整 */
}

.card-text {
  font-size: 0.9em; /* テキストのサイズを調整 */
}

.card-footer {
  background-color: #f8f9fa; /* フッターの背景色を調整 */
  border-top: 1px solid #e3e3e3; /* フッターの上部に境界線を追加 */
}

.card-link {
  color: inherit;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: none;
}

/* CSS */
.desktop-heading {
  display: none;
}

@media screen and (min-width: 768px) {
  .desktop-heading {
    display: block;
  }
  .mobile-heading {
    display: none;
  }
}

    .chat-message-container {
        border-bottom: 1px solid #ccc;
        padding: 10px;
    }
    .chat-message-header {
        font-size: 0.9em;
        color: #666;
    }
    .chat-message-author {
        font-weight: bold;
    }
    .context-menu {
        position: fixed;
        z-index: 1000;
        background: #f9f9f9;
        border: 1px solid #ccc;
        padding: 5px;
        box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    }
    .context-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .context-menu ul li {
        padding: 5px 10px;
        cursor: pointer;
    }
    .context-menu ul li:hover {
        background-color: #e0e0e0;
    }

    .persona-icon {
      width: 50px;
      border-radius: 50%;
      object-fit: cover;
      text-align: center;
    }

    /* .persona-icon-large {
      width: 100px;
      border-radius: 50%;
      object-fit: cover;
      text-align: center;
    } */

    .persona-icon-large {
      width: 75px;
      height: auto; /* アスペクト比を維持 */
  }
    

    .btn-edit, .btn-delete {
      border: none;
      background: none;
      cursor: pointer;
  }
  
  /* 必要に応じてアイコンのサイズや色を調整 */
  .fas {
      font-size: 14px;
      color: #333;
  }
  
  .chat-box {
    max-height: 500px; /* 例として500pxの高さに設定 */
    overflow-y: auto; /* 縦方向のスクロールバーを有効に */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.chat-message-container {
  border-bottom: 1px solid #ccc;
  padding: 10px;
}
.chat-message-header {
  font-size: 0.9em;
  color: #666;
}
.chat-message-author {
  font-weight: bold;
}
.context-menu {
  position: absolute;
  z-index: 1000;
  background: #f9f9f9;
  border: 1px solid #ccc;
  padding: 5px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}
.context-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.context-menu ul li {
  padding: 5px 10px;
  cursor: pointer;
}
.context-menu ul li:hover {
  background-color: #e0e0e0;
}
.chat-message-edited {
  font-size: 0.8em;
  color: #666;
}
.chat-message-deleted {
  font-size: 0.8em;
  color: #666;
}

.custom-carousel {
  max-width: 300px; /* 最大幅を300pxに設定 */
  margin: auto; /* センタリング */
}

.custom-carousel .carousel-item img {
  width: 100%; /* 画像をコンテナに合わせて拡大/縮小 */
  height: auto; /* 高さを自動調整 */
}



