@charset "UTF-8";
/* 메인 - main css */
/* 메인 - main css */
.main {
  display: flex;
}

.wrap.wrap_main .inner_comm {
  margin: 0 auto;
  padding: 40px 15px;
}

.wrap.wrap_main [class*=section_] .inner_comm {
  padding: 20px 15px;
}

@media only screen and (min-width: 1200px) {
  .wrap.wrap_main [class*=section_] .inner_comm {
    max-width: 1160px;
    padding: 40px 0;
  }
}
@media only screen and (min-width: 1400px) {
  .wrap.wrap_main [class*=section_] .inner_comm {
    max-width: 1200px;
  }
}
@media only screen and (min-width: 1600px) {
  .wrap.wrap_main [class*=section_] .inner_comm {
    max-width: 1400px;
  }
}
/* section 공통 */
[class*=section_main] .box_head .tit_txt {
  display: inline-block;
  font-size: 24px;
  line-height: 29px;
  font-weight: 800;
  color: #121212;
  text-align: center;
}

[class*=section_main] .box_head .tit_txt em {
  font-weight: inherit;
  color: var(--d-color-primary-100);
}

[class*=section_main] .box_head .desc_txt {
  font-weight: 500;
  color: #575757;
}

[class*=section_main] .swiper-controller [class*=btn_] {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  transition: transform 0.2s ease;
}

[class*=section_main] .swiper-controller [class*=btn_]:active {
  transform: scale(0.96);
}

[class*=section_main] .swiper-controller .btn_prev, [class*=section_main] .swiper-controller .btn_next {
  color: #fff;
  background-color: var(--d-color-primary-100);
  transition: all 0.2s ease;
}

[class*=section_main] .swiper-controller .btn_prev.disabled, [class*=section_main] .swiper-controller .btn_next.disabled {
  color: #747474;
  background-color: #E8E8E8;
  cursor: default;
  pointer-events: none;
  transform: none;
}

[class*=section_main] .link_more {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #DDD;
  border-radius: 12px;
  font-size: 16px;
  color: #333;
}

@media only screen and (min-width: 1200px) {
  [class*=section_main] .box_head .tit_txt {
    font-size: 32px;
    line-height: 36px;
  }
  [class*=section_main] .link_more {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
}
/* section_visual */
.section_visual {
  position: relative;
  z-index: 0;
  height: 400px;
  background: url(/home/youth/images/main/img_visual.jpg) no-repeat center center/cover;
}

.section_visual::after {
  position: absolute;
  inset: 0;
  z-index: -10;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: inherit;
  pointer-events: none;
  content: "";
}

.section_visual .inner_comm {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 15px;
  height: 100%;
}

.section_visual .box_tit {
  color: #fff;
  text-align: left;
  text-shadow: 0 1px 5px var(--d-color-black-35);
}

.section_visual .box_tit .tit_txt1 {
  display: block;
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
}

.section_visual .box_tit .tit_txt2 {
  position: relative;
  font-size: 40px;
  line-height: 50px;
  font-weight: 800;
}

.section_visual .box_tit .tit_txt2::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 24px;
  background: url(/home/youth/images/common/ico_butterfly.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(50%, -100%);
  content: "";
}

.section_visual .box_notice {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  background-color: var(--d-color-primary-90);
}

.section_visual .box_notice .tit_txt {
  display: block;
  font-size: 18px;
  line-height: 22px;
  font-weight: 800;
}

.section_visual .box_notice .desc_txt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3px 5px;
  margin-top: 8px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  word-break: keep-all;
}

.section_visual .box_notice em {
  font-weight: 500;
  color: #FFEF2E;
}

