html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* マウスカーソルが乗ったときに背景色が変わるように行全体に適用する場合 */
table tr:hover {
    background-color: #f5f5f5; /* グレー色 */
}

/* テキストを中央寄せにする */
h3 {
    text-align: center;
}

/* 親要素を右寄せにする */
.text-right {
    text-align: right;
}

/*登録状況で色分け
.pinno-0 {
    background-color: white;
    color: black;
}

.pinno-1 {
    background-color: lightgreen;
    color: black;
}
 */

.margin-right-10 {
    margin-right: 10px;
}

.margin-top-10 {
    margin-top: 10px;
}

/*検索ボックスのサイズ*/
.short-input {
    width: 150px; /* 必要に応じて調整 */
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

/* ドロップダウンメニューを隠す */
.nav-item .dropdown-menu {
    display: none;
}

/* ユーザー名にホバーしたときにドロップダウンメニューを表示 */
.nav-item:hover .dropdown-menu {
    display: block;
}

/* 画像サイズ */
.sign-image {
    width: 410px;
    height: 110px;
}

.picture-image {
    width: 320px;
    height: 180px;
}

@media print {
    /* 印刷時のスタイル調整 */
    .no-print {
        display: none;
    }
    /* その他の印刷用スタイル */
    .col-sm-2 {
        flex: 0 0 auto;
        width: 40%;
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 60%;
    }
}





