/* パンくずリスト */
.pankuzu {
    font-weight: 600;
}

.pankuzu li {
    display: inline;/*横に並ぶように*/
    list-style: none;
}

.pankuzu li:after {/* >を表示*/
    content: '>';
    padding: 0 8px;
}

.pankuzu li:last-child:after {
    content: '';
}

.pankuzu li a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.pankuzu li:last-child a {
    text-decoration: none;
}

.pankuzu li a:hover {
    color: #212529;
}

/* TWCSS上書き */
.min-h-screen {
    min-height: 80vh;
}

/* AdminTop */
.logo-tsuru{
    display: flex;
    position: absolute;
    height: calc(100% - 213px);
    justify-content: center;
    align-items: center;
    padding: 64px calc(70% - 755px);
}

.logo-tsuru-img {
    width: 100%;
}
/* pc */
@media (min-width: 1638px) {
    .logo-tsuru {
        padding: 64px calc(70% - 755px);
    }
}
/* タブレット */
@media (min-width: 768px) and (max-width: 991px) {
    .logo-tsuru{
        padding: 64px calc(20%);
    }
}
/* スマホ */
@media (max-width: 767px) {
    .logo-tsuru{
        padding: 84px;
    }
}

.btn-primary {
    background-color: #0d6efd;
}

.btn-secondary {
    background-color: #6c757d;
}
