/* [project]/src/components/sections/CalendarSection.module.css [app-client] (css) */
.CalendarSection-module__OzoGaW__noteCard {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  max-width: 800px;
  box-shadow: var(--shadow-card);
  border-radius: 10px;
  margin: 0 auto 2rem;
  padding: 1.2rem 1.5rem;
}

.CalendarSection-module__OzoGaW__noteTitle {
  color: var(--color-text-primary);
  margin-bottom: .8rem;
  font-family: Noto Serif JP, serif;
  font-size: .95rem;
  font-weight: 700;
}

.CalendarSection-module__OzoGaW__noteList {
  flex-direction: column;
  gap: .45rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.CalendarSection-module__OzoGaW__noteList li {
  color: var(--color-text-secondary);
  padding-left: 1em;
  font-family: Noto Sans JP, sans-serif;
  font-size: .83rem;
  line-height: 1.6;
  position: relative;
}

.CalendarSection-module__OzoGaW__noteList li:before {
  content: "・";
  color: var(--color-accent-gold);
  position: absolute;
  left: 0;
}

.CalendarSection-module__OzoGaW__calendarWrapper {
  max-width: 800px;
  margin: 0 auto;
}

.CalendarSection-module__OzoGaW__calNav {
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.CalendarSection-module__OzoGaW__navBtn {
  border: 1.5px solid var(--color-border-hover);
  color: var(--color-accent-gold);
  cursor: pointer;
  background: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  font-weight: 600;
  transition: all .2s;
  display: flex;
}

.CalendarSection-module__OzoGaW__navBtn:hover {
  border-color: var(--color-accent-gold);
  background: #0ea5e914;
  transform: scale(1.1);
}

.CalendarSection-module__OzoGaW__calTitle {
  color: var(--color-text-primary);
  text-align: center;
  letter-spacing: .05em;
  min-width: 160px;
  font-family: Noto Sans JP, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.CalendarSection-module__OzoGaW__calGrid {
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  display: grid;
  overflow: hidden;
}

.CalendarSection-module__OzoGaW__dayHeader {
  background: var(--color-bg-secondary);
  text-align: center;
  color: var(--color-text-secondary);
  letter-spacing: .05em;
  padding: .6rem .2rem;
  font-family: Noto Sans JP, sans-serif;
  font-size: .8rem;
  font-weight: 600;
}

.CalendarSection-module__OzoGaW__dayHeader.CalendarSection-module__OzoGaW__sun {
  color: #ef4444;
}

.CalendarSection-module__OzoGaW__dayHeader.CalendarSection-module__OzoGaW__sat {
  color: #3b82f6;
}

.CalendarSection-module__OzoGaW__emptyCell {
  background: var(--color-bg-primary);
  min-height: 80px;
}

.CalendarSection-module__OzoGaW__dayCell {
  background: var(--color-bg-card);
  cursor: default;
  flex-direction: column;
  gap: .2rem;
  min-height: 80px;
  padding: .4rem .5rem;
  transition: background .2s;
  display: flex;
}

.CalendarSection-module__OzoGaW__dayCell.CalendarSection-module__OzoGaW__clickable {
  cursor: pointer;
}

.CalendarSection-module__OzoGaW__dayCell.CalendarSection-module__OzoGaW__clickable:hover {
  background: #0ea5e90a;
}

.CalendarSection-module__OzoGaW__dayCell.CalendarSection-module__OzoGaW__today {
  background: #0ea5e90f;
}

.CalendarSection-module__OzoGaW__dayCell.CalendarSection-module__OzoGaW__past {
  background: var(--color-bg-primary);
  opacity: .65;
}

.CalendarSection-module__OzoGaW__dayCell.CalendarSection-module__OzoGaW__unavailable {
  cursor: default;
  background: #e2e8f0;
}

.CalendarSection-module__OzoGaW__dayCell.CalendarSection-module__OzoGaW__unavailable .CalendarSection-module__OzoGaW__dayNum {
  color: #94a3b8;
}

.CalendarSection-module__OzoGaW__dayCell.CalendarSection-module__OzoGaW__sun .CalendarSection-module__OzoGaW__dayNum {
  color: #ef4444;
}

.CalendarSection-module__OzoGaW__dayCell.CalendarSection-module__OzoGaW__sat .CalendarSection-module__OzoGaW__dayNum {
  color: #3b82f6;
}

.CalendarSection-module__OzoGaW__holidayName {
  color: #ef4444;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
  margin-top: 1px;
  font-size: .55rem;
  line-height: 1.1;
  display: block;
  overflow: hidden;
}

.CalendarSection-module__OzoGaW__dayNum {
  color: var(--color-text-primary);
  font-family: Noto Sans JP, sans-serif;
  font-size: .82rem;
  font-weight: 500;
  line-height: 1;
}

.CalendarSection-module__OzoGaW__dayCell.CalendarSection-module__OzoGaW__today .CalendarSection-module__OzoGaW__dayNum {
  background: var(--color-accent-gold);
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  font-weight: 700;
  display: inline-flex;
}

.CalendarSection-module__OzoGaW__eventList {
  flex-direction: column;
  gap: 2px;
  display: flex;
  overflow: hidden;
}

.CalendarSection-module__OzoGaW__eventChip {
  color: #fff;
  white-space: nowrap;
  text-overflow: ellipsis;
  border-radius: 3px;
  padding: 1px 5px;
  font-family: Noto Sans JP, sans-serif;
  font-size: .62rem;
  font-weight: 500;
  line-height: 1.4;
  overflow: hidden;
}

.CalendarSection-module__OzoGaW__legend {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  flex-wrap: wrap;
  gap: .8rem 1.5rem;
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  display: flex;
}

.CalendarSection-module__OzoGaW__legendItem {
  color: var(--color-text-secondary);
  align-items: center;
  gap: .4rem;
  font-family: Noto Sans JP, sans-serif;
  font-size: .78rem;
  display: flex;
}

.CalendarSection-module__OzoGaW__legendDot {
  border-radius: 2px;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  display: inline-block;
}

.CalendarSection-module__OzoGaW__legendDotEmpty {
  border: 1.5px dashed var(--color-accent-gold);
  border-radius: 2px;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  display: inline-block;
}

.CalendarSection-module__OzoGaW__legendDotUnavailable {
  background: #cbd5e1;
  border-radius: 2px;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  display: inline-block;
}

.CalendarSection-module__OzoGaW__calNote {
  text-align: center;
  color: var(--color-text-muted);
  margin-top: .8rem;
  font-family: Noto Sans JP, sans-serif;
  font-size: .8rem;
}

.CalendarSection-module__OzoGaW__loading {
  text-align: center;
  color: var(--color-text-muted);
  padding: 3rem;
  font-family: Noto Sans JP, sans-serif;
}

.CalendarSection-module__OzoGaW__modalOverlay {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 2000;
  background: #0f172a59;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
  position: fixed;
  inset: 0;
}

.CalendarSection-module__OzoGaW__modal {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-hover);
  border-radius: 16px;
  width: 100%;
  max-width: 440px;
  padding: 2rem;
  animation: .25s CalendarSection-module__OzoGaW__modal-in;
  position: relative;
  box-shadow: 0 20px 60px #0ea5e926;
}

@keyframes CalendarSection-module__OzoGaW__modal-in {
  from {
    opacity: 0;
    transform: scale(.95)translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1)translateY(0);
  }
}

.CalendarSection-module__OzoGaW__modalClose {
  cursor: pointer;
  color: var(--color-text-muted);
  background: none;
  border: none;
  border-radius: 4px;
  padding: .2rem .4rem;
  font-size: 1rem;
  transition: color .2s;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.CalendarSection-module__OzoGaW__modalClose:hover {
  color: var(--color-text-primary);
}

.CalendarSection-module__OzoGaW__modalTitle {
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  font-family: Noto Sans JP, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.CalendarSection-module__OzoGaW__modalForm {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.CalendarSection-module__OzoGaW__formField {
  flex-direction: column;
  gap: .35rem;
  display: flex;
}

.CalendarSection-module__OzoGaW__formField label {
  color: var(--color-text-secondary);
  font-family: Noto Sans JP, sans-serif;
  font-size: .82rem;
  font-weight: 600;
}

.CalendarSection-module__OzoGaW__formField input, .CalendarSection-module__OzoGaW__formField select, .CalendarSection-module__OzoGaW__formField textarea {
  border: 1.5px solid var(--color-border);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  border-radius: 8px;
  padding: .55rem .8rem;
  font-family: Noto Sans JP, sans-serif;
  font-size: .9rem;
  transition: border-color .2s;
}

.CalendarSection-module__OzoGaW__formField input:focus, .CalendarSection-module__OzoGaW__formField select:focus, .CalendarSection-module__OzoGaW__formField textarea:focus {
  border-color: var(--color-accent-gold);
  outline: none;
}

.CalendarSection-module__OzoGaW__req {
  color: #ef4444;
  margin-left: 2px;
}

.CalendarSection-module__OzoGaW__errorMsg {
  color: #ef4444;
  background: #ef44440f;
  border-radius: 6px;
  padding: .5rem .8rem;
  font-family: Noto Sans JP, sans-serif;
  font-size: .82rem;
}

.CalendarSection-module__OzoGaW__modalActions {
  justify-content: flex-end;
  gap: .8rem;
  margin-top: .5rem;
  display: flex;
}

.CalendarSection-module__OzoGaW__successMsg {
  text-align: center;
  padding: 1rem 0;
}

.CalendarSection-module__OzoGaW__successIcon {
  color: #10b981;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
}

.CalendarSection-module__OzoGaW__successMsg p {
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  font-family: Noto Sans JP, sans-serif;
  line-height: 1.8;
}

@media (max-width: 600px) {
  .CalendarSection-module__OzoGaW__calGrid {
    gap: 1px;
  }

  .CalendarSection-module__OzoGaW__dayCell {
    min-height: 60px;
    padding: .3rem;
  }

  .CalendarSection-module__OzoGaW__eventChip {
    font-size: .55rem;
  }

  .CalendarSection-module__OzoGaW__legend {
    gap: .6rem 1rem;
  }
}

/* [project]/src/app/calendar/page.module.css [app-client] (css) */
.page-module__p9nTuW__pageHero {
  padding: 5rem 0 0;
}

.page-module__p9nTuW__breadcrumb {
  color: var(--color-text-muted);
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  font-family: Noto Sans JP, sans-serif;
  font-size: .8rem;
  display: flex;
}

.page-module__p9nTuW__breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color .2s;
}

.page-module__p9nTuW__breadcrumb a:hover {
  color: var(--color-accent-gold);
}

/*# sourceMappingURL=src_e2285e3e._.css.map*/