/*     1792063 : 타이틀 텍스트      */
/* 문장 전체가 위에서 아래로 쓱 떨어지는 효과 */
.title__1792063__ p{
  display:inline-block;
  position:relative;
  margin:0;
  padding:0;
  font-size:25px;
  font-weight:400;
  color:#000000;
  line-height:1.75;

  /* ✅ 추가 */
  transform: translateY(-40px);
  opacity:0;
  animation: dropDownWhole_1785923 0.7s ease-out both;
}

@keyframes dropDownWhole_1785923{
  to { transform: translateY(0); opacity:1; }
}

@media all and (min-width:1024px){
  .title__1792063__ p{ font-size:40px; }
}

/* ❌ 이건 제거/주석 처리(글자별 span용)
.title__1792063__ p span{
  ...
}
*/


/*     1792093 : BLANK 컨텐츠      */
.blank__1792093__ {box-sizing:border-box;display:block;position:relative;width:100%;height:40px}
.blank__1792093__.build_edit_mode {min-height:10px;border:1px dashed red;background:rgba(255,255,255,.1);}
.blank__1792093__.build_edit_mode:before {content:'Blank';display:block;position:absolute;top:50%;left:0;right:0;margin-top:-10px;padding:5px 0;font-size:13px;color:red;text-align:center;line-height:1}

@media all and (max-width:1023px){
	.blank__1792093__ {height:20px}
}

/*     1800715 : 한줄 텍스트      */
.text__1800715__, .text__1800715__ * {margin:0; padding:0;}
.text__1800715__ {padding:0px}

/* 모든 화면 공통 스타일 */
.text__1800715__ p {
    font-size:23px; 
    color:#222; 
    font-weight:300; 
    padding:50px; 
    text-align:center; 
    background:#f8f8fa; 
    border:1px solid #e5e5e5;
    display:flex;
    flex-direction:row;  /* 가로 배치 */
    align-items:flex-start;  /* 상단 정렬 - 첫 줄에 맞춤 */
    justify-content:center;
}

.text__1800715__ p::before {
    content:''; 
    display:block;
    width:30px; 
    height:30px; 
    background:url('/img_up/shop_pds/mirpia1004/build/option/icon17684624313.png') center/cover; 
    margin-right:10px;  /* 아이콘 오른쪽 간격 */
    margin-bottom:0;
    flex-shrink:0;
}

/* 모바일 (1023px 이하) */
@media (max-width:1023px) {
    .text__1800715__ {padding:0;} 
    .text__1800715__ p {
        font-size:16px; 
        padding:28px;
        flex-direction:column;  /* 모바일에서는 세로 배치 */
        align-items:center;  /* 모바일에서는 중앙 정렬 */
    }
    .text__1800715__ p::before {
        margin-right:0;
        margin-bottom:10px;
    }
}

/*     1800725 : BLANK 컨텐츠      */
.blank__1800725__ {box-sizing:border-box;display:block;position:relative;width:100%;height:65px}
.blank__1800725__.build_edit_mode {min-height:10px;border:1px dashed red;background:rgba(255,255,255,.1);}
.blank__1800725__.build_edit_mode:before {content:'Blank';display:block;position:absolute;top:50%;left:0;right:0;margin-top:-10px;padding:5px 0;font-size:13px;color:red;text-align:center;line-height:1}

@media all and (max-width:1023px){
	.blank__1800725__ {height:30px}
}

/*     1800735 : 타이틀 텍스트      */
/* ===== Title 1786123 (최종) ===== */

.title__1800735__{
  font-size:0;
  background:none;
}

/* ✅ 밑줄은 p에서 1개만 */
.title__1800735__ p{
  display:block;                 /* 전체 폭 */
  position:relative;
  margin:0;
  padding-left:50px;
  padding-bottom:12px;           /* 텍스트-밑줄 간격 */
  border-bottom:1px solid #000; /* ✅ 전체 밑줄(1개) */

  font-size:20px;
  font-weight:bold;
  color:#000000;
  letter-spacing:-.03em;
  line-height:1.1em;
}

/* 기본 장식(before) */
.title__1800735__ p:before{
  content:'';
  position:absolute;
  background:#dddddd;
  font-size:0;
}

/* ===== style variants ===== */
.title__1800735__.style_top p{ padding-top:10px; }
.title__1800735__.style_top p:before{
  top:0; left:0;
  width:20px; height:4px;
}

.title__1800735__.style_right p{ padding-right:14px; }
.title__1800735__.style_right p:before{
  top:16%; right:0;
  width:4px; height:20px;
}

