/* パンくず用CSS */
.breadcrumb-item + .breadcrumb-item::before {
    content: '>';
}
.breadcrumb a {
    color: #007bff;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
/* パンくず用CSSここまで */

/* プレースホルダーのスタイル */
::placeholder {
    color: #c4c4c4 !important;
    opacity: 1 !important;
}

/* ブラウザ固有のプレースホルダースタイル */
::-webkit-input-placeholder { /* Edge/Webkit */
    color: #c4c4c4 !important;
    opacity: 1 !important;
}
::-moz-placeholder { /* Firefox 19+ */
    color: #c4c4c4 !important;
    opacity: 1 !important;
}
:-ms-input-placeholder { /* IE 10+ */
    color: #c4c4c4 !important;
    opacity: 1 !important;
}
:-moz-placeholder { /* Firefox 18- */
    color: #c4c4c4 !important;
    opacity: 1 !important;
}


/* 固定ボタンのスタイリングここから */
.floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.floating-button .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    background-color: #ff6b00;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-button .btn:hover {
    transform: translateY(-2px);
    background-color: #ff5500;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.floating-button .btn i {
    margin-right: 8px;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .floating-button {
        bottom: 20px;
        right: 20px;
    }

    .floating-button .btn {
        padding: 12px 24px;
        font-size: 1rem;
        min-width: 180px;
    }
}
/* 固定ボタンのスタイリングここまで */

/* モバイルヘッダー対応 */
@media (max-width: 768px) {
    .navbar .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .navbar h3 {
        font-size: 1.2rem !important;
        margin-left: 0.5rem !important;
        margin-top: 0.5rem !important;
    }

    .navbar-toggler {
        padding: 0.25rem 0.5rem;
        font-size: 0.875rem;
        border-width: 1px;
    }
}

@media (max-width: 576px) {
    .navbar h3 {
        font-size: 1rem !important;
        margin-left: 0.25rem !important;
    }

    .navbar .container {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
}

/* カスタム黄色スタイル（より暗めの黄色） */
.text-warning-dark {
    color: #d39e00 !important; /* Bootstrap標準の#ffc107より暗い黄色 */
}

.bg-warning-dark {
    background-color: #d39e00 !important;
    color: #000 !important;
}

.badge.bg-warning-dark {
    background-color: #d39e00 !important;
    color: #fff !important;
}
