@media screen and (min-width: 1441px){
  br.desktop{
    display: none;
  }
}
@media screen and (min-width: 1025px){
  br.tablet{
    display: none;
  }
  img.tablet{
    display: none;
  }
}
@media screen and (max-width: 1024px){
  img.pc{
    display: none;
  }
  br.tablet{
    display: block;
  }
}
@media screen and (min-width: 781px){
  .mo-br{
    display: none;
  }
}
@media screen and (max-width: 780px){
  .mo-br{
    display: block !important;
  }
  br.tablet{
    display: none;
  }
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
img {
  box-sizing: border-box;
}

/* 202502211556 진재윤 추가: overflow 제거 */
body[data-page='sub'] {
  .section {
    overflow: unset;
  }
}

.section {
  overflow: hidden;
}

/* full-page */
.full-page {
  width: 100%;
  height: 100%;

  & > .swiper-pagination {
    display: flex;
    flex-direction: column;
    right: 3rem;
    padding-bottom: 6.6rem;

    .pagination-button {
      display: flex !important;
      justify-content: flex-end;
      width: 100%;
      height: max-content;
      text-align: right;
      column-gap: 0.8rem;
      background: none;
      color: var(--color-white);
      opacity: 1;
      margin: 0 !important;
      transition: color 0.3s;
      padding-block: 0.5rem;

      &.swiper-pagination-bullet-active {
        color: var(--color-yellow-01);

        .pagination-icon .bullet {
          background: var(--color-yellow-01);
        }
      }

      @media (hover: hover) and (pointer: fine) {
        &:hover {
          color: var(--color-yellow-01);

          .pagination-icon .bullet {
            background: var(--color-yellow-01);
          }
        }
      }

      &:active {
        color: var(--color-yellow-01);

        .pagination-icon .bullet {
          background: var(--color-yellow-01);
        }
      }

      .pagination-title {
        font-size: var(--font-size-tiny);
        font-weight: var(--font-weight-bold);
      }

      .pagination-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 1.4rem;
        height: 1.4rem;
        border-radius: 50%;
        background: var(--alpha-black-50);

        .icon-home {
          line-height: 0;
          font-size: 0.9rem;
        }

        .bullet {
          display: block;
          width: 0.6rem;
          height: 0.6rem;
          border-radius: 50%;
          background: var(--color-white);
          transition: background-color 0.3s;
        }
      }
    }
  }
}

/* 메인 팝업 : 20250930 오승택 추가 */
.popup-wrap{
  position: fixed; left: 0; top: 0%;
  width: 100%; height: 100%;
  z-index: 10000001; /* ì±„ë„í†¡ z-index: 10000000 !important; */
  display: none; /* 202502161435 ì •ì„¸ì˜ ì¶”ê°€ */

  .popup-bg{
    position: absolute; 
    width: 100%;
    height: 100%;
    background: var(--alpha-black-60);
  }

  .popup-container{
    position: absolute; left: 50%; top: 50%;
    border-radius: 10px;
    box-shadow: 0 0 10px var(--alpha-black-30);
    width: 420px;
    z-index: 10000002;
    transform: translate(-50%, -50%);

    .popup-content {
      text-align: center;

      figure{
        position: relative;
        margin: 0;

        img{
          width: 100%;
          border-radius: 10px 10px 0 0;
        }

        a{
          position: absolute;
          left: 50%;
          bottom: 7%;
          transform: translateX(-50%);
          width: 80%;
          height: 5rem;
        }
      }

      figcaption {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        font-size: var(--font-size-xxs);
        background: var(--color-white);
        border-radius: 0 0 10px 10px;

        label{
          display: flex;
          align-items: center;
          cursor: pointer;
          color: var(--color-gray-06);
          gap: 6px;

          input[type="checkbox"] {
            appearance: none;
            width: 16px;
            height: 16px;
            border: 2px solid var(--color-gray-09);
            border-radius: 50%;
            position: relative;
            cursor: pointer;
            transition: all 0.2s ease-in-out;

            &:checked {
              background-color: var(--color-black);
              border-color: var(--color-black);
            }

            &::after {
              content: "✔";
              font-size: 12px;
              color: var(--color-white);
              font-weight: bold;
              position: absolute;
              top: 50%;
              left: 50%;
              transform: translate(-50%, -50%);
            }
          }
        }

        button{
          background: none;
          border: none;
          font-size: var(--font-size-xxs);
          cursor: pointer;
          color: var(--color-gray-03);
        }
      } 
    }
  }
}

/* 202502140309 고다솜 수정 : floating-nav 스타일 삭제 */

/* 결혼 section */
.section01 {
  .swiper {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-inline: var(--container-inline-padding);
    overflow: hidden;

    .backdrop {
      position: absolute;
      display: block;
      width: 100%;
      height: 100%;
      inset: 0;
      background: var(--alpha-black-35);
      z-index: 200;
    }

    &:first-of-type .slide-image {
      background: url('/rw_images/main/section01/slide_01.png') no-repeat center/cover;
    }

    &:last-of-type .slide-image {
      background: url('/rw_images/main/section01/slide_02.png') no-repeat center/cover;
    }
  }

  .slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
  }

  .slide-title {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
    color: var(--color-white);
    font-size: var(--font-size-xxl);
    text-align: center;
    z-index: 300;

  }

  .section-info {
    position: absolute;
    left: 50%;
    bottom: 13.5rem;
    color: var(--color-white);
    transform: translate3d(-50%, 0, 0);
    z-index: 100;
  }

  .scroll-down {
    display: flex;
    align-items: center;
    flex-direction: column;
    row-gap: 1rem;
    font-size: 1.2rem;
    margin-top: 3rem;

    .scroll-down-text {
      animation: sparkle 1s infinite ease-in-out;
    }

    .bar {
      position: relative;
      width: 0.3rem;
      height: 6rem;

      &::after {
        content: '';
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        transform-origin: bottom;
        background: var(--color-white);
        animation: shrinkBar 2s infinite ease-in-out;
      }
    }
  }
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes shrinkBar {
  0% {
    transform: scale3d(1, 1, 1);
  }
  100% {
    transform: scale3d(1, 0, 1);
  }
}

/* 전통 section */
.section03 {
  .swiper {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-inline: var(--container-inline-padding);
  }

  .slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;

    .image {
      object-fit: cover;
      width: 100%;
      height: 100%;
    }
  }

  .text-area {
    z-index: 100;
    position: absolute;
    padding-top: 21.3vh;
    padding-left: 8rem;
    padding-right: 10rem;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--alpha-black-40);
  }

  .slide-title {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--color-white);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    word-break: keep-all;

    & > .fade-up-in-and-out-target:not(.slide-caption) {
      line-height: calc(100% + 2rem);
    }
  }

  .slide-caption {
    padding-top: 13.24vh;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-regular);
    @media screen and (max-width: 780px) {
      padding-top: 8rem;
    }
  }

  .mo-br {
    display: none;
  }
}

/* 성혼율 section */
.section02 {
  .swiper {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-inline: var(--container-inline-padding);
    overflow: hidden;

    .backdrop {
      position: absolute;
      display: block;
      width: 100%;
      height: 100%;
      inset: 0;
      background: var(--alpha-black-35);
      z-index: 200;
    }

    /* &:first-of-type .slide-image {
      background: url('/rw_images/main/section02/slide_01.png') no-repeat center/cover;
      @media screen and (max-width: 1024px){
        background: url('/rw_images/main/section02/slide_mo_01.png') no-repeat center/cover;
      }
    }

    &:last-of-type .slide-image {
      background: url('/rw_images/main/section02/slide_02.png') no-repeat center/cover;
    } */
  }

  .slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
  }

  .slide-title {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
    color: var(--color-white);
    font-size: var(--font-size-xxl);
    text-align: center;
    z-index: 300;
    &.title1{
      align-items: start;
      left: 33%;
      transform: translateX(-50%);
      color: #000;
      @media screen and (max-width: 1024px){
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        gap: 3rem;
        justify-content: center;
        align-items: center;
      }
      .small{
        font-size: var(--font-size-sm);
        text-align: left;
        @media screen and (max-width: 1024px){
          text-align: center;
          margin-top: 5rem;
        }
      }
    }
    &.title2{
      @media screen and (max-width: 1024px){
        gap: 3rem;
      }
      .small{
        font-size: var(--font-size-sm);
        text-align: center;
        margin-top: 3rem;
      }
    }
  }

  .section-info {
    position: absolute;
    left: 50%;
    bottom: 13.5rem;
    color: var(--color-white);
    transform: translate3d(-50%, 0, 0);
    z-index: 100;
  }

  .scroll-down {
    display: flex;
    align-items: center;
    flex-direction: column;
    row-gap: 1rem;
    font-size: 1.2rem;
    margin-top: 3rem;

    .scroll-down-text {
      animation: sparkle 1s infinite ease-in-out;
    }

    .bar {
      position: relative;
      width: 0.3rem;
      height: 6rem;

      &::after {
        content: '';
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        transform-origin: bottom;
        background: var(--color-white);
        animation: shrinkBar 2s infinite ease-in-out;
      }
    }
  }
  .dark{
    color: var(--color-purple-dark);
  }
}

