@charset "utf-8";

/* ===========================
   #sub_content 공통
=========================== */
#sub_content {
    padding-top: 100px;
    padding-bottom: 60px;
    word-break: keep-all;
    letter-spacing: -0.03em;
}

/* ===========================
   sub1_1 : 모토픽 심사패스
=========================== */

/* section1 - 배경 이미지 */
.sub1_1_section .section1 {
    width: 100%;
}

.sub1_1_section .section1 video {
    width: 100%;
    display: block;
}

.sub1_1_section .section1 img {
    width: 100%;
    display: block;
}

/* section2 - 견적 신청 폼 */
/* 롤링 배경 */
.sub1_1_section .section2 {
    position: relative;
    background-color: #1B2A4A;
    overflow: hidden;
    padding: 100px 0;
}

.rolling-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 0;
}

.rolling-row {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.rolling-track {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    animation: roll-left 35s linear infinite;
    opacity: 0.08;
    white-space: nowrap;
    flex-shrink: 0;
}

.rolling-row-reverse .rolling-track {
    animation: roll-right 35s linear infinite;
}

.rolling-track span {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.rolling-track img {
    filter: brightness(10);
}

@keyframes roll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes roll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* 폼 카드 */
.section2-inner {
    position: relative;
    z-index: 1;
    width: 90%;
    margin: 0 auto;
}

.form-title {
    text-align: center;
    color: #fff;
    margin-bottom: 24px;
}

.form-title p {
    margin-bottom: 6px;
}

.form-title h2 {
    margin: 0 0 8px;
    line-height: 1.3;
}

.form-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 28px 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #222;
}

.form-group input[type="text"],
.form-group input[type="tel"] {
    width: 100%;
    height: 52px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0 16px;
    font-size: 20px;
    box-sizing: border-box;
    color: #222;
}

.form-group input::placeholder {
    color: #999999;
}

.select-wrap {
    position: relative;
}

.select-wrap select {
    width: 100%;
    height: 52px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0 16px;
    font-size: 17px;
    color: #222;
    appearance: none;
    background-color: #fff;
    cursor: pointer;
    box-sizing: border-box;
}

.select-wrap i {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none;
}

.form-agree {
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-agree label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    cursor: pointer;
    font-size: 14px;
}

.form-agree input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #34BAB1;
    cursor: pointer;
}

.form-submit {
    width: 100%;
    height: 56px;
    background-color: #34BAB1;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: -0.02em;
    transition: background-color 0.2s;
    margin-top: 8px;
}

.form-submit:hover {
    background-color: #2aa09a;
}

/* section3 - 오직 모토픽에서만 */
.sub1_1_section .section3 {
    background: linear-gradient(180deg,
            rgb(49, 55, 81) 0%,
            rgb(38, 44, 70) 100%);
    /* background-color: #1B2A4A; */
    padding: 50px 0;
    color: #fff;
}

.section3-tit {
    text-align: center;
    margin-bottom: 36px;
}

.section3-tit h2 {
    line-height: 1.3;
    margin: 12px 0 20px;
    color: #fff;
}
.section3-tit .title_highlight {
    /*display: inline; !* 또는 inline-block *!*/

    background: linear-gradient(
            to bottom,
            transparent 50%,
            rgba(37, 228, 216, 0.5) 50%
    );
    /*color: rgba(37, 228, 216, 1);*/
}

.sub1_1_section .section3-tit .highlight {
    position: relative;
    display: inline-block;
    padding: 2px 12px;
}

.sub1_1_section .section3-tit .highlight::before {
    display: none;
}

.sub1_1_section .section3-tit .highlight .circle-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: auto;
    pointer-events: none;
}

.sub1_1_section .section3-tit .underline-double {
    position: relative;
    display: inline-block;
}

.sub1_1_section .section3-tit .underline-double .underline-img1 {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: auto;
}

.sub1_1_section .section3-tit .underline-double .underline-img2 {
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: auto;
}

.section3-tit p {
    line-height: 1.7;
}

.section3-tit strong {
    color: #fff;
    font-weight: 700;
}

.section3-recommend {
    text-align: center;
    margin-bottom: 20px;
}

.section3-recommend p:first-child {
    color: #fff;
    margin-bottom: 6px;
}

.section3-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.rec-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 18px 16px;
}

.rec-card p:first-child {
    display: flex;
    align-items: center;
    color: #34BAB1;
    margin: 6px 0;
    gap: 10px;
}

