#sec_01 {
  width: 100%;
  height: auto;
}

#sec_01 .top {
  width: 100%;
  height: auto;
  padding: 120px 0 0;
  background: url(../img/main/sec_01_top.png) no-repeat center / cover;
  text-align: center;
}

#sec_01 .top h2 {
  font-family: 'PL_R';
	font-weight: normal;
  font-size: 30px;
  color: #EA6483;
  margin-bottom: 30px;
}

#sec_01 .top img {
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}

#sec_01 .top .title {
}

#sec_01 .top .item {
  transform: translateY(50px);
}

#sec_01 .bottom {
  width: 100%;
  height: auto;
  padding: 100px 0 50px;
  background: url(../img/main/sec_01_bottom.png) no-repeat top center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sec_01 .bottom .inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
}

#sec_01 .bottom .inner .title {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
}

#sec_01 .bottom .inner .title h3 {
  font-family: 'PL_B';
	font-weight: bold;
  font-size: 50px;
  color: #EA6483;
}

#sec_01 .bottom .inner .title .info {
  width: auto;
  height: auto;
  text-align: right;
}

#sec_01 .bottom .inner .title .info p {
  font-family: 'PL_R';
	font-weight: normal;
  font-size: 16px;
  color: #5F5F5F;
}

#sec_01 .bottom .inner .title .info p.num {
  font-family: 'PL_B';
	font-weight: bold;
  font-size: 50px;
  color: #EA6483;
}

#sec_01 .bottom .inner .slide_wrap {
  width: 100%;
  height: auto;
}

#sec_01 .bottom .inner .slide_wrap .item {
  width: auto;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 2px 2px 5px rgba(000,000,000,0.2);
  margin: 10px 15px;
}

#sec_01 .bottom .inner .slide_wrap .item img {
  width: auto;
  height: auto;
  margin: 0 auto 10px;
}

#sec_01 .bottom .inner .slide_wrap .item .title_name {
  font-family: 'PL_M';
	font-weight: normal;
  font-size: 20px;
  color: #5F5F5F;
  margin-bottom: 20px;
}

#sec_01 .bottom .inner .slide_wrap .item .info {
  font-family: 'PL_R';
	font-weight: normal;
  font-size: 16px;
  color: #5F5F5F;
}

#sec_02 {
  width: 100%;
  height: auto;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sec_02 .wrap {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}

#sec_02 .wrap .text_zone {
  width: auto;
  min-width: 420px;
  height: auto;
  flex-shrink: 0;
}

#sec_02 .wrap .text_zone h2 {
  font-family: 'PL_B';
	font-weight: bold;
  font-size: 50px;
  color: #EA6483;
  margin-bottom: 20px;
}

#sec_02 .wrap .text_zone h2 span {
  font-family: 'PL_R';
	font-weight: normal;
  font-size: 20px;
}

#sec_02 .wrap .text_zone p {
  font-family: 'PL_R';
	font-weight: normal;
  font-size: 20px;
  color: #5F5F5F;
  margin-bottom: 100px;
}

#sec_02 .wrap .text_zone .controller {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

#sec_02 .wrap .text_zone .controller .num {
  font-family: 'PL_B';
	font-weight: bold;
  font-size: 16px;
  color: rgba(95,95,95,0.5);
}

#sec_02 .wrap .text_zone .controller .num span {
  color: #5F5F5F;
}

#sec_02 .wrap .text_zone .controller .progress{
  width: 250px;
  height: 1px;
  background: #5F5F5F;
  background-image: linear-gradient(#EA6483, #EA6483); /* 바 색 */
  background-repeat: no-repeat;
  background-size: 0% 100%;                             /* 시작: 0% */
  transition: background-size .45s cubic-bezier(.22,.61,.36,1);
  will-change: background-size;
}

#sec_02 .wrap .text_zone .controller .btn_wrap {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

#sec_02 .wrap .text_zone .controller .btn_wrap button {
  width: auto;
  height: auto;
  background: none;
  border: none;
}

#sec_02 .wrap .text_zone .controller .btn_wrap button img {
  width: auto;
  height: auto;
}

#sec_02 .wrap .slide_wrap {
  width: 100%;
  max-width: 680px;
  height: auto;
}

#sec_02 .wrap .slide_wrap .item {
  width: auto;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #5F5F5F;
  margin: 0 15px;
}

#sec_02 .wrap .slide_wrap .item .img {
  width: 100%;
  height: 325px;
  border-bottom: 1px solid #5F5F5F;
}