@media only screen and (min-width: 768px) {
  .section_visual .inner_comm {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  .section_visual .box_notice {
    padding: 15px;
    border-radius: 15px;
  }
}
@media only screen and (min-width: 1200px) {
  .section_visual {
    height: 700px;
    border-radius: 0 0 80px 80px;
  }
  .section_visual .inner_comm {
    padding: 80px 15px;
  }
  .section_visual .box_tit .tit_txt1 {
    font-size: 30px;
    line-height: 35px;
  }
  .section_visual .box_tit .tit_txt2 {
    font-size: 60px;
    line-height: 70px;
  }
  .section_visual .box_tit .tit_txt2::after {
    width: 65px;
    height: 47px;
  }
  .section_visual .box_notice {
    padding: 20px 30px;
  }
  .section_visual .box_notice .tit_txt {
    font-size: 26px;
    line-height: 28px;
  }
  .section_visual .box_notice .desc_txt {
    font-size: 18px;
    line-height: 22px;
  }
}
/* section_main1 */
.section_main1 {
  border-radius: 0 0 30px 30px;
  background: linear-gradient(to bottom, var(--d-color-white-5), rgba(249, 199, 40, 0.1));
}

.section_main1 .inner_comm {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section_main1 .box_head {
  padding-top: 20px;
}

.section_main1 .box_head .tit_txt {
  display: block;
  font-size: 24px;
  line-height: 29px;
}

.section_main1 .box_head .desc_txt {
  max-width: 200px;
  margin-top: 15px;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  word-break: keep-all;
}

.section_main1 .wrap_slide_main1 {
  min-width: 0;
  width: 100%;
}

.section_main1 .swiper {
  overflow: visible;
}

.section_main1 .box_wrapper {
  position: relative;
}

.section_main1 .link_prg {
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.section_main1 .link_prg .wrap_img {
  padding: 25px;
}

.section_main1 .link_prg .poster_img {
  width: 100%;
  border-radius: 15px;
  aspect-ratio: 280/280;
  object-fit: cover;
  object-position: top;
}

.section_main1 .swiper-slide {
  min-width: 0;
}

.section_main1 .swiper-slide-active .link_prg {
  pointer-events: all;
}

.section_main1 .swiper-slide-active .poster_img {
  box-shadow: 0 15px 50px rgba(251, 198, 40, 0.35);
}

.section_main1 .link_prg .state_txt {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--d-color-primary-100);
  border-radius: 50px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  color: var(--d-color-primary-100);
}

.section_main1 .link_prg .tit_txt {
  display: block;
  margin-top: 10px;
  font-size: 20px;
  line-height: 22px;
  font-weight: 700;
  color: #121212;
}

.section_main1 .link_prg .desc_txt {
  margin-top: 16px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: #575757;
  word-break: keep-all;
}

.section_main1 .link_prg .date_txt {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: #909090;
}

.section_main1 .link_prg .more_txt {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: #121212;
}

.section_main1 .swiper-controller [class*=btn_] {
  position: absolute;
  z-index: 10;
  top: 50%;
  box-shadow: 0 3px 15px var(--d-color-black-15);
}

.section_main1 .swiper-controller .btn_prev {
  left: 0;
}

.section_main1 .swiper-controller .btn_next {
  right: 0;
}

.section_main1 .link_more {
  position: static;
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
  .section_main1 .box_head .desc_txt {
    max-width: 100%;
  }
  .section_main1 .swiper {
    width: 750px;
    height: 560px;
  }
  .section_main1 .swiper-slide {
    align-self: stretch;
    display: flex;
    align-items: center;
    height: auto;
    transition: all 0.6s;
  }
  .section_main1 .swiper-slide-active {
    padding: 0 50px;
  }
  .section_main1 .link_prg {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    width: 650px;
  }
  .section_main1 .link_prg .wrap_txt {
    flex: 1 0 250px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }
  .section_main1 .swiper-slide-active .wrap_txt {
    opacity: 1;
    visibility: visible;
  }
  .section_main1 .link_prg .wrap_img {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    max-width: 420px;
    padding: 50px 30px;
    transition: all 0.6s;
  }
  .section_main1 .link_prg .poster_img {
    width: 100%;
    aspect-ratio: 360/460;
    transition: all 0.6s;
  }
  .section_main1 .swiper-slide:not(.swiper-slide-active) .poster_img {
    transform: scale(0.7647);
  }
  .section_main1 .swiper-slide-prev .wrap_img {
    transform: translateX(390px);
  }
  .section_main1 .swiper-slide-next .wrap_img {
    transform: translateX(-40px);
  }
}
@media only screen and (min-width: 1200px) {
  .section_main1 {
    border-radius: 0 0 80px 80px;
  }
  .wrap.wrap_main .section_main1 .inner_comm {
    overflow: hidden;
    max-width: 1400px;
    padding: 40px 20px;
  }
  .section_main1 .swiper {
    width: 850px;
  }
  .section_main1 .box_head {
    padding-top: 40px;
  }
  .section_main1 .box_head .tit_txt {
    font-size: 38px;
    line-height: 45px;
  }
  .section_main1 .box_head .desc_txt {
    font-size: 18px;
    line-height: 22px;
  }
  .section_main1 .link_prg {
    gap: 0 40px;
    width: 750px;
  }
  .section_main1 .link_prg:hover .more_txt {
    text-decoration: 1px solid currentColor;
  }
  .section_main1 .link_prg .state_txt {
    padding: 7px 20px;
    font-size: 18px;
    line-height: 20px;
  }
  .section_main1 .link_prg .tit_txt {
    margin-top: 22px;
    font-size: 26px;
    line-height: 22px;
  }
  .section_main1 .link_prg .desc_txt {
    margin-top: 15px;
    font-size: 16px;
    line-height: 22px;
  }
  .section_main1 .link_prg .date_txt {
    margin-top: 20px;
    font-size: 16px;
    line-height: 22px;
  }
  .section_main1 .link_prg .more_txt {
    margin-top: 30px;
    font-size: 16px;
    line-height: 22px;
  }
  .section_main1 .link_more {
    margin-bottom: 40px;
  }
  .section_main1 .link_prg .wrap_txt {
    flex: 1 0 290px;
  }
  .section_main1 .swiper-slide-prev .wrap_img {
    transform: translateX(523px);
  }
  .section_main1 .swiper-slide-next .wrap_img {
    transform: translateX(-93px);
  }
  .section_main1 .swiper-controller .btn_prev {
    left: -25px;
  }
  .section_main1 .swiper-controller .btn_next {
    right: -25px;
  }
}
/* section_main2 */
.section_main2 .inner_comm {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.section_main2 .box_head {
  padding-top: 5px;
}

.section_main2 .area_notice, .section_main2 .area_schedule {
  position: relative;
}

.section_main2 .area_notice .box_head {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.section_main2 .area_notice .list_tab {
  flex-shrink: 0;
  display: flex;
  gap: 5px;
  margin-right: 50px;
}

.section_main2 .area_notice .list_tab li {
  flex-basis: 100px;
}

.section_main2 .area_notice .btn_tab {
  width: 100%;
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 16px;
  line-height: 19px;
  font-weight: 500;
  background-color: #F2F2F2;
  color: #747474;
  text-align: center;
}

.section_main2 .area_notice .btn_tab[aria-selected=true] {
  font-weight: 500;
  background-color: var(--d-color-primary-100);
  color: #FFFFFF;
}

.section_main2 [role=tabpanel] {
  padding: 15px 0;
}

.section_main2 [role=tabpanel][hidden] {
  display: none;
}

.section_main2 .head_post .link_post {
  display: flex;
  gap: 12px;
}

.section_main2 .head_post .box_date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 80px;
  border-radius: 10px;
  background-color: #F5FCF6;
}

.section_main2 .box_date .day_txt {
  font-size: 24px;
  line-height: 29px;
  font-weight: 800;
  text-align: center;
  color: var(--d-color-primary-100);
}

.section_main2 .box_date .date_txt {
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  text-align: center;
}

.section_main2 .head_post .wrap_txt {
  min-width: 0;
  padding: 6px 0;
}

.section_main2 .head_post .tit_txt {
  display: block;
  font-size: 16px;
  line-height: 19px;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.section_main2 .head_post:not(:has(.box_date)) .tit_txt{
	text-align: center;
}

.section_main2 .head_post .desc_txt {
  display: -webkit-box;
  margin-top: 6px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #747474;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.section_main2 .area_notice .list_post {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 15px;
  padding: 10px 0;
  border-top: 1px dashed #ccc;
}

.section_main2 .list_post li:nth-child(n+4) {
  display: none;
}

.section_main2 .list_post .link_post {
  display: flex;
  justify-content: space-between;
  max-width: 100%;
  padding: 5px 0;
}

.section_main2 .list_post .tit_txt {
  flex: 1;
  display: block;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.section_main2 .list_post .date_txt {
  min-width: 0;
  margin-left: 10px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  color: #747474;
}

.section_main2 .area_schedule .box_body {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.section_main2 .area_schedule .d_calendar_plan {
  flex: 2 0 330px;
}

.section_main2 .box_today {
  flex: 1 0 260px;
  display: flex;
  flex-direction: column;
}

.section_main2 .box_today .tit_txt {
  display: block;
  height: 25px;
  border-bottom: 1px dashed #ccc;
  font-size: 18px;
  line-height: 21px;
  font-weight: 600;
  color: #747474;
}

.section_main2 .box_today .tit_txt em {
  margin-left: 10px;
  font-weight: 700;
  color: #333333;
}

.section_main2 .box_today .list_schdule {
  margin-top: 12px;
  padding: 20px 15px;
  border-radius: 10px;
  background-color: #F8F8F8;
}

.section_main2 .box_today .list_schdule li {
  display: flex;
  gap: 10px;
}

.section_main2 .box_today .list_schdule li + li {
  margin-top: 15px;
}

.section_main2 .box_today .list_schdule dl {
  display: flex;
  align-items: center;
  gap: 2px 8px;
  flex-wrap: wrap;
  font-size: 14px;
  line-height: 16px;
}

.section_main2 .box_today .list_schdule dt {
  font-weight: 400;
}

.section_main2 .box_today .list_schdule dd {
  font-weight: 600;
  color: #333;
}

@media only screen and (min-width: 768px) {
  .section_main2 .area_notice .box_head {
    gap: 20px;
  }
  .section_main2 .area_notice .list_tab li {
    flex-basis: 120px;
  }
  .section_main2 .area_notice .btn_tab {
    padding: 6px 24px;
    font-size: 18px;
    line-height: 21px;
  }
  .section_main2 [role=tabpanel] {
    padding-top: 30px;
  }
  .section_main2 .link_post:hover .tit_txt {
    text-decoration: 1px underline currentColor;
  }
  .section_main2 .head_post .wrap_txt {
    padding: 10px 0;
  }
  .section_main2 .head_post .link_post {
    gap: 20px;
    margin-right: 25px;
  }
  .section_main2 .head_post .tit_txt {
    font-size: 21px;
    line-height: 25px;
  }
  .section_main2 .head_post .desc_txt {
    display: block;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .section_main2 .area_notice .list_post {
    padding: 12px 0;
  }
  .section_main2 .list_post li:nth-child(n+4) {
    display: list-item;
  }
  .section_main2 .list_post .link_post {
    padding: 8px 0;
  }
  .section_main2 .list_post .tit_txt {
    font-size: 18px;
    line-height: 20px;
  }
  .section_main2 .list_post .date_txt {
    margin-left: 15px;
    font-size: 16px;
    line-height: 20px;
  }
  .section_main2 .area_schedule .box_today {
    padding-bottom: 25px;
  }
  .section_main2 .box_today .tit_txt {
    height: 30px;
  }
  .section_main2 .box_today .list_schdule {
    flex: 1;
    padding: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .section_main2 .inner_comm {
    flex-direction: row;
    gap: 45px;
  }
  .section_main2 .area_notice {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 570px;
  }
  .section_main2 .area_schedule {
    flex: 1 0 650px;
  }
}
/* section_main2 캘린더 오버라이딩 */
.wrap_main .d_calendar_plan .d_cal_body {
  margin-top: 0;
  border-top: 0;
}

.wrap_main .d_calendar_plan .days {
  height: 25px;
}

.wrap_main .d_calendar_plan .days .day {
  align-items: flex-start;
}

.wrap_main .d_calendar_plan .days .day:not(:first-child):not(:last-child) {
  color: #747474;
}

.wrap_main .d_calendar_plan .dates .day {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 50px;
  padding: 10px 6px;
  font-size: 12px;
  font-weight: 600;
}

.wrap_main .d_calendar_plan .dates .day.today > small {
  align-self: unset;
  width: 16px;
  height: 16px;
  transform: none;
}

.wrap_main .d_calendar_plan .dates .day .plan {
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding-top: 0;
}

.wrap_main .d_cal_badge.type_round {
  width: 5px;
  height: 5px;
}

.wrap_main .list_schdule .d_cal_badge.type_round {
  flex: 0 0 auto;
  margin-top: 4px;
}

.wrap_main .d_calendar_plan .d_cal_tip {
  justify-content: flex-start;
  padding-top: 10px;
}

.wrap_main .d_calendar_plan .d_cal_tip li {
  font-size: 12px;
  line-height: 14px;
}

.wrap_main .d_calendar_plan .d_cal_tip span {
  width: 8px;
  height: 8px;
  border-width: 1px;
}

.wrap_main .d_calendar_plan .group_tip_add {
  font-size: 12px;
  line-height: 14px;
}

@media only screen and (min-width: 1024px) {
  .wrap_main .d_calendar_plan .days {
    height: 30px;
  }
  .wrap_main .d_cal_badge.type_round {
    width: 7px;
    height: 7px;
  }
  .wrap_main .d_calendar_plan .dates .day {
    font-size: 16px;
  }
  .wrap_main .d_calendar_plan .dates .day.today > small {
    width: 20px;
    height: 20px;
  }
  .wrap_main .d_calendar_plan .d_cal_tip span {
    width: 10px;
    height: 10px;
  }
  .wrap_main .d_calendar_plan .d_cal_tip li {
    font-size: 14px;
    line-height: 16px;
  }
  .wrap_main .d_calendar_plan .group_tip_add {
    font-size: 14px;
    line-height: 16px;
  }
}
/* section_main3 */
.section_main3 .list_quick {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}

.section_main3 .link_quick {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding: 20px 0;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  color: #333;
  transition: all 0.2s ease;
}

.section_main3 li:nth-child(1) .link_quick {
  background-color: #E7FAF2;
}

.section_main3 li:nth-child(2) .link_quick {
  background-color: #FFF4F2;
}

.section_main3 li:nth-child(3) .link_quick {
  background-color: #F1F8FF;
}

.section_main3 li:nth-child(4) .link_quick {
  background-color: #FFF2F6;
}

.section_main3 li:nth-child(5) .link_quick {
  background-color: #FEFAEA;
}

.section_main3 .link_quick img {
  width: 25px;
}

@media only screen and (min-width: 768px) {
  .section_main3 li:nth-child(1) .link_quick:active, .section_main3 li:nth-child(1) .link_quick:hover {
    border-color: #0D7A56;
    color: #0D7A56;
  }
  .section_main3 li:nth-child(2) .link_quick:active, .section_main3 li:nth-child(2) .link_quick:hover {
    border-color: #D84B37;
    color: #D84B37;
  }
  .section_main3 li:nth-child(3) .link_quick:active, .section_main3 li:nth-child(3) .link_quick:hover {
    border-color: #1A66CC;
    color: #1A66CC;
  }
  .section_main3 li:nth-child(4) .link_quick:active, .section_main3 li:nth-child(4) .link_quick:hover {
    border-color: #D00F4A;
    color: #D00F4A;
  }
  .section_main3 li:nth-child(5) .link_quick:active, .section_main3 li:nth-child(5) .link_quick:hover {
    border-color: #946B00;
    color: #946B00;
  }
  .section_main3 .link_quick img {
    width: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .section_main3 .list_quick {
    gap: 30px;
  }
  .section_main3 .link_quick {
    font-size: 21px;
    line-height: 25px;
  }
}
/* section_main4 */
.section_main4 .box_head {
  flex-shrink: 0;
  max-width: 245px;
}

.section_main4 .box_head .desc_txt {
  margin-top: 10px;
  word-break: keep-all;
}

.section_main4 .box_head .link_more {
  display: none;
}

.section_main4 .wrap_slide_main4 {
  padding: 20px 0;
}

.section_main4 .swiper {
  min-width: 0;
  width: 100%;
  padding-top: 20px;
}

.section_main4 .link_space {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
}

.section_main4 .swiper-slide {
  border-radius: 50px;
  aspect-ratio: 330/240;
}

.section_main4 .swiper-slide-active {
  border-radius: 45px 10px 45px 10px;
}

.section_main4 .link_space img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.section_main4 .link_space:hover img {
  transform: scale(1.1);
}

.section_main4 .link_space .wrap_txt {
  position: absolute;
  inset: 50% 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 25px 20px;
  color: #fff;
  visibility: hidden;
  opacity: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), var(--d-color-black-90));
  transition: all 0.5s;
}

.section_main4 .swiper-slide-active .wrap_txt {
  visibility: visible;
  opacity: 1;
}

.section_main4 .wrap_txt .tit_txt {
  font-size: 18px;
  line-height: 21px;
  font-weight: 700;
}

.section_main4 .wrap_txt .desc_txt {
  margin-top: 7px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
}

.section_main4 .swiper-controller {
  align-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section_main4 .swiper-controller .btn_play, .section_main4 .swiper-controller .btn_pause {
  border: 1px solid #ddd;
}

.section_main4 .swiper-controller .btn_play.inactive, .section_main4 .swiper-controller .btn_pause.inactive {
  display: none;
}

.section_main4 .btn_prev {
  order: -2;
}

.section_main4 .swiper-pagination {
  position: static;
  order: -1;
  padding: 0 15px;
  font-size: 18px;
  line-height: 21px;
  font-weight: 500;
  color: #747474;
}

.section_main4 .swiper-pagination em {
  font-weight: 700;
  color: #121212;
}

@media only screen and (min-width: 768px) {
  .section_main4 .swiper-wrapper {
    align-items: center;
  }
  .section_main4 .swiper-slide {
    width: 50%;
    height: 100%;
    transition: all 0.5s ease;
    transform-origin: left center;
  }
  .section_main4 .swiper-slide:not(.swiper-slide-active) {
    padding: 25px 0 25px 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .section_main4 .inner_comm {
    position: relative;
    display: flex;
  }
  .section_main4 .inner_comm::before {
    position: absolute;
    bottom: 0;
    left: 300px;
    width: 300px;
    height: 180px;
    background: url(/home/youth/images/main/img_deco1.png) no-repeat;
    background-size: contain;
    transform: translateX(-100%);
    content: "";
  }
  .section_main4 .box_head {
    position: relative;
    z-index: 10;
    max-width: 300px;
    padding-top: 5px;
  }
  .section_main4 .box_head .desc_txt {
    margin-top: 26px;
  }
  .section_main4 .box_head .link_more {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
  }
  .section_main4 .wrap_slide_main4 {
    flex: 1;
    min-width: 0;
    padding: 20px 0 20px 60px;
  }
  .section_main4 .swiper {
    padding: 0;
  }
  .section_main4 .swiper-slide:not(.swiper-slide-active) {
    padding: 35px 0 35px 50px;
  }
  .section_main4 .link_space .wrap_txt {
    padding: 30px;
  }
  .section_main4 .wrap_txt .tit_txt {
    font-size: 21px;
    line-height: 25px;
  }
  .section_main4 .wrap_txt .desc_txt {
    margin-top: 10px;
    font-size: 16px;
    line-height: 19px;
  }
  .section_main4 .swiper-controller {
    position: absolute;
    z-index: 10;
    top: 175px;
    left: 0;
  }
}
@media only screen and (min-width: 1600px) {
  .section_main4 .inner_comm::before {
    width: 393px;
    height: 237px;
  }
}
/* section_main4 */
.section_main5 {
  border-top: 1px solid #e7e7e7;
}

.section_main5 .box_head {
  width: 150px;
}

.section_main5 .wrap_slide_main5 {
  padding: 15px 0;
}

.wrap.wrap_main .section_main5 .inner_comm {
  position: relative;
}

.section_main5 .swiper {
  min-width: 0;
  width: 100%;
}

.section_main5 .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 150px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.section_main5 .link_bnr {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 5px 15px;
  border-radius: inherit;
  background-color: #fff;
}

.section_main5 .link_bnr img {
  width: 100%;
  height: 50px;
  object-fit: contain;
}

.section_main5 .swiper-controller {
  align-self: start;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  position: absolute;
  top: 20px;
  right: 15px;
}

.section_main5 .swiper-controller [class*=btn_] {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  border: 1px solid #ddd;
  font-size: 14px;
  color: #494949;
  background: #fff;
}

.section_main5 .swiper-controller .btn_play, .section_main5 .swiper-controller .btn_pause {
  border: 1px solid #ddd;
}

.section_main5 .swiper-controller .btn_play.inactive, .section_main5 .swiper-controller .btn_pause.inactive {
  display: none;
}

.section_main5 .btn_prev {
  order: -2;
}

@media only screen and (min-width: 1200px) {
  .wrap.wrap_main .section_main5 .inner_comm {
    position: relative;
    display: flex;
    gap: 20px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .section_main5 .box_head {
    flex-shrink: 0;
    padding-top: 15px;
    width: 110px;
  }
  .section_main5 .box_head .tit_txt {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: #494949;
  }
  .section_main5 .wrap_slide_main5 {
    flex: 1;
    min-width: 0;
  }
  .section_main5 .swiper-controller {
    top: 46px;
    left: 0;
  }
  .section_main5 .btn_play, .section_main5 .btn_pause {
    background: #fff;
  }
  .section_main5 .swiper-controller [class*=btn_] {
    width: 26px;
    height: 26px;
  }
}