﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    font-weight: bold;
    background-color: #007bff;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}

.radiobutton {
    display: none;
}

.radiolabel {
    padding: 8px 10px;
    margin-left: 5px;
    background-color: white;
    color: Highlight;
    border-radius: 5px;
}

.radiobutton:checked + .radiolabel {
    background-color: #007bff;
    color: white;
}

/* checkboxのサイズを大きくする */
input[type="checkbox"] {
    -ms-transform: scale(1.5, 1.5);
    -webkit-transform: scale(1.5, 1.5);
    transform: scale(1.5, 1.5);
}


/********************************************
* テーブルの並べ替え用のアイコン
********************************************/
/* ヘッダーをクリックすると勝手にハイライトされるので、それを除去する。 */
th:focus {
    outline: 0 none;
}
/* 三角印アイコンをヘッダーに追加する */
th.tablesorter-headerUnSorted span.arrow,
th.tablesorter-headerAsc span.arrow,
th.tablesorter-headerDesc span.arrow {
    position: relative;
}

    th.tablesorter-headerUnSorted span.arrow:before {
        font-family: "Font Awesome 5 Free";
        content: "\f0dc";
    }

    th.tablesorter-headerAsc span.arrow:before {
        font-family: "Font Awesome 5 Free";
        content: "\f160";
    }

    th.tablesorter-headerDesc span.arrow:before {
        font-family: "Font Awesome 5 Free";
        content: "\f161";
    }



/********************************************
* ページトップに戻るボタン
********************************************/
#page_top {
    width: 90px;
    height: 90px;
    position: fixed;
    right: 0;
    bottom: 0;
    opacity: 0.6;
}

    #page_top a {
        position: relative;
        display: block;
        width: 90px;
        height: 90px;
        text-decoration: none;
    }

        #page_top a::before {
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            content: '\f102';
            font-size: 25px;
            color: #3f98ef;
            position: absolute;
            width: 25px;
            height: 25px;
            top: -40px;
            bottom: 0;
            right: 0;
            left: 0;
            margin: auto;
            text-align: center;
        }

        #page_top a::after {
            content: 'PAGE TOP';
            font-size: 13px;
            color: #fff;
            position: absolute;
            top: 45px;
            bottom: 0;
            right: 0;
            left: 0;
            margin: auto;
            text-align: center;
            color: #3f98ef;
        }

/********************************************
* ローディング
********************************************/
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0,0,0,0.6);
}

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 4px #ddd solid;
    border-top: 4px #999 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(359deg);
    }
}

.is-hide {
    display: none;
}