@charset "UTF-8";

/* scss 태그 */
.tag {
  font-size: 14px;
  letter-spacing: -0px;
}

.tag-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  padding: 7px 13px 7px;
}

.tag-wrap.turquoise {
  border: 1px solid #2ABDC2;
  color: #2ABDC2;
}

.tag-wrap.orange {
  border: 1px solid #F58B00;
  color: #F58B00;
}

.tag-wrap.orangedark {
  border: 1px solid #AB5103;
  color: #AB5103;
}

.tag-wrap.bluedark {
  border: 1px solid #004A9C;
  color: #004A9C;
}

.tag-wrap.bg-turquoise {
  background-color: #2ABDC2;
  color: #fff;
}

.tag-wrap.bg-orange {
  background-color: #F58B00;
  color: #fff;
}

.tag-wrap.bg-orangedark {
  background-color: #AB5103;
  color: #fff;
}

.tag-wrap.bg-bluedark {
  background-color: #004A9C;
  color: #fff;
}

/* scss 태그 */
/* scss 달력 */
.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.calendar:has(+ .calendar-legend) {
  padding-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .calendar.calendar-big .calendar {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .calendar.calendar-big .calendar:has(+ .calendar-legend) {
    padding-bottom: 15px;
  }
}

.calendar.calendar-big .calendar-top {
  padding-bottom: 24px;
}

@media only screen and (max-width: 767px) {
  .calendar.calendar-big .calendar-top {
    padding-bottom: 15px;
  }
}

.calendar.calendar-big .calendar-top-date {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22.5px;
}

.calendar.calendar-big .calendar-top-date .date-plate {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0;
  color: #222222;
  line-height: 37.5px;
}

@media only screen and (max-width: 767px) {
  .calendar.calendar-big .calendar-top-date .date-plate {
    font-size: 22px;
  }
}

.calendar.calendar-big .calendar-head {
  position: relative;
  padding: 20px 10px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0;
  color: #000;
}

@media only screen and (max-width: 767px) {
  .calendar.calendar-big .calendar-head {
    display: none;
  }
}

.calendar.calendar-big .calendar-head::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: block;
  width: calc(100% - 20px);
  height: 1px;
  background-color: #000;
}

.calendar.calendar-big .calendar-box {
  position: relative;
  min-width: 0;
  min-height: 155px;
  border: 1px solid #E3E3E3;
  padding: 12px;
}

@media only screen and (max-width: 767px) {
  .calendar.calendar-big .calendar-box {
    display: flex;
    gap: 20px;
    min-height: 85px;
    padding: 10px;
    border: unset;
    border-bottom: 1px solid #dddddd;
  }
}

.calendar.calendar-big .calendar-box:nth-child(n+15) {
  border-top: unset;
}

.calendar.calendar-big .calendar-box:not(:nth-child(7n)) {
  border-right: unset;
}

.calendar.calendar-big .calendar-box.today::before {
  content: "Today";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 25px;
  background-color: #2ABDC2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  font-family: "Pretendard", serif;
}

@media only screen and (max-width: 767px) {
  .calendar.calendar-big .calendar-box.today::before {
    display: none;
  }
}

.calendar.calendar-big .calendar-box.today-head {
  display: none;
}

@media only screen and (max-width: 767px) {
  .calendar.calendar-big .calendar-box.today-head {
    display: flex;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
  }
}

@media only screen and (max-width: 767px) {

  .calendar.calendar-big .calendar-box.box-before,
  .calendar.calendar-big .calendar-box.box-after {
    display: none;
  }
}

.calendar.calendar-big .calendar-date {
  font-family: "Pretendard", serif;
  font-size: 17px;
  color: #444;
}

.calendar.calendar-big .calendar-date-wrap {
  position: relative;
}

