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;
}

/*ここから作成（2025/04/10）*/

.btn {
    font-size: 16px;
}

.system_name {
    color: #000000;
    font-size: 24px;
/*    margin-bottom: 5px;*/
}

.title {
    color: #007bff;
    font-size: 50px;
    margin-bottom: 5px;
}

.user_name {
    color: red;
    font-size: 16px;
    margin-top: 5px;
    margin-right:30px;
    /*margin-left: auto;*/
}

.note {
    font-size: 30px;
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .title {
        font-size: 30px;
    }

    .note {
        font-size: 20px;
    }

    .btn {
        font-size: 14px;
    }
}

.select-list {
    margin-top: 10px;
    margin-bottom: 70px;
    width: 100%;
    max-height: calc(90vh - 350px);
    overflow-y: auto;
}

.select-list table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.select-list th, .select-list td {
    border-bottom: 2px solid #5B9BD5;
    padding: 10px;
}

.select-list th {
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 2;
}

.button-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.menu-button {
    width: 100%;
    height: 120px;
    border: 1px solid #99B1C7;
    border-radius: 8px;
    background: #D3D3D3;
    font-size: 30px;
    position: relative;
    text-align: center;
}

.menu-button:active,
.menu-button:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.wide-button {
    grid-column: span 2;
    border-radius: 16px;
}


.clickable {
    cursor: pointer;
}

.clickable:hover {
    background-color: #cce5ff;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    gap: 20px;
}

.back-blue {
    background-color: #deebf7;
}

.back-orange {
    background-color: #FFE4C9;
}

.border-less {
    border: none !important;
}

input[type="number"] {
    text-align: right;
}

.button-menu-container {
    width: 100%; /* 幅いっぱい */
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    flex-direction: column; /* 縦に並べる */
    align-items: center; /* 子要素を中央揃え（横方向） */
}

.export-button {
    height: 48px;
    margin-left: 5px;
    cursor: pointer;
}

/* Edge (旧 EdgeHTML) 対応 */
input[type="password"]::-ms-reveal {
    display: none;
}

/* Chrome, Edge Chromium 対応 */
input[type="password"]::-webkit-credentials-auto-fill-button {
    visibility: hidden;
    display: none !important;
}

/* Safari, Firefox, Chromeなど幅広く */
input[type="password"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}