.title {
    position: relative;
}
.title img{
    display: block;
    width: 100%;
    height: auto;
}

.title h3{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 完全な中央に移動 */
    background: transparent;
    color: #565656;
    margin: 0;
}
.title-content{
    margin: 2rem;
}
.title-content p{
    display: block;
    margin: auto;
    width: fit-content;
}
/* 営業カレンダー */
#cb{
    color: #446fff;
}
#cr{
    color: #FF3333;
    font-weight: bold;
}
table{
    width: 100%;
    border-collapse: collapse;
    border:silver 1px solid;
    margin: auto;
    white-space: nowrap;
}
th,td{
    color: #565656;
    border:silver 1px solid;
    padding: .3rem;
    text-align: center;
}
.calendar {
    width: 100%;
    margin-bottom: 3rem;
}
.calendar table{
    display: flex;
    overflow-x: scroll;
}
.calendar h3{
    margin-bottom: 1rem;
    border-bottom: .5px solid;
    border-image: linear-gradient(to right, #5656, transparent) 1; 
}