#sec_02 .wrap .slide_wrap .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#sec_02 .wrap .slide_wrap .item .info {
  width: 100%;
  height: 240px;
  padding: 30px;
  background: #fff;
  display: flex;
  flex-direction: column;
}

#sec_02 .wrap .slide_wrap .item .info .info_n {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
}

#sec_02 .wrap .slide_wrap .item .info .info_n span {
  font-family: 'PL_M';
	font-weight: normal;
  font-size: 12px;
  color: #5F5F5F;
}

#sec_02 .wrap .slide_wrap .item .info .info_n .name {
  font-family: 'PL_B';
	font-weight: bold;
  font-size: 20px;
  color: #5F5F5F;
}

#sec_02 .wrap .slide_wrap .item .info .quote {
  font-family: 'PL_R';
	font-weight: normal;
  white-space: pre-line;
  font-size: 16px;
  color: #5F5F5F;
}

/* 버튼 기본 */
#sec_02 .wrap .slide_wrap .item .info .apply-btn{
  width: 100%;
  height: 30px;
  border-radius: 10px;
  background: #EA6483;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'PL_B';
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  margin-top: auto;

  /* 깜빡깜빡(전광판 느낌) */
  animation: lovin_billboard_blink 1.1s steps(2, end) infinite;
  box-shadow: none; /* 초기값 */
}

/* 깜빡임 키프레임: OFF → ON 을 계단형으로 전환 */
@keyframes lovin_billboard_blink {
  0% {
    box-shadow: none;
    filter: brightness(1);
  }
  100% {
    /* 네온처럼 강한 발광 */
    box-shadow:
      0 0 10px rgba(234,100,131,1),
      0 0 20px rgba(234,100,131,0.8),
      0 0 35px rgba(234,100,131,0.6);
    filter: brightness(1.08);
  }
}

/* 접근성: 사용자가 모션 줄이기 설정 시 깜빡임 제거 */
@media (prefers-reduced-motion: reduce){
  #sec_02 .wrap .slide_wrap .item .info .apply-btn{
    animation: none;
    box-shadow:
      0 0 10px rgba(234,100,131,0.5);
  }
}


#sec_03 {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 50px;
  background: #FFFFFF;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(250, 250, 250, 1) 68%);
}

/* 조절 변수 */
#sec_03{
  --amp: 30px;        /* 라인 이동폭(위/아래) */
  --lineDur: 1.6s;    /* 라인 왕복 주기 */
}

#sec_03 .line {
  position: relative;
  width: 1px;
  height: 150px;
  background: #EA6483;
  margin: 0 auto;
  overflow: visible;
  will-change: transform;
}

#sec_03 .line:first-of-type {
  animation: line_down var(--lineDur) ease-in-out infinite;
}

#sec_03 .line:last-of-type {
  animation: line_up var(--lineDur) ease-in-out infinite;
}

@keyframes line_down {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(var(--amp)); }
  100% { transform: translateY(0); }
}
@keyframes line_up {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(calc(-1 * var(--amp))); }
  100% { transform: translateY(0); }
}

#sec_03 .line .rip {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 0;
  height: 0;
  border: 1px solid #EA6483;
  border-radius: 5px;
  opacity: 0; 
  pointer-events: none;
  filter: blur(.2px);
  animation: ripple var(--lineDur) cubic-bezier(.22,.61,.36,1) infinite;
}

#sec_03 .line:first-of-type .rip { animation-delay: calc(var(--lineDur) * .5); }
#sec_03 .line:last-of-type  .rip { animation-delay: calc(var(--lineDur) * .5); }

@keyframes ripple{
  0%   { width: 0;   height: 150px; opacity: .55; }
  35%  { width: 20px; height: 180px; opacity: 0; }
  100% { width: 20px; height: 180px; opacity: 0; }
}

@media (prefers-reduced-motion: reduce){
  #sec_03 .line { animation-duration: calc(var(--lineDur) * 2); }
  #sec_03 .line .rip { animation-duration: calc(var(--lineDur) * 2); }
}

#sec_03 h2 {
  font-family: 'PL_B';
	font-weight: bold;
  font-size: 50px;
  color: #EA6483;
}

#sec_04 {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAFAFA;
  padding: 100px 0;
}

#sec_04 .wrap {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}

#sec_04 .wrap .slide_wrap {
  width: 100%;
  max-width: 700px;
  height: auto;
}

#sec_04 .wrap .slide_wrap img {
  width: auto;
  height: auto;
}

#sec_04 .wrap .controller {
  width: auto;
  height: auto;
}