/* 퍼플스 그룹 section */
.section04{
  .container{
    position: relative;
    width: 100%;
    height: 100%;
    background: url('/rw_images/main/section04/bg.png') 50% 50% no-repeat;
    .contents{
      position: absolute;
      top: 43%;
      left: 50%;
      transform: translate(-50%, -50%); 
      @media screen and (max-width: 768px){
        top: 50%;
      }
      .text-area{
        text-align: center;
        color: var(--color-white);
        margin-bottom: 7rem;
        @media screen and (max-width: 768px){
          margin-bottom: 3rem;
        }
        .section-title{
          font-size: var(--font-size-xl);
          font-weight: var(--font-weight-bold);
          margin-bottom: 2rem;
        }
        .section-sub-title{
          font-size: var(--font-size-base);
          white-space: nowrap;
        }
      }
      .service-img-wrap{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        @media screen and (max-width: 1024px){
          grid-template-columns: repeat(2, 1fr);
        } 
        @media screen and (max-width: 780px){
          gap: 2rem;
        }
        .service-item{
          position: relative;
          .service-img{
            position: absolute;
            top: 0;
            left: 0;
          }
          .service-img_hover{
            opacity: 0;
            transition: all .3s ease;
          }
        }
        .service-item:hover{
          .service-img{opacity: 0;
            transition: all .3s ease;}
          .service-img_hover{opacity: 1;
            transition: all .3s ease;}          
        }
      }
    }
  }
}


/* 전문 서비스 section */
.section05 {
  position: relative;
  background: url('/rw_images/main/floral.png') no-repeat center/cover;

  &::before {
    content: '';
    opacity: 0.6;
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    inset: 0;
    background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.7) 0%, #000000 100%);
    z-index: 100;
  }

  .container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--container-inline-padding);
    z-index: 200;
  }

  .text-area {
    text-align: center;

    .section-title {
      font-size: var(--font-size-xxl);
      font-weight: var(--font-weight-bold);
      color: var(--color-white);
    }

    .section-sub-title {
      margin-top: 1rem;
      font-size: var(--font-size-base);
      font-weight: var(--font-weight-regular);
      color: var(--color-white);
    }
  }

  .service-img-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    column-gap: 3.6rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 106.8rem;
  }
  .service-item {
    position: relative;
    aspect-ratio: 4 / 5;
    border: 2px solid #AE8C55;

    &::after {
      content: '';
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      background: var(--alpha-black-60);
      transition: background 0.3s;
    }

    @media (hover: hover) and (pointer: fine) {
      &:hover {
        &::after {
          background: transparent;
        }

        .service-img {
          filter: none;
        }

        .icon-arrow_right {
          opacity: 1;
          right: 3rem;
        }
      }
    }

    &:active {
      &::after {
        background: transparent;
      }

      .service-img {
        filter: none;
      }

      .icon-arrow_right {
        opacity: 1;
        right: 3rem;
      }
    }

    .icon-arrow_right {
      opacity: 0;
      position: absolute;
      top: 3rem;
      right: 6rem;
      font-size: var(--font-size-md);
      font-weight: 700;
      color: var(--color-white);
      transition:
        right 0.3s,
        opacity 0.3s;
    }
  }

  .service-img {
    width: 100%;
    height: 100%;
    filter: grayscale(1);
    object-fit: cover;
  }

  .service-text {
    z-index: 1;
    position: absolute;
    display: flex;
    flex-direction: column;
    row-gap: 1.8rem;
    width: 100%;
    bottom: 0;
    padding: 3rem 2rem;
    color: var(--color-white);

    .service-title {
      font-size: var(--font-size-md);
      font-weight: var(--font-weight-bold);
    }

    .service-sub-title {
      font-size: var(--font-size-xs);
      font-weight: var(--font-weight-medium);
    }
  }

  .service-box-wrap {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 2rem;
    max-width: 134.4rem;
    width: 100%;
    margin-bottom: 6rem;

    .service-box {
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 2rem;
      background: var(--alpha-white-30);
      border-radius: 1rem;
      font-size: var(--font-size-sm);
      font-weight: var(--font-weight-bold);
      color: var(--color-white);
      word-break: keep-all;
      transition: background 0.3s;
      @media screen and (max-width: 1280px){
        padding: 20px;
      }
      @media (hover: hover) and (pointer: fine) {
        &:hover {
          background: var(--color-brown-light);
        }
      }

      &:hover {
        background: var(--color-brown-light);
      }
    }
  }
  .arrow-button{
    color: var(--color-white);
    border-color: var(--color-white);
    &:hover{
      color: var(--color-purple-dark);
      border-color: var(--color-purple-dark);
      background: var(--color-white);
    }
  }
  .link-mobile{
    display: none; 
  }
}

/* 파티 section */
.section06 {
  position: relative;
  width: 100%;
  height: 100%;

  &::before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: 100;
  }

  .section-background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -100;
    img{
      width: 100%;
      height: 100%;
    }

    .section-video {
      object-fit: cover;
      width: 100%;
      height: 100%;
    }
  }

  .container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 200;
    color: var(--color-black);
    text-align: center;
  }

  .section-title {
    font-size: var(--font-size-xxl);
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    padding-inline: var(--container-inline-padding);
  }

  .section-description {
    font-size: var(--font-size-base);
    margin-bottom: 3rem;
    padding-inline: var(--container-inline-padding);
    @media screen and (max-width: 1440px){
      margin-bottom: 0;
    }
  }

  .section-info {
    font-size: var(--font-size-md);
    margin-bottom: 2rem;
    max-width: 92.6rem;
    word-break: keep-all;
    margin-inline: var(--container-inline-padding);
  }

  .swiper {
    --swiper-margin: 6.25vw;
    --pagination-size: 1rem;
    --pagination-margin: 3rem;

    position: relative;
    width: calc(100% + (var(--swiper-margin) * 2));
    margin-inline: calc(var(--swiper-margin) * -1);

    &::before,
    &::after {
      content: '';
      position: absolute;
      width: 30rem;
      height: calc(100% - (var(--pagination-size) + var(--pagination-margin)));
      top: 0;
      z-index: 100;
      pointer-events: none;
      @media screen and (max-width: 780px){
        width: 16rem;
      }
      @media screen and (max-width: 600px){
        width: 12rem;
      }
    }

    &::before {
      left: var(--swiper-margin);
      background: linear-gradient(90deg, #fff 0%, rgba(0, 0, 0, 0) 100%);
    }

    &::after {
      right: var(--swiper-margin);
      background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #fff 100%);
    }

    .swiper-wrapper {
      position: relative;
      height: auto;
    }

    .card[data-modal-id="party"] {
      cursor: pointer !important;
      transition: all 0.3s ease-in-out;

      &:hover {
        transform: scale(1.02);
      }
    }

    .swiper-pagination {
      inset: 0;
      position: relative;
      margin-top: var(--pagination-margin);
      height: var(--pagination-size);
      display: flex;
      align-items: center;
      justify-content: center;
      column-gap: 2rem;
    }

    .swiper-pagination-bullet {
      margin: 0;
      width: var(--pagination-size);
      height: var(--pagination-size);
      aspect-ratio: 1 / 1;
      background: rgba(131, 178, 191, .5);
      opacity: 1;

      &.swiper-pagination-bullet-active {
        background: #83b2bf;
      }
    }
  }

  .card {
    margin-inline: 2rem;
    border-radius: 2rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;

    &::before {
      content: '';
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      background: var(--alpha-black-20);
      z-index: 200;
    }

    .card-image {
      position: relative;
      width: 100%;
      height: 100%;
      object-fit: cover;
      aspect-ratio: 400 / 300;
      z-index: 100;
      cursor: pointer;
    }

    .icon-play {
      position: absolute;
      top: 50%;
      left: 50%;
      font-size: 6rem;
      color: var(--alpha-white-70);
      transform: translate3d(-50%, -50%, 0);
      z-index: 300;
      cursor: pointer;
    }

    .card-text {
      position: absolute;
      left: 0;
      bottom: 0;
      padding: 0.6rem;
      width: 100%;
      font-size: var(--font-size-sm);
      font-weight: var(--font-weight-bold);
      background: rgba(0, 0, 0, .3);
      color: var(--color-white);
      backdrop-filter: blur(0.5);
      z-index: 400;
      cursor: pointer;
    }
  }

  .link-area {
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 4rem;
    padding-inline: var(--container-inline-padding);

    .link-mobile{
      display: none; 
    }
  }
}