.rec-card p:last-child {
    color: #999999;
    line-height: 1.6;
}

.cta-btn {
    display: block;
    width: 100%;
    padding: 20px 0;
    background-color: #F7E112;
    color: #333333;
    text-align: center;
    border-radius: 40px;
    letter-spacing: -0.02em;
    transition: opacity 0.2s;
    box-sizing: border-box;
}


/* section4 - 선택하는 이유 */
.sub1_1_section .section4 {
    background-color: #1B2A4A;
    padding: 50px 0;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section4-tit {
    text-align: center;
    margin-bottom: 30px;
}

.section4-tit .dot-above {
    position: relative;
    display: inline-block;
}

.section4-tit .dot-above::before {
    width: 100%;
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: #41E9DE;
    border-radius: 50%;
    box-shadow: -33px 0 0 #41E9DE, 33px 0 0 #41E9DE;
    white-space: nowrap;
}

.sub1_1_section .section4-tit .dot-above {
    position: relative;
    display: inline-block;
}

.sub1_1_section .section4-tit .dot-above .wave-img {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: auto;
}

.section4-tit p {
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.section4-tit h2 {
    line-height: 1.3;
    color: #fff;
}

.reason-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.reason-card {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 20px 18px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.reason-num {
    background-color: #34BAB1;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reason-txt p:first-child {
    color: #fff;
    margin: 5px 0 15px;
}

.reason-txt p:last-child {}

/* section5 - 실제 계약 후기 롤링 */
.sub1_1_section .section5 {
    background-color: #1B2A4A;
    padding: 50px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section5-tit {
    text-align: center;
    margin-bottom: 30px;
}

.section5-tit h2 {
    color: #fff;
    margin-bottom: 12px;
}

.section5-tit p {
    color: #999999;
}

/* 후기 롤링 */
.review-rolling-wrap {
    overflow: hidden;
    margin-bottom: 14px;
}

.review-rolling-track {
    display: inline-flex;
    gap: 14px;
    animation: review-roll-left 25s linear infinite;
}

.review-rolling-reverse {
    animation: review-roll-right 25s linear infinite;
}

@keyframes review-roll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes review-roll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.review-roll-card {
    width: 200px;
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    padding-bottom: 14px;

}

.rr-img {
    width: 100%;
    height: 130px;
    overflow: hidden;
    margin-bottom: 10px;
}

.rr-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 15px;
}

.rr-tag {
    display: inline-block;
    margin: 0 12px 8px;
    padding: 3px 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.review-roll-card .prt-bold {
    padding: 0 12px;
    color: #fff;
    margin: 6px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.4;
    height: 55px;
}


.review-roll-card .rr-txt{
    padding: 0 12px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #fff;
}

/* section6 - FAQ (메인과 동일) */
.sub1_1_section .section6 {
    padding: 40px 0 28px;
    background-color: #fff;
}

.sub1_1_section .section6 .faq-tit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.sub1_1_section .section6 .faq-tit h2 {
    color: #222;
}

.sub1_1_section .section6 .faq-item {
    border-bottom: 1px solid #f0f0f0;
}

.sub1_1_section .section6 .faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    cursor: pointer;
    color: #222;
    line-height: 1.4;
    transition: color 0.2s;
}

.sub1_1_section .section6 .faq-q.open {
    color: #34BAB1;
}

.sub1_1_section .section6 .faq-q span:first-child {
    flex: 1;
    padding-right: 10px;
}

.sub1_1_section .section6 .faq-arrow i {
    display: inline-block;
    color: #aaa;
    transition: transform 0.3s, color 0.2s;
}

.sub1_1_section .section6 .faq-item.open .faq-arrow i {
    transform: rotate(180deg);
    color: #34BAB1;
}

.sub1_1_section .section6 .faq-a {
    display: none;
    padding: 15px 20px;
    color: #111;
    line-height: 1.7;
    background-color: #F1F1F1;
    border-radius: 25px;
    margin-bottom: 10px;
}

.sub1_1_section .section6 .faq-item.open .faq-a {
    display: block;
}

.sub1_1_section .section6 .faq-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
}

.sub1_1_section .section6 .faqSwiper {
    padding-bottom: 40px;
}

.sub1_1_section .section6 .faq-pagination .swiper-pagination-bullet {
    background-color: #ccc;
    opacity: 1;
}

.sub1_1_section .section6 .faq-pagination .swiper-pagination-bullet-active {
    background-color: #34BAB1;
}

/* section3 내용 제한 */
.sub1_1_section .section3 .inner {
    max-width: 484px;
    width: 90%;
    margin: 0 auto;
}

/* section4 내용 제한 */
.sub1_1_section .section4 .inner {
    max-width: 484px;
    width: 90%;
    margin: 0 auto;
}

/* section5 타이틀만 제한 (롤링은 꽉 차게) */
.sub1_1_section .section5 .inner {
    max-width: 484px;
    width: 90%;
    margin: 0 auto;
}

/* section6 내용 제한 */
.sub1_1_section .section6 .inner {
    max-width: 484px;
    width: 90%;
    margin: 0 auto;
}

.section2-inner {
    position: relative;
    z-index: 1;
    max-width: 484px;
    width: 90%;
    margin: 0 auto;
}


/* ===========================
   sub2_1 : 공지사항
=========================== */
.sub2_1_section {
    padding: 20px 0 40px;
}

.sub2_1_section .inner {
    max-width: 484px;
    width: 90%;
    margin: 0 auto;
}

.sub2_1_section .sub-tit {
    text-align: center;
    padding: 20px 0 24px;
    color: #222;
}

/* 카드 목록 */
.sub2_1_section .notice-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sub2_1_section .notice-card {
    cursor: pointer;
}

.sub2_1_section .notice-img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 10px;
    overflow: hidden;
    background-color: #e0e0e0;
    margin-bottom: 10px;
}

.sub2_1_section .notice-img img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.sub2_1_section .notice-info p {
    color: #222;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sub2_1_section .notice-info span {
    color: #999;
}

/* 페이지네이션 */
.sub2_1_section .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 32px;
}

