.home .breadcrumb {
    display: flex;
}

.current_title {
    font-weight: normal;
    font-size: 1rem;
}

.current_value {
    font-weight: bold;
    padding: 0 2px 0 4px;
    font-size: 1.1rem;
}

.text-holiday{
    color:rgba(220,53,69);
}
.bg-holiday{
    background-color:rgba(220,53,69);
}
.text-weekend{
    color:rgba(25,135,84);
}
.bg-weekend{
    background-color:rgba(25,135,84);
}
.holidayName{
    font-size: 0.9rem;
}

.dayPc{display:block}
.daySmp{display:none}

.consecutiveHolidays{
    background-color:#FBD2D2;
}

/* PC */
.calendar{display:grid;grid-template-columns:repeat(7,1fr)}
.weekday,.day{border:1px solid #dee2e6;min-height:100px;padding:6px}
.weekday{text-align:center;font-weight:bold;background:#f8f9fa}
.weekdayHead{
    min-height:30px;
}

/* スマホ：縦カード */
@media(max-width:576px){
  .calendar{display:block}
  .weekday{display:none}
  .dayPc{display:none}
  .daySmp{display:block}
  .day{border:none;padding:0;margin-bottom:10px;min-height:auto}
  .card-day{border:1px solid #dee2e6;border-radius:10px;padding:12px;background:#fff}
}