/* CEO section */
.section07 {
  position: relative;

  &::before {
    content: '';
    opacity: 0.6;
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    inset: 0;
    background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.7) 0%, #000000 100%);
    z-index: 100;
  }

  .container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 200;
    background: url('/rw_images/main/section07/ceo_pc.png') 50% 50% no-repeat;
    background-size: cover;
    @media screen and (max-width: 1024px){
      background: url('/rw_images/main/section07/ceo_mo.png') 50% 50% no-repeat;;
    }
    .content {
      color: var(--color-black);
    }
  }

  .text-box {
    position: absolute;
    left: 16%;
    top: 50%;
    transform: translateY(-50%);
    @media screen and (max-width: 1024px){
      top: 67%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .ceo-description {
      display: flex;
      align-items: flex-end;
      column-gap: 1rem;
      font-size: var(--font-size-sm);
      margin-bottom: 3rem;
      @media screen and (max-width: 1024px){
        align-items: center;
        justify-content: center;
      }
      .text-base {
        font-weight: var(--font-weight-bold);
      }
    }

    .ceo-name {
      display: flex;
      align-items: baseline;
      column-gap: 2rem;
      font-size: var(--font-size-base);
      font-weight: var(--font-weight-bold);
      margin-bottom: 3rem;
      @media screen and (max-width: 1024px){
        justify-content: center;
      }
    }

    .ceo-info {
      font-size: var(--font-size-base);
      margin-bottom: 6rem;
      white-space: nowrap;
      @media screen and (max-width: 1024px){
        margin-bottom: 5rem;
      }
    }

    .link-area {
      display: flex;
      align-items: center;
      column-gap: 4rem;
      @media screen and (max-width: 1024px){
        justify-content: center;
      }

      .link-mobile{
        display: none; 
      }
    }
  }

  .marquee {
    overflow: hidden;

    .marquee-list {
      display: flex;
      width: max-content;
    }

    .card {
      width: 24rem;
      height: 100%;
      margin-inline: 1rem;
      border: 1px solid var(--alpha-white-30);
      padding: 3rem 2rem 1.6rem;
    }

    .card-image {
      width: 100%;
      aspect-ratio: 200 / 120;
      margin-bottom: 2rem;
      margin-inline: auto;

      .image {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }

    .card-text {
      display: block;
      width: 100%;
      word-break: keep-all;
      font-size: var(--font-size-xs);
      text-align: center;
      white-space: initial;
    }
  }
}

/* 커플매니저 section */
.section08 {
  position: relative;
  background: url('/rw_images/main/section08/bg_01.png') no-repeat center/cover;

  .mo-br {
    display: none;
  }

  .container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--container-inline-padding);
    z-index: 300;
  }

  .text-area {
    text-align: center;

    .section-title {
      font-size: var(--font-size-xxl);
      font-weight: var(--font-weight-bold);
      color: var(--color-black);
    }

    .section-sub-title {
      margin-top: 1rem;
      font-size: var(--font-size-base);
      font-weight: var(--font-weight-regular);
      color: var(--color-black);
    }
  }

  .counseling-intro {
    max-width: 120rem;
    margin-bottom: 2rem;
    word-break: keep-all;
    text-align: center;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-regular);
    color: var(--color-white);
  }

  .manager-wrap {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 144.4rem;
    margin-top: 2rem;
    margin-bottom: 2rem;

    .manager {
      position: relative;
      display: flex;
      flex-direction: column;
      row-gap: 1rem;

      .badge {
        z-index: 100;
        position: absolute;
        top: 0.8rem;
        right: 0.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 6rem;
        height: 2.4rem;
        background: #e85454;
        border-radius: 5rem;
        font-size: var(--font-size-tiny);
        font-weight: var(--font-weight-medium);
        color: var(--color-white);
      }

      .thumbnail {
        position: relative;
        background: var(--color-white);

        @media (hover: hover) and (pointer: fine) {
          &:hover {
            .hover-info {
              opacity: 1;
            }
          }
        }

        &:active {
          .hover-info {
            opacity: 1;
          }
        }

        .hover-info {
          z-index: 100;
          opacity: 0;
          position: absolute;
          inset: 0;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          width: 100%;
          height: 100%;
          padding-inline: 2rem;
          backdrop-filter: blur(0.8rem);
          background: var(--alpha-black-50);
          transition: opacity 0.3s;

          .branch {
            margin-bottom: 0.4rem;
            font-size: var(--font-size--xxs);
            font-weight: var(--font-weight-regular);
            color: var(--color-white);
          }

          .name {
            margin-bottom: 5rem;
            font-size: var(--font-size-sm);
            font-weight: var(--font-weight-bold);
            color: var(--color-white);
          }

          .trigger {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 4rem;
            border-radius: 5rem;
            background: var(--alpha-white-30);
            font-size: var(--font-size-xxs);
            font-weight: var(--font-weight-medium);
            color: var(--color-white);
            transition:
              color 0.3s,
              background 0.3s;

            @media (hover: hover) and (pointer: fine) {
              &:hover {
                background: var(--color-white);
                color: var(--color-purple-dark);
              }
            }
            &:active {
              background: var(--color-white);
              color: var(--color-purple-dark);
            }

            &:not(:first-of-type) {
              margin-top: 1.2rem;
            }
          }
        }

        .figure {
          position: relative;

          .figcaption {
            display: flex;
            flex-direction: column;
            row-gap: 0.8rem;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 7.2rem;
            justify-content: center;
            align-items: center;
            background: var(--alpha-black-50);
            font-size: var(--font-size-xxs);
            font-weight: var(--font-weight-regular);
            color: var(--color-white);

            .figure-sub {
              display: flex;
              align-items: center;
              column-gap: 0.6rem;

              .icon-telephone,
              .icon-phone {
                font-size: var(--font-size-xs);
              }
            }
          }
        }
      }

      .counseling-button {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1.1rem 1rem;
        border: 1px solid var(--color-black);
        border-radius: 5rem;
        font-size: var(--font-size-xxs);
        font-weight: var(--font-weight-regular);
        color: var(--color-black);
        transition:
          color 0.3s,
          background 0.3s;

        @media (hover: hover) and (pointer: fine) {
          &:hover {
            color: var(--color-white);
            background: var(--color-purple-dark);
            border-color: var(--color-purple-dark);
          }
        }
        &:active {
          color: var(--color-white);
          background: var(--color-purple-dark);
          border-color: var(--color-purple-dark);
        }
      }

      .mobile-button-area {
        display: none;
        justify-content: center;
        align-items: center;
        column-gap: 1.5rem;

        .mobile-link {
          display: flex;
          justify-content: center;
          align-items: center;
          width: 3.6rem;
          height: 3.6rem;
          border: 1px solid var(--color-white);
          border-radius: 0.8rem;
          font-size: 2.4rem;
          color: var(--color-white);
        }
      }
    }
  }
}

/* 미인대회 section */
.section09{
  .container{
    position: relative;
    height: 100%;   
    .fade-up-target{
      display: flex;
      justify-content: center;
      position: absolute;
      top: 27.7rem;
      z-index: 2;
      width: 100%;
      @media screen and (max-width: 1024px){
        top: 35%;
      }
      .section-title{
        font-size: 8rem;
        color: var(--color-white);
        @media screen and (max-width: 1024px){
          font-size: 6rem;
        }
        @media screen and (max-width: 780px){
          font-size: 5rem;
        }
        @media screen and (max-width: 600px){
          font-size: 4rem;
        }
        @media screen and (max-width: 480px){
          font-size: 3.2rem;
        }
        @media screen and (max-width: 320px){
          font-size: 2rem;
        }
      }
    }
    .swiper{
      height: 100%; 
      &:before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 2;
      }
      .swiper-button-next{
        width: unset;
        height: unset;
        right: 15%;
        @media screen and (max-width: 1024px){
          right: var(--swiper-navigation-sides-offset, 42px);
        }
        @media screen and (max-width: 600px){
          width: 7rem;
          height: 7rem;
        }
        &::after{
          display: none;
        }
        img{
          cursor: pointer !important;
        }
      }
      .swiper-button-prev{
        width: unset;
        height: unset;
        left: 15%;
        @media screen and (max-width: 1024px){
          left: var(--swiper-navigation-sides-offset, 42px);
        }
        @media screen and (max-width: 600px){
          width: 7rem;
          height: 7rem;
        }
        &::after{
          display: none;
        }
        img{
          cursor: pointer !important;
        }
      }
      .swiper-img{
        height: 100%;
        img{
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
      }
    }
  }
}

/* D.LOBLE LIFE section */
.section10 {
  .container{
    position: relative;
    background: url('/rw_images/main/section10/bg.png') no-repeat;
    height: 100%;
    background-size: cover;
    .content{
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100%;
      .section-title{
        font-size: 8rem;
        color: var(--color-black);
        text-align: center;
        @media screen and (max-width: 1280px){
          font-size: 6rem;
        }
        @media screen and (max-width: 780px){
          font-size: 5rem;
        }
        @media screen and (max-width: 600px){
          font-size: 4rem;
        }
        @media screen and (max-width: 480px){
          font-size: 3.2rem;
        }
        @media screen and (max-width: 320px){
          font-size: 2rem;
        }
      }
      .section-description{
        font-size: 2.4rem;
        color: var(--color-black);
        margin-top: 2rem;
        margin-bottom: 8rem;
        text-align: center;
        @media screen and (max-width: 1280px){
          font-size: 2rem;
        }
        @media screen and (max-width: 780px){
          font-size: 1.8rem;
        }
        @media screen and (max-width: 600px){
          font-size: 1.6rem;
        }
        @media screen and (max-width: 480px){
          font-size: 1.4rem;
        }
        @media screen and (max-width: 320px){
          font-size: 1rem;
        }
      }
      .life-style{
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-bottom: 4.5rem;
        li{
          width: 30rem;
          a{
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            .life-img{
              img{
                transition: all .3s ease;
                &:hover{
                  transform: scale(1.02);
                }
              }
            }
            .text-area{
              text-align: center;
              &__title{
                font-size: 2rem;
              }
              &-sub__title{
                font-size: 2rem;
                margin-top: 0.5rem;
                font-weight: 500;
              }
            }
          }
        }
      }
      .link-area {
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: 4rem;
  
        .link-mobile{
          display: none; 
        }
      }
    }
  }
}
/* 방송출연 section */
.section11 {
  position: relative;
  width: 100%;
  height: 100%;

  &::before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    inset: 0;
    background: var(--alpha-black-10);
    z-index: 100;
  }

  .section-background {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -100;
    img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .section-video {
      object-fit: cover;
      width: 100%;
      height: 100%;
    }
  }

  .container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--container-inline-padding);
    z-index: 200;
  }

  .text-area {
    text-align: center;

    .section-title {
      font-size: 8rem;
      font-weight: var(--font-weight-bold);
      color: var(--color-white);
      @media screen and (max-width: 780px){
        font-size: 5rem;
      }
      @media screen and (max-width: 600px){
        font-size: 4rem;
      }
      @media screen and (max-width: 480px){
        font-size: 3.2rem;
      }
      @media screen and (max-width: 320px){
        font-size: 2rem;
      }
    }

    .section-sub-title {
      margin-top: 2rem;
      font-size: 2.4rem;
      font-weight: var(--font-weight-regular);
      color: var(--color-white);
      @media screen and (max-width: 780px){
        font-size: 1.8rem;
      }
      @media screen and (max-width: 600px){
        font-size: 1.6rem;
      }
      @media screen and (max-width: 480px){
        font-size: 1.4rem;
      }
      @media screen and (max-width: 320px){
        font-size: 1rem;
      }
    }
  }

  .broadcasting-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    max-width: 162rem;
    width: 100%;
    gap: 3rem;
    margin-top: 8rem;
    margin-bottom: 8.4rem;
    @media screen and (max-width: 1440px){
      grid-template-columns: repeat(2, 1fr);
      max-width: 63rem;
      margin-top: 2.2rem;
      margin-bottom: 1rem;
    }
    @media screen and (max-width: 1024px){
      margin-bottom: 3rem;
    }
    .card {
      display: flex;
      flex-direction: column;
      row-gap: 1rem;

      .thumbnail {
        overflow: hidden;
        border-radius: 1rem;

        .thumbnail-image {
          cursor: pointer !important;
          transition: all 0.3s ease-in-out;
          &:hover {
            transform: scale(1.02);
          }
        }
      }

      .card-text {
        text-align: center;
        font-size: 2rem;
        font-weight: var(--font-weight-bold);
        cursor: pointer;
        color: #fff;
      }
    }
  }

  .link-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    .arrow-button{
      color: var(--color-white);
      border-color: var(--color-white);
      &:hover{
        color: var(--color-purple-dark);
        border-color: var(--color-purple-dark);
        background: var(--color-white);
      }
    }
    .link-mobile{
      display: none; 
    }
  }
}