.sub2_1_section .page-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background-color: #fff;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.sub2_1_section .page-btn.active {
    background-color: #34BAB1;
    color: #fff;
    border-color: #34BAB1;
}

.sub2_1_section .page-btn:disabled {
    opacity: 0.3;
    cursor: default;
}

.sub2_1_section .page-btn:hover:not(.active):not(:disabled) {
    border-color: #34BAB1;
    color: #34BAB1;
}

/* ===========================
   sub2_1_d : 공지사항 상세
=========================== */
.sub2_1_d_section {
    padding: 20px 0 40px;
}

.sub2_1_d_section .inner {
    max-width: 484px;
    width: 90%;
    margin: 0 auto;
}

/* 제목 + 날짜 */
.sub2_1_d_section .detail-header {
    text-align: center;
    padding: 20px 0 30px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 24px;
}

.sub2_1_d_section .detail-header h2 {
    color: #222;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* 이미지 */
.sub2_1_d_section .detail-img {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #e0e0e0;
    margin-bottom: 24px;
}

.sub2_1_d_section .detail-img img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* 내용 */
.sub2_1_d_section .detail-content {
    color: #333;
    line-height: 1.8;
    margin-bottom: 40px;
}

.sub2_1_d_section .detail-content p {
    margin-left: 0 !important;
    margin-bottom: 16px;
}

/* 목록보기 버튼 */
.sub2_1_d_section .detail-btn-wrap {
    display: flex;
    justify-content: center;
}

.sub2_1_d_section .detail-btn {
    display: inline-block;
    padding: 14px 60px;
    background-color: #34BAB1;
    color: #fff;
    border-radius: 8px;
    letter-spacing: -0.02em;
    transition: background-color 0.2s;
}

.sub2_1_d_section .detail-btn:hover {
    background-color: #2aa09a;
}

/* ===========================
   sub3_1 : 이용후기
=========================== */
.sub3_1_section {
    padding: 20px 0 40px;
}

.sub3_1_section .inner {
    max-width: 484px;
    width: 90%;
    margin: 0 auto;
}

/* 타이틀 */
.sub3_1_section .review-header {
    text-align: center;
    padding: 20px 0 16px;
}

.sub3_1_section .review-header h2 {
    color: #222;
    margin-bottom: 8px;
}

/* 전체 건수 */
.sub3_1_section .review-count {
    color: #555;
    margin-bottom: 16px;
}

/* 카드 목록 */
.sub3_1_section .review-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sub3_1_section .review-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: box-shadow 0.2s;
    border: 1px solid #E6E6E6;
}