.title__1800735__.style_bottom p{ padding-bottom:12px; }
.title__1800735__.style_bottom p:before{
  bottom:0; left:0;
  width:20px; height:4px;
}

.title__1800735__.style_left p{ padding-left:14px; }
.title__1800735__.style_left p:before{
  top:16%; left:0;
  width:4px; height:20px;
}

.title__1800735__.style_circle1 p{ padding-left:20px; }
.title__1800735__.style_circle1 p:before{
  top:50%;
  transform:translateY(-50%);
  left:20px;
  width:10px; height:10px;
  border-radius:50%;
}

.title__1800735__.style_circle2 p{ padding-left:60px; } /* 텍스트 위치 */
.title__1800735__.style_circle2 p:before{
  top:50%;
  transform:translateY(-80%);
  left:30px;
  width:15px; height:15px;
  border-radius:50%;
  border:5px solid #dddddd;
  background:none;
  box-sizing:border-box;
}

/* ===== PC font size ===== */
@media all and (min-width:1024px){
  .title__1800735__ p{ font-size:28px; }
  .title__1800735__.style_top p:before{ width:28px; }
  .title__1800735__.style_right p:before{ height:28px; }
  .title__1800735__.style_bottom p:before{ width:28px; }
  .title__1800735__.style_left p:before{ height:28px; }
}

/*     1800835 : BLANK 컨텐츠      */
.blank__1800835__ {box-sizing:border-box;display:block;position:relative;width:100%;height:30px}
.blank__1800835__.build_edit_mode {min-height:10px;border:1px dashed red;background:rgba(255,255,255,.1);}
.blank__1800835__.build_edit_mode:before {content:'Blank';display:block;position:absolute;top:50%;left:0;right:0;margin-top:-10px;padding:5px 0;font-size:13px;color:red;text-align:center;line-height:1}

@media all and (max-width:1023px){
	.blank__1800835__ {height:15px}
}

/*     1795893 : BLANK 컨텐츠      */
<!-- 미르피아여성병원 복강경 클리닉 -->
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap" rel="stylesheet">

<style>
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.mirpia-features {
    font-family: 'Noto Sans KR', sans-serif;
    background: linear-gradient(135deg, #fff5f7 0%, #f0f7ff 100%);
    padding: 80px 20px;
    position: relative;
}

.mirpia-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mirpia-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mirpia-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.mirpia-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.mirpia-image-box {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffd4dc 0%, #e3f2fd 100%);
}

.mirpia-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mirpia-card:hover .mirpia-image {
    transform: scale(1.1);
}

.mirpia-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff8ba0 0%, #4a90e2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    z-index: 10;
}

.mirpia-card:hover .mirpia-number {
    transform: rotate(360deg);
}

.mirpia-content {
    padding: 35px;
}

.mirpia-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.mirpia-card:hover .mirpia-title {
    color: #ff8ba0;
}

.mirpia-text {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 768px) {
  .mirpia-features {
    padding: 20px 20px;
}
    .mirpia-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mirpia-title {
        font-size: 18px;
    }
  .mirpia-text {
    font-size: 15px;
  }
}
</style>

/*     1801605 : BLANK 컨텐츠      */
.blank__1801605__ {box-sizing:border-box;display:block;position:relative;width:100%;height:65px}
.blank__1801605__.build_edit_mode {min-height:10px;border:1px dashed red;background:rgba(255,255,255,.1);}
.blank__1801605__.build_edit_mode:before {content:'Blank';display:block;position:absolute;top:50%;left:0;right:0;margin-top:-10px;padding:5px 0;font-size:13px;color:red;text-align:center;line-height:1}

@media all and (max-width:1023px){
	.blank__1801605__ {height:30px}
}

/*     1800875 : BLANK 컨텐츠      */
.blank__1800875__ {box-sizing:border-box;display:block;position:relative;width:100%;height:65px}
.blank__1800875__.build_edit_mode {min-height:10px;border:1px dashed red;background:rgba(255,255,255,.1);}
.blank__1800875__.build_edit_mode:before {content:'Blank';display:block;position:absolute;top:50%;left:0;right:0;margin-top:-10px;padding:5px 0;font-size:13px;color:red;text-align:center;line-height:1}

@media all and (max-width:1023px){
	.blank__1800875__ {height:30px}
}

/*     1800755 : 타이틀 텍스트      */
/* ===== Title 1786123 (최종) ===== */

.title__1800755__{
  font-size:0;
  background:none;
}

