@charset "UTF-8";
/* NAG休業日カレンダー 共通スタイル v2.3.0 */
.nag-holiday-calendar {
  position: relative;
  max-width: 400px;
  margin: 20px auto;
  font-family: sans-serif;
  border: 1px solid #ddd;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.calendar-header {
  background-color: #f8f8f8;
  color: #333;
  text-align: center;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
  border-radius: 8px 8px 0 0;
}

.calendar-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
}
.calendar-table th {
  background-color: #f8f8f8;
  color: #333;
  padding: 10px 5px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
}
.calendar-table td {
  width: 14.28%;
  height: 40px;
  text-align: center;
  vertical-align: middle;
  font-size: 14px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  position: relative;
}

.calendar-day {
  cursor: pointer;
  color: #333;
}
.calendar-day:hover {
  opacity: 0.8;
}

.empty-day {
  background-color: #f9f9f9;
}

.today {
  border: 2px solid #ff9800 !important;
  font-weight: bold;
}

.calendar-navigation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: auto;
  margin: 0;
  padding: 12px;
}

.calendar-nav-btn {
  padding: 4px 14px;
  margin: 0;
  background: #e0e0e0;
  color: #333;
  border: none;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.calendar-nav-btn:hover {
  background: #d0d0d0;
}
.calendar-nav-btn:active {
  background: #ddd;
}
.calendar-nav-btn:disabled {
  background: #999;
  cursor: not-allowed;
}

.calendar-legend {
  padding: 10px;
  color: #303030;
  background: #f9f9f9;
  border-radius: 0 0 6px 6px;
  font-size: 14px;
  line-height: 1.5;
  border-top: 1px solid #e0e0e0;
}
.calendar-legend span {
  margin-right: 15px;
  white-space: nowrap;
}

.calendar-day-hover {
  opacity: 0.8;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@media (max-width: 480px) {
  .nag-holiday-calendar {
    max-width: 100%;
    margin: 0;
  }
  .calendar-table th,
  .calendar-table td {
    padding: 8px 2px;
    font-size: 12px;
  }
  .calendar-header {
    font-size: 16px;
    padding: 12px;
  }
  .calendar-navigation {
    padding: 8px;
  }
}/*# sourceMappingURL=nag-holiday-calendar.css.map */