.sub3_1_section .review-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* 카드 상단 태그 + 아이콘 */
.sub3_1_section .review-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 14px 8px;
}

.sub3_1_section .review-tag {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #555;
}

.sub3_1_section .review-icon {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.sub3_1_section .review-icon.rental {
    background-color: #34BAB1;
}

.sub3_1_section .review-icon.lease {
    background-color: #34BAB1;
}

/* 카드 제목 */
.sub3_1_section .review-card-title {
    padding: 0 14px 14px;
    color: #222;
    line-height: 1.5;
    overflow: hidden;
}

/* 카드 이미지 */
.sub3_1_section .review-card-img {
    width: 100%;
    aspect-ratio: 4/2;
    overflow: hidden;
    background-color: #e0e0e0;
}

.sub3_1_section .review-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 페이지네이션 - sub2_1과 동일 구조 */
.sub3_1_section .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 32px;
}

.sub3_1_section .page-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background-color: #fff;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.sub3_1_section .page-btn.active {
    background-color: #34BAB1;
    color: #fff;
    border-color: #34BAB1;
}

.sub3_1_section .page-btn:disabled {
    opacity: 0.3;
    cursor: default;
}

.sub3_1_section .page-btn:hover:not(.active):not(:disabled) {
    border-color: #34BAB1;
    color: #34BAB1;
}

/* ===========================
   sub3_1_d : 이용후기 상세
=========================== */
.sub3_1_d_section .inner {
    max-width: 484px;
    width: 90%;
    margin: 0 auto;
}

/* section1 - 타이틀 */
.sub3_1_d_section .section1 {
    padding: 24px 0 16px;
}

.sub3_1_d_section .section1 h2 {
    color: #222;
    margin-bottom: 8px;
    line-height: 1.3;
}

/* section2 - 후기 정보 */
.sub3_1_d_section .section2 {
    padding: 16px 0 20px;

    box-shadow: 0 4px 30px 0 #0000001F;
    margin-top: 20px;
    margin-bottom: 20px;
}

.sub3_1_d_section .rd-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.sub3_1_d_section .review-tag {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #555;
}

.sub3_1_d_section .review-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #34BAB1;
}

.sub3_1_d_section .rd-title {
    color: #222;
    line-height: 1.5;
    margin-bottom: 12px;
}

.sub3_1_d_section .rd-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sub3_1_d_section .rd-author .divider {
    color: #ddd;
}

/* section3 - 키워드 */
.sub3_1_d_section .section3 {
    padding: 24px 0;
    border-bottom: 1px solid #f0f0f0;
}

.sub3_1_d_section .kw-tit {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.sub3_1_d_section .kw-tit img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.sub3_1_d_section .kw-tit p {
    color: #222;
}

.sub3_1_d_section .kw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px 0;
    margin-top: 20px;
}

.sub3_1_d_section .kw-item {
    color: #F1F1F1;
    letter-spacing: -0.03em;
}

.sub3_1_d_section .kw-item.fc-teal {
    color: #34BAB1;
}

/* section4 - 이미지 */
.sub3_1_d_section .section4 {
    padding: 24px 0;
}

.sub3_1_d_section .rd-img {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.sub3_1_d_section .rd-img img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* section5 - 거래후기 카드 */
.sub3_1_d_section .section5 {
    padding: 0 0 24px;
}

.sub3_1_d_section .trade-card {
    background-color: ##F9F9F9;
    border-radius: 14px;
    padding: 20px 18px;
}

.sub3_1_d_section .trade-card-top {
    margin-bottom: 10px;
}

.sub3_1_d_section .trade-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sub3_1_d_section .trade-title img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.sub3_1_d_section .trade-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 12px;
}

.sub3_1_d_section .star {
    color: #F5C518;
    font-size: 20px;
}

.sub3_1_d_section .trade-date {
    margin-left: auto;
}

.sub3_1_d_section .trade-content {
    color: #333;
    line-height: 1.8;
}

.sub3_1_d_section .trade-content p {
    margin-bottom: 4px;
}

/* section6 - 고객후기 슬라이더 */
.sub3_1_d_section .section6 {
    padding: 24px 0 20px;
    border-top: 1px solid #f0f0f0;
}

.sub3_1_d_section .section6-tit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.sub3_1_d_section .section6-tit h2 {
    color: #222;
}

.sub3_1_d_section .more-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    color: #555;
}

