:root{
    --custom-point-color: rgb(94, 140, 195);
    --tutti-point-color-r: rgb(234, 106, 131);
    --tutti-point-color-g: rgb(135, 184, 40);
    --tutti-point-color-b: rgb(59, 113, 202);
}

body{
    background: #f5f5f5;
    font-family: "Noto Sans JP";
}

.wf-notosansjapanese {
    font-family: "Noto Sans JP";
}

header,footer{
    background: #f7fff7;
    background: white;
    text-align: center;
}

header img{
    width: 150px;
    margin: 30px;
}

.navbar-brand img{
    width: 40px;
    height: 32px;
    transform: scaleX(-1);
}

footer{
    padding: 10px;
}

h1{
    padding: 10px;
    font-size: x-large;
}

.container{
    background: white;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.title-bar{
    background: linear-gradient(90deg,#8fc21f,#44b13f);
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 20px;
}

h3{
    padding: 0.5rem;
    color: #010101;
    border-bottom: solid 3px #519db6;
    font-size: large;
  }

label{
    font-size: small;
    color: var(--custom-point-color);
    color: var(--bs-secondary);
}


.annotation{
    list-style:none;
    padding:20px;
    font-size:small;
}

.attention{
    display: block;
    font-size: 1rem;
    color: rgb(200, 100, 100);
    text-decoration: dashed;
}

/* ◯◯:◯◯ */
.interval input[type=time]{
    /* width: 6rem; */
    border:var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    padding: 0.375rem 0.75rem;
}

/*日報　職員状況*/
.grid-2{
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2,auto);
}

/*日報　ユーザー*/
.user_section{
    overflow-x: auto;
}
.user_table, .user_table th, .user_table td{
    border:solid 1px #eaf3ff;
}
.user_table{
    width:100%;
}
.user_table th, .user_table td{
    padding: .5rem;
    white-space: nowrap;
}
.user_table th{
    background: #eaf3ff;
    font-size: small;
    text-align: center;
}
.user_table th{
    padding-right: 1rem;
}
.user_table label{
    font-size: 1rem;
    margin-top: .5rem;
}
.user_table input, .user_table textarea, .user_table select{
    border:var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
}
.user_table input:focus,  .user_table textarea:focus{
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.comment_to{
    width: 100%;
    min-width: 20rem;
    height: 8rem;
}
  
.user_table input[type=number]{
    width:3rem;
}
.user_table input[type=time]{
    width: 5rem;
    margin: 0 .5rem;
}
.user_table input[type=checkbox],
.user_table input[type=radio]{
    margin-right: .5rem;
}
.skip_grid{
    background-image: linear-gradient(to left top, 
        transparent calc(50% - 0.5px),
        #999 50%, 
        #999 calc(50% + 0.5px), 
        transparent calc(50% + 1px)) 
        !important;
}

.table_hr{
    background: #eaf3ff;
}

/*ログイン*/
#login_form{}


/* HOME */
#notice-area{
    width: 90%;
    margin: auto;
    padding: 10px;
    /* background: #f9fff3;
    height: 500px;
    overflow: auto; */
}

#notice-area section{
    /* border-bottom: dashed 1px lightslategray; */
    background: #f7f2f2;
    /* background: var(--tutti-point-color-r); */
    margin-bottom: 30px;
}

#notice-area h3{
    font-size: x-large;
    padding:0;
    margin:1rem 0;
    border: none;
}

#notice-area h3 span{
    position: absolute;
    right: 0;
    font-size: small;
}

#notice-area span{
    font-size: small;
}
#notice-area p{

}

#calendar-area{
    margin: auto;
    padding: 10px;
}

#calendar-area section{
    /* border-bottom: dashed 1px lightslategray; */
    background: #f2f6f7;
}

#calendar-area section ul{
    list-style: none;
    margin: 0;
    padding: .5rem;
}
#calendar-area section ul li{
    margin-bottom: 1rem;
    position: relative;
}
#calendar-area section ul li span{
    position: absolute;
    right: 0;
}

#calendar-area section ul li a{
    text-decoration: none;
    color: var(--tutti-point-color-b);
    /* color: gray; */
}

/* ページトップへ */
html {
    scroll-behavior: smooth;
}
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px var(--tutti-point-color-r);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    opacity: .8;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid var(--tutti-point-color-r);
    border-right: 3px solid var(--tutti-point-color-r);
    transform: translateY(20%) rotate(-45deg);
}

.pagetop {
    box-shadow: 0 4px 6px rgb(0 0 0 / 30%);
}

@media (hover: hover) and (pointer: fine) {
    .pagetop:hover, .pagetop:hover .pagetop__arrow {
        border-color: var(--tutti-point-color-b)
    }
}