/* ✅ 밑줄은 p에서 1개만 */
.title__1800755__ p{
  display:block;                 /* 전체 폭 */
  position:relative;
  margin:0;
  padding-left:50px;
  padding-bottom:12px;           /* 텍스트-밑줄 간격 */
  border-bottom:1px solid #000; /* ✅ 전체 밑줄(1개) */

  font-size:20px;
  font-weight:bold;
  color:#000000;
  letter-spacing:-.03em;
  line-height:1.1em;
}

/* 기본 장식(before) */
.title__1800755__ p:before{
  content:'';
  position:absolute;
  background:#dddddd;
  font-size:0;
}

/* ===== style variants ===== */
.title__1800755__.style_top p{ padding-top:10px; }
.title__1800755__.style_top p:before{
  top:0; left:0;
  width:20px; height:4px;
}

.title__1800755__.style_right p{ padding-right:14px; }
.title__1800755__.style_right p:before{
  top:16%; right:0;
  width:4px; height:20px;
}

.title__1800755__.style_bottom p{ padding-bottom:12px; }
.title__1800755__.style_bottom p:before{
  bottom:0; left:0;
  width:20px; height:4px;
}

.title__1800755__.style_left p{ padding-left:14px; }
.title__1800755__.style_left p:before{
  top:16%; left:0;
  width:4px; height:20px;
}

.title__1800755__.style_circle1 p{ padding-left:20px; }
.title__1800755__.style_circle1 p:before{
  top:50%;
  transform:translateY(-50%);
  left:20px;
  width:10px; height:10px;
  border-radius:50%;
}

.title__1800755__.style_circle2 p{ padding-left:60px; } /* 텍스트 위치 */
.title__1800755__.style_circle2 p:before{
  top:50%;
  transform:translateY(-80%);
  left:30px;
  width:15px; height:15px;
  border-radius:50%;
  border:5px solid #dddddd;
  background:none;
  box-sizing:border-box;
}

/* ===== PC font size ===== */
@media all and (min-width:1024px){
  .title__1800755__ p{ font-size:28px; }
  .title__1800755__.style_top p:before{ width:28px; }
  .title__1800755__.style_right p:before{ height:28px; }
  .title__1800755__.style_bottom p:before{ width:28px; }
  .title__1800755__.style_left p:before{ height:28px; }
}

/*     1800765 : BLANK 컨텐츠      */
.blank__1800765__ {box-sizing:border-box;display:block;position:relative;width:100%;height:30px}
.blank__1800765__.build_edit_mode {min-height:10px;border:1px dashed red;background:rgba(255,255,255,.1);}
.blank__1800765__.build_edit_mode:before {content:'Blank';display:block;position:absolute;top:50%;left:0;right:0;margin-top:-10px;padding:5px 0;font-size:13px;color:red;text-align:center;line-height:1}

@media all and (max-width:1023px){
	.blank__1800765__ {height:15px}
}