.sub3_1_d_section .reviewDetailSwiper {
    overflow: hidden;
    padding: 0 5%;
}

.sub3_1_d_section .rd-review-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    border: 1px solid #E6E6E6;
    border-radius: 25px;
}

.sub3_1_d_section .rd-review-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: #e0e0e0;
}

.sub3_1_d_section .rd-review-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.sub3_1_d_section .rd-review-txt {
    padding: 12px;
    height: 150px;
}

.sub3_1_d_section .rd-review-txt p:first-child {
    color: #222;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.4;
}

.sub3_1_d_section .rd-review-txt p:last-child {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.5;
}


/* ===========================
   sub4_1 : 회사소개
=========================== */
.sub4_1_section .inner {
    max-width: 484px;
    width: 90%;
    margin: 0 auto;
}

/* section1 - 배경이미지 */
.sub4_1_section .section1 {
    background-color: #444;
    /* background-image: url('../images/sub4_1_bg.png'); */
    /* background-size: cover; */
    /* background-position: center; */
    /* background-repeat: no-repeat; */
    color: #fff;
    display: block;
}
.sub4_1_section .section1 img{
    width: 100%;
}

.sub4_1_section .section1 h2 {
    margin-bottom: 28px;
}

.sub4_1_section .section1 .s1-desc {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}

.sub4_1_section .section1 .s1-desc p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}


/* section2 - 벤다이어그램 */
.sub4_1_section .section2 {
    padding: 50px 0;
    background-color: #fff;
}

/* 벤다이어그램 wrap */
.sub4_1_se ction .venn-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.sub4_1_section .venn-row-top {
    display: flex;
    justify-content: center;
}

.sub4_1_section .venn-row-bottom {
    display: flex;
    justify-content: center;
    margin-top: -50px;
}

/* 원 */
.sub4_1_section .venn-circle {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    border: 2px solid #34BAB1;
    background-color: rgba(52, 186, 177, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.sub4_1_section .venn-row-top .venn-circle:first-child {
    margin-right: -30px;
}

.sub4_1_section .venn-en {
    color: #34BAB1;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}

.sub4_1_section .venn-tit {
    color: #222;
    margin-bottom: 6px;
    line-height: 1.3;
}

.sub4_1_section .venn-desc {
    color: #777;
}

/* 화살표 */
.sub4_1_section .venn-arrow {
    text-align: center;
    margin: 0 0 50px;
    font-size: 50px;
    color: #34BAB1;
}

/* 결과 로고 + 텍스트 */
.sub4_1_section .venn-result {
    text-align: center;
}

.sub4_1_section .venn-logo {
    margin-bottom: 14px;
}

.sub4_1_section .venn-result p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 6px;
}

.sub4_1_section .venn-slogan {
    text-decoration: underline;
    color: #222 !important;
}

/* section3 - 임직원 인사말 */
.sub4_1_section .section3 {
    padding: 40px 0 60px;
    background-color: #fff;
    position: relative;
}

.sub4_1_section .section3 h2 {
    color: #222;
    text-align: center;
    margin-bottom: 16px;
}

.sub4_1_section .s3-divider {
    width: 30px;
    height: 2px;
    background-color: #34BAB1;
    margin: 0 auto 30px;
}

.sub4_1_section .s3-content {
    color: #333;
    line-height: 1.9;
    text-align: center;
}

.sub4_1_section .s3-content p {
    margin-bottom: 20px;
}

.sub4_1_section .s3-quote {
    color: #555;
    margin-bottom: 28px !important;
}

.sub4_1_section .s3-sign {
    color: #555;
    margin-top: 10px;
}

#sub_content.sub_4_1_content {
    padding-bottom: 0;
}

/* 배경 로고 */
.sub4_1_section .s3-bg-logo {}

.sub4_1_section .s3-bg-logo img {
    height: 100%;
    display: block;
}

/* ===========================
   sub5_1 : Q&A
=========================== */
.sub5_1_section {
    padding: 20px 0 40px;
}

.sub5_1_section .inner {
    max-width: 484px;
    width: 90%;
    margin: 0 auto;
}

/* 타이틀 */
.sub5_1_section .qa-header {
    text-align: center;
    padding: 20px 0 24px;
}

.sub5_1_section .qa-header h2 {
    color: #222;
    margin-bottom: 8px;
}

/* 검색창 */
.sub5_1_section .qa-search {
    position: relative;
    margin-bottom: 28px;
}

.sub5_1_section .qa-search input {
    width: 100%;
    height: 52px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 0 50px 0 18px;
    box-sizing: border-box;
    color: #222;
    background-color: #fff;
}

.sub5_1_section .qa-search input::placeholder {
    color: #bbb;
}

.sub5_1_section .qa-search-btn {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 20px;
    color: #555;
    cursor: pointer;
}

/* FAQ 목록 */
.sub5_1_section .qa-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.sub5_1_section .qa-item {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #efefef;
}

/* Q 영역 */
.sub5_1_section .qa-q {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 16px;
    cursor: pointer;
    background-color: #fff;
    color: #222;
    transition: background-color 0.2s;
}

.sub5_1_section .qa-q span:nth-child(2) {
    flex: 1;
    line-height: 1.4;
}

.sub5_1_section .qa-arrow {
    font-size: 16px;
    color: #aaa;
    transition: transform 0.3s, color 0.2s;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.sub5_1_section .qa-arrow.open {
    transform: rotate(180deg);
    color: #34BAB1;

}

.sub5_1_section .qa-item.open .qa-q {
    color: #34BAB1;
}

.sub5_1_section .qa-item.open .qa-a{
    display: block;
}

/* A 영역 */
.sub5_1_section .qa-a {
    display: none;
    padding: 16px 18px;
    background-color: #F1F1F1;
    color: #333;
    line-height: 1.7;
    border-top: 1px solid #efefef;
    margin: 10px;
    border-radius: 20px;
}

.sub5_1_section .qa-a strong {
    margin-right: 8px;
}

/* 페이지네이션 */
.sub5_1_section .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
}

.sub5_1_section .page-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background-color: #fff;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.sub5_1_section .page-btn.active {
    background-color: #34BAB1;
    color: #fff;
    border-color: #34BAB1;
}