@media only screen and (max-width: 767px) {
  .calendar.calendar-big .calendar-date-wrap {
    flex: 0 0 70px;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .calendar.calendar-big .calendar-date-wrap::before {
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    width: 1px;
    height: 100%;
    background-color: #dddddd;
  }
}

.calendar.calendar-big .calendar-day {
  display: none;
  font-family: "Pretendard", serif;
}

@media only screen and (max-width: 767px) {
  .calendar.calendar-big .calendar-day {
    display: flex;
    font-size: 12px;
    color: rgba(34, 34, 34, 0.3);
  }
}

.calendar.calendar-big .calendar-event {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 5px;
  min-width: 0;
}

.calendar.calendar-big .calendar-event .icon {
  position: relative;
  width: 20px;
  min-width: 20px;
  height: 20px;
}

.calendar.calendar-big .calendar-event .icon img {
  width: 100%;
  height: 100%;
}

.calendar.calendar-big .calendar-event .txt {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: break-all;
}

@media only screen and (max-width: 1280px) {
  .calendar.calendar-big .calendar-event .txt {
    white-space: unset;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}

@media only screen and (max-width: 767px) {
  .calendar.calendar-big .calendar-event .txt {
    font-size: 14px;
    line-height: 20px;
  }
}

.calendar.calendar-big .calendar-event .tag-wrap {
  margin-top: 3px;
}

.calendar.calendar-big .calendar-events {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 0;
  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
  .calendar.calendar-big .calendar-events {
    justify-content: center;
    gap: 12px;
    margin-top: unset;
  }
}

.calendar.calendar-big .calendar-legend {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

@media only screen and (max-width: 767px) {
  .calendar.calendar-big .calendar-legend {
    font-size: 14px;
  }
}

.calendar.calendar-big .calendar-legend-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.calendar.calendar-mini .day-sat {
  color: #2ABDC2;
}

.calendar.calendar-mini .day-sun {
  color: #C21616;
}

.calendar.calendar-mini .day-event .calendar-event {
  border-top: 1PX solid #2ABDC2;
}

.calendar.calendar-mini .calendar-head {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.32px;
  border-bottom: 1px solid #F5F7FC;
}

.calendar.calendar-mini .calendar-box {
  position: relative;
  min-width: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 16px;
  letter-spacing: -0.32px;
}

.calendar.calendar-mini .calendar-box.day-today {
  border-radius: 1rem;
  background-color: #2ABDC2;
}

.calendar.calendar-mini .calendar-box.day-event.day-today .calendar-date {
  color: #fff;
}

.calendar.calendar-mini .calendar-box.day-event.day-today .calendar-date::before {
  background-color: #fff;
}

.calendar.calendar-mini .calendar-box.day-event.day-sat .calendar-date {
  color: #2ABDC2;
}

.calendar.calendar-mini .calendar-box.day-event.day-sun .calendar-date {
  color: #C21616;
}

.calendar.calendar-mini .calendar-box.day-event .calendar-date {
  color: #222222;
}

.calendar.calendar-mini .calendar-box.day-event .calendar-date::before {
  background-color: #2ABDC2;
}

.calendar.calendar-mini .calendar-box-wrap {
  aspect-ratio: 10/8;
  padding: 0.4rem 0.7rem;
}

@media only screen and (max-width: 767px) {
  .calendar.calendar-mini .calendar-box-wrap {
    padding: 0rem 0.3rem;
  }
}

.calendar.calendar-mini .calendar-date {
  color: #D5DBE9;
}

.calendar.calendar-mini .calendar-date::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
  display: block;
  width: 100%;
  height: 2px;
  background-color: transparent;
  border-radius: 25px;
}

.calendar.calendar-mini .calendar-date.day-sat {
  color: rgba(42, 189, 194, 0.3);
}

.calendar.calendar-mini .calendar-date.day-sun {
  color: #E9BFBF;
}

.calendar.calendar-mini .calendar-date-wrap {
  position: relative;
}

.calendar.calendar-mini .calendar-day {
  display: none;
}

.calendar.calendar-mini .calendar-events {
  height: 2px;
  background-color: transparent;
}

.calendar-box {
  position: relative;
  min-width: 0;
}

.calendar-box.today::before {
  content: "Today";
  position: absolute;
  top: 0;
  right: 0;
  background-color: #2ABDC2;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-family: "Pretendard", serif;
}

@media only screen and (max-width: 767px) {
  .calendar-box.today::before {
    display: none;
  }
}

.calendar-date-wrap {
  position: relative;
}

/* scss 달력 */
/* scss 수정 */
body {
  background: linear-gradient(180deg, #fff, #F5F7FC, #F5F7FC, #fff);
}

.wrap-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(auto, 1400px) minmax(0, 1fr);
  grid-template-areas: "left center right";
}

@media only screen and (max-width: 1660px) {
  .wrap-main {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
  }
}

@media only screen and (max-width: 767px) {
  .wrap-main {
    grid-template-columns: 30px minmax(auto, 100%) 30px;
  }
}

@media only screen and (max-width: 425px) {
  .wrap-main {
    grid-template-columns: 15px minmax(auto, 100%) 15px;
  }
}

.layout-main {
  grid-area: center;
  display: grid;
  gap: 0 3rem;
  grid-template-columns: minmax(970px, calc(100% / 1400 * 970)) minmax(400px, calc(100% / 1400 * 400));
  grid-template-rows: auto;
  padding-bottom: 90px;
}

@media only screen and (max-width: 1660px) {
  .layout-main {
    grid-template-columns: minmax(0, 1fr) 400px;
  }
}

@media only screen and (max-width: 1280px) {
  .layout-main {
    grid-template-columns: 970fr 400fr;
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .layout-main {
    gap: 0 1.5rem;
    padding-bottom: 40px;
  }
}

.swiper-visual {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 5px 10px 15px #00000029;
}

.swiper-visual::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #00000000, #00000080);
  z-index: 10;
}

.swiper-visual-wrap {
  position: relative;
  grid-column: span 1;
  height: 53rem;
}

@media only screen and (max-width: 1280px) {
  .swiper-visual-wrap {
    grid-column: 1/3;
    height: auto;
  }
}

.swiper-visual-controller {
  position: absolute;
  left: 4rem;
  bottom: 4rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  z-index: 20;
}

@media only screen and (max-width: 767px) {
  .swiper-visual-controller {
    left: 3rem;
    bottom: 3rem;
    gap: 12px;
  }
}

@media only screen and (max-width: 767px) {
  .swiper-visual-controller {
    left: 1.5rem;
    bottom: 1rem;
    gap: 10px;
  }
}

.swiper-visual-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 15px;
  letter-spacing: 0.3px;
  color: #fff;
}

.swiper-visual-pagination.swiper-pagination-custom {
  position: relative;
  left: unset;
  right: unset;
  top: unset;
  bottom: unset;
  width: auto;
}

.swiper-visual-pagination>li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.swiper-visual-pagination .active .progressbar-wrap {
  width: 85px;
  display: flex;
}

.swiper-visual-pagination .progressbar {
  width: 100%;
  height: 2px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background: transparent;
}

.swiper-visual-pagination .progressbar::-webkit-progress-bar {
  border-radius: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
}

.swiper-visual-pagination .progressbar::-webkit-progress-value {
  border-radius: 1px;
  height: 100%;
  background-color: #fff;
}

.swiper-visual-pagination .progressbar-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  width: 0px;
  overflow: hidden;
  transition: width 0.3s;
}