#sec_04 .wrap .controller h2 {
  font-family: 'PL_B';
	font-weight: bold;
  font-size: 50px;
  color: #EA6483;
  margin-bottom: 50px;
}

#sec_04 .wrap .controller button {
  width: 100%;
  height: 70px;
  border-radius: 10px;
  background: #EFEFEF;
  font-family: 'PL_B';
	font-weight: bold;
  font-size: 20px;
  color: #5F5F5F;
  margin-bottom: 20px;
  border: none;
}

#sec_04 .wrap .controller button:last-of-type {
  margin-bottom: 0;
}

#sec_04 .wrap .controller button.is-active {
  background: #FFE6EC;
  color: #EA6483;
}

#sec_05 {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}

#sec_05 .wrap {
  width: 100%;
  max-width: 1200px;
  height: auto;
}

#sec_05 .wrap h2 {
  font-family: 'PL_B';
	font-weight: bold;
  font-size: 50px;
  color: #EA6483;
  text-align: center;
  margin-bottom: 100px;
}

#sec_05 .wrap .slide_wrap {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#sec_05 .wrap .slide_wrap .text_zone {
  width: 100%;
  max-width: 500px;
  height: auto;
}

#sec_05 .wrap .slide_wrap .text_zone .text_slide {
  width: 100%;
  height: auto;
  margin-bottom: 100px;
}

#sec_05 .wrap .slide_wrap .text_zone .text_slide .box {
  width: auto;
  height: auto;
}

#sec_05 .wrap .slide_wrap .text_zone .text_slide .box h3 {
  font-family: 'PL_B';
	font-weight: bold;
  font-size: 30px;
  color: #5F5F5F;
  margin-bottom: 20px;
}

#sec_05 .wrap .slide_wrap .text_zone .text_slide .box p {
  font-family: 'PL_R';
	font-weight: normal;
  font-size: 20px;
  color: #5F5F5F;
}

#sec_05 .wrap .slide_wrap .text_zone .controller {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

#sec_05 .wrap .slide_wrap .text_zone .controller .num {
  font-family: 'PL_B';
	font-weight: bold;
  font-size: 16px;
  color: rgba(95,95,95,0.5);
}

#sec_05 .wrap .slide_wrap .text_zone .controller .num span {
  color: #5F5F5F;
}

#sec_05 .wrap .slide_wrap .text_zone .controller .progress {
  width: 250px;
  height: 1px;
  background: #5F5F5F;
  background-image: linear-gradient(#EA6483, #EA6483); /* 바 색 */
  background-repeat: no-repeat;
  background-size: 0% 100%;                             /* 시작: 0% */
  transition: background-size .45s cubic-bezier(.22,.61,.36,1);
  will-change: background-size;
}

#sec_05 .wrap .slide_wrap .text_zone .controller .btn_wrap {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

#sec_05 .wrap .slide_wrap .text_zone .controller .btn_wrap button {
  width: auto;
  height: auto;
  background: none;
  border: none;
}

#sec_05 .wrap .slide_wrap .text_zone .controller .btn_wrap button img {
  width: auto;
  height: auto;
}

#sec_05 .wrap .slide_wrap .img_zone {
  width: 100%;
  max-width: 460px;
  height: auto;
}

#sec_05 .wrap .slide_wrap .img_zone .item {
  width: 100%;
  height: auto;
}

#sec_05 .wrap .slide_wrap .img_zone .item img {
  width: 100%;
  height: auto;
}

#sec_05 .wrap .slide_wrap .img_zone .item img.mb {
  display: none;
}