.sub5_1_section .page-btn:disabled {
    opacity: 0.3;
    cursor: default;
}

.sub5_1_section .page-btn:hover:not(.active):not(:disabled) {
    border-color: #34BAB1;
    color: #34BAB1;
}

/* ===========================
   sub6_1 : 견적신청
=========================== */
.sub6_1_section {
    padding: 20px 0 0;
}

.sub6_1_section .inner {
    max-width: 484px;
    width: 90%;
    margin: 0 auto;
}

.sub6_1_section .form-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 28px 0;
}

.sub6_1_section .form-group {
    margin-bottom: 20px;
}

.sub6_1_section .form-group label {
    display: block;
    margin-bottom: 10px;
    color: #222;
}

.sub6_1_section .form-group input[type="text"],
.sub6_1_section .form-group input[type="tel"] {
    width: 100%;
    height: 56px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 0 16px;
    font-size: 18px;
    box-sizing: border-box;
    color: #222;
}

.sub6_1_section .form-group input::placeholder {
    color: #bbb;
}

.sub6_1_section .select-wrap {
    position: relative;
}

.sub6_1_section .select-wrap select {
    width: 100%;
    height: 56px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 0 16px;
    font-size: 17px;
    color: #222;
    appearance: none;
    background-color: #fff;
    cursor: pointer;
    box-sizing: border-box;
}

.sub6_1_section .select-wrap i {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none;
    font-size: 18px;
}

.sub6_1_section .form-agree {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sub6_1_section .form-agree label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    cursor: pointer;
    font-size: 15px;
}

.sub6_1_section .form-agree input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #34BAB1;
    cursor: pointer;
    flex-shrink: 0;
}

.sub6_1_section .form-submit {
    width: 100%;
    height: 60px;
    background-color: #34BAB1;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    letter-spacing: -0.02em;
    transition: background-color 0.2s;
    margin-top: 10px;
}

.sub6_1_section .form-submit:hover {
    background-color: #2aa09a;
}


/* mobile */
@media screen and (max-width: 767px) {
}

/* media */
@media screen and (max-width: 484px) {
    .sub1_1_section .section4-tit .dot-above::before {
        display: none;
    }

    .select-wrap select,
    .form-group input[type="text"],
    .form-group input[type="tel"] {
        font-size: 14px;
    }

    .sub4_1_section .venn-circle {
        width: 175px;
        height: 175px;
    }

    .sub4_1_section .s3-bg-logo img {
        width: 100%;
    }
}