.swiper-visual-btns {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-visual-btns .btn {
  width: 100%;
  height: 100%;
}

.swiper-visual-btns .btn-wrap {
  width: 25px;
  height: 25px;
  aspect-ratio: 1/1;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media only screen and (max-width: 1400px) {
  .content-custom {
    min-width: calc((100% - 60px) / 2);
  }
}

.content-custom[data-custom-style=calendar] {
  height: auto;
}

.content-custom[data-custom-style=misa] {
  height: auto;
}

.content-custom[data-custom-style=board] {
  height: auto;
}

.content-custom[data-custom-style=link] {
  height: 200px;
}

.content-custom:not([data-custom-style=link]):not([data-custom-style=full]):nth-child(n+3) {
  display: none;
}

.content-custom[data-custom-style=calendar] .content {
  padding: 22px 30px 24px;
}

@media only screen and (max-width: 767px) {
  .content-custom[data-custom-style=calendar] .content {
    padding: 30px 30px 32px;
  }
}

@media only screen and (max-width: 425px) {
  .content-custom[data-custom-style=calendar] .content {
    padding: 23px 15px 21px;
  }
}

.content-custom[data-custom-style=calendar] .content-wrap {
  border-radius: 20px;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0px 0px 15px #004A9C0D;
}

.content-custom[data-custom-style=calendar] .content-tit {
  font-size: 18px;
  letter-spacing: 0;
}

.content-custom[data-custom-style=calendar] .content-top {
  padding: 0 1.5rem;
}

@media only screen and (max-width: 1280px) {
  .content-custom[data-custom-style=misa] .content {
    height: 100%;
  }
}

@media only screen and (max-width: 1280px) {
  .content-custom[data-custom-style=misa] .content-wrap {
    height: 100%;
  }
}

.content-custom[data-custom-style=misa] .content-cont {
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 74, 156, 0.051);
  padding: 17px;
}

@media only screen and (max-width: 1280px) {
  .content-custom[data-custom-style=misa] .content-cont {
    height: 100%;
  }
}

.content-custom[data-custom-style=misa] .content-li .cont {
  overflow-y: visible;
  max-height: unset;
}

.content-custom[data-custom-style=misa] .content-list {
  width: 100%;
}

.content-custom[data-custom-style=misa] .content-line {
  padding: 6px 0px;
}

.content-custom[data-custom-style=misa] .tag {
  font-family: "GyeonggiBatang", sans-serif;
}

.content-custom[data-custom-style=board] .content-cont {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.content-custom[data-custom-style=board] .content-box {
  border-radius: 20px;
  background-color: #fff;
  padding: 17px;
}

.content-custom[data-custom-style=board] .content-box .type {
  flex: 0 0 auto;
}

.content-custom[data-custom-style=board] .content-box .tit {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.content-custom[data-custom-style=board] .content-box .day {
  flex: 0 0 auto;
  font-weight: 100;
  font-size: 14px;
  letter-spacing: -0.28px;
  color: #9E9E9E;
}

.content-custom[data-custom-style=link] {
  border-radius: 20px;
  border: 1px solid #EEF1F9;
  background-color: #FFFFFF;
  transition: box-shadow 0.3s;
}

.content-custom[data-custom-style=link]:hover {
  box-shadow: 10px 10px 15px rgba(0, 74, 156, 0.051);
}

.content-custom[data-custom-style=link].content-map .content-icon {
  border-radius: 8px;
  box-shadow: 3px 3px 2px #0000000D;
  overflow: hidden;
}

.content-custom[data-custom-style=link] .content-wrap {
  padding: 30px;
}

@media only screen and (max-width: 425px) {
  .content-custom[data-custom-style=link] .content-wrap {
    padding: 15px;
  }
}

.content-custom[data-custom-style=link] .content-top {
  padding: 0;
}

.content-custom+.content-custom {
  padding-top: 30px;
}

@media only screen and (max-width: 1280px) {
  .content-custom+.content-custom {
    padding: 0;
  }
}

.content-custom-container {
  grid-column: span 1/-1;
}

@media only screen and (max-width: 1280px) {
  .content-custom-container {
    grid-column: 1/3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-top: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .content-custom-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 40px;
  }
}

@media only screen and (max-width: 425px) {
  .content-custom-container {
    gap: 20px;
    padding-top: 20px;
  }
}

.content-custom-plate {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .content-custom-plate {
    gap: 15px;
  }
}

.content-custom-plate[data-pos=bottom] {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(256px, 1fr));
  padding-top: 60px;
}

@media only screen and (max-width: 767px) {
  .content-custom-plate[data-pos=bottom] {
    padding-top: 30px;
  }
}

@media only screen and (max-width: 425px) {
  .content-custom-plate[data-pos=bottom] {
    padding-top: 20px;
  }
}

.content-custom-plate[data-pos=bottom]:has(> .content-custom:last-child:nth-child(1))>.content-custom {
  width: 100%;
}

.content-custom-plate[data-pos=bottom]:has(> .content-custom:last-child:nth-child(2))>.content-custom {
  width: 100%;
}

.content-custom-plate[data-pos=bottom]:has(> .content-custom:last-child:nth-child(3))>.content-custom {
  width: 100%;
}

.content-custom-plate[data-pos=bottom]:has(> .content-custom:last-child:nth-child(4))>.content-custom {
  width: 100%;
}

.content-custom-plate[data-pos=bottom]:has(> .content-custom:last-child:nth-child(5))>.content-custom {
  width: 100%;
}

.content-custom-plate:has(> .content-custom:last-child:nth-child(1))>.content-custom {
  width: calc((100% - 0px) / 1);
}

.content-custom-plate:has(> .content-custom:last-child:nth-child(2))>.content-custom {
  width: calc((100% - 30px) / 2);
}

.content-custom-plate:has(> .content-custom:last-child:nth-child(3))>.content-custom {
  width: calc((100% - 60px) / 3);
}

.content-custom-plate:has(> .content-custom:last-child:nth-child(4))>.content-custom {
  width: calc((100% - 90px) / 4);
}

.content-custom-plate:has(> .content-custom:last-child:nth-child(5))>.content-custom {
  width: calc((100% - 120px) / 5);
}

.content-custom-plate .content-custom {
  max-width: 256px;
}

@media only screen and (max-width: 1660px) {
  .content-custom-plate .content-custom {
    max-width: 100%;
  }
}

.content-custom-plate .content-custom+.content-custom {
  padding: unset;
}

.content-custom-plate .content-custom .content {
  height: 100%;
}

.content-custom-plate .content-custom .content-wrap {
  height: 100%;
}

.content-custom-plate .content-custom .content-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.content-custom-plate .content-custom .content-tit {
  word-break: keep-all;
}

.content-custom-plate .content-custom .content-sub-tit {
  font-size: 15px;
  letter-spacing: 0.3px;
  color: #7B859B;
  word-break: keep-all;
  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
  .content-custom-plate .content-custom .content-sub-tit {
    font-size: 12px;
    letter-spacing: 0.24px;
  }
}

.content-custom-plate .content-custom .content-cont {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}

@media only screen and (max-width: 767px) {
  .content-custom-plate .content-custom .content-cont {
    align-items: flex-start;
    flex-direction: column;
    height: 100%;
    margin-top: unset;
  }
}

.content-custom-plate .content-custom .content-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  letter-spacing: 0.3px;
  color: #000;
}

.content-custom-plate .content-custom .content-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.content-custom-plate .content-custom .content-icons .content-icon img {
  max-height: 60px;
}

@media only screen and (max-width: 767px) {
  .content-custom-plate .content-custom .content-icons {
    margin-top: auto;
    margin-left: auto;
  }
}

.content-custom-plate .content-custom .content-icons:first-child:last-child {
  margin-left: auto;
}

.content-tit {
  font-family: "GyeonggiBatang", "Pretendard", sans-serif;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0;
}

@media only screen and (max-width: 767px) {
  .content-tit {
    font-size: 17px;
  }
}

.content-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.5rem;
}

.content-top .btn-more .icon {
  width: 17px;
  height: 17px;
  aspect-ratio: 1/1;
}

.content-top .btn-more .icon img {
  width: 100%;
}

.content-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.content-li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
}

@media only screen and (max-width: 767px) {
  .content-li {
    gap: 10px;
  }
}

.content-li:not(:first-child) {
  padding-top: 4px;
}

.content-li:not(:first-child:last-child) .content-line::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #E6E8EF;
}

.content-li .top {
  flex: 0 0 auto;
}

.content-li .cont {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.content-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.content-line {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.content-line:not(:first-child:last-child)::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #E6E8EF;
}

.content-line:not(:first-child:last-child):last-child::before {
  display: none;
}

.content-line .days {
  font-weight: 500;
  font-size: 15px;
  white-space: nowrap;
  letter-spacing: 0.3px;
  min-width: 50px;
  margin-right: 20px;
}

.content-line .times {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.3px;
}

.time-block {
  display: inline-block;
  white-space: nowrap;
}

/* scss 수정 */



/* css 수정 */
/* css 수정 */