@media (max-width: 1200px) {
  #sec_01 .bottom .inner .title {
    max-width: 90%;
    margin: 0;
    margin: 0 auto 30px;
  }

  #sec_01 .bottom .inner .title h3 {
    font-size: 42px;
  }

  #sec_01 .bottom .inner .title .info p.num {
    font-size: 42px;
  }

  #sec_01 .bottom .inner .slide_wrap .item .title_name {
    font-size: 16px;
  }

  #sec_01 .bottom .inner .slide_wrap .item .info {
    font-size: 14px;
  }

  #sec_02 .wrap {
    max-width: 90%;
  }

  #sec_02 .wrap {
    flex-wrap: wrap;
  }

  #sec_02 .wrap .text_zone {
    width: 100%;
    min-width: 0;
  }

  #sec_02 .wrap .slide_wrap {
    max-width: 100%;
  }

  #sec_04 .wrap {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  #sec_04 .wrap .slide_wrap {
    order: 1;
  }

  #sec_04 .wrap .controller {
    width: 90%;
  }

  #sec_04 .wrap .controller .btn_wrap {
    width: 100%;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  #sec_04 .wrap .controller button {
    width: calc((100% - 20px) / 2);
    margin: 0;
  }

  #sec_05 .wrap {
    max-width: 90%
  }

  #sec_05 .wrap .slide_wrap {
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
  }

  #sec_05 .wrap .slide_wrap .text_zone {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  #sec_01 .top {
    padding: 100px 0 0;
  }

  #sec_01 .top h2 {
    font-size: 24px;
  }

  #sec_01 .bottom .inner .title {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  #sec_01 .bottom .inner .title .info {
    text-align: center;
    width: 100%;
  }

  #sec_01 .bottom .inner .title h3 {
    margin-bottom: 30px;
  }

  #sec_01 .bottom .inner .slide_wrap .item {
    padding: 10px;
  }

  #sec_01 .bottom .inner .slide_wrap .item .info br {
    display: none;
  }

  #sec_03 h2 {
    font-size: 42px;
  }

  #sec_04 .wrap .controller h2 {
    font-size: 42px;
  }

  #sec_04 .wrap .slide_wrap {
    max-width: 90%;
  }

  #sec_05 .wrap h2 {
    font-size: 42px;
  }

  #sec_05 .wrap .slide_wrap .img_zone .item img {
    display: none;
  }

  #sec_05 .wrap .slide_wrap .img_zone .item img.mb {
    display: block;
  }
}

@media (max-width: 700px) {
  #sec_02 .wrap .text_zone h2 {
    font-size: 42px;
  }

  #sec_02 .wrap .text_zone p {
    margin-bottom: 50px;
  }

  #sec_02 .wrap .slide_wrap .item .info {
    padding: 30px;
  }

  #sec_03 h2 {
    font-size: 36px;
  }

  #sec_05 .wrap h2 {
    font-size: 36px;
  }

  #sec_05 .wrap .slide_wrap .img_zone {
    max-width: 100%;
  }
}

@media (max-width: 500px) {
  #sec_01 .top h2 {
    font-size: 20px;
  }

  #sec_01 .top .title {
    width: 120px;
  }

  #sec_01 .top .item {
    width: 80%;
    transform: translateY(30px);
  }

  #sec_01 .bottom {
    padding: 50px 0;
  }

  #sec_01 .bottom .inner .title h3 {
    font-size: 30px;
  }

  #sec_01 .bottom .inner .title .info p.num {
    font-size: 30px;
  }

  #sec_01 .bottom .inner .slide_wrap .item {
    height: 180px;
  }

  #sec_01 .bottom .inner .slide_wrap .item .title_name {
    font-size: 14px;
    margin-bottom: 10px;
  }

  #sec_01 .bottom .inner .slide_wrap .item .info {
    font-size: 12px;
  }

  #sec_01 .bottom .inner .slide_wrap .item {
    margin: 10px 5px;
  }

  #sec_02 {
    padding: 50px 0;
  }

  #sec_02 .wrap {
    gap: 50px;
  }

  #sec_02 .wrap .text_zone h2 {
    font-size: 30px;
  }

  #sec_02 .wrap .text_zone h2 span {
    font-size: 14px;
  }

  #sec_02 .wrap .text_zone p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  #sec_02 .wrap .text_zone .controller .num {
    font-size: 14px;
  }

  #sec_02 .wrap .text_zone .controller .progress {
    width: 200px;
  }

  #sec_02 .wrap .slide_wrap .item .img {
    height: 250px;
  }

  #sec_02 .wrap .slide_wrap .item {
    margin: 0 10px;
  }

  #sec_02 .wrap .slide_wrap .item .info {
    padding: 20px;
    height: 200px;
  }

  #sec_02 .wrap .slide_wrap .item .info .info_n .name {
    font-size: 16px;
  }

  #sec_02 .wrap .slide_wrap .item .info .quote {
    font-size: 14px;
  }

  #sec_02 .wrap .slide_wrap .item .info .apply-btn {
    font-size: 14px;
  }

  #sec_03 h2 {
    font-size: 24px;
  }

  #sec_03 .line {
    height: 100px;
  }
  
  /* 크기/타이밍 스케일 */
  #sec_03{
    --lineDur: 1.2s;   /* 라인/파동 동일 주기 */
    --amp: 18px;       /* 위/아래 이동폭 (PC에서 30px 쓰던 경우 축소) */
  }

  /* 라인도 같은 주기로(PC에서 animation: line_* 1.6s ... 이라면 이 값으로 덮어씀) */
  #sec_03 .line:first-of-type,
  #sec_03 .line:last-of-type{
    animation-duration: var(--lineDur) !important;
  }

  /* 파동도 같은 주기 + 극점(사이클 50%)에서 시작하도록 딜레이 */
  #sec_03 .line .rip{
    animation-duration: var(--lineDur) !important;
    animation-delay: calc(var(--lineDur) * .5) !important;
  }

  /* 파동 크기도 라인(100px)에 맞춰 축소: 키프레임 재정의 */
  @keyframes ripple{
    0%   { width: 0;    height: 100px; opacity: .55; }
    35%  { width: 14px; height: 118px; opacity: 0; }
    100% { width: 14px; height: 118px; opacity: 0; }
  }

  #sec_04 .wrap .controller h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }

  #sec_04 .wrap .controller button {
    height: 50px;
    font-size: 16px;
  }

  #sec_04 .wrap {
    gap: 50px;
  }

  #sec_04 {
    padding: 50px 0;
  }

  #sec_05 {
    padding: 50px 0;
  }

  #sec_05 .wrap h2 {
    font-size: 30px;
    margin-bottom: 50px;
  }

  #sec_05 .wrap .slide_wrap .text_zone .text_slide .box h3 {
    font-size: 24px;
  }

  #sec_05 .wrap .slide_wrap .text_zone .text_slide .box p {
    font-size: 16px;
  }

  #sec_05 .wrap .slide_wrap .text_zone .text_slide {
    margin-bottom: 30px;
  }

  #sec_05 .wrap .slide_wrap .text_zone .controller .num {
    font-size: 14px;
  }

  #sec_05 .wrap .slide_wrap .text_zone .controller .progress {
    width: 200px;
  }

  #sec_05 .wrap .slide_wrap .text_zone .controller .btn_wrap button img {
    width: 8px;
  }
}