/* 디노블TV section */
.section12 {
  position: relative;
  width: 100%;
  height: 100%;

  &::before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    inset: 0;
    background: var(--alpha-black-10);
    z-index: 100;
  }

  .section-background {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -100;
    img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .section-video {
      object-fit: cover;
      width: 100%;
      height: 100%;
    }
  }

  .container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--container-inline-padding);
    z-index: 200;
  }

  .text-area {
    text-align: center;

    .section-title {
      font-size: 8rem;
      font-weight: var(--font-weight-bold);
      color: var(--color-black);
      @media screen and (max-width: 780px){
        font-size: 5rem;
      }
      @media screen and (max-width: 600px){
        font-size: 4rem;
      }
      @media screen and (max-width: 480px){
        font-size: 3.2rem;
      }
      @media screen and (max-width: 320px){
        font-size: 2rem;
      }
    }

    .section-sub-title {
      margin-top: 2rem;
      font-size: 2rem;
      font-weight: var(--font-weight-regular);
      color: var(--color-black);
      @media screen and (max-width: 780px){
        font-size: 1.8rem;
      }
      @media screen and (max-width: 600px){
        font-size: 1.6rem;
      }
      @media screen and (max-width: 480px){
        font-size: 1.4rem;
      }
      @media screen and (max-width: 320px){
        font-size: 1rem;
      }
    }
  }

  .broadcasting-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    max-width: 162rem;
    width: 100%;
    gap: 3rem;
    margin-top: 8rem;
    margin-bottom: 8.4rem;
    @media screen and (max-width: 1440px){
      grid-template-columns: repeat(2, 1fr);
      max-width: 63rem;
      margin-top: 2.2rem;
      margin-bottom: 1rem;
    }
    @media screen and (max-width: 1024px){
      margin-bottom: 3rem;
    }
    .card {
      display: flex;
      flex-direction: column;
      row-gap: 1rem;

      .thumbnail {
        overflow: hidden;
        border-radius: 1rem;

        .thumbnail-image {
          /* 202504251126 정세영 수정 */
          cursor: pointer !important;

          /* 202504251127 정세영 추가 */
          transition: all 0.3s ease-in-out;
          &:hover {
            transform: scale(1.02);
          }
        }
      }

      .card-text {
        text-align: center;
        font-size: var(--font-size-base);
        font-weight: var(--font-weight-bold);
        cursor: pointer;
        color: #fff;
      }
    }
  }

  .link-area {
    display: flex;
    align-items: center;
    gap: 4rem;

    /* 202502260954 정세영 추가 */
    .link-mobile{
      display: none; 
    }
  }
}


/* 수상내역 section */
.section13 {
  position: relative;
  width: 100%;
  height: 100%;
  .section-background {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -100;
    img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--container-inline-padding);
    z-index: 200;
  }

  .text-area {
    text-align: center;

    .section-title {
      font-size: var(--font-size-xxl);
      font-weight: var(--font-weight-bold);
      color: var(--color-white);
    }

    .section-sub-title {
      margin-top: 2rem;
      font-size: var(--font-size-base);
      font-weight: var(--font-weight-regular);
      color: var(--color-white);
    }
  }
  .text-area {
    text-align: center;

    .section-title {
      font-size: var(--font-size-xxl);
      font-weight: var(--font-weight-bold);
      color: var(--color-white);
    }

    .section-sub-title {
      margin-top: 2rem;
      font-size: var(--font-size-base);
      font-weight: var(--font-weight-regular);
      color: var(--color-white);
    }
  }

  .awards-wrap{
    margin-top: 6rem;
    margin-bottom: 7.6rem;
    .awards-list{
      display: grid;
      grid-template-columns: repeat(10, 1fr);
      column-gap: 2rem;
      row-gap: 3.2rem;
      @media screen and (max-width: 1440px){
        grid-template-columns: repeat(6, 1fr);
        height: 310px;
        overflow: hidden;
      }
      @media screen and (max-width: 1024px){
        grid-template-columns: repeat(5, 1fr);
        height: 320px;
        overflow: hidden;
      }
      @media screen and (max-width: 780px){
        grid-template-columns: repeat(4, 1fr);
        height: 330px;
        overflow: hidden;
      }
      @media screen and (max-width: 650px){
        grid-template-columns: repeat(4, 1fr);
        height: 255px;
        overflow: hidden;
      }
      @media screen and (max-width: 600px){
        grid-template-columns: repeat(4, 1fr);
        height: 442px;
        overflow: hidden;
      }
      @media screen and (max-width: 550px){
        grid-template-columns: repeat(4, 1fr);
        height: 430px;
        overflow: hidden;
      }
      @media screen and (max-width: 480px){
        grid-template-columns: repeat(4, 1fr);
        height: 264px;
        overflow: hidden;
      }
      @media screen and (max-width: 320px){
        grid-template-columns: repeat(4, 1fr);
        height: 169px;
        overflow: hidden;
      }
      li{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        .awards_img{
          max-width: 140px;
          width: 100%;
          @media screen and (max-width: 650px){
            max-width: 100px;
          }
          img{
            object-fit: cover;
            margin: 0 auto;
          }
        }
        p{
          color: var(--color-white);
          font-size: 1.6rem;
          text-align: center;
        }
      }
    }
  }

  .link-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    .arrow-button{
      color: var(--color-white);
      border-color: var(--color-white);
      &:hover{
        color: var(--color-purple-dark);
        border-color: var(--color-purple-dark);
        background: var(--color-white);
      }
    }
    .link-mobile{
      display: none; 
    }
  }
}

/* 결혼테스트 section */
.section14 {
  position: relative;
  width: 100%;
  height: 100%;


  .section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 100;
  }

  .container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-inline: var(--container-inline-padding);
    z-index: 300;
  }

  .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--color-white);

    .section-title {
      font-size: var(--font-size-xxl);
      font-weight: var(--font-weight-bold);
    }

    .section-description {
      font-size: var(--font-size-base);
      margin: 1rem 0 7rem;
    }

    .test-list {
      display: flex;
      flex-wrap: wrap;
      gap: 3rem;
      margin-bottom: 6.2rem;
      max-width: 60rem;
    }

    .test-item {
      width: calc(33.33333% - 2.5rem);
      padding: 3rem 1rem;
      border-radius: 1rem;
      background: var(--alpha-black-30);
      backdrop-filter: blur(2rem);
      transition:
        background 0.3s,
        color 0.3s;
      img{
        height: 70px;
      }
      &:hover {
        background: var(--color-white);
        color: var(--color-purple-dark);

        .test-image {
          display: none;
          &.hover {
            display: block;
          }
        }
      }

      &:nth-of-type(1),
      &:nth-of-type(2),
      &:nth-of-type(3),
      &:nth-of-type(4),
      &:nth-of-type(5),
      &:nth-of-type(6) {
        animation-delay: 1s;
      }

      &:nth-of-type(7),
      &:nth-of-type(8),
      &:nth-of-type(9),
      &:nth-of-type(10),
      &:nth-of-type(11),
      &:nth-of-type(12) {
        animation-delay: 1.5s;
      }
    }

    .test-image {
      margin: 0 auto;

      &.hover {
        display: none;
      }
    }

    .test-title {
      margin-top: 1rem;
      font-weight: var(--font-weight-bold);
      font-size: var(--font-size-xxs);
      word-break: keep-all;
    }

    .arrow-button {
      animation-delay: 2s;
      color: #fff;
      border-color: #fff;
      &:hover{
        background: var(--color-white);
        color: var(--color-purple-dark);
      }
    }
  }
}

