/* 営業カレンダー */
.top-access-calendar{
  padding: 40px;
}
.eigyo-cal {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.eigyo-cal__month {
  flex: 1 1 320px;
  min-width: 280px;
}

.eigyo-cal__title {
  text-align: center;
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 8px;
}

.eigyo-cal__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #fff;
}

.eigyo-cal__table th,
.eigyo-cal__table td {
  border: 1px solid #ddd;
  text-align: center;
  padding: 8px 0;
  font-size: 0.95em;
  line-height: 1.2;
}

.eigyo-cal__head {
  background: #f5f5f5;
  font-weight: bold;
}

.eigyo-cal__sun {
  color: #d00;
}

.eigyo-cal__sat {
  color: #06c;
}

.eigyo-cal__empty {
  background: #fafafa;
}

/* 休業日 */
.eigyo-cal__closed {
  background: #ffe3e3;
  color: #d00;
  font-weight: bold;
}

/* 本日 */
.eigyo-cal__today {
  outline: 2px solid #f6b400;
  outline-offset: -2px;
}

.eigyo-cal__legend {
  width: 100%;
  text-align: center;
  font-size: 0.85em;
  margin: 4px 0 0;
}

.eigyo-cal__legend-mark {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: #ffe3e3;
  border: 1px solid #d00;
  vertical-align: middle;
  margin-right: 4px;
}

.eigyo-cal__note {
  width: 100%;
  text-align: center;
  font-size: 0.85em;
  color: #555;
  margin: 4px 0 0;
}

@media screen and (max-width: 767px) {
  .eigyo-cal {
    gap: 16px;
  }
  .eigyo-cal__table th,
  .eigyo-cal__table td {
    padding: 6px 0;
    font-size: 0.85em;
  }
}