@media (max-width: 400px) {
  #sec_01 .top h2 {
    font-size: 16px;
  }

  #sec_01 .top {
    padding: 50px 0 0;
  }

  #sec_01 .top .title {
    width: 100px;
  }

  #sec_01 .bottom .inner .title h3 {
    font-size: 20px;
  }

  #sec_01 .bottom .inner .title .info p {
    font-size: 14px;
  }

  #sec_01 .bottom .inner .title .info p.num {
    font-size: 24px;
  }

  #sec_01 .bottom .inner .slide_wrap .item {
    height: 160px;
  }

  #sec_02 .wrap .text_zone h2 {
    font-size: 20px;
  }

  #sec_02 .wrap .text_zone p {
    font-size: 12px;
  }

  #sec_02 .wrap .text_zone .controller .num {
    font-size: 12px;
  }

  #sec_02 .wrap .text_zone .controller .btn_wrap button img {
    width: 8px;
  }

  #sec_02 .wrap .slide_wrap .item .img {
    height: 220px;
  }

  #sec_02 .wrap .slide_wrap .item .info .info_n .name {
    font-size: 14px;
  }

  #sec_02 .wrap .slide_wrap .item .info .info_n span {
    font-size: 10px;
  }

  #sec_02 .wrap .slide_wrap .item .info .quote {
    font-size: 12px;
    white-space: inherit;
  }

  #sec_02 .wrap .slide_wrap .item .info .apply-btn {
    font-size: 12px;
    height: 25px;
    border-radius: 5px;
  }

  #sec_02 .wrap .slide_wrap .item {
    margin: 0 5px;
  }

  #sec_02 .wrap .text_zone .controller .progress {
    width: 150px;
  }

  #sec_03 h2 {
    font-size: 20px;
  }

  #sec_03 {
    gap: 30px;
  }

  #sec_04 .wrap .controller h2 {
    font-size: 20px;
  }

  #sec_04 .wrap .controller button {
    width: calc((100% - 10px) / 2);
    height: 35px;
    border-radius: 5px;
    font-size: 14px;
  }

  #sec_04 .wrap .controller .btn_wrap {
    gap: 10px;
  }

  #sec_05 .wrap h2 {
    font-size: 20px;
  }

  #sec_05 .wrap .slide_wrap .text_zone .text_slide .box h3 {
    font-size: 16px;
  }

  #sec_05 .wrap .slide_wrap .text_zone .text_slide .box p {
    font-size: 14px;
  }

  #sec_05 .wrap .slide_wrap .text_zone .text_slide .box p br {
    display: none;
  }

  #sec_05 .wrap .slide_wrap .text_zone .controller .num {
    font-size: 12px;
  }

  #sec_05 .wrap .slide_wrap .text_zone .controller .progress {
    width: 150px;
  }
}