/* 무료상담 section */
.section15 {
  background: url('/rw_images/main/section15/bg.png') no-repeat center/cover;

  .container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-inline: var(--container-inline-padding);
    z-index: 200;
  }

  .content {
    color: var(--color-black);
  }

  .section-title {
    text-align: center;
    font-size: var(--font-size-xxl);
    font-weight: var(--font-weight-bold);
    margin-bottom: 6rem;
  }

  .form {
    margin: 0 auto;
    width: 100%;
    max-width: 43.7rem;
  }

  .form-group {
    display: flex;
    align-items: center;
    column-gap: 1.5rem;
    max-width: 435px;
    width: 100%;
    margin: 0 auto 2rem auto;
  }

  .input-group {
    font-size: var(--font-size-xs);
    flex: 1;
    display: flex;
    align-items: center;

    & > .text-input,
    & > .radio-input,
    & > .checkbox-input,
    & > .select-input,
    & > .button-input {
      flex: 1;
      width: 100%;
      height: 3.5rem;
      color: var(--color-black);
      background: transparent;
      border: 1px solid var(--color-black);
      box-sizing: border-box;
      padding-inline: 1.5rem;

      &::placeholder {
        color: var(--color-gray-09);
      }
    }

    &.button {
      flex: 0 0 auto;

      .button-input {
        padding-inline: 3rem;
        transition:
          color 0.3s,
          background 0.3s;

        @media (hover: hover) and (pointer: fine) {
          &:hover {
            background: var(--color-white);
            color: var(--color-gray-09);
          }
        }

        &:active {
          background: var(--color-white);
          color: var(--color-gray-09);
        }
      }
    }
  }

  .select {
    position: relative;

    .select-input {
      position: relative;
      padding-right: 4rem;
      z-index: 100;

      &:invalid{
        color: var(--color-gray-09);
      }

      /* 202502201354 정세영 추가 */
      &.branch{
        color: var(--color-gray-09);
      }

      /* 202502201355 정세영 추가 */
      &.branch.selected {
        color: var(--color-black);
      }

      /* 202502201354 정세영 추가 */
      option {
        color: var(--color-white);       
        background-color: var(--color-gray-02);
      }
    }

    .icon-angle_down {
      font-size: 1.6rem;
      position: absolute;
      top: 50%;
      right: 1.5rem;
      transform: translate3d(0, -50%, 0);
      z-index: 200;
    }
  }

  .radio-group {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 2rem;

    .radio-label {
      display: flex;
      align-items: center;
      column-gap: 0.6rem;
    }

    .radio-input {
      position: relative;
      appearance: none;
      border: 1px solid var(--color-black);
      border-radius: 50%;
      width: 2rem;
      aspect-ratio: 1 / 1;

      &::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        border-radius: 50%;
        width: 1.2rem;
        aspect-ratio: 1 / 1;
        transform: translate3d(-50%, -50%, 0);
        background: transparent;
        transition: background 0.3s;
      }

      &:checked::before {
        background: var(--color-black);
      }
    }
  }

  .checkbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 3.6rem;
    font-size: var(--font-size-xxs);

    .checkbox-label {
      position: relative;
      display: flex;
      align-items: center;
      column-gap: 0.9rem;
    }

    .checkbox-input {
      position: relative;
      appearance: none;
      width: 1.6rem;
      aspect-ratio: 1 / 1;
      border: 1px solid var(--color-black);
      z-index: 200;
    }

    .icon-check {
      position: absolute;
      top: 50%;
      left: 0;
      font-size: 1.6rem;
      transform: translate3d(0, -50%, 0);
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
      z-index: 100;
    }

    .checkbox-input:checked + .icon-check {
      opacity: 1;
    }

    .modal-button {
      font-size: var(--font-size-tiny);
    }
  }

  .checkbox-group {
    display: flex;
    column-gap: 1.9rem;
    flex-wrap: wrap;
    max-width: 435px;
    width: 100%;
    margin: 0 auto 2rem auto;

    & > .checkbox {
      flex-shrink: 0;
    }

    & > *:not(.checkbox) {
      flex-grow: 1;
    }
  }

  .submit-button {
    display: flex;
    justify-content: center;
    margin: 3rem auto 0 auto;
    max-width: 435px;
    width: 100%;
    &:hover{
      background: var(--color-purple-dark);
      color: var(--color-white);
    }
  }
}

/* 전국지사 section */
.section16 {
  position: relative;
  width: 100%;
  height: 100%;


  .section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 100;
  }

  .container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-inline: var(--container-inline-padding);
    z-index: 300;
  }

  .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--color-white);

    .section-title {
      font-size: var(--font-size-xxl);
      font-weight: var(--font-weight-bold);
    }

    .section-description {
      font-size: var(--font-size-base);
      margin: 1rem 0 4rem;
    }
    .jisa-cont{
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      &.mo{
        display: none;
        .jisa-list{
          display: grid;
          grid-template-columns: repeat(3, 1fr);
        }
        @media screen and (max-width: 780px) {
          display: block;
        }
      }
      @media screen and (max-width: 780px) {
        display: none;
      }
      .jisa-list{
        display: flex;
        align-items: center;
        gap: 3rem;
        li{
          display: flex;
          flex-direction: column;
          align-items: center;
          .jisa_img{
            margin-bottom: 1rem;
            img{

            }
          }
          p:nth-child(2){
            margin-bottom: .8rem;
            font-size: 2rem;
            font-weight: 500;
          }
          p:last-child{
            font-size: 1.5rem;
            font-weight: 400;
          }
        }
      }
    }
    .arrow-button{
      color: #fff;
      border-color: #fff;
      margin-top: 2rem;
      &:hover{
        background: var(--color-white);
        color: var(--color-purple-dark);
      }
    }
  }
}

  /* .card {
    margin-inline: 2rem;
    border-radius: 2rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;

    &::before {
      content: '';
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      background: var(--alpha-black-20);
      z-index: 200;
    }

    .card-image {
      position: relative;
      width: 100%;
      height: 100%;
      object-fit: cover;
      aspect-ratio: 400 / 300;
      z-index: 100;
      cursor: pointer;
    }

    .icon-play {
      position: absolute;
      top: 50%;
      left: 50%;
      font-size: 6rem;
      color: var(--alpha-white-70);
      transform: translate3d(-50%, -50%, 0);
      z-index: 300;
      cursor: pointer;
    }

    .card-text {
      position: absolute;
      left: 0;
      bottom: 0;
      padding: 0.6rem;
      width: 100%;
      font-size: var(--font-size-sm);
      font-weight: var(--font-weight-bold);
      background: rgba(0, 0, 0, .3);
      color: var(--color-white);
      backdrop-filter: blur(0.5);
      z-index: 400;
      cursor: pointer;
    }
  }

  .link-area {
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 4rem;
    padding-inline: var(--container-inline-padding);

    .link-mobile{
      display: none; 
    }
  } */


/* 모달 */
.modals {
  .consent-modal {
    .modal-container {
      display: flex;
      flex-direction: column;
      padding-block: 4rem;
      row-gap: 3rem;
      color: var(--color-white);
      background: var(--color-gray-02);
    }

    .modal-header {
      padding-inline: var(--container-inline-padding);
      flex-shrink: 0;

      .modal-title {
        font-size: var(--font-size-xs);
        font-weight: var(--font-weight-bold);
        text-align: center;
      }
    }

    .modal-body {
      padding-inline: var(--container-inline-padding);
      flex-grow: 1;
      overflow-y: auto;

      &::-webkit-scrollbar {
        width: 0.6rem;
      }

      &::-webkit-scrollbar-thumb {
        background-color: var(--color-gray-04);
        border-radius: 0.3rem;
      }

      &::-webkit-scrollbar-track {
        background-color: rgba(0, 0, 0, 0);
      }

      .modal-content {
        font-size: var(--font-size-tiny);
      }
    }

    .modal-footer {
      display: flex;
      justify-content: center;
      padding-inline: var(--container-inline-padding);
      flex-shrink: 0;
    }
  }

  .party-modal,
  .dnoble-tv-modal,
  .dnoble-broadcasting-modal {
    .modal-content {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
    }

    .modal-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}

/* responsive */

@media screen and (max-width: 1440px) {
  /* 전문 서비스 section */
  .section05 {
    .service-img-wrap {
      gap: 1.6rem;
      max-width: 89.1rem;
    }

    .service-text {
      row-gap: 1rem;
    }

    .service-box-wrap {
      gap: 1.6rem;
      max-width: 112rem;

      .service-box {
        min-width: 12.5rem;
        padding: 2rem 1rem;
        font-size: var(--font-size-xs);
      }
    }
  }

  /* 파티 section */
  .section05 {
    .section-description {
      margin-bottom: 2rem;
    }

    .section-info {
      max-width: 74.1rem;
    }

    .swiper {
      --swiper-margin: 9.7222vw;
    }
  }

  /* CEO section */
  .section06 {
    .swiper{
      --swiper-margin: 9.7222vw;
    }
  }

  /* 커플매니저 section */
  .section07 {
    .counseling-intro {
      max-width: 100rem;
    }

    .manager-wrap {
      max-width: 130rem;

      .manager {
        .counseling-button {
          font-size: var(--font-size-tiny);
        }
      }
    }
  }

  /* 한경협 section */
  .section08 {
    .text-area {
      .section-title {
        .font-bold {
          font-size: var(--font-size-xl);
        }
      }

      .arrow-button {
        margin-top: 11rem;
      }
    }
  }

  /* 미인대회 section */
  .section11 {
    .text-area {
      .section-text {
        margin-top: 6rem;

        &:last-of-type {
          margin-top: 4.8rem;
        }
      }
    }

    .miss-link-wrap {
      max-width: 81rem;
      margin-top: 6rem;
      gap: 3rem;

      .miss-link {
        flex: 0 1 calc(25% - 2.25rem);
        height: 8rem;
        padding-block: 1.9rem;
      }
    }
  }

  /* 청담동 문화 section */
  .section12 {
    .marquee {
      margin-top: 5.4rem;
      margin-bottom: 5.4rem;
    }
  }

  /* 디노블TV section */
  .section13 {
    .youtube-content-wrap {
      max-width: 92rem;
    }
  }

/* 방송출연 section */
.section14 {
  position: relative;
  width: 100%;
  height: 100%;

  &::before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    inset: 0;
    background: var(--alpha-black-10);
    z-index: 100;
  }

  .section-background {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -100;

    .section-video {
      object-fit: cover;
      width: 100%;
      height: 100%;
    }
  }

  .container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--container-inline-padding);
    z-index: 200;
  }

  .text-area {
    text-align: center;

    .section-title {
      font-size: var(--font-size-xxl);
      font-weight: var(--font-weight-bold);
      color: var(--color-black);
    }

    .section-sub-title {
      margin-top: 2rem;
      font-size: var(--font-size-base);
      font-weight: var(--font-weight-regular);
    }
  }

  .broadcasting-wrap {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    max-width: 162rem;
    width: 100%;
    gap: 3rem;
    margin-top: 8rem;
    margin-bottom: 8.4rem;

    .card {
      display: flex;
      flex-direction: column;
      row-gap: 1rem;

      .thumbnail {
        overflow: hidden;
        border-radius: 1rem;

        .thumbnail-image {
          /* 202504251126 정세영 수정 */
          cursor: pointer !important;

          /* 202504251127 정세영 추가 */
          transition: all 0.3s ease-in-out;
          &:hover {
            transform: scale(1.02);
          }
        }
      }

      .card-text {
        text-align: center;
        font-size: var(--font-size-base);
        font-weight: var(--font-weight-bold);
        cursor: pointer;
      }
    }
  }

  .link-area {
    display: flex;
    align-items: center;
    gap: 4rem;

    /* 202502260954 정세영 추가 */
    .link-mobile{
      display: none; 
    }
  }
}
 
  /* 브랜드 대상 section */
  .section16 {
    .section-description {
      margin: 1rem 0 2rem;
    }
    .tab-panel {
      padding: 1rem 0;
    }

    .tab-list {
      height: 15rem;
    }

    .tab-button {
      row-gap: 2rem;
    }

    .award-list {
      flex-wrap: wrap;
      max-width: 78rem;
    }

    .award-item {
      height: 17rem;
      padding-block: 1rem;
      width: calc(20% - 1.6rem);
    }
  }

  /* 결혼테스트 section */
  .section18 {
    .content {
      .section-description {
        margin: 1rem 0 6.4rem;
      }

      .test-list {
        gap: 2rem;
        margin-bottom: 6.2rem;
        max-width: 100rem;
      }

      .test-item {
        padding: 1.8rem 1rem 3rem;
        width: calc(16.6667% - 1.66666rem);
      }

      .test-title {
        margin-top: 0.2rem;
      }
    }
  }

  /* 지사 section */
  .section20 {
    .branch-wrap {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem 3rem;
      margin-top: 1rem;
      margin-bottom: 1rem;

      .branch-area {
        width: 22rem;
        row-gap: 1rem;
      }

      .text {
        .branch-name {
          font-size: var(--font-size-sm);
        }
      }
    }
  }
}

