html, body {
    overflow-x: hidden;
    /*background-color: #FBFBFB;*/
    background: var(--main-white, #FFF);
    cursor: default;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.partition-1 {
    display: flex;
    padding: 160px 0 30px 0;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    align-self: stretch;
    background: linear-gradient(180deg, #DCEEFF 21.75%, rgba(255, 255, 255, 0.00) 100%);
    box-sizing: border-box;
}

.title-group {
    display: flex;
    padding: 0 30px;
    justify-content: center;
    align-items: center;      /* 가로 중앙 */
    gap: 60px;
    align-self: stretch;
}

.group_list {
    display: flex;
    max-width: 800px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex: 1 0 0;
}

.chips_group {
    display: flex;
    padding: 0 9px;
    align-items: center;
    gap: 4px;
}

.chips {
    display: flex;
    padding: 4px 8px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 3px;
    background: var(--Transparent-white-90, rgba(255, 255, 255, 0.90));
    backdrop-filter: blur(50px);
}

.chips_txt {
    color: var(--main-black, #131416);
}

.partition-1-copy-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.partition-1-sub-copy {
    display: flex;
    max-width: 500px;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    gap: 2px;
    flex-wrap: wrap;
}

.compay_name {
    display: flex;
    align-items: center;
}

.partition-1-sub-copy-txt {
    color: var(--main-blue, #115AC6);
    text-align: center;
}

.partition-1-head-copy {
    display: flex;
    padding: 0 20px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    align-self: stretch;
}

.partition-1-head-copy-summary {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    align-self: stretch;
}

.head-line-txt {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 5px;
    align-self: stretch;
    flex-wrap: wrap;
}

.partition-1-head-copy-txt {
    color: var(--main-black, #131416);
    text-align: center;
}













.partition-2 {
    width: 100%;
    display: flex;
    padding: 50px 30px 100px 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* 가로 중앙 */
    gap: 20px;
    align-self: stretch;
}

.partition-2-contents-group {
    display: flex;
    max-width: 1000px;
    width: 100%;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.partition-2-sidebar {
    display: flex;
    width: 250px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.back-button {
    display: flex;
    padding: 8px 12px;
    align-items: center;
    gap: 5px;
    border-radius: 4px;
    border: 1px solid var(--Transparent-blue-60, rgba(17, 90, 198, 0.60));
    background: var(--main-white, #FFF);
    cursor:  pointer;
}

.icon_size {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.back-button-txt {
    color: var(--main-blue, #115AC6);
}

.toc-group {
    display: flex;
    width: 250px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.toc-group-title {
    display: flex;
    align-items: center;
    gap: 5px;
}

.toc-group-title-txt {
    color: var(--main-black, #131416);
}

.toc-group-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
}

.toc-section {
    display: flex;
    width: 250px;
    padding: 10px 0;
    align-items: center;
    gap: 5px;
}

.toc-section-txt {
    color: var(--main-black, #131416);
}

.toc-section:hover .toc-section-txt,
.toc-section.active .toc-section-txt {
    color: var(--main-blue, #115AC6);
}

.partition-2-contents-header-txt.text-flash,
.partition-2-contents-header-txt.text-flash .highlight-blue {
    animation: textFlash 0.7s ease-in-out;
}

@keyframes textFlash {
    0%   { opacity: 1; transform: scale(1); }
    50%  { opacity: 0.7; transform: scale(1.02); }
    100% { opacity: 1; transform: scale(1); }
}

/* 카운터 초기화 */
.toc-group-list {
    counter-reset: toc-number;
}

/* 각 항목마다 카운트 증가 */
.toc-section {
    counter-increment: toc-number;
}

/* 숫자 자동 출력 */
.toc-section-txt::before {
    content: counter(toc-number) ". ";
    margin-right: 4px;
}

.partition-2-contents-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    flex: 1 0 0;
}

.partition-2-contents-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    align-self: stretch;
}

.partition-2-contents-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}

.partition-2-contents-header-txt {
    align-self: stretch;
    color: var(--main-black, #131416);
}

.partition-2-contents-section-txt {
    color: var(--main-black, #131416);
}

.highlight-blue {
    color: var(--main-blue, #115AC6);
}

.image-list {
    display: flex;
    max-width: 730px;
    max-height: 300px;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
}













.partition-3 {
    display: flex;
    padding: 50px 0;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    align-self: stretch;
    background: linear-gradient(0deg, #F4F5F6 -2.08%, #FFF 79.36%);
    backdrop-filter: blur(50px);
}

.partition-3-title-gruop {
    display: flex;
    max-width: 800px;
    padding: 0 30px;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.partition-3-head-copy {
    display: flex;
    max-width: 450px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
}

.partition-3-head-txt {
    color: var(--main-black, #131416);
    text-align: center;
}

.slide-group {
    display: flex;
    /*max-width: 1200px;*/
    align-items: flex-start;
    align-self: stretch;
    /*overflow: hidden;*/
    width: 100%;
}

.slide-list {
    display: flex;
    /*align-items: center;*/
    /*flex: 1 0 0;*/
    width: max-content;
    animation: slide-review 30s linear infinite;
}

/* 무한 흐름 */
@keyframes slide-review {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* 마우스 올리면 멈춤 */
.slide-group:hover .slide-list {
    animation-play-state: paused;
}

.review_card_item {
    display: flex;
    width: 400px;
    min-height: 412px;
    height: 100%;
    padding: 10px;
    align-items: flex-start;
    gap: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.review_card_item:hover {
    transform: scale(1.05, 1.05);
}

.review_card_group {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 0 0;
    border-radius: 8px;
    background: var(--main-white, #FFF);
    box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.05);
    min-height: 392px;
    height: 100%;
    overflow: hidden;
}

.review_card_group:hover {
    box-shadow: 0 0 7.1px 0 rgba(0, 0, 0, 0.10);
}

.etc_info {
    height: 188px;
    align-self: stretch;
    overflow: hidden;
}

.placeholder_images {
    position: relative;   /* 기준점 */

    display: flex;
    width: 100%;
    /*width: 480px;*/
    height: 188px;
    justify-content: center;
    align-items: center;
    background: #FFF;
    overflow: hidden;
}

.etc_info_img {
    position: absolute;

    width: 480px;
    height: 480px;
    left: 0;
    /*width: 100%;*/
    /*height: 100%;*/
    flex-shrink: 0;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.img_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(5px);

    opacity: 0;
    transition: opacity 0.3s ease;

    z-index: 1;
}

.review_card_item:hover .img_overlay {
    opacity: 1;
}

.etc_info_opacity {
    width: 380px;
    height: 188px;
    background: rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(0px);
}

.ect_info_layout {
    position: absolute;
    z-index: 2;        /* 이미지 위로 */

    display: flex;
    width: 332.5px;
    justify-content: space-between;
    align-items: center;
}

.chip_group {
    display: flex;
    padding: 0 9px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    flex: 1 0 0;
}

.chip {
    display: flex;
    padding: 4px 8px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 3px;
    background: var(--Transparent-white-90, rgba(255, 255, 255, 0.90));
    backdrop-filter: blur(50px);
}

.chip_text {
    color: var(--main-black, #131416);

}

.layout_arrow {
    width: 84px;
    height: 0;
    flex-shrink: 0;
    stroke-width: 2px;
    stroke: #FFF;
}

.office_info {
    display: flex;
    padding: 30px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

.office_info_frame {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}



.office_info_frame_top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.office_info_frame_top_name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
}



.compay_name {
    color: var(--main-black, #131416);
}

.office_info_frame_top_description {
    display: flex;
    height: 70px;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    align-self: stretch;
}

.office_description {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    align-self: stretch;
}

.office_description_text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    align-self: stretch;
    overflow: hidden;
    color: var(--main-black, #131416);
    text-align: justify;
    text-overflow: ellipsis;
}

.office_info_frame_bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
}

.review_date {
    color: var(--sub-d-gray, #6D7882);
}


.review-add-button {
    display: flex;
    padding: 8px 15px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 1000px;
    background: var(--Transparent-d-blue-90, rgba(17, 71, 151, 0.90));
    cursor: pointer;
}

.white {
    color: var(--main-white, #FFF);
}












.consult_from_start {
    display: flex;
    width: 100%;
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
    /*position: absolute;*/
    bottom: 0;
    overflow: hidden; /* 핵심 */
    white-space: nowrap; /* 줄바꿈 방지 */


    position: fixed;   /* absolute → fixed 로 변경 */
    z-index: 10;      /* 다른 요소 위에 표시 (권장) */

    cursor: pointer;
}

.rolling-frame {
    display: flex;
    padding: 10px 30px;
    align-items: center;
    gap: 15px;
    align-self: stretch;
    border-radius: 100px;
    background: var(--main-black, #131416);
    overflow: hidden;
}

.rolling-txt1 {
    color: var(--Pastel-cyan, #B7E1F5);
    text-align: center;
}

.rolling-txt2 {
    color: var(--main-white, #FFF);
    text-align: center;
}

.rolling-track {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    animation: rolling 40s linear infinite; /* 속도 조절 가능 */
}

@keyframes rolling {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* 내용의 절반을 왼쪽으로 이동 */
    }
}


@media (max-width: 1279px) {
    .review_card_List {
        width: 800px;
    }
    /*.review_card_item {*/
    /*    width: calc(50% - 20px);*/
    /*}*/
}


@media (max-width: 899px) {
    .review_card_List {
        width: 692px;
    }

    .review_card_item {
        width: 345px;
    }

    .ect_info_layout {
        width: 284px;
    }
}

@media (max-width: 691px) {
    .review_card_List {
        width: 533px;
    }
    .review_card_item {
        width: 265px;
    }
    .ect_info_layout {
        width: 214px;
    }

    /* 검색 필터 교체 */
    .review-filter-mobile {
        display: block;
    }
    .review-filter-group {
        display: none;
    }

    /* 더보기 버튼 숨김 */
    #btn-more {
        display: none !important;
    }

    .partition-2-sidebar {
        display:  none;
    }
}

@media (max-width: 532px) {
    /*.review_card_List {*/
    /*    width: 320px;*/
    /*}*/
    /*.review_card_item {*/
    /*    width: 320px;*/
    /*}*/
    /*.ect_info_layout {*/
    /*    width: 262px;*/
    /*}*/
}