/*     1800775 : 한줄 텍스트      */
.text__1800775__ p {background-color:#f3f3f3; padding:10px;
	display:block;margin:0;
	font-size:15px;font-weight:normal;color:#161616;letter-spacing:0;line-height:1.5em;
}
.text__1800775__ p a {color:#161616}

@media all and (min-width:1024px){
	.text__1800775__ p {font-size:18px; background-color:#f3f3f3; padding:30px;}
}

/*     1800785 : BLANK 컨텐츠      */
.blank__1800785__ {box-sizing:border-box;display:block;position:relative;width:100%;height:55px}
.blank__1800785__.build_edit_mode {min-height:10px;border:1px dashed red;background:rgba(255,255,255,.1);}
.blank__1800785__.build_edit_mode:before {content:'Blank';display:block;position:absolute;top:50%;left:0;right:0;margin-top:-10px;padding:5px 0;font-size:13px;color:red;text-align:center;line-height:1}

@media all and (max-width:1023px){
	.blank__1800785__ {height:15px}
}

/*     1800815 : 한줄 텍스트      */
.compare__table, .compare__table * {margin:0; padding:0; box-sizing:border-box;}
.compare__table {max-width:1400px; margin:0 auto; padding:0 20px;}
.compare__table .title_wrap {text-align:center; margin-bottom:40px;}
.compare__table .title_wrap h2 {font-size:40px; font-weight:700; color:#333; letter-spacing:-2px;}
.compare__table .title_wrap h2 .vs {display:inline-block; width:60px; height:60px; background:#ff5a5f; color:#fff; border-radius:50%; font-size:28px; margin:0 20px; line-height:60px; vertical-align:middle;}
.compare__table table {width:100%; border-collapse:collapse; background:#f9f9f9;}
.compare__table table tr {border-bottom:1px solid #ddd;}
.compare__table table tr:first-child {border-top:1px solid #ddd;}  /* 첫 행 상단 테두리 추가 */
.compare__table table th, .compare__table table td {padding:25px 20px; text-align:center; font-size:18px; color:#333;}
.compare__table table th {background:#fff; font-weight:700; font-size:24px;}
.compare__table table td {font-weight:400;}
.compare__table table tr td:nth-child(2) {background:#fff; font-weight:700; color:#666;}

@media (max-width:1023px){
	.compare__table .title_wrap h2 {font-size:18px;}
	.compare__table .title_wrap h2 .vs {width:50px; height:50px; font-size:24px; line-height:50px; margin:0 15px;}
	.compare__table table th, .compare__table table td {padding:20px 15px; font-size:16px;}
	.compare__table table th {font-size:15px;}
}

@media (max-width:767px){
	.compare__table {padding:0 15px;}
	.compare__table .title_wrap {margin-bottom:15px;}
	.compare__table .title_wrap h2 {font-size:18px;}
	.compare__table .title_wrap h2 .vs {width:40px; height:40px; font-size:18px; line-height:40px; margin:0 10px;}
	.compare__table table th, .compare__table table td {padding:15px 10px; font-size:15px;}
	.compare__table table th {font-size:16px;}
}

/*     1800825 : BLANK 컨텐츠      */
.blank__1800825__ {box-sizing:border-box;display:block;position:relative;width:100%;height:65px}
.blank__1800825__.build_edit_mode {min-height:10px;border:1px dashed red;background:rgba(255,255,255,.1);}
.blank__1800825__.build_edit_mode:before {content:'Blank';display:block;position:absolute;top:50%;left:0;right:0;margin-top:-10px;padding:5px 0;font-size:13px;color:red;text-align:center;line-height:1}

@media all and (max-width:1023px){
	.blank__1800825__ {height:30px}
}

/*     1801075 : 타이틀 텍스트      */
/* ===== Title 1786123 (최종) ===== */

.title__1801075__{
  font-size:0;
  background:none;
}

/* ✅ 밑줄은 p에서 1개만 */
.title__1801075__ p{
  display:block;                 /* 전체 폭 */
  position:relative;
  margin:0;
  padding-left:50px;
  padding-bottom:12px;           /* 텍스트-밑줄 간격 */
  border-bottom:1px solid #000; /* ✅ 전체 밑줄(1개) */

  font-size:20px;
  font-weight:bold;
  color:#000000;
  letter-spacing:-.03em;
  line-height:1.1em;
}

/* 기본 장식(before) */
.title__1801075__ p:before{
  content:'';
  position:absolute;
  background:#dddddd;
  font-size:0;
}

/* ===== style variants ===== */
.title__1801075__.style_top p{ padding-top:10px; }
.title__1801075__.style_top p:before{
  top:0; left:0;
  width:20px; height:4px;
}

.title__1801075__.style_right p{ padding-right:14px; }
.title__1801075__.style_right p:before{
  top:16%; right:0;
  width:4px; height:20px;
}

.title__1801075__.style_bottom p{ padding-bottom:12px; }
.title__1801075__.style_bottom p:before{
  bottom:0; left:0;
  width:20px; height:4px;
}

.title__1801075__.style_left p{ padding-left:14px; }
.title__1801075__.style_left p:before{
  top:16%; left:0;
  width:4px; height:20px;
}

.title__1801075__.style_circle1 p{ padding-left:20px; }
.title__1801075__.style_circle1 p:before{
  top:50%;
  transform:translateY(-50%);
  left:20px;
  width:10px; height:10px;
  border-radius:50%;
}

.title__1801075__.style_circle2 p{ padding-left:60px; } /* 텍스트 위치 */
.title__1801075__.style_circle2 p:before{
  top:50%;
  transform:translateY(-80%);
  left:30px;
  width:15px; height:15px;
  border-radius:50%;
  border:5px solid #dddddd;
  background:none;
  box-sizing:border-box;
}

/* ===== PC font size ===== */
@media all and (min-width:1024px){
  .title__1801075__ p{ font-size:28px; }
  .title__1801075__.style_top p:before{ width:28px; }
  .title__1801075__.style_right p:before{ height:28px; }
  .title__1801075__.style_bottom p:before{ width:28px; }
  .title__1801075__.style_left p:before{ height:28px; }
}

/*     1801085 : BLANK 컨텐츠      */
.blank__1801085__ {box-sizing:border-box;display:block;position:relative;width:100%;height:30px}
.blank__1801085__.build_edit_mode {min-height:10px;border:1px dashed red;background:rgba(255,255,255,.1);}
.blank__1801085__.build_edit_mode:before {content:'Blank';display:block;position:absolute;top:50%;left:0;right:0;margin-top:-10px;padding:5px 0;font-size:13px;color:red;text-align:center;line-height:1}

@media all and (max-width:1023px){
	.blank__1801085__ {height:15px}
}

/*     1801095 : 이미지 리스트 (타일형)      */
.img_tile__1801095__ {}

/* GRID */
.img_tile__1801095__ .img_inner{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  overflow:visible;
}

/* CARD */
.img_tile__1801095__ .item{
  display:flex;
  flex-direction:column;
  border:1px solid #eee;
  background:#fff;
  position:relative;
  transition:0.25s ease;
}

/* hover 그림자 */
.img_tile__1801095__ .item:hover{
  box-shadow:0 10px 24px rgba(0,0,0,0.08);
  border-color:#ddd;
}

/* IMAGE FRAME (정사각형) */
.img_tile__1801095__ .item figure{
  background:#f3f3f3;
  padding:22px;
  box-sizing:border-box;
  aspect-ratio:1/1;
  overflow:hidden;            /* 줌 클리핑 */
  display:block;
}

/* ✅ 이미지 고정 프레임 */
.img_tile__1801095__ .item .img_frame{
  width:100%;
  height:100%;
  overflow:hidden;        /* 여기서만 클리핑 */
  border-radius:6px;
}

/* ✅ 실제 이미지 (이 안에서만 줌) */
.img_tile__1801095__ .item .img_frame img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1);
  transition:transform 0.35s ease;
  will-change:transform;
}

/* ✅ hover 시 “내용만” 줌인 */
.img_tile__1801095__ .item:hover .img_frame img{
  transform:scale(1.07);
}

/* CAPTION */
.img_tile__1801095__ .item .caption{
  flex:1; padding:20px; box-sizing:border-box;
}

/* ✅ 제목이 div든 p든 모두 커버 */
.img_tile__1801095__ .item .subject,
.img_tile__1801095__ .item p.subject{
  text-align:center;
  color:#FF5624 !important;
  font-weight:700 !important;
  font-size:21px !important;
  margin:0 0 10px !important;
}

/* ✅ 설명문: subject(제목) 제외한 p만 */
.img_tile__1801095__ .item .caption p:not(.subject){
  font-size:18px;
  line-height:1.6;
  color:#555;
  margin:0;
}

/* ARROW */
.img_tile__1801095__ .item::after{
  content:'';
  width:30px;
  height:46px;
  background:url("/img_up/shop_pds/mirpia1004/design/img/23.08.21arrow.png") no-repeat center;
  background-size:contain;
  position:absolute;
  top:50%;
  right:-25px;
  margin-top:-23px;
  z-index:555;
  pointer-events:none;
}

/* PC 마지막 컬럼 화살표 제거 */
.img_tile__1801095__ .item:nth-child(4n)::after{display:none;}

/* ≤1023 : 2개 고정 */
@media (max-width:1023px){
  .img_tile__1801095__ .img_inner{ grid-template-columns:repeat(2,1fr); }
  .img_tile__1801095__ .item:nth-child(4n)::after{display:block;}
  .img_tile__1801095__ .item:nth-child(2n)::after{display:none;}
}

/* ≤767 : 2개 고정 + 화살표 제거 */
@media (max-width:767px){
  .img_tile__1801095__ .item .subject,
  .img_tile__1801095__ .item p.subject{font-size:18px !important;}
  .img_tile__1801095__ .item .caption p:not(.subject){ font-size:14px !important;  /* content를 직접 선택 */  }
}


/*     1801585 : BLANK 컨텐츠      */
.blank__1801585__ {box-sizing:border-box;display:block;position:relative;width:100%;height:20px}
.blank__1801585__.build_edit_mode {min-height:10px;border:1px dashed red;background:rgba(255,255,255,.1);}
.blank__1801585__.build_edit_mode:before {content:'Blank';display:block;position:absolute;top:50%;left:0;right:0;margin-top:-10px;padding:5px 0;font-size:13px;color:red;text-align:center;line-height:1}

@media all and (max-width:1023px){
	.blank__1801585__ {height:10px}
}

/*     1801105 : 이미지 리스트 (타일형)      */
.img_tile__1801105__ {}

/* GRID */
.img_tile__1801105__ .img_inner{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  overflow:visible;
}

/* CARD */
.img_tile__1801105__ .item{
  display:flex;
  flex-direction:column;
  border:1px solid #eee;
  background:#fff;
  position:relative;
  transition:0.25s ease;
}

/* hover 그림자 */
.img_tile__1801105__ .item:hover{
  box-shadow:0 10px 24px rgba(0,0,0,0.08);
  border-color:#ddd;
}

/* IMAGE FRAME (정사각형) */
.img_tile__1801105__ .item figure{
  background:#f3f3f3;
  padding:22px;
  box-sizing:border-box;
  aspect-ratio:1/1;
  overflow:hidden;            /* 줌 클리핑 */
  display:block;
}

/* ✅ 이미지 고정 프레임 */
.img_tile__1801105__ .item .img_frame{
  width:100%;
  height:100%;
  overflow:hidden;        /* 여기서만 클리핑 */
  border-radius:6px;
}

/* ✅ 실제 이미지 (이 안에서만 줌) */
.img_tile__1801105__ .item .img_frame img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1);
  transition:transform 0.35s ease;
  will-change:transform;
}

/* ✅ hover 시 “내용만” 줌인 */
.img_tile__1801105__ .item:hover .img_frame img{
  transform:scale(1.07);
}

/* CAPTION */
.img_tile__1801105__ .item .caption{
  flex:1; padding:20px; box-sizing:border-box;
}

/* ✅ 제목이 div든 p든 모두 커버 */
.img_tile__1801105__ .item .subject,
.img_tile__1801105__ .item p.subject{
  text-align:center;
  color:#FF5624 !important;
  font-weight:700 !important;
  font-size:21px !important;
  margin:0 0 10px !important;
}

/* ✅ 설명문: subject(제목) 제외한 p만 */
.img_tile__1801105__ .item .caption p:not(.subject){
  font-size:18px;
  line-height:1.6;
  color:#555;
  margin:0;
}

/* ARROW */
.img_tile__1801105__ .item::after{
  content:'';
  width:30px;
  height:46px;
  background:url("/img_up/shop_pds/mirpia1004/design/img/23.08.21arrow.png") no-repeat center;
  background-size:contain;
  position:absolute;
  top:50%;
  right:-25px;
  margin-top:-23px;
  z-index:555;
  pointer-events:none;
}

/* PC 마지막 컬럼 화살표 제거 */
.img_tile__1801105__ .item:nth-child(4n)::after{display:none;}

/* ≤1023 : 2개 고정 */
@media (max-width:1023px){
  .img_tile__1801105__ .img_inner{ grid-template-columns:repeat(2,1fr); }
  .img_tile__1801105__ .item:nth-child(4n)::after{display:block;}
  .img_tile__1801105__ .item:nth-child(2n)::after{display:none;}
}

/* ≤767 : 2개 고정 + 화살표 제거 */
@media (max-width:767px){
  .img_tile__1801105__ .item .subject,
  .img_tile__1801105__ .item p.subject{font-size:18px !important;}
  .img_tile__1801105__ .item .caption p:not(.subject){ font-size:14px !important;  /* content를 직접 선택 */  }
}


/*     1801215 : BLANK 컨텐츠      */
.blank__1801215__ {box-sizing:border-box;display:block;position:relative;width:100%;height:65px}
.blank__1801215__.build_edit_mode {min-height:10px;border:1px dashed red;background:rgba(255,255,255,.1);}
.blank__1801215__.build_edit_mode:before {content:'Blank';display:block;position:absolute;top:50%;left:0;right:0;margin-top:-10px;padding:5px 0;font-size:13px;color:red;text-align:center;line-height:1}

@media all and (max-width:1023px){
	.blank__1801215__ {height:30px}
}

/*     1801185 : 타이틀 텍스트      */
/* ===== Title 1786123 (최종) ===== */

.title__1801185__{
  font-size:0;
  background:none;
}

/* ✅ 밑줄은 p에서 1개만 */
.title__1801185__ p{
  display:block;                 /* 전체 폭 */
  position:relative;
  margin:0;
  padding-left:50px;
  padding-bottom:12px;           /* 텍스트-밑줄 간격 */
  border-bottom:1px solid #000; /* ✅ 전체 밑줄(1개) */

  font-size:20px;
  font-weight:bold;
  color:#000000;
  letter-spacing:-.03em;
  line-height:1.1em;
}

/* 기본 장식(before) */
.title__1801185__ p:before{
  content:'';
  position:absolute;
  background:#dddddd;
  font-size:0;
}

/* ===== style variants ===== */
.title__1801185__.style_top p{ padding-top:10px; }
.title__1801185__.style_top p:before{
  top:0; left:0;
  width:20px; height:4px;
}

.title__1801185__.style_right p{ padding-right:14px; }
.title__1801185__.style_right p:before{
  top:16%; right:0;
  width:4px; height:20px;
}

.title__1801185__.style_bottom p{ padding-bottom:12px; }
.title__1801185__.style_bottom p:before{
  bottom:0; left:0;
  width:20px; height:4px;
}

.title__1801185__.style_left p{ padding-left:14px; }
.title__1801185__.style_left p:before{
  top:16%; left:0;
  width:4px; height:20px;
}

.title__1801185__.style_circle1 p{ padding-left:20px; }
.title__1801185__.style_circle1 p:before{
  top:50%;
  transform:translateY(-50%);
  left:20px;
  width:10px; height:10px;
  border-radius:50%;
}

.title__1801185__.style_circle2 p{ padding-left:60px; } /* 텍스트 위치 */
.title__1801185__.style_circle2 p:before{
  top:50%;
  transform:translateY(-80%);
  left:30px;
  width:15px; height:15px;
  border-radius:50%;
  border:5px solid #dddddd;
  background:none;
  box-sizing:border-box;
}

/* ===== PC font size ===== */
@media all and (min-width:1024px){
  .title__1801185__ p{ font-size:28px; }
  .title__1801185__.style_top p:before{ width:28px; }
  .title__1801185__.style_right p:before{ height:28px; }
  .title__1801185__.style_bottom p:before{ width:28px; }
  .title__1801185__.style_left p:before{ height:28px; }
}

/*     1801615 : 표 2.0      */
.table__1801615__ {width:100%;overflow-x:auto;overflow-y:visible;-webkit-overflow-scrolling:touch}
.table__1801615__ > .table_inner {overflow:hidden;width:100%;margin:0 auto;border-top:px solid #999999}
.table__1801615__ * {box-sizing:border-box}
.table__1801615__ table {
	width:100%;margin-top:-1px;border-spacing:1px;border-collapse:separate;
	background:#dddddd;table-layout:auto;
}
.table__1801615__ td {
	height:50px;padding:5px 10px;
	background:#fff;font-size:15px !important;font-weight:normal;color:#333;text-align:left;
}
.table__1801615__ td.empty__1801615__ {padding:50px 20px}
@media all and (max-width:767px){
	.table__1801615__ > .table_inner {width:100%px}
	.table__1801615__ td {font-size:15px !important}
}
@media all and (min-width:768px) and (max-width:1023px){
	.table__1801615__ > .table_inner {width:100%px}
	.table__1801615__ td {font-size:15px !important}
}
@media all and (min-width:1024px){
	.table__1801615__ > .table_inner {width:100%px}
	.table__1801615__ td {font-size:18px !important}
}

/*     1801495 : BLANK 컨텐츠      */
.blank__1801495__ {box-sizing:border-box;display:block;position:relative;width:100%;height:65px}
.blank__1801495__.build_edit_mode {min-height:10px;border:1px dashed red;background:rgba(255,255,255,.1);}
.blank__1801495__.build_edit_mode:before {content:'Blank';display:block;position:absolute;top:50%;left:0;right:0;margin-top:-10px;padding:5px 0;font-size:13px;color:red;text-align:center;line-height:1}

@media all and (max-width:1023px){
	.blank__1801495__ {height:30px}
}

/*     1801445 : 타이틀 텍스트      */
/* ===== Title 1786123 (최종) ===== */

.title__1801445__{
  font-size:0;
  background:none;
}

/* ✅ 밑줄은 p에서 1개만 */
.title__1801445__ p{
  display:block;                 /* 전체 폭 */
  position:relative;
  margin:0;
  padding-left:50px;
  padding-bottom:12px;           /* 텍스트-밑줄 간격 */
  border-bottom:1px solid #000; /* ✅ 전체 밑줄(1개) */

  font-size:20px;
  font-weight:bold;
  color:#000000;
  letter-spacing:-.03em;
  line-height:1.1em;
}

/* 기본 장식(before) */
.title__1801445__ p:before{
  content:'';
  position:absolute;
  background:#dddddd;
  font-size:0;
}

/* ===== style variants ===== */
.title__1801445__.style_top p{ padding-top:10px; }
.title__1801445__.style_top p:before{
  top:0; left:0;
  width:20px; height:4px;
}

.title__1801445__.style_right p{ padding-right:14px; }
.title__1801445__.style_right p:before{
  top:16%; right:0;
  width:4px; height:20px;
}

.title__1801445__.style_bottom p{ padding-bottom:12px; }
.title__1801445__.style_bottom p:before{
  bottom:0; left:0;
  width:20px; height:4px;
}

.title__1801445__.style_left p{ padding-left:14px; }
.title__1801445__.style_left p:before{
  top:16%; left:0;
  width:4px; height:20px;
}

.title__1801445__.style_circle1 p{ padding-left:20px; }
.title__1801445__.style_circle1 p:before{
  top:50%;
  transform:translateY(-50%);
  left:20px;
  width:10px; height:10px;
  border-radius:50%;
}

.title__1801445__.style_circle2 p{ padding-left:60px; } /* 텍스트 위치 */
.title__1801445__.style_circle2 p:before{
  top:50%;
  transform:translateY(-80%);
  left:30px;
  width:15px; height:15px;
  border-radius:50%;
  border:5px solid #dddddd;
  background:none;
  box-sizing:border-box;
}

/* ===== PC font size ===== */
@media all and (min-width:1024px){
  .title__1801445__ p{ font-size:28px; }
  .title__1801445__.style_top p:before{ width:28px; }
  .title__1801445__.style_right p:before{ height:28px; }
  .title__1801445__.style_bottom p:before{ width:28px; }
  .title__1801445__.style_left p:before{ height:28px; }
}

/*     1801455 : 번호형 리스트      */
/* 리스트는 한 줄을 100% 차지하게 고정 */
.text_list__1801455__ ul{
  display:block;
  width:100%;
  margin:0;  /* 추가 */
  padding:0;  /* 추가 */
}

.text_list__1801455__{
  display:block;
  width:100%;
  clear:both; 
  padding:0 0 0px;
}

.text_list__1801455__ ul li {
  display:flex;
  align-items:center;
  width:100%;
  margin:0;  /* 모든 margin 제거 */
  padding-top:15px;  /* 모든 항목 동일 */
  padding-left:30px;
  padding-right:30px;
  font-size:15px;
  line-height:1.5em;
  padding-bottom:15px;
  border-bottom:1px solid #e1e2f1;
  box-sizing:border-box;
  transition:0.3s;
  cursor:pointer;
}

/* 호버 효과 */
.text_list__1801455__ ul li:hover {
  background:#f8f9ff;
  padding-left:35px;
}

.text_list__1801455__ ul li:first-child {
  /* padding-top:0 삭제 - 모든 항목과 동일하게 유지 */
}

.text_list__1801455__ ul li:last-child {
  border-bottom:2px solid #333;
}

.text_list__1801455__ ul li > span {
  display:block;
  padding-right:15px;
  font-family:'NanumGothic',sans-serif;
  font-weight:normal;
  color:#5c62d7;
  flex-shrink:0;
  transition:0.3s;
}

.text_list__1801455__ ul li:hover > span .list_num {
  background:#5c62d7;
  transform:scale(1.1);
}

.text_list__1801455__ ul li p {
  display:block;
  color:#444444;
  font-weight:normal;
  letter-spacing:0;
  margin:0;
  flex:1;
  transition:0.3s;
}

.text_list__1801455__ ul li:hover p {
  color:#333;
  font-weight:500;
}

.text_list__1801455__ ul li i {display:inline-block;width:1em;height:1em;line-height:1em;padding:0 .2em;border:1px solid #5c62d7;border-radius:1em;box-sizing:borer-box;font-size:.8em;font-style:normal;text-align:center;}

.text_list__1801455__ .list_num {
  display:inline-block;
  border-radius:50%;
  vertical-align:middle;
  background-color:#5c62d7;
  color:#fff;
  text-align:center;
  transition:0.3s;
}

.text_list__1801455__.st_size_mal .list_num {width:22px;height:22px;line-height:22px;}
.text_list__1801455__.st_size_mid .list_num {width:28px;height:28px;line-height:28px;}
.text_list__1801455__.st_size_big .list_num {width:34px;height:34px;line-height:34px;}

@media all and (min-width:1024px){
  .text_list__1801455__{padding:0 0 0px;}
  .text_list__1801455__ ul li {
    font-size:18px; 
    padding-top:20px;
    padding-left:50px;
    padding-right:50px;
    padding-bottom:20px;
  }
  .text_list__1801455__ ul li:hover {
    padding-left:55px;
  }
  .text_list__1801455__ ul li > span {
    padding-right:20px;
  }
}

/*     1808495 : BLANK 컨텐츠      */
.blank__1808495__ {box-sizing:border-box;display:block;position:relative;width:100%;height:100px}
.blank__1808495__.build_edit_mode {min-height:10px;border:1px dashed red;background:rgba(255,255,255,.1);}
.blank__1808495__.build_edit_mode:before {content:'Blank';display:block;position:absolute;top:50%;left:0;right:0;margin-top:-10px;padding:5px 0;font-size:13px;color:red;text-align:center;line-height:1}

@media all and (max-width:1023px){
	.blank__1808495__ {height:30px}
}