@media screen and (max-width: 1280px) {
  .full-page {
    & > .swiper-pagination {
      padding-bottom: 13.6rem;
    }
  }

  /* 202502140309 고다솜 수정 : floating-nav 스타일 삭제 */

  /* 결혼 section */
  .section01 {
    .slide-title {
      margin-bottom: 15.5rem;
      & > div:first-of-type {
        margin-bottom: 2rem;
      }
    }
  }

  /* 전통 section */
  .section02 {
    .swiper-slide {
      row-gap: 10rem;
    }
  }

  /* 성혼율 section */
  .section03 {
    .text-area {
      padding-left: 6rem;
    }
  }

  /* 전문 서비스 section */
  /* .section05 {
    .service-img-wrap {
      margin-top: 8rem;
    }
  } */

  /* 파티 section */
  .section05 {
    .section-info {
      max-width: 75.8rem;
    }

    .swiper {
      --swiper-margin: 2rem;
    }
  }

  /* CEO section */
  .section06 {
    .swiper{
      --swiper-margin: 2rem;
    }
  }

  /* 사회봉사활동 section */
  .section09 {
    .text-area {
      .section-sub-title {
        margin-top: 6rem;
      }
    }
  }

  /* 청담동 문화 section */
  .section12 {
    .marquee {
      margin-top: 8rem;
      margin-bottom: 6.6rem;
    }

    .text-area {
      .section-sub-title {
        margin-top: 1rem;
      }
    }
  }

  /* 디노블TV section */
  .section13 {
    .text-area {
      .section-sub-title {
        margin-top: 1rem;
      }
    }

    .youtube-content-wrap {
      margin-top: 4rem;
      margin-bottom: 6rem;
    }
  }

  /* 방송출연 section */
  .section14 {
    .text-area {
      .section-sub-title {
        margin-top: 1rem;
      }
    }
    .broadcasting-wrap {
      flex-wrap: wrap;
      max-width: 87rem;
      gap: 3rem;
    }
  }


  /* 결혼테스트 section */
  .section18 {
    .content {
      .section-description {
        margin: 1rem 0 6rem;
      }
    }
  }

  /* 지사 section */
  .section20 {
    .text-area {
      .section-sub-title {
        margin-top: 1rem;
      }
    }

    .branch-wrap {
      margin-bottom: 2rem;
    }
  }
}

@media screen and (max-width: 1024px) {
  /* 202502140309 고다솜 수정 : floating-nav 스타일 삭제 */

  /* 성혼율 section */
  .section03 {
    .text-area {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0;
    }

    .slide-title {
      align-items: center;
    }

    .slide-caption {
      text-align: center;
    }
  }

  /* 전문 서비스 section */
  .section05 {
    .service-img-wrap {
      grid-template-columns: repeat(2, 1fr);
      max-width: 75rem;
      margin-top: 2rem;
      margin-bottom: 2rem;
      gap: 2rem;
    }

    .service-item {
      width: 100%;
      height: 10rem;


      .icon-arrow_right {
        top: unset;
        bottom: 3rem;
      }
    }

    .service-img {
      object-fit: cover;
    }

    .service-box-container {
      max-width: 75rem;
      width: 100%;
    }

    .service-box-wrap {
      max-width: 100%;
      grid-template-columns: repeat(4, 1fr);
      margin-bottom: 2rem;

      .service-box {
        padding: 1.5rem 1rem;
      }
    }
  }

  /* 파티 section */
  .section05 {
    .section-info {
      max-width: 74.1rem;
    }

    .swiper {
      --swiper-margin: 12.5vw;
    }
  }

  /* CEO section */
  .section06 {
    .container {
      justify-content: center;
      align-items: center;
      flex-direction: column;
      row-gap: 3rem;

      .image-box {
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-top: 6rem;
      }

      .content {
        width: 100%;
        padding-bottom: 15rem;
      }
    }

    .ceo-image {
      width: 37vh;
      max-width: 40rem;
    }

    .text-box {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding-left: var(--container-inline-padding);
      margin-bottom: 3rem;

      .ceo-description {
        margin-bottom: 2rem;
      }

      .ceo-name {
        column-gap: 1rem;
        margin-bottom: 2rem;
      }

      .ceo-info {
        margin-bottom: 2.6rem;
      }
    }

    .marquee {
      .card {
        width: 18rem;
        margin-inline: 0.75rem;
        padding: 1.5rem 2rem 1.2rem;
      }

      .card-image {
        aspect-ratio: 120 / 100;
        margin-bottom: 0.5rem;
        width: calc(100% - 2rem);
      }
    }
  }

  /* 커플매니저 section */
  .section08 {
    .drag-scroll-x {
      width: 100vw;
      margin-inline: calc(var(--container-inline-padding) * -1);
      padding-inline: var(--container-inline-padding);
    }

    .counseling-intro {
      max-width: 70rem;
    }

    .manager-wrap {
      max-width: max-content;
      display: flex;
      margin-bottom: 6rem;
      width: max-content;
      .manager {
        width: 20rem;
      }
    }
  }

  /* 한경협 section */
  .section08 {
    .scale-down-content {
      animation: scaleUpLarge 2s ease-in-out forwards;
    }

    .text-area {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 0;

      .backdrop {
        opacity: 0;
      }

      .arrow-button {
        margin-top: 11rem;
      }
    }
  }

  

  /* 지사 section */
  .section20 {
    .branch-wrap {
      margin-top: 3rem;
      margin-bottom: 4.8rem;

      .branch-area {
        width: 20rem;
      }
    }
  }
}

@media screen and (max-width: 780px) {
  /* full-page */
  .full-page .swiper-pagination {
    display: none;
  }

  /* 메인 팝업 : 202502131328 정세영 추가 */
  .popup-wrap{
    .popup-container{
      left: 50%; top: 50%; transform: translate(-50%, -50%);
      width: 60%;
    }
  }

  /* 202502140309 고다솜 수정 : floating-nav 스타일 삭제 */

  /* 결혼 section */
  .section01 {
    .slide-title {
      margin-bottom: 15.2rem;
    }
  }

  /* 전통 section */
  .section02 {
    .swiper-slide {
      row-gap: 8rem;
    }
  }

  /* 전문 서비스 section */
  .section05 {
    .service-img-wrap {
      max-width: 60rem;
    }

    .service-box-container {
      max-width: 60rem;
    }
  }

  /* 파티 section */
  .section05 {
    .section-info {
      max-width: 67rem;
    }

    .swiper {
      --swiper-margin: 23.0769vw;

      &::before,
      &::after {
        width: 16rem;
      }
    }

    .card {
      margin-inline: 1.5rem;
    }

    .link-area {
      margin-top: 2rem;

      .link-desktop{
        display: none; /* 202502161404 정세영 추가 */
      }
      .link-mobile{
        display: flex; /* 202502161404 정세영 추가 */
      }
    }
  }

  /* 202502161406 정세영 추가 */
  /* CEO section */
  .section06{
    .text-box {
      .link-area {
        .link-desktop{
          display: none;  
        }
        .link-mobile{
          display: flex; 
        }
      }
    }
  }

  /* 커플매니저 section */
  .section08 {
    .counseling-intro {
      max-width: 58rem;
    }
  }

  /* 미인대회 section */
  .section11 {
    .miss-link-wrap {
      max-width: 66rem;
      gap: 2rem;

      .miss-link {
        flex: 0 1 calc(25% - 1.5rem);
        padding-inline: 1rem;
      }
    }
  }

  /* 청담동 문화 section */
  .section12 {
    .marquee {
      margin-bottom: 9.7rem;
    }

    .marquee-list {
      .marquee-item {
        width: 24rem;
        padding-inline: 1rem;
      }
    }
  }

  /* 디노블TV section */
  .section13 {
    .youtube-content-wrap {
      max-width: 63rem;
      gap: 2rem 3rem;
      margin-top: 6rem;
      margin-bottom: 8.5rem;

      .card {
        border-radius: 0.5rem;
        &.main {
          border-radius: 1rem;
        }
      }
    }
  }

  /* 방송출연 section */
  .section14 {
    .broadcasting-wrap {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      max-width: 51rem;
      gap: 2rem 3rem;
      margin-top: 3rem;
      margin-bottom: 2.2rem;

      .card {
        width: auto;

        &:nth-child(3) {
          width: calc(50% - 1.5rem);
          justify-self: center;
          grid-column: span 2;
        }
      }
    }

    /* 202502261002 정세영 추가 : 모바일/PC 링크 처리 */
    .link-area{
      .link-desktop{
        display: none; 
      }
      .link-mobile{
        display: block; 
      }
    }
  }


  /* 브랜드 대상 section */
  .section16 {
    .tab-list {
      max-width: 66rem;
      height: 14rem;
    }

    .tab-button {
      row-gap: 1rem;

      .tab-image {
        height: 2.5rem;
      }
    }

    .award-list {
      max-width: 64rem;
      column-gap: 1rem;
    }

    .award-item {
      height: 16rem;
      width: calc(20% - 0.8rem);
    }
  }
}

