.rise-calendar {
  display: flex;
  flex-direction: column;
  padding-top: 1.3125rem;
}
@media only screen and (max-width: 1279px) {
  .rise-calendar {
    padding-top: 0;
  }
}
.rise-calendar__nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
.rise-calendar__nav-date {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .rise-calendar__nav-date {
    gap: unset;
  }
}
.rise-calendar__nav-arrows {
  display: flex;
  align-items: center;
}
.rise-calendar__nav-btn {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.rise-calendar__nav-btn:hover {
  opacity: 0.6;
}
.rise-calendar__nav-btn svg {
  width: 1.125rem;
  height: 1rem;
}
@media only screen and (max-width: 1279px) {
  .rise-calendar__nav-btn {
    width: 2.5rem;
    height: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .rise-calendar__nav-btn svg {
    width: 0.75rem;
    height: 0.625rem;
  }
}
.rise-calendar__nav-title {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.5;
  color: #111;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .rise-calendar__nav-title {
    font-size: 1.625rem;
  }
}
@media only screen and (max-width: 767px) {
  .rise-calendar__nav-title {
    font-size: 1.125rem;
  }
}
.rise-calendar__month-nav {
  display: flex;
  background: #fff9f1;
  border-top: 0.0625rem solid #111;
  border-bottom: 0.0625rem solid #111;
  margin-block: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .rise-calendar__month-nav {
    margin-block: 0.75rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.rise-calendar__month-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
  padding: 1rem 0.625rem;
  font-family: "Pretendard", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}
.rise-calendar__month-item:hover {
  background: rgba(177, 17, 22, 0.05);
}
.rise-calendar__month-item span:first-child {
  font-size: 0.75rem;
  line-height: 1.25rem;
  color: #767676;
  text-align: center;
}
.rise-calendar__month-item span:last-child {
  font-size: 1.375rem;
  line-height: 1.625rem;
  color: #111;
}
.rise-calendar__month-item.is-active {
  position: relative;
}
.rise-calendar__month-item.is-active span:first-child,
.rise-calendar__month-item.is-active span:last-child {
  color: #fff;
  position: relative;
  z-index: 1;
}
.rise-calendar__month-item.is-active::before {
  content: "";
  position: absolute;
  background: var(--primary);
  border-radius: 3.5rem;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .rise-calendar__month-item.is-active::before {
    width: 3.125rem;
    height: 3.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .rise-calendar__month-item.is-active::before {
    width: 2.75rem;
    height: 2.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .rise-calendar__month-item {
    min-width: 3.125rem;
    padding: 0.5rem 0.375rem;
    gap: 0;
  }
  .rise-calendar__month-item span:first-child {
    font-size: 0.75rem;
  }
  .rise-calendar__month-item span:last-child {
    font-size: 1.125rem;
  }
}
.rise-calendar__grid {
  width: 100%;
}
.rise-calendar__header {
  display: flex;
  background: #f8f8fa;
  border-top: 0.0625rem solid #111;
}
.rise-calendar__header-cell {
  flex: 1;
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #111;
  border-right: 0.0625rem solid #e9e9ed;
}
.rise-calendar__header-cell:last-child {
  border-right: none;
}
.rise-calendar__body {
  display: flex;
  flex-wrap: wrap;
}
.rise-calendar__row {
  display: flex;
  width: 100%;
}
.rise-calendar__cell {
  flex: 1;
  min-height: 5rem;
  padding: 0.5rem;
  border-bottom: 0.0625rem solid #e9e9ed;
  border-right: 0.0625rem solid #e9e9ed;
}
@media only screen and (max-width: 767px) {
  .rise-calendar__cell {
    min-height: 3.125rem;
    padding: 0.3125rem 0.1875rem;
  }
}
.rise-calendar__cell:last-child {
  border-right: none;
}
.rise-calendar__cell:first-child {
  border-right: 0.0625rem solid #e9e9ed;
}
.rise-calendar__cell.is-other-month .rise-calendar__cell-num {
  color: #999 !important;
}
.rise-calendar__cell.is-sunday .rise-calendar__cell-num {
  color: #ff6384;
}
.rise-calendar__cell.is-saturday .rise-calendar__cell-num {
  color: #4faffe;
}
.rise-calendar__cell.is-today .rise-calendar__cell-num {
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rise-calendar__cell.has-event {
  position: relative;
}
.rise-calendar__cell.has-event::after {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 2.75rem;
  transform: translateX(-50%);
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary);
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  .rise-calendar__cell.has-event::after {
    top: 0.9rem;
    left: 2rem;
    width: 0.375rem;
    height: 0.375rem;
  }
}
.rise-calendar__cell-num {
  font-family: "Pretendard", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #505050;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .rise-calendar__cell-num {
    width: 1.625rem;
    height: 1.625rem;
  }
}
.rise-calendar__add-btn-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 3.75rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .rise-calendar__add-btn-wrap {
    margin-top: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .rise-calendar__add-btn-wrap {
    margin-top: 1.25rem;
    justify-content: center;
  }
}
.rise-calendar__add-btn-wrap + .rise-calendar__list {
  margin-top: 0.75rem;
}
@media only screen and (max-width: 1279px) {
  .rise-calendar__add-btn-wrap + .rise-calendar__list {
    margin-top: 0.625rem;
  }
}
.rise-calendar__add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  height: 2.875rem;
  padding: 0.0625rem 2.5rem;
  background: var(--primary);
  border: none;
  border-radius: 0.5rem;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s;
}
.rise-calendar__add-btn:hover {
  opacity: 0.9;
}
.rise-calendar__add-btn svg {
  width: 0.6875rem;
  height: 0.6875rem;
}
@media only screen and (max-width: 767px) {
  .rise-calendar__add-btn {
    width: 100%;
    height: 36px;
    padding: 0.0625rem 2.25rem;
    font-size: 0.875rem;
    font-weight: 500;
  }
}
.rise-calendar__list {
  border-bottom: 0.0625rem solid #e1e1e4;
  margin-top: 3.75rem;
}
.rise-calendar__list-header {
  display: flex;
  background: #f5f5f5;
  border-top: 0.0625rem solid #333;
  height: 3.5rem;
}
.rise-calendar__list-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.02rem;
  color: #333;
}
@media only screen and (max-width: 767px) {
  .rise-calendar__list-col {
    font-size: 0.875rem;
    letter-spacing: -0.0175rem;
  }
}
.rise-calendar__list-col--date {
  width: 15rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .rise-calendar__list-col--date {
    width: 12.5rem;
    border-right: 0.0625rem solid #e1e1e4;
  }
}
@media only screen and (max-width: 767px) {
  .rise-calendar__list-col--date {
    width: 5.25rem;
    border-right: 0.0625rem solid #e1e1e4;
  }
}
.rise-calendar__list-col--title {
  flex: 1;
}
.rise-calendar__list-col--edit {
  width: 10rem;
  border-left: 0.0625rem solid #E1E1E4;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .rise-calendar__list-col--edit {
    width: 8.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .rise-calendar__list-col--edit {
    width: 3.75rem;
  }
}
.rise-calendar__list-item {
  display: flex;
  background: #fff;
  border-top: 0.0625rem solid #e1e1e4;
  min-height: 3.5rem;
}
.rise-calendar__list-item:first-child {
  border-top: 0.0625rem solid #e1e1e4;
}
.rise-calendar__list-date {
  width: 15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .rise-calendar__list-date {
    width: 12.5rem;
    border-right: 1px solid #e1e1e4;
  }
}
@media only screen and (max-width: 767px) {
  .rise-calendar__list-date {
    width: 5.25rem;
    font-size: 0.875rem;
    letter-spacing: -0.28px;
    border-right: 1px solid #e1e1e4;
  }
}
.rise-calendar__list-title {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0.625rem 1.25rem;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 767px) {
  .rise-calendar__list-title {
    font-size: 0.875rem;
    letter-spacing: -0.0175rem;
    padding: 0.375rem 0.5rem;
  }
}
.rise-calendar__list-edit {
  width: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-left: 0.0625rem solid #E1E1E4;
  padding: 0.625rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .rise-calendar__list-edit {
    width: 8.75rem;
    gap: 0.375rem;
  }
}
@media only screen and (max-width: 767px) {
  .rise-calendar__list-edit {
    width: 3.75rem;
    flex-flow: column nowrap;
    gap: 0.125rem;
    padding: 0.5rem;
  }
}
.rise-calendar__list-edit > button {
  padding-inline: 1.0625rem;
  border-radius: 0.5rem;
  border: 0.0625rem solid #BBB;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #333;
  height: 2.25rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .rise-calendar__list-edit > button {
    width: 3.75rem;
    padding-inline: unset;
  }
}
@media only screen and (max-width: 767px) {
  .rise-calendar__list-edit > button {
    font-size: 0.75rem;
    height: 1.875rem;
    padding-inline: unset;
    width: 100%;
  }
}
.rise-calendar__list-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #767676;
  border-top: 0.0625rem solid #e1e1e4;
}
.rise-calendar__info {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 2.5rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .rise-calendar__info {
    margin-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .rise-calendar__info {
    margin-bottom: 3.75rem;
  }
}
.rise-calendar__info-table {
  border-top: 0.125rem solid var(--primary);
}
.rise-calendar__info-row {
  display: flex;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .rise-calendar__info-row {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .rise-calendar__info-row {
    flex-wrap: wrap;
  }
}
.rise-calendar__info-label {
  width: 12.5rem;
  background: #f8f8fa;
  border-bottom: 0.0625rem solid #e1e1e4;
  border-right: 0.0625rem solid #e1e1e4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: -0.02rem;
  color: #333;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .rise-calendar__info-label {
    width: 5.25rem;
    font-size: 0.875rem;
    padding: 0.375rem 0.5rem;
    flex-shrink: 0;
  }
}
.rise-calendar__info-value {
  flex: 1;
  background: #fff;
  border-bottom: 0.0625rem solid #e1e1e4;
  border-right: 0.0625rem solid #e1e1e4;
  display: flex;
  align-items: center;
  padding: 0.625rem 2.5rem;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: -0.02rem;
  color: #505050;
}
.rise-calendar__info-value:last-child {
  border-right: none;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .rise-calendar__info-value {
    flex: none;
    width: calc(100% - 12.5rem);
    padding: 0.625rem 2.5rem;
  }
  .rise-calendar__info-value:nth-child(2) {
    border-right: none;
  }
}
@media only screen and (max-width: 767px) {
  .rise-calendar__info-value {
    font-size: 0.875rem;
    padding: 0.375rem 0.5rem;
    border-right: none;
    min-width: calc(100% - 5.25rem);
  }
}
.rise-calendar__info-notice {
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #767676;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rise-calendar-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}
.rise-calendar-modal.is-open {
  display: block;
}
.rise-calendar-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
}
.rise-calendar-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 1.25rem;
  padding: 2.5rem;
  box-shadow: 0.25rem 0.25rem 1.25rem rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 58.75rem;
  width: 58.75rem;
}
@media only screen and (max-width: 1279px) {
  .rise-calendar-modal__content {
    width: 90%;
  }
}
@media only screen and (max-width: 767px) {
  .rise-calendar-modal__content {
    padding: 2.5rem 1.25rem;
    height: -moz-fit-content;
    height: fit-content;
    max-height: 98vh;
    overflow: auto;
  }
}
.rise-calendar-modal__symbol {
  display: flex;
  align-items: center;
  height: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .rise-calendar-modal__symbol {
    height: 0.9375rem;
  }
}
.rise-calendar-modal__symbol span {
  width: 0.875rem;
  height: 0.875rem;
  transform: rotate(45deg);
}
@media only screen and (max-width: 767px) {
  .rise-calendar-modal__symbol span {
    width: 0.625rem;
    aspect-ratio: 1/1;
    height: auto;
  }
}
.rise-calendar-modal__symbol span:nth-child(1) {
  background: var(--primary);
  margin-right: 0.3125rem;
}
@media only screen and (max-width: 767px) {
  .rise-calendar-modal__symbol span:nth-child(1) {
    margin-right: 0.1875rem;
  }
}
.rise-calendar-modal__symbol span:nth-child(2) {
  background: #e39627;
  margin-right: 0.3125rem;
}
@media only screen and (max-width: 767px) {
  .rise-calendar-modal__symbol span:nth-child(2) {
    margin-right: 0.1875rem;
  }
}
.rise-calendar-modal__symbol span:nth-child(3) {
  background: #55555b;
}
.rise-calendar-modal__title {
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.5;
  color: var(--primary);
  margin-top: 0.75rem;
}
@media only screen and (max-width: 767px) {
  .rise-calendar-modal__title {
    font-size: 1.125rem;
    margin-top: 0.375rem;
  }
}
.rise-calendar-modal__form {
  width: 100%;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media only screen and (max-width: 767px) {
  .rise-calendar-modal__form {
    gap: 0.9375rem;
  }
}
.rise-calendar-modal__field-wrapper {
  display: flex;
  flex-flow: row nowrap;
  gap: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .rise-calendar-modal__field-wrapper {
    flex-flow: column nowrap;
    gap: 0.625rem;
  }
}
.rise-calendar-modal__field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.rise-calendar-modal__label {
  padding: 0.25rem;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #333;
}
@media only screen and (max-width: 767px) {
  .rise-calendar-modal__label {
    font-size: 16px;
  }
}
.rise-calendar-modal__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: #fff;
  border: 0.0625rem solid #e1e1e4;
  border-radius: 0.5rem;
  padding: 0.8125rem 0.75rem;
}
@media only screen and (max-width: 767px) {
  .rise-calendar-modal__input-wrap {
    padding: 0.75rem 0.5rem;
  }
}
.rise-calendar-modal__icon {
  width: 1.875rem;
  height: 1.875rem;
  flex-shrink: 0;
}
.rise-calendar-modal__input {
  flex: 1;
  border: none;
  outline: none;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  position: relative;
  background: url(../../../images/calendar/calendar.svg) no-repeat left/1.875rem 1.875rem;
  padding-left: 2.125rem;
}
@media only screen and (max-width: 767px) {
  .rise-calendar-modal__input {
    font-size: 0.875rem;
  }
}
.rise-calendar-modal__input::-moz-placeholder {
  color: #999;
}
.rise-calendar-modal__input::placeholder {
  color: #999;
}
.rise-calendar-modal__input::-webkit-clear-button {
  display: none;
}
.rise-calendar-modal__input::-webkit-inner-spin-button {
  display: none;
}
.rise-calendar-modal__input::-webkit-calendar-picker-indicator {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  color: transparent;
}
.rise-calendar-modal__input::before {
  content: attr(data-placeholder);
  width: 100%;
}
.rise-calendar-modal__input:valid::before {
  display: none;
}
.rise-calendar-modal__textarea {
  width: 100%;
  height: 8.625rem;
  background: #fff;
  border: 0.0625rem solid #e1e1e4;
  border-radius: 0.5rem;
  padding: 0.8125rem 0.75rem;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  resize: none;
}
.rise-calendar-modal__textarea::-moz-placeholder {
  color: #999;
}
.rise-calendar-modal__textarea::placeholder {
  color: #999;
}
.rise-calendar-modal__buttons {
  display: flex;
  gap: 1.25rem;
  margin-top: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .rise-calendar-modal__buttons {
    flex-direction: column;
    gap: 10px;
  }
}
.rise-calendar-modal__btn {
  flex: 1;
  height: 2.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.0625rem 2.5rem;
  border-radius: 0.5rem;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  cursor: pointer;
  transition: opacity 0.2s;
}
.rise-calendar-modal__btn:hover {
  opacity: 0.9;
}
.rise-calendar-modal__btn--submit {
  background: var(--primary);
  border: none;
  color: #fff;
}
.rise-calendar-modal__btn--cancel {
  background: #fff;
  border: 0.0625rem solid #e1e1e4;
  color: #333;
}
@media only screen and (max-width: 767px) {
  .rise-calendar-modal__btn {
    width: 100%;
    flex: none;
  }
  .rise-calendar-modal__btn:nth-of-type(2) {
    height: 2.25rem;
  }
}
.rise-calendar-modal__delete {
  width: 100%;
}
.rise-calendar-modal__delete-info {
  width: 100%;
  margin-top: 1.25rem;
  border-radius: 0.5rem;
  border: 0.0625rem solid #F4F4F4;
  background: #F8F8FA;
  padding: 0.75rem 0.5rem;
  margin-bottom: 1.25rem;
  display: flex;
  flex-flow: column nowrap;
  gap: 1rem;
}
.rise-calendar-modal__delete-row {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: 0.25rem;
}
.rise-calendar-modal__delete-label {
  background: #f8f8fa;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  color: #B11116;
}
.rise-calendar-modal__delete-value {
  flex: 1;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #505050;
  max-height: 20vh;
  overflow: auto;
}
.rise-calendar-modal__delete-confirm {
  margin-top: 0.5rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  text-align: center;
}