@charset "utf-8";
html body{
  font-family: 'メイリオ','YuGothic','Yu Gothic','ヒラギノ角ゴ',sans-serif;
  font-size: 0.8rem;
  line-height : 1.3 ;
  letter-spacing : 0.05em;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* html body *{
  font-size: 0.8rem!important;
} */

/* トースト設定 */
.toast{
  width: 400px;
  border-radius: 6px;
  overflow: hidden;
}
.toast-header {
  color: inherit!important;
  border-bottom: inherit!important;
  border-radius: inherit!important;
  padding: 1rem 0.75rem!important;
  width: calc(100% - 10px);
}
.toastFlame{
  bottom: 0;
  right: 0;
  z-index: 10000;
}

/* スクロールバー非表示 */
.scrollBarNone{
  /* IE(Internet Explorer)・Microsoft Edge */
  -ms-overflow-style: none;
  /* Firefox */
  scrollbar-width: none;
}
/* Google Chrome・Safari */
.scrollBarNone::-webkit-scrollbar{
  display: none;
}

/* スクロールバーデザイン */
::-webkit-scrollbar{
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track{
  background: #fff;
  border: none;
  border-radius: 10px;
  box-shadow: inset 0 0 2px #777; 
}
::-webkit-scrollbar-thumb{
  background: #ccc;
  border-radius: 10px;
  box-shadow: none;
}

/* 汎用 */
.object-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.imgFlame{
  width: 100%;
  aspect-ratio: 6/4;
}

.pointer{
  cursor: pointer;
}

/* bootstrap カスタマイズ */
.form-control-color{
  max-width: inherit!important;
}
.shadow-xl{
  box-shadow: 0 8px 17px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19)!important;
}

.form-control,
.input-group-text,
.form-select{
  font-size: inherit;
}



/* menu用CSS */
#topMenu{
  position: sticky;
  height: 55px;
}
#main{
  height: calc(100vh - 55px);
  overflow: auto;

  /* IE(Internet Explorer)・Microsoft Edge */
  -ms-overflow-style: none;
  /* Firefox */
  scrollbar-width: none;
}

#main::-webkit-scrollbar{
  display: none;
}