@media screen and (max-width: 600px) {
  .popup-wrap{
    display: none; 

    .popup-container{
      width: 80vw;
    }
  }
  

  /* 전문 서비스 section */
  .section04 {
    .service-img-wrap {
      margin-top: 6rem;
      margin-bottom: 2rem;
      max-width: 50rem;
    }

    .service-box-container {
      max-width: 50rem;
    }

    .service-box-wrap {
      .service-box {
        min-width: unset;
      }
    }

    .service-text {
      row-gap: 0.4rem;
    }
  }

  /* 파티 section */
  .section05 {
    .section-info {
      max-width: 35.3rem;
    }

    .swiper {
      --swiper-margin: 33.3333vw;

      &::before,
      &::after {
        width: 12rem;
      }
    }

    .card {
      margin-inline: 1rem;
      border-radius: 1.5rem;

      .icon-play {
        font-size: 4rem;
      }
    }

    .link-area {
      column-gap: 2rem;
    }
  }

  /* CEO section */
  .section06 {
    .swiper{
      --swiper-margin:33.3333vw;
    }
  }

  /* 커플매니저 section */
  .section08 {
    .counseling-intro {
      max-width: 52rem;
    }
  }

  /* 미인대회 section */
  .section11 {
    .text-area {
      .section-text {
        &:last-of-type {
          margin-top: 2rem;
        }
      }
    }

    .miss-link-wrap {
      max-width: 54.4rem;
      gap: 1.6rem;

      .miss-link {
        flex: 0 1 calc(25% - 1.2rem);
        padding-block: 1.6rem;
        padding-inline: 0.4rem;
        height: 7rem;
      }
    }
  }

  /* 청담동 문화 section */
  .section12 {
    .marquee {
      margin-bottom: 11.5rem;
    }
  }

  /* 디노블TV section */
  .section13 {
    .youtube-content-wrap {
      max-width: 48rem;
      gap: 2rem;
      margin-top: 8rem;
      margin-bottom: 14.3rem;

      .card {
        &.main {
          border-radius: 0.5rem;
        }
      }
    }

    .link-area {
      gap: 2rem;
    }
  }

  /* 방송출연 section */
  .section14 {
    .broadcasting-wrap {
      max-width: 42rem;
      gap: 1rem 2rem;
      margin-top: 2rem;
      margin-bottom: 2rem;
    }

    .link-area {
      gap: 2rem;
    }
  }

  /* 브랜드 대상 section */
  .section16 {
    .tab-list {
      max-width: 54rem;
      height: 12rem;
    }

    .tab-button {
      padding-inline: 2rem;

      .tab-image {
        height: 2rem;
      }
    }

    .award-list {
      max-width: 53rem;
    }

    .award-item {
      height: 14rem;

      .award-image {
        max-width: 6.6rem;
      }
    }
  }

  /* 결혼테스트 section */
  .section18 {
    .content {
      .test-list {
        max-width: 54rem;
      }

      .test-item {
        padding: 1.2rem 0.6rem 1.8rem;
      }

      .test-image {
        max-width: 5.8rem;
      }

      .test-title {
        margin-top: 0.8rem;
      }
    }
  }

  /* 지사 section */
  .section20 {
    .branch-wrap {
      gap: 2rem 1.6rem;

      .branch-area {
        width: auto;
        row-gap: 1rem;
      }
    }
  }
}

@media screen and (max-width: 480px) {

  /* 결혼 section */
  .section01 {
    .slide-title {
      & > div:first-of-type {
        margin-bottom: 0;
      }
    }

    .section-info {
      bottom: 15rem;
    }

    .scroll-down {
      display: none;
    }
  }

  /* 전통 section */
  .section02 {
    .swiper-slide {
      row-gap: 3rem;
    }

    .slide-title {
      max-width: 30.8rem;
      row-gap: 1rem;

      .move-up-in-and-out-content-target {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 0.8rem;
      }
    }

    .slide-text {
      max-width: 23.2rem;

      & > br {
        display: none;
      }
    }
  }

  /* 성혼율 section */
  .section03 {
    .mo-br {
      display: block;
    }
  }

  /* 전문 서비스 section */
  .section04 {
    .text-area {
      .section-sub-title {
        margin-top: 0.8rem;
      }
    }
    .service-img-wrap {
      margin-top: 1.5rem;
      margin-bottom: 1.5rem;
      max-width: 40rem;
      gap: 1.2rem;
    }

    .service-box-container {
      max-width: 40rem;
    }

    .service-item {
      height: 8rem;
    }

    .service-text {
      padding: 2rem 1.5rem;
    }

    .service-box-wrap {
      gap: 1.2rem;
      .service-box {
        padding: 1.3rem 1rem;
      }
    }
  }

  /* 파티 section */
  .section05 {
    .section-info {
      max-width: 28.2rem;
    }

    .swiper {
      --swiper-margin: 52.0833vw;
      --pagination-size: 0.6rem;
      --pagination-margin: 1.5rem;

      &::before,
      &::after {
        display: none;
      }

      .swiper-pagination {
        column-gap: 1rem;
      }
    }

    .card {
      margin-inline: 0.5rem;
      border-radius: 1rem;
    }

    .link-area {
      column-gap: 1rem;
    }
  }

  /* CEO section */
  .section06 {
    .container {
      row-gap: 1.3rem;

      .image-box {
        padding-top: 2.8rem;
      }

      .content {
        padding-bottom: 12rem;
      }
    }

    .ceo-image {
      max-width: 27rem;
    }

    .text-box {
      margin-bottom: 2rem;

      .ceo-description {
        column-gap: 0.6rem;
        margin-bottom: 0.2rem;
      }

      .ceo-name {
        column-gap: 0.6rem;
        margin-bottom: 0.9rem;
      }

      .ceo-info {
        margin-bottom: 2rem;
      }

      .link-area {
        column-gap: 1rem;
      }
    }

    .marquee {
      .card {
        width: 12rem;
        padding: 1.5rem 1rem 1.2rem;
      }

      .card-image {
        aspect-ratio: 75 / 60;
        width: 100%;
      }
    }
  }

  /* 커플매니저 section */
  .section08 {
    .mo-br {
      display: block;
    }
    .counseling-intro {
      max-width: 100%;
      margin-bottom: 1rem;
    }

    .manager-wrap {
      margin-top: 1rem;
      margin-bottom: 1rem;
      gap: 1rem;

      .manager {
        width: 16.2rem;

        .badge {
          width: 4rem;
          height: 2rem;
        }

        .thumbnail {
          .figure {
            .figcaption {
              row-gap: 0.6rem;
              height: 5.7rem;
            }
          }
          .hover-info {
            display: none;
          }
        }

        .mobile-button-area {
          display: flex;
        }
      }
    }
  }

  /* 미인대회 section */
  .section11 {
    .text-area {
      .section-text {
        margin-top: 6.5rem;
      }
    }
    .miss-link-wrap {
      margin-top: 5.2rem;
      max-width: 41.4rem;
      gap: 1rem;

      .miss-link {
        flex: 0 1 calc(25% - 0.75rem);
        padding-block: 0.6rem;
        height: 5.4rem;
      }
    }
  }

  /* 청담동 문화 section */
  .section12 {
    .marquee {
      margin-top: 7.7rem;
      margin-bottom: 8.2rem;
    }

    .marquee-list {
      .marquee-item {
        width: 20rem;

        .thumbnail {
          border-radius: 1rem;
        }
      }
    }
  }

  /* 디노블TV section */
  .section13 {
    .youtube-content-wrap {
      max-width: 34rem;
      grid-template-columns: repeat(2, 1fr);
      margin-top: 3.7rem;
      margin-bottom: 5rem;

      .card {
        &.main {
          grid-column: auto;
          border-radius: 0.5rem;
        }
      }
    }

    .link-area {
      gap: 1rem;
    }
  }

  /* 방송출연 section */
  .section14 {
    .broadcasting-wrap {
      max-width: 27.5rem;
      gap: 1.5rem;
      margin-top: 1.3rem;
      margin-bottom: 1.8rem;
    }

    .link-area {
      gap: 1rem;
    }
  }

  /* 무료상담 section */
  .section15 {
    .section-title {
      margin-bottom: 2.5rem;
    }

    .form {
      max-width: 31.5rem;
    }

    .form-group {
      column-gap: 0.7rem;
      margin-bottom: 1.5rem;
    }

    .input-group {
      & > .text-input,
      & > .radio-input,
      & > .checkbox-input,
      & > .select-input,
      & > .button-input {
        padding-inline: 1rem;
      }
    }

    .select {
      .select-input {
        padding-right: 2.2rem;
      }

      .icon-angle_down {
        font-size: 1.2rem;
        right: 1rem;
      }
    }

    .checkbox {
      height: 1.8rem;
      margin-top: 1rem;
    }

    .submit-button {
      margin-top: 1.5rem;
    }
  }
  /* 브랜드 대상 section */
  .section16 {
    .section-title {
      max-width: 20.7rem;
      margin: 0 auto;
    }

    .section-description {
      margin: 0.8rem 0 4.4rem;
    }

    .tab-list {
      max-width: 42rem;
      height: 7.2rem;
    }

    .tab-button {
      row-gap: 0.5rem;

      .tab-image {
        height: 1.3rem;
      }
    }

    .tab-panel {
      width: 100vw;
      margin-left: calc(var(--container-inline-padding) * -1);
      padding-inline: var(--container-inline-padding);
    }

    .award-list {
      justify-content: flex-start;
      flex-wrap: nowrap;
      max-width: max-content;
      width: max-content;
      column-gap: 1.5rem;
    }

    .award-item {
      width: 9rem;
    }
  }

  /* 결혼문화원 section */
  .section17 {
    .content {
      .section-description {
        row-gap: 1.2rem;
        margin-bottom: 8.8889vh;

        .description-text {
          display: flex;
          flex-direction: column;
          align-items: center;
          row-gap: 1.2rem;
        }
      }
    }
  }

  /* 결혼테스트 section */
  .section18 {
    .content {
      .section-description {
        margin: 0.8rem 0 1.9rem;
      }

      .test-list {
        max-width: 33.5rem;
        gap: 1rem 1.8rem;
        margin-bottom: 3rem;
      }

      .test-item {
        width: calc(33.3334% - 1.2rem);
        padding: 0.9rem 0.6rem;
      }

      .test-image {
        max-width: 3.5rem;
      }

      .test-title {
        margin-top: 0;
      }
    }
  }


  /* 지사 section */
  .section20 {
    .text-area {
      .section-sub-title {
        margin-top: 0.6rem;
      }
    }

    .branch-wrap {
      gap: 3rem 1rem;
      margin-bottom: 3rem;
    }
  }

  /* 모달 */
  .modals {
    .consent-modal {
      .modal-container {
        padding-block: 3rem;
        row-gap: 2rem;
      }
    }
  }
}

