.page_r {
    min-width: 0;
}


.page_con-bg {
    background: var(--img);
    overflow: hidden;
    border-radius: var(--border-radius);
}
.page_con-bg .bg_img {
    width: 100%;
    height: auto;
    min-height: 250px;
    aspect-ratio: 3 / 1;
    /* filter: brightness(0.6); */
}
.page_con-title {
    font-size: var(--ft32);
    font-family: var(--ft-serif);
    font-weight: var(--medium);
    display: block;
    text-align: left;
    margin-top: var(--con-gap);
}

/* page_con-bottom */
.price_sec {
    padding-top: calc(var(--con-gap) * 2);
}
.price_sec .sec-content {
    width: 100%;
}
.price_swiper {
    margin-bottom: var(--con-gap);
    overflow: visible;
}
.swiper-btn {
    position: absolute;
    top: 50%;    
}
.swiper-prev {
    left: -6px;
    transform: translateY(-50%);
}
.swiper-next {
    right: -6px;
    transform: translateY(-50%);
}
.con-visual {
    width: 100%;
    /* max-width: 420px; */
    height: auto;
    aspect-ratio: 1 / 1.2;
    background: var(--img);
    margin-bottom: 40px;
}
.con-title {
    font-size: var(--ft24);
    font-weight: var(--medium);
    color: var(--ft-main);
    margin-bottom: 20px;
}
.con-desc li {
    font-size: var(--ft16);
    margin-bottom: 10px;
    color: var(--ft-sub);
}
.con-desc li::before {
    content: '-';
    display: inline-block;
    font-size: inherit;
    margin-right: 4px;
}
.con-desc li:last-child {
    margin-bottom: 0;
}
.con-price {
    font-size: var(--ft18);
    font-weight: var(--medium);
    color: var(--ft-main);
    margin-top: 34px;
}
.con-note {
    border-top: 1px solid var(--primary-200);
    font-size: var(--ft16);
    color: var(--ft-sub);
    padding-top: 40px;    
}
.note-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.note-icon {
    width: 24px;
    display: block;
    margin-bottom: 10px;
}
.con-note li {
    color: var(--ft-sub);
}
.con-note li::before {
    content: '-';
    display: inline;
    margin-right: 4px;

}
.con-note p {
    flex-shrink: 0;
    font-size: 14px;
    display: inline;
}


.call-btn {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    background-color: var(--primary);
    color: #fff;
    border-radius: 999px;
    transition: all .3s ease;
  }
  
  .call-btn:hover {
    background-color: #725646; /* hover시 조금 밝게 */
    transform: translateY(-1px);
    box-shadow: var(--btn-shadow);
  }
  .call-btn .icon {
    width: 14px;
    height: 14px;
    margin-right: 8px;
}
  .call-btn .btn-text {
    font-size: var(--ft14);
  }



/* price_visual */
.price_visual-item {
    width: 66.666%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: var(--con-gap);
}
.price_visual-item:last-child {
    margin-bottom: 0;
}
.price_visual-item .con-visual {
    aspect-ratio: 1.2 / 1;
    margin-bottom: 0;
}


/* price-table */
.price_table-area {
    margin-top: calc(var(--sec-gap) / 2);
}
.table_wrap {
    overflow-x: auto;
    margin-bottom: 40px;
    display: flex;
    gap: 40px;
}
.table_wrap .table {
    flex: 1;
}
.price-table {
    border-top: 1px solid var(--primary-600);
    /* border-bottom: 1px solid var(--primary-300); */
}
.price-table th,
.price-table td {
    padding: 20px;
}

.price-table th {
    border-bottom: 1px solid var(--primary-300);
    font-size: var(--ft16);
    color: var(--gray-500);
    font-weight: 300;
}
.price-table th small {
    color: var(--primary-500);
}
.price-table tr:first-child th {
    font-size: var(--ft18);
    color: var(--gray-600);
    font-weight: 400;
}
.price-table td {
    font-size: var(--ft18);
    color: var(--gray-500);
    font-weight: 400;
    text-align: center;
    border-bottom: 1px solid var(--primary-200);
}
.price-table td.title {
    color: var(--primary-500);
}
.price-table tr.divider td {
    border-top: 1px solid var(--primary-300);
}
.price-table td span {
    color: var(--gray-400);
}
.table-unit {
    text-align: right;
    font-size: var(--ft14);
    color: var(--ft-sub);
    margin-bottom: 20px;
}

.price-table .highlight td {
  background-color: var(--primary-100);
  color: var(--parimary-500);
}
.price-table td:first-child {
    border-right: 1px solid var(--primary-300);
}
@media screen and (max-width: 960px) {
    .table_wrap {
        gap: 20px;
    }
}
@media screen and (max-width: 600px) {
    /* 분양안내 */
    .page_content-area {
        overflow: hidden;
    }
    .page_con-title {
        margin-top: 40px;
    }
    .price_visual-item {
        width: 100%;
        gap: 20px;
    }
    .con-visual {
        margin-bottom: 30px;
    }
    .con-title {
        margin-bottom: 14px;
    }
    .con-desc li {
        margin-bottom: 6px;
    }
    .con-price {
        margin-top: 20px;
    }
    .table_wrap {
        flex-direction: column;
    } 
    .price-table th, .price-table td {
        padding: 12px;
    }
}