@media screen and (max-width: 320px) {
  /* 202502140309 고다솜 수정 : floating-nav 스타일 삭제 */

  /* 결혼 section */
  .section01 {
    .section-info {
      bottom: 10rem;
    }
  }

  /* 전통 section */
  .section02 {
    .swiper-slide {
      row-gap: 4.6rem;
    }

    .slide-title {
      max-width: 17.1rem;
      row-gap: 1.2rem;
    }

    .slide-text {
      max-width: 16.6rem;
    }
  }

  /* 전문 서비스 section */
  .section04 {
    .text-area {
      .section-sub-title {
        margin-top: 0.4rem;
      }
    }

    .service-img-wrap {
      margin-top: 2rem;
      margin-bottom: 1rem;
      max-width: 28rem;
      gap: 1rem;
    }

    .service-box-container {
      max-width: 28rem;
    }

    .service-item {
      height: 4.2rem;
    }

    .service-text {
      padding: 0.7rem 0.1rem 0.7rem 1rem;
      row-gap: 0.2rem;
    }

    .service-box-wrap {
      gap: 1rem;
      margin-bottom: 2.2rem;

      .service-box {
        padding: 0.6rem 0.35rem;
        border-radius: 0.5rem;
      }
    }
  }

  /* 파티 section */
  .section05 {
    .section-title {
      margin-bottom: 0.5rem;
    }
    .section-info {
      margin-bottom: 2.9rem;
      max-width: 21.2rem;
    }

    .swiper {
      --swiper-margin: 46.875vw;
      --pagination-size: 0.4rem;
      --pagination-margin: 1rem;
    }

    .card {
      border-radius: 0.5rem;
    }
  }

  /* CEO section */
  .section06 {
    .container {
      row-gap: 1rem;

      .image-box {
        padding-top: 1rem;
      }

      .content {
        padding-bottom: 8.2rem;
      }
    }

    .ceo-image {
      width: 33.333vh;
      max-width: 16rem;
    }

    .text-box {
      margin-bottom: 1.3rem;

      .ceo-description {
        margin-bottom: 0.5rem;
      }

      .ceo-name {
        margin-bottom: 0.2rem;
      }

      .ceo-info {
        margin-bottom: 1.2rem;
      }
    }

    .marquee {
      .card {
        width: 9rem;
        padding: 0.5rem;
      }

      .card-image {
        aspect-ratio: 60 / 42;
      }
    }
  }

  /* 커플매니저 section */
  .section08 {
    .text-area {
      .section-sub-title {
        margin-top: 0.4rem;
      }
    }
    .counseling-intro {
      max-width: 26.5rem;
      margin-bottom: 1.2rem;
    }

    .manager-wrap {
      margin-top: 1rem;
      margin-bottom: 1rem;
      gap: 1rem;
      .manager {
        position: relative;
        width: 12rem;

        row-gap: 0.5rem;
        .badge {
          width: 3rem;
          height: 1.4rem;
        }
        .thumbnail {
          overflow: hidden;
          position: relative;
          height: 12rem;
          .figure {
            height: 100%;
            .figcaption {
              row-gap: 0.4rem;
              position: absolute;
              bottom: 0;
              height: 5rem;
            }
          }
        }

        .mobile-button-area {
          column-gap: 1.5rem;

          .mobile-link {
            width: 3rem;
            height: 3rem;
          }
        }

        .counseling-button {
          padding: 0.5rem 1rem;
        }
      }
    }
  }

  /* 미인대회 section */
  .section11 {
    .text-area {
      .section-text {
        margin-top: 4rem;

        &:last-of-type {
          margin-top: 2rem;
        }
      }
    }
    .miss-link-wrap {
      margin-top: 2rem;
      max-width: 27rem;

      .miss-link {
        height: 4.8rem;
      }
    }
  }

  /* 청담동 문화 section */
  .section12 {
    .marquee {
      margin-top: 3.9rem;
      margin-bottom: 5.2rem;
    }

    .marquee-list {
      .marquee-item {
        width: 12rem;
        padding-inline: 0.5rem;
      }
    }
  }

  /* 퍼플스TV section */
  .section13 {
    .text-area {
      .section-sub-title {
        margin-top: 0.4rem;
      }
    }

    .youtube-content-wrap {
      max-width: 25rem;
      margin-top: 1rem;
      margin-bottom: 2rem;

      .card {
        &.main {
          grid-column: auto;
          border-radius: 0.5rem;
        }
      }
    }

    .link-area {
      gap: 1rem;
    }
  }

  /* 방송출연 section */
  .section14 {
    .broadcasting-wrap {
      max-width: 18rem;
      gap: 0.5rem 1rem;
      margin-top: 1rem;
      margin-bottom: 1rem;
    }

    .link-area {
      gap: 1rem;
    }
  }

  

  /* 브랜드 대상 section */
  .section16 {
    .section-title {
      max-width: 15.3rem;
    }

    .section-description {
      margin: 0.4rem 0 2rem;
    }

    .tab-list {
      max-width: 27rem;
      height: 6rem;
    }

    .tab-button {
      padding-inline: 1rem;
      .tab-image {
        height: 1rem;
      }
    }

    .tab-panel {
      padding: 2rem var(--container-inline-padding) 3.2rem;
    }

    .award-list {
      justify-content: flex-start;
      flex-wrap: nowrap;
      max-width: max-content;
      width: max-content;
      column-gap: 1rem;
    }

    .award-item {
      width: 6.5rem;
      height: 10rem;

      .award-image {
        max-width: 5rem;
      }
    }
  }

  /* 결혼문화원 section */
  .section17 {
    .content {
      .section-description {
        margin-top: 4rem;
      }
    }
  }

  /* 결혼테스트 section */
  .section18 {
    .content {
      .section-description {
        margin: 0.4rem 0 0.9rem;
      }

      .test-list {
        max-width: 26rem;
        gap: 0.5rem 1rem;
        margin-bottom: 1rem;
      }

      .test-item {
        width: calc(33.3334% - 0.66666rem);
        padding: 0.4rem 0.6rem 0.6rem;
      }

      .test-image {
        max-width: 2.2rem;
      }

      .test-title {
        margin-top: 0.2rem;
      }
    }
  }

  /* 무료상담 section */
  .section15 {
    .section-title {
      margin-bottom: 2rem;
    }

    .form {
      max-width: 26rem;
    }

    .form-group {
      column-gap: 0.6rem;
      margin-bottom: 0.5rem;
    }

    .input-group {
      & > .text-input,
      & > .radio-input,
      & > .checkbox-input,
      & > .select-input,
      & > .button-input {
        height: 2.4rem;
      }
    }

    .select {
      .select-input {
        padding-right: 2rem;
      }

      .icon-angle_down {
        font-size: 1rem;
      }
    }

    .checkbox {
      height: 1.6rem;
      margin-top: 0.8rem;
    }

    .submit-button {
      margin-top: 1rem;
    }
  }

  /* 지사 section */
  .section20 {
    .text-area {
      .section-sub-title {
        margin-top: 0.3rem;
      }
    }

    .branch-wrap {
      gap: 1rem 2rem;
      margin-top: 2rem;
      margin-bottom: 2.1rem;

      .branch-area {
        row-gap: 0.5rem;
      }

      .text {
        row-gap: 0.3rem;
      }
    }
  }
}
