/* 서브페이지 공통 타이틀 스타일 start */
*{
    word-break: keep-all;
}
.sub__page{
    position: relative;
    background: #372C24;
    --sub__tone__text: #F5EFE6;
    --sub__tone__line: rgba(245, 239, 230, 0.24);
    --sub__tone__muted: rgba(245, 239, 230, 0.7);
}

.sub__page.sub__page--light{
    --sub__tone__text: #52463A;
    --sub__tone__line: #E5DACA;
    --sub__tone__muted: #BEB3A7;
}

.sub__page.sub__page--dark{
    --sub__tone__text: #F5EFE6;
    --sub__tone__line: rgba(245, 239, 230, 0.24);
    --sub__tone__muted: rgba(245, 239, 230, 0.7);
}


/* 섹션별 개별 수정 없이 공통 텍스트/라인 톤 자동 보정 */
.sub__page :where(
    .sub__title,
    .sub__subtitle,
    .sub__discript,
    .section__subtitle,
    .section__title,
    .section__discript,
    .sub__selfcheck__list__item,
    .sub__process__contents__item__title,
    .sub__process__contents__item__discript,
    .sub__faq__q,
    .sub__faq__question,
    .sub__faq__card__desc
){
    color: var(--sub__tone__text) !important;
}

.sub__page :where(
    .sub__reviews__card__subtitle,
    .sub__revision__contents__text__number
){
    color: var(--sub__tone__muted) !important;
}

.sub__page :where(
    .sub__selfcheck__list li,
    .sub__faq__list,
    .sub__faq__item
){
    border-color: var(--sub__tone__line) !important;
}

.sub__title{
    font-family: 'Noto Serif KR';
    text-align: center;
    font-size: 72px;
    line-height: 90px;
    color: var(--sub__tone__text);
    word-break: keep-all;
}

.sub__subtitle {
    font-family: 'Tenor Sans';
    font-size: 20px;
    letter-spacing: 4px;
    color: var(--sub__tone__text);
    text-align: center;
    text-transform: uppercase;
}

.sub__discript {
    font-size: 24px;
    line-height: 34px;
    color: var(--sub__tone__text);
    text-align: center;
}

#sub__result__section{
    background: #F5EFE6;
}

.sub__result__subtitle.section__subtitle,
.sub__result__title.section__title,
.sub__result__discript.section__discript
{
    color: #52463A !important;
}

/* 반응형 start */
@media (max-width: 1024px) {
    .sub__title {
        font-size: 48px;
        line-height: 68px;
    }
    .sub__subtitle {
        font-size: 18px;
    }
    .sub__discript {
        font-size: 20px;
    }
}

@media (max-width: 570px) {
    .sub__title {
        font-size: 30px;
        line-height: 1.5;
        margin: 40px 0 70px !important;
    }
    .sub__subtitle {
        font-size: 16px;
    }
    .sub__discript {
        font-size: 18px;
        line-height: 1.5;
    }
}


/* 서브페이지 공통 타이틀 스타일 end */


/* 서브페이지 공통 소제목 스타일 start */

.section__subtitle{
    font-family: 'Tenor Sans';
    font-size: 18px;
    letter-spacing: 4px;
    color: var(--sub__tone__text);
    text-transform: uppercase;
}
.section__title{
    font-family: 'Noto Serif KR';
    font-size: 48px;
    line-height: 68px;
    color: var(--sub__tone__text);
}

.section__discript{
    font-size: 20px;
    line-height: 28px;
    color: var(--sub__tone__text);
}

/* 반응형 start */
@media (max-width: 1024px) {
    .section__subtitle{
        font-size: 16px;
    }

    .section__title{
        font-size: 38px;
        line-height: 58px;
    }

    .section__discript{
        font-size: 18px; 
    }
}

@media (max-width: 570px) {
    .section__subtitle{
        font-size: 12px;
        margin-bottom: 16px !important;
    }

    .section__title{
        font-size: 28px;
        line-height: 1.5;
        margin:16px 0 40px !important;
    }

    .section__discript{
        font-size: 16px; 
    }
}

/* 서브페이지 공통 소제목 스타일 end */

.sub__contents__wr{
    padding: 160px 0;
    position: relative;
}

@media (max-width: 1024px) {
    .sub__contents__wr {
        padding: 100px 0;
    }
}


/* 비주얼 섹션 start */
.scroll__bar {
    display:inline-block;
	width: 2px;
	height: 80px;
	background-color: #d5ccc29f;
	overflow: hidden;
    position: relative;
    bottom: -3px;
}

.scroll__bar__line {
    display:inline-block;
	width: 2px;
	height: 100%;
	background-color: #ffffff7a;
	animation: scroll-bar-move 3s ease-out infinite;
	will-change: transform;
}

@keyframes scroll-bar-move {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(100%);
	}
}


.sub__contents__wr.sub__visual__section {
    background: #372C24;
    padding: 160px 0 0;
}


.sub__title__wr{
    text-align: center;
}

.sub__visual__section .sub__title__wr .sub__title{
    margin:40px 0 60px;
}


.sub__visual__section .sub__title__wr .sub__discript {
    margin-bottom: 60px;
}

.sub__visual__section .sub__visual__img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.sub__visual__section .sub__visual__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 비주얼 섹션 end */



/* approach , understand 섹션 start */
.sub__approach__section,.sub__understand__section  {
    position: relative; 
    overflow: hidden;
}

.sub__approach__img__wr,.sub__understand__img__wr{
    width: 544px;
    height: 769px;
    position:absolute;
    left:50%;
    bottom:0px;
    transform: translateX(-50%);
    z-index: 1;  
}


.sub__approach__img__wr img,.sub__understand__img__wr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub__approach__section .section__subtitle,.sub__understand__section .section__subtitle{
    margin-bottom: 40px;
}

.sub__approach__contents__wr,.sub__understand__contents__wr{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 460px;
    position: relative;  
    z-index: 2;  
}

.sub__approach__text__wr,.sub__understand__text__wr{
    align-self: flex-end;
    width: 378px;
}

.sub__approach__text__wr .sub__approach__text__item,.sub__understand__text__wr .sub__understand__text__item{
    font-size: 20px;
    line-height: 30px;
    color: var(--sub__tone__text);
}


.sub__approach__text__wr .sub__approach__text__item:last-child,.sub__understand__text__wr .sub__understand__text__item:last-child{
    margin-top: 24px;
}
/* approach , understand 섹션 end */

/* result 섹션 start */
.sub__result__section__inner__wr{
    max-width: 1576px;
    width:95%;
    margin: 0 auto;
}

.sub__result__title__wr{
    position: relative;
    text-align: center;
    z-index: 2;
}

.sub__result__title__wr .section__title{
    margin: 38px 0 15px;
}

.sub__result__section__contents__wr{
    width: 100%;
    display: flex;
    gap: 20px;
    margin-top: 80px;
}

.sub__result__section__contents__wr > .sub__result__section__contents__item{
    flex: 1;
}

.sub__result__section__contents__item{
    pointer-events: all;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.sub__result__section__contents__title{
    color: rgba(82, 70, 58, 0.13);
    font-family: "Tenor Sans";
    font-size: 48px;
    font-weight: 400;
    line-height: 110%; 
    letter-spacing: -2.4px;
    text-transform: uppercase;
}

.sub__result__section__contents__box{
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.sub__result__section__contents__box img{
    opacity: 0.4;   
}

.sub__result__section__contents__text{
    color: #52463A;
    text-align: center;
    font-family: "Noto Serif KR";
    font-size: 20px;
    font-weight: 400;
    line-height: 150%; 
}

.result__item__tag__wr{
    display: flex;
    gap: 8px;
    flex-direction: column;
    align-items: center;

}

.result__item__tag__top,
.result__item__tag__bottom{
    display: flex;
    gap: 8px;
}

.result__item__tag{
    color: #52463A;
    text-align: center;
    font-family: Pretendard;
    font-size: 14px;
    font-weight: 400;
    line-height: 110%; 
    padding: 8px 16px;
    border-radius: 30px;
    background: #ECE3D6;
}

.result__item__btn{
    position: relative;
    width: 67px;
    color: #52463A;
    text-align: center;
    font-family: Pretendard;
    font-size: 16px;
    font-weight: 400;
    line-height: 110%;
    color: rgba(82, 70, 58, 0.4) ;
}

.result__item__btn::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 6px;
    background: url(../images/sub_result_btn_img.svg);
}

.sub__result__section__contents__item:hover .sub__result__section__contents__title{
    color: #52463A;
}

.sub__result__section__contents__item:hover .sub__result__section__contents__box img{
    opacity: 1;   
}

.sub__result__section__contents__item:hover .result__item__btn{
    color: #52463A;   
}



/* result 섹션 end */



/* surgery 섹션 start */
.sub__surgery__section__inner__wr{
    max-width: 952px;
    width:95%;
    margin: 0 auto;
}

.sub__surgery__title__wr{
    color:#52463A;
    position: relative;
    text-align: center;
    z-index: 2;
}
.sub__surgery__title__wr .section__subtitle{
    color:#52463A;
}
.sub__surgery__title__wr .section__title{
    color:#52463A;
}
.sub__surgery__title__wr .section__discript{
    color:#52463A;
}

.sub__surgery__section__contents__wr{
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
}

.sub__surgery__section__contents__item{
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: space-between;
}


.sub__surgery__section__contents__text__wr{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sub__surgery__section__contents__text__title{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sub__surgery__section__contents__text__discript{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sub__surgery__section__contents__item .surgery__item__number{
    font-family: 'Tenor Sans';
    font-size: 160px;
    color:#52463A;
    opacity: .03;

}
.sub__surgery__section__contents__item .surgery__item__subtitle{
    font-family: 'Tenor Sans';
    font-size: 14px;
    letter-spacing: 4px;
    color:#52463A;
    text-transform: uppercase;
    margin: 40px 0;
    opacity: .3;
}

.sub__surgery__section__contents__item .surgery__item__title{
    font-family: 'Noto Serif KR';
    font-size: 36px;
    line-height: 42px;
    color:#52463A;
}

.sub__surgery__section__contents__item .surgery__item__discript{
    font-size: 18px;
    line-height: 28px;
    margin: 40px 0;
    color:#52463A;
}
.sub__surgery__section__contents__item .surgery__item__tag__wr{
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-self: flex-end;
}

.sub__surgery__section__contents__item .surgery__item__tag{
    font-size: 14px;
    color:#52463A;
    background: #ECE3D6;
    padding: 8px 16px;
    border-radius: 24px;
}

.sub__surgery__section__img__wr{
    position: absolute;
    width: 404px;
    height: 480px;
	overflow: hidden;
}

.sub__surgery__section__img__wr img{
    width: 100%;
    height: 100%;
    object-fit: cover;
	display: block;
	-webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 20%, transparent 90%);
	mask-image: linear-gradient(to bottom, #000 0%, #000 20%, transparent 90%);
	-webkit-mask-size: 100% 100%;

	mask-size: 100% 100%;
}


.sub__surgery__section__img__wr.rt{
    left: 0;
    top: 160px;
}
.sub__surgery__section__img__wr.lb{
    right: 0;
    bottom: 0px;
}


/* surgery 섹션 end */

/* process 섹션 start */

.sub__process__section .sub__process__title__wr{
    text-align: center;
}

.sub__process__section .sub__process__title__wr .section__subtitle{
    color:#52463A;
}

.sub__process__section .sub__process__title__wr .section__title{
    color:#52463A;
}

.sub__process__contents__wr{
    margin-top: 80px;
    width: 100%;
    display: grid;
}

.sub__process__contents__wr.grid4{
    grid-template-columns: repeat(4, 1fr);
}
.sub__process__contents__wr.grid3{
    grid-template-columns: repeat(3, 1fr);
}

.sub__process__contents__item{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    border-right: 2px solid #E5DBC9;
}
.sub__process__contents__item:last-child{
    border-right: none;
}


.sub__process__contents__item__number{
    font-family: 'Tenor Sans';
    font-size: 24px;
    color:#52463A;
    width: 72px;
    height: 72px;
    background: #E5DACA;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sub__process__contents__item__title{
    font-family: 'Noto Serif KR';
    font-size: 36px;
    line-height: 46px;
    color:#52463A;
    margin: 40px 0 24px;
}

.sub__process__contents__item__discript{
    font-size: 18px;
    line-height: 28px;
    color:#52463A;
}


/* process 섹션 end */

/* selfcheck 섹션 start */
.sub__selfcheck__section__inner__wr{
    max-width: 686px;
    width:95%;
    margin: 0 auto;
}

.sub__selfcheck__title__wr{
    text-align: center;
}

.sub__selfcheck__title__wr .section__subtitle{
    color:#52463A;
}

.sub__selfcheck__title__wr .section__title{
    color:#52463A;
    margin: 40px 0 0;
}

.sub__selfcheck__contents__wr{
    margin-top: 80px;
}

.sub__selfcheck__list{
    display: flex;
    flex-direction: column;
}

.sub__selfcheck__list li{
    border-top: 1px solid #E5DACA;
}
.sub__selfcheck__list li:last-child{
    border-bottom: 1px solid #E5DACA;
}

.sub__selfcheck__list__item{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-size: 24px;
    padding: 36px 0;
}
.sub__selfcheck__list__item::before{
    content: '';
    display: block;
    width: 52px;
    height: 48px;
    background: url('../images/icon_check.png') no-repeat center center;
    background-size: contain;
}


/* selfcheck 섹션 end */

/* reviews 섹션 start */
.sub__reviews__title__wr{
    text-align: center;
}

.sub__reviews__subtitle{
    color:#52463A;
    margin-bottom: 40px;
}

.sub__reviews__title{
    color:#52463A;
}

.sub__reviews__contents__wr{
    margin-top: 80px;
    position: relative;
}

.sub__reviews__swiper{
    width: 100%;
}

.sub__reviews__nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #efe8dc;
    cursor: pointer;
    z-index: 3;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.sub__reviews__nav:hover,
.sub__reviews__nav:focus{
    background: #e6dece;
    border-color: #c9bda8;
    outline: none;
}

.sub__reviews__nav::before{
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #736451;
    border-right: 2px solid #736451;
    position: absolute;
    top: 50%;
    left: 50%;
}

.sub__reviews__nav__prev{
    left: calc(((100vw - 100%) / -2) + 2vw);
}

.sub__reviews__nav__prev::before{
    transform: translate(-35%, -50%) rotate(-135deg);
}

.sub__reviews__nav__next{
    right: calc(((100vw - 100%) / -2) + 2vw);
}

.sub__reviews__nav__next::before{
    transform: translate(-65%, -50%) rotate(45deg);
}

.sub__reviews__card{
    height: 100%;
}

.sub__reviews__card__thumb{
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 480px;
}

.sub__reviews__card__thumb__tag{
    position: absolute;
    top: 24px;
    left: 24px;
    background: #ECE3D6;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    color: #52463A;
}

.sub__reviews__card__thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sub__reviews__card__body{
    margin-top: 40px;
}

.sub__reviews__card__subtitle{
    color: #beb3a7;
    font-size: 14px;
}

.sub__reviews__card__subtitle::after{
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #E5DACA;
    margin:12px 0 24px;
}

.sub__reviews__card__title{
    color: #52463A;
    font-size: 24px;
    line-height: 42px;
    margin-bottom: 16px;
    font-family: 'Noto Serif KR';
    font-weight: normal;
}

.sub__reviews__card__desc{
    color: #52463A;
    font-size: 14px;
}


/* reviews 섹션 end */

/* faq 섹션 start */
.sub__faq__title__wr{
    text-align: center;
}

.sub__faq__title__wr .section__subtitle{
    color: #52463A;
}

.sub__faq__title__wr .section__title{
    color: #52463A;
    margin-top: 40px;
}

.sub__faq__contents__wr{
    margin-top: 72px;
}

.sub__faq__list{
    border-top: 1px solid #e5daca;
}


.sub__faq__item{
    position: relative;
    padding-left: 66px;
    border-bottom: 1px solid #e5daca;
}


/* .sub__faq__item::before{
    content: 'Q';
    font-family: 'Tenor Sans';
    font-size: 28px;
    color: #52463A;
    text-transform: uppercase;
    position: absolute;
    left: 0;
    top: 50px;
    transform: translateY(-50%);
} */

.sub__faq__question::before{
    content: 'Q';
    font-family: 'Tenor Sans';
    font-size: 28px;
    color: #52463A;
    text-transform: uppercase;
    position: absolute;
    left: 0;
    top: 55px;
    transform: translateY(-50%);
}

.sub__faq__toggle{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 40px 0;
    border: 0;
    background: transparent;
    color: #52463A;
    text-align: left;
    cursor: pointer;
}


.sub__faq__question{
    display: block;
    flex: 1;
    font-size: 24px;
    line-height: 1.35;
    color: #52463A;
}


.sub__faq__icon{
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    margin-left: 20px;
}

.sub__faq__icon::before,
.sub__faq__icon::after{
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 2px;
    background: var(--sub__tone__text);
    transform: translate(-50%, -50%);
}

.sub__faq__icon::after{
    transform: translate(-50%, -50%) rotate(90deg);
    transition: opacity 0.2s ease;
}

.sub__faq__item.is-open .sub__faq__icon::after{
    opacity: 0;
}

.sub__faq__card__desc{
    width: 90%;
    height: 0;
    overflow: hidden;
    margin: -16px 0 16px;
    font-size: 18px;
    line-height: 28px;
    color: #52463A;
    word-break: keep-all;
    transition: height .5s ease, opacity .5s ease;
    opacity: 0;
}

.sub__faq__item.is-open .sub__faq__card__desc{
	max-height: 500px;
    opacity: 1;
}

.sub__faq__item.is-open .sub__faq__card__desc{
    margin-bottom: 24px;
}


/* faq 섹션 end */

/* revision 섹션 start */

.sub__revision__title__wr{
    text-align: center;
}
.sub__revision__subtitle{
    color:#52463A;
}
.sub__revision__title{
    color:#52463A;
    margin: 40px 0 60px;
}
.sub__revision__discript{
    color:#52463A;
}

.sub__revision__contents__wr{
    margin-top: 80px;
}

.sub__revision__contents__item{
    display: flex;
    align-items: center;
}


.sub__revision__contents__item:nth-child(even){
    flex-direction: row-reverse;
}

.sub__revision__contents__img{
    width: 50%;
    height: 900px;
    position: relative;
    overflow: hidden;
}

.sub__revision__contents__img::after{
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    /* 왼쪽 하단에서 중앙 대각선으로 자연스럽게 페이드 */
    background: linear-gradient(to top right, rgba(245, 239, 230, 1) 0%, rgba(245, 239, 230, 0.9) 32%, rgba(245, 239, 230, 0) 70%);
}

.sub__revision__contents__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sub__revision__contents__text{
    width: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.sub__revision__contents__text__number{
    font-family: 'Tenor Sans';
    font-size: 160px;
    color:#52463A;
    opacity: .3;
}
.sub__revision__contents__text__subtitle{
    font-family: 'Tenor Sans';
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color:#52463A;
}
.sub__revision__contents__text__title{
    font-size: 36px;
    line-height: 42px;
    font-family: 'Noto Serif KR';
    color:#52463A;
}
.sub__revision__contents__text__discript{
    font-size: 18px;
    line-height: 28px;
    color:#52463A;
}
.sub__revision__contents__text__tags{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.sub__revision__contents__text__tag{
    display: inline-flex;
    width: fit-content;
    font-size: 14px;
    background: #ECE3D6;
    padding: 8px 18px;
    border-radius: 24px;
    color:#52463A;
}


/* revision 섹션 end */

/* director 섹션 start */

.sub__director__section{
    position: relative;
    overflow-x: hidden;
    isolation: isolate;
}

.sub__director__section > .inner__cen1110{
    position: relative;
    z-index: 2;
}

.sub__director__title__wr{
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sub__director__text__wr{
    width: 100%;
    margin-top: -120px;
}

.sub__director__text__wr .section__discript{
    font-size: 24px;
}

.sub__director__text__wr .sub__director__discript__text{
    opacity: .8;
}

.sub__director__title{
    color:#F5EFE6;
    margin: 24px 0 40px;
}
.sub__director__discript{
    color:#F5EFE6;
}
.sub__director__discript__text{
    color:#F5EFE6;
    font-size: 20px;
    line-height: 32px;
    margin-top: 60px;
}

.sub__director__img__wr{
    position: relative;
    width: 828px;
    height: 828px;
}

.sub__director__back__marquee{
    position: absolute;
    left: 50%;
    margin-left: -50vw;
    width: 100vw;
    top: 0;
    bottom: 680px;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    display: flex;
    align-items: center;
}

.sub__director__back__track{
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    animation: sub__director__back__marquee 48s linear infinite;
}

.sub__director__back{
    flex-shrink: 0;
    white-space: nowrap;
    font-family: 'Tenor Sans', sans-serif;
    font-size: 160px;
    line-height: 1;
    color: #F5EFE6;
    opacity: 0.35;
    text-transform: uppercase;
}

.sub__director__img{
    position: relative;
    z-index: -1;
}

.sub__director__img img{
    width: 100%;
    height: 100%;
}

@keyframes sub__director__back__marquee{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-50%);
    }
}


/* .sub__director__discript__text::after{
    margin-top: 80px;
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(245, 239, 230, 0) 0%,
        rgba(245, 239, 230, 1) 50%,
        rgba(245, 239, 230, 0) 100%
    );
} */

.sub__director__discript.section__discript::after{
    margin-top: 80px;
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(245, 239, 230, 0) 0%,
        rgba(245, 239, 230, 1) 50%,
        rgba(245, 239, 230, 0) 100%
    );
}

.sub__director__list{
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    opacity: .6;
}

.sub__director__list__item{
    width: 33.33%;
    display: flex;
    flex-direction: column;
}

.sub__director__list__item__title{
    color:#F5EFE6;
    font-family: 'Tenor Sans';
    font-size: 20px;
    color:#F5EFE6;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.sub__director__list__item__discript{
    font-size: 18px;
    line-height: 30px;
    color:#F5EFE6;
}

.sub__director__list__item__discript >ul>li>span{
    position: relative;
}

.sub__director__list__item__discript >ul>li>span::before{
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #F5EFE6;
}


/* director 섹션 end */

/* comment 섹션 start */
.sub__comment__section{
    background: url(/images/sub_comment_bg.png) no-repeat center center;
    background-size: contain;
    text-align: center;
}

.sub__comment__text{
    font-family: 'Noto Serif KR';
    font-size: 60px;
    line-height: 1.5;
    color:#E5DACA;
    margin-bottom: 80px;
}

.sub__comment__author{
    font-size: 20px;
    opacity: .6;
    color:#F5EFE6;
}


/* comment 섹션 end */


/* standard 섹션 start */
.sub__standard__section{
    position: relative;
    overflow-x: hidden;
}

.sub__standard__title__wr{
    text-align: center;
}

.sub__standard__subtitle{
    color:#F5EFE6;
}

.sub__standard__title{
    color:#F5EFE6;
    margin:40px 0 60px
}

.sub__standard__discript{
    color:#F5EFE6;
}

.sub__standard__swiper__wr{
    margin-top: 80px;
    position: relative;
    
}

.sub__standard__swiper{
    overflow: visible;
}

.sub__standard__slide{
    width: 1242px;
    flex-shrink: 0;
    opacity: 0.45;
    transition: opacity 0.3s ease;
}

.sub__standard__slide.swiper-slide-active{
    opacity: 1;
}

.sub__standard__card{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.sub__standard__card__img{
    aspect-ratio: 16 / 9;
    height: 480px;
    overflow: hidden;
}

.sub__standard__card__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sub__standard__card__body{
    margin-top: 40px;
}

.sub__standard__card__eyebrow{
    font-family: 'Tenor Sans', sans-serif;
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 12px;
    color:var(--sub__tone__text);
    opacity: .6;
}

.sub__standard__card__title{
    font-size: 36px;
    font-family: 'Noto Serif KR';
    line-height: 1.25;
    color:var(--sub__tone__text);
}

.sub__standard__card__desc__title{
    font-weight: bold;
    margin-top: 24px;
    color: var(--sub__tone__text);
    font-size: 20px;
    line-height: 1.8;
}
.sub__standard__card__desc{
    margin-top: 16px;
    color: var(--sub__tone__text);
    font-size: 18px;
    line-height: 28px;
    word-break: keep-all;
}

.sub__standard__nav{
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: 1px solid rgba(245, 239, 230, 0.25);
    border-radius: 50%;
    background: rgba(245, 239, 230, 0.14);
    z-index: 4;
    cursor: pointer;
}

.sub__standard__nav::before{
    content: '';
    display: block;
    width: 9px;
    height: 9px;
    border-top: 1px solid #F5EFE6;
    border-right: 1px solid #F5EFE6;
    position: absolute;
    top: 50%;
    left: 50%;
}

.sub__standard__nav__prev {
    left: calc(((100vw - 100%) / -2) + 2vw);
}


.sub__standard__nav__prev::before{
    transform: translate(-35%, -50%) rotate(-135deg);
}


.sub__standard__nav__next {
    right: calc(((100vw - 100%) / -2) + 2vw);
}

.sub__standard__nav__next::before{
    transform: translate(-65%, -50%) rotate(45deg);
}


   
/* standard 섹션 end */

/* space 섹션 start */

.sub__space__title__wr{
    text-align: center;
}

.sub__space__title{
    margin: 24px 0 60px;
}

.sub__space__discript{
    color: #52463A;
}

.sub__space__swiper__wr{
    margin-top: 80px;
}

.sub__space__tabs__scroll{
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(82, 70, 58, 0.35) transparent;
}

.sub__space__tabs__scroll::-webkit-scrollbar{
    height: 4px;
}

.sub__space__tabs__scroll::-webkit-scrollbar-thumb{
    background: rgba(82, 70, 58, 0.35);
    border-radius: 999px;
}

.sub__space__tabs{
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
    width: max-content;
    min-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.sub__space__tab{
    border: none;
    background: #E9E2D9;
    color: #52463A;
    font-size: 14px;
    line-height: 1;
    padding: 10px 18px;
    border-radius: 999px;
    cursor: pointer;
    flex-shrink: 0;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.sub__space__tab.is-active{
    background: #3A2E24;
    color: #F5EFE6;
}

.sub__space__panels{
    margin-top: 80px;
}

.sub__space__panel{
    position: relative;
}

.sub__space__swiper{
    overflow: hidden;
}

.sub__space__slide img{
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.sub__space__nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #FFFFFF;
    z-index: 5;
    cursor: pointer;
}

.sub__space__nav::before{
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #736451;
    border-right: 1px solid #736451;
    position: absolute;
    top: 50%;
    left: 50%;
}

.sub__space__nav__prev{
    left: calc(((100vw - 100%) / -2) + 2vw);
}

.sub__space__nav__prev::before{
    transform: translate(-35%, -50%) rotate(-135deg);
}

.sub__space__nav__next{
    right: calc(((100vw - 100%) / -2) + 2vw);
}

.sub__space__nav__next::before{
    transform: translate(-65%, -50%) rotate(45deg);
}

   

   

   

/* space 섹션 end */

/* contact 섹션 start */
#sub__contact__section{
    /* background: #ECE3D6; */
}
#sub__contact__section .inner__cen1680{
    width: 100%;
    padding: 0 20px;
}

.sub__contact__title__wr{
    text-align: center;
}

.sub__contact__title{
    margin: 40px 0 60px;
}

.sub__contact__discript{
    color: #52463A;
}

.sub__contact__map{
    margin-top: 80px;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.sub__contact__map iframe{
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.sub__contact__info{
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    column-gap: 48px;
}

.sub__contact__info__item__title{
    margin-bottom: 16px;
}


.sub__contact__info__item__title::after{
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #E5DACA;
    margin: 16px 0 36px; 
}

.sub__contact__info__item__title__text{
    font-family: 'Tenor Sans', sans-serif;
    font-size: 24px;
    letter-spacing: 0.04em;
    color: #3E3329;
}

.sub__contact__info__item__value{
    color: #3E3329;
    font-size: 18px;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sub__contact__info__item__value strong{
    font-weight: 700;
    display: inline-block;
}
.sub__contact__info__item__value strong.info__day{
    width: 80px;
    margin-right: 10px;
}

.sub__contact__info__item__value--phone{
    font-family: 'Tenor Sans', sans-serif;
    font-size: 60px;
    line-height: 1.1;
    white-space: nowrap;
}


/* contact 섹션 end */


/* 서브 result, relapse 페이지  */
.sub__inquiry__btn{
    position: fixed;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    padding: 15px 28px;
	z-index:5;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    border-radius: 60px;
    background: #372C24;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(6px);
}

/* 서브 result 페이지 start */
.page-sub-result .main__consultation__section .main__consultation__description{
    line-height: 28px;
}
.page-sub-result .main__consultation__section .main__consultation__bg{
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/images/main_sequence_img6.jpg') no-repeat;
    background-position: calc(50% - -0px) center;
}
/* visual 섹션 start */
.page-sub-result .sub__visual__section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 100%;
    height: 100dvh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.page-sub-result--1 .sub__visual__section {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("../images/sub_visual_2depth_1.jpg");
        background-size: auto auto;
        background-position: initial;
}

.page-sub-result--2 .sub__visual__section {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("../images/sub_visual_2depth_2.jpg");
}

.page-sub-result--3 .sub__visual__section {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("../images/sub_visual_2depth_3.jpg");
}

.page-sub-result--4 .sub__visual__section {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("../images/sub_visual_2depth_4.jpg");
}

.page-sub-result--5 .sub__visual__section {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("../images/sub_visual_2depth_5.jpg");
}

.sub__visual__section__wr{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-sub-result .sub__subtitle{
    opacity: 0.8;
}

.page-sub-result .sub__title{
    font-weight: 300;
    margin: 24px 0 70px;
}

.visual__item__tag__wr{
    display: flex;
    gap: 8px;
    justify-content: center;
}

.visual__item__tag{
    color: #52463A;
    font-family: Pretendard;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px; 
    padding: 4px 16px;
    border-radius: 24px;
    background:#ECE3D6;
}

.page-sub-result .scroll__bar{
    position: absolute;
    bottom: 0;
}
/* visual 섹션 end */

/* explanation 섹션 start */
#sub__explanation__section{
    display: flex;
    justify-content: center;
}

.sub__explanation__section__wr{
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 70px;
}

.sub__explanation__section__wr img{
    height: 360px;
}

.sub__explanation__section__wr .sub__title__wr{
    color: #372C24;
    font-family: "Noto Serif KR";
    font-size: 24px;
    font-weight: 400;
    line-height: 150%;
}
/* explanation 섹션 end */

/* simple 섹션 start */
.sub__simple__title__wr{
    text-align: center;
}

.sub__simple__title__wr .section__title{
    margin-top: 40px;
}

.sub__simple__contents__wr{
    margin-top: 72px;
}

.sub__simple__list{
    border-top: 1px solid #e5daca;
}


.sub__simple__item{
    position: relative;
    border-bottom: 1px solid #e5daca;
}

.sub__simple__toggle{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 40px 0;
    border: 0;
    background: transparent;
    color: #52463A;
    text-align: left;
    cursor: pointer;
}

.sub__simple__number{
    width: 28px;
    color: #52463A;
    text-align: center;
    font-family: "Tenor Sans";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.28px;
    text-transform: uppercase;
}

.sub__simple__question{
    display: block;
    flex: 1;
    font-size: 24px;
    line-height: 1.35;
    color: #52463A;
}


.sub__simple__icon{
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    margin-left: 20px;
}

.sub__simple__icon::before,
.sub__simple__icon::after{
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 2px;
    background: var(--sub__tone__text);
    transform: translate(-50%, -50%);
}

.sub__simple__icon::after{
    transform: translate(-50%, -50%) rotate(90deg);
    transition: opacity 0.2s ease;
}

.sub__simple__item.is-open .sub__simple__icon::after{
    opacity: 0;
}

.sub__simple__card__desc{
    width: 90%;
    height: 0;
    overflow: hidden;
    margin: -16px 0 16px;
    margin-left: 54px;
    font-size: 18px;
    line-height: 28px;
    color: #52463A;
    word-break: keep-all;
    transition: height .5s ease, opacity .5s ease;
    opacity: 0;
}

.sub__simple__item.is-open .sub__simple__card__desc{
	max-height: 500px;
    opacity: 1;
}


.sub__simple__item.is-open .sub__simple__card__desc{
    margin-bottom: 24px;
}

/* simple 섹션 end */

/* 서브 result 페이지 end */

/* 서브 relapse 페이지 start */
.page-sub-relapse .main__consultation__section .main__consultation__bg{
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/images/main_sequence_img6.jpg') no-repeat;
	background-position: calc(50% - -0px) center;
    background-size: cover;
}
.page-sub-relapse .main__consultation__section .main__consultation__description{
    line-height: 28px;
}
/* visual 섹션 start */
.page-sub-relapse .sub__visual__section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100dvh;
    padding: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.page-sub-relapse--1 .sub__visual__section {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("../images/sub_visual_2depth_1.jpg");
        background-size: auto auto;
        background-position: initial;
}

.page-sub-relapse--2 .sub__visual__section {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("../images/sub_visual_2depth_2.jpg");
}

.page-sub-relapse--3 .sub__visual__section {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("../images/sub_visual_2depth_3.jpg");
}

.page-sub-relapse--4 .sub__visual__section {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("../images/sub_visual_2depth_4.jpg");
}

.page-sub-relapse--5 .sub__visual__section {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("../images/sub_visual_2depth_5.jpg");
}

.sub__visual__section__wr{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-sub-relapse .sub__subtitle{
    opacity: 0.8;
}

.page-sub-relapse .sub__title{
    font-weight: 300;
    margin: 24px 0 70px;
}

.visual__item__tag__wr{
    display: flex;
    gap: 8px;
    justify-content: center;
}

.visual__item__tag__wr.mobile-only{
    flex-direction: column;
    align-items: center;
}

.visual__item__tag__top,
.visual__item__tag__bottom{
    gap: 6px;
    display: flex;
}

.visual__item__tag{
    color: #52463A;
    font-family: Pretendard;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px; 
    padding: 4px 16px;
    border-radius: 24px;
    background:#ECE3D6;
}

.page-sub-relapse .scroll__bar{
    position: absolute;
    bottom: 0;
}
/* visual 섹션 end */



/* ============================================
   서브페이지 섹션 반응형
   ============================================ */

@media (max-width: 1800px) {
    .sub__surgery__section__img__wr {
        position: static;
    }
}

@media (max-width: 1640px) {
    .sub__result__section__contents__box img{
        width: 90%;
        height: auto;
    }
}

@media (max-width: 1400px) {
    .sub__approach__img__wr,.sub__understand__img__wr{
        width: 450px;
        height: auto;
        bottom: 50%;
        transform: translateX(-50%) translateY(50%);
    }

    .page-sub-result--1 .sub__visual__section,
    .page-sub-relapse--1 .sub__visual__section {
        background-size: cover;
    }

    .sub__result__section__contents__wr{
        gap: 18px;
    }

    .sub__result__section__contents__item{
        gap: 32px;
    }

    .sub__result__section__contents__item .sub__result__section__contents__box img{
        width: 200px;
    }

    .sub__result__section__contents__title{
        font-size: 40px;
    }

    .sub__result__section__contents__text{
        font-size: 18px;
    }

    .result__item__tag {
        font-size: 13px;
        padding: 6px 12px;
    }

    .result__item__btn{
        font-size: 15px;
    }
}

@media (max-width: 1280px) {
    .sub__standard__swiper__wr{
        padding: 0 26px;
    }

    .sub__standard__slide{
        width: min(1800px, calc(100vw - 120px));
    }

    .sub__standard__card__img{
        aspect-ratio: 1800 / 570;
        height: auto;
    }

}

@media (max-width: 1200px) {

    .sub__contents__wr{
        padding: 120px 0;
    }
    .sub__result__section__contents__wr.pc-only{
        display: none !important;
    }

    .sub__result__section__contents__wr.mobile-only{
        display: flex !important;
        align-items: center;
        flex-direction: column;
        gap: 80px;
    }

    .sub__result__section__contents__wr.mobile-only .result__item__btn{
        margin-bottom: 16px;
        margin-left: 0;
    }

    .swiper-pagination-bullets.swiper-pagination-horizontal{
        position: static;
        width: auto;
        gap: 34px;
    }

    .sub__result__section__contents__wr .swiper-pagination-bullet-active,
    .sub__result__section__contents__wr .swiper-pagination-bullet{
        background: none;
    }

    .sub__result__section__contents__wr .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
        width: 35px;
        height: 35px;
        margin: 0;
        font-size: 32px;
        color: #52463A;
        font-family: "Tenor Sans";
        line-height: 1.1;
        letter-spacing: -1.2px;
    }

    .sub__result__section__contents__box{
        width: 311px;
        padding: 0 32px;
    }

    .sub__result__section__contents__wr.mobile-only .sub__result__section__contents__item{
        pointer-events: all;
        cursor: auto;
    }

    .result__tab{
        display: flex;
    }

    .resultSwiper{
        width: 100%;
    }

    .swiper-pagination-bullets.swiper-pagination-horizontal{
        position: static;
        width: auto;
        gap: 34px;
    }

    .sub__result__section__contents__wr .swiper-pagination-bullet-active,
    .sub__result__section__contents__wr .swiper-pagination-bullet{
        background: none;
    }

    .sub__result__section__contents__item .sub__result__section__contents__box img{
        width: 219px;
        height: auto;
    }

    .sub__result__section__contents__item.swiper-slide-active .sub__result__section__contents__box img{
        opacity: 1; 
    }

    .sub__result__section__contents__item.swiper-slide-active .result__item__btn{
        color: #52463A;   
    }

    .sub__result__section__contents__wr.mobile-only .sub__result__section__contents__text{
        font-size: 20px;
    }

    .sub__result__section__contents__wr.mobile-only .result__item__tag{
        font-size: 12px;
        padding: 8px 16px;
    }

    .sub__result__section__contents__wr.mobile-only .result__item__btn{
        font-size: 16px;
        margin-top: 20px;
    }

    .sub__process__contents__item__title{
        font-size: 32px;
        line-height: 1.5;
    }

    .sub__process__contents__item__discript{
        font-size: 16px;
        line-height: 1.5;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sub__director__back__track{
        animation: none;
    }
}

@media (max-width: 1024px) {
    .sub__contents__wr.sub__visual__section {
        padding: 100px 0 0;
    }

    .sub__approach__img__wr,.sub__understand__img__wr{
        width: 350px;
    }

    .sub__approach__text__wr .sub__approach__text__item,.sub__understand__text__wr .sub__understand__text__item{
        font-size: 18px;
        line-height: 28px;
    }

    .sub__surgery__section__contents__item .surgery__item__title{
        font-size: 26px;
    }

    .sub__surgery__section__img__wr{
        width: 350px;
        height: 380px;
    }

    .sub__surgery__section__contents__wr {
        flex-direction: column;
        gap: 80px;
    }

    .sub__surgery__section__contents__text__title,.sub__surgery__section__contents__text__discript{
        width: 100%;
        text-align: center;
    }

    .sub__surgery__section__contents__item {
        flex-direction: row;
        justify-content: space-evenly;
    }

    .sub__surgery__section__contents__item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .sub__surgery__section__contents__text__wr {
        align-items: flex-start;
    }

    .sub__surgery__section__contents__item .surgery__item__discript {
        font-size: 16px;
        line-height: 28px;

    }

    .sub__process__contents__item__number {
        font-size: 20px;
        width: 50px;
        height: 50px;
    }

    .sub__process__contents__item__title {
        font-size: 26px;
    }   

    .sub__process__contents__item__discript{
        font-size: 14px;
    }

    .sub__process__contents__item__discript {
        font-size: 16px;
    }

    .sub__reviews__card__thumb__tag {
        padding: 6px 12px;
        font-size: 12px;
    }

    .sub__reviews__nav {
        display: none;
    }

    .sub__reviews__card__title {
        font-size: 22px;
    }

    .sub__reviews__card__desc {
        color: #52463A;
        font-size: 12px;
    }

    .sub__faq__question::before {
        font-size: 20px;
        left: 10px;
        top: 52px;
        transform: translateY(-50%);
    }

    .sub__faq__item {
        padding-left: 50px;
    }

    .sub__faq__question {
        font-size: 20px;
    }

    .sub__faq__card__desc {
        font-size: 16px;
    }

    .sub__faq__icon::before, .sub__faq__icon::after {
        width: 14px;
        height: 2px;
    }

    .sub__revision__contents__text__title{
        font-size: 26px;
    }

    .sub__revision__contents__text__discript {
        font-size: 16px;
    }

    .sub__director__img__wr {
        position: relative;
        width: 650px;
        height: 650px;
    }

    .sub__director__back {
        font-size: 60px;
    }

    .sub__director__back__track {
        animation: sub__director__back__marquee 24s linear infinite;
    }

    .sub__director__discript__text {
        color: #F5EFE6;
        font-size: 18px;
        line-height: 30px;
        margin-top: 60px;
    }

    .sub__director__list__item__title {
        font-size: 18px;
    }

    .sub__director__list__item__discript {
        font-size: 16px;
        line-height: 30px;
        color: #F5EFE6;
    }

    .sub__comment__text {
        font-size: 42px;
        line-height: 80px;
        margin-bottom: 50px;
    }

    .sub__standard__swiper__wr{
        padding: 0 22px;
    }

    .sub__standard__slide{
        width: min(1800px, calc(100vw - 120px));
    }

    .sub__standard__card__img{
        aspect-ratio: 1800 / 570;
        height: auto;
    }

    .sub__standard__card__eyebrow {
        font-size: 12px;
    }

    .sub__standard__card__title {
        font-size: 24px;
    }

    .sub__standard__card__desc__title {
        font-size: 16px;
    }

    .sub__standard__card__desc {
        font-size: 16px;
    }

    .sub__standard__nav {
        display: none;
    }

    .sub__space__nav {
        display: none;
    }

    .sub__space__swiper__wr {
        overflow: visible;
    }

    .sub__space__tabs__scroll {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding-left: 2.5vw;
        padding-right: 2.5vw;
        box-sizing: border-box;
    }

    .sub__contact__info {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .sub__contact__map {
        margin-top: 56px;
        width: 100%;
        height: 450px;
        overflow: hidden;
    }

    .sub__contact__info__item__value.sub__contact__info__item__value--phone{
        font-size: 40px;
    }

    .sub__contact__info__item__value {
        font-size: 16px;
    }

    .sub__simple__number{
        width: 24px;
        font-size: 24px;
    }

    .sub__simple__item {
        padding-left: 50px;
    }

    .sub__simple__question {
        font-size: 20px;
    }

    .sub__simple__card__desc {
        font-size: 16px;
        margin-left: 48px;
    }

    .sub__simple__icon::before, .sub__simple__icon::after {
        width: 14px;
        height: 2px;
    }
}

@media (max-width: 960px) {
    .sub__standard__swiper__wr{
        padding: 0 18px;
    }

    .sub__standard__slide{
        width: min(1800px, calc(100vw - 120px));
    }

    .sub__standard__card__img{
        aspect-ratio: 1800 / 570;
        height: auto;
    }
}

@media (max-width: 870px) {
    .sub__process__contents__item {
        justify-content: flex-start;
        margin: 0px 0 20px;
        border-right: none;
    }

    .sub__selfcheck__list__item::before {
        width: 32px;
        height: 28px;
    }

    .sub__process__contents__item::after{
        content: '';
        margin-top: 40px;
        display: block;
        width: 80%;
        height: 2px;
        background: #E5DBC9;
    }

    .sub__process__contents__item:last-child::after{
        display: none;
    }

    .sub__process__contents__item__discript {
        font-size: clamp(10px, 1vw + 8px, 16px);
        word-break: keep-all;
    }

    .sub__process__contents__wr {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .sub__selfcheck__list__item {
        flex-direction: column;
    }

    .sub__selfcheck__list__item {
        font-size: 16px;
    }

    .sub__space__slide img {
        height: inherit;
    }

    .sub__explanation__section__wr img{
        height: 300px;
    }

    .sub__explanation__section__wr .sub__title__wr{
        font-size: 20px;
    }

    
}

@media (max-width: 820px) {
    .sub__surgery__section__img__wr{
        width: 350px;
        height: 380px;
    }

    .sub__surgery__section__contents__item {
        flex-direction: column;
        justify-content: center;
    }

    .sub__surgery__section__contents__item:nth-child(even) {
        flex-direction: column;
        justify-content: center;
    }

    .sub__surgery__section__img__wr {
        width: 100%;
        height: 300px;
    }

    .sub__surgery__section__contents__text__wr{
        width: 100%;
    }

    .sub__surgery__section__contents__text__title {
        width: 100%;
    }

    .sub__surgery__section__contents__text__discript{
        width: 100%;
    }

    .sub__surgery__section__contents__item .surgery__item__number {
        font-size: 60px;
    }

    .sub__revision__contents__text__number {
        font-size: 60px;
    }

    .sub__revision__contents__item {
        flex-direction: column;
        margin-bottom:60px;
    }

    .sub__revision__contents__item:nth-child(even) {
        flex-direction: column;
        margin-bottom:60px;
    }

    .sub__revision__contents__item:last-child {
        margin-bottom:0px;
    }

    .sub__revision__contents__img {
        width: 95%;
        margin: 0 auto;
        height: 250px;
    }

    .sub__revision__contents__text {
        width: 95%;
        margin: 20px auto 0;
        gap: 20px;
    }

    .sub__director__list {
        flex-direction: column;
        gap: 40px;
    }

    .sub__director__list__item {
        width: 100%;
    }

    .sub__standard__swiper__wr{
        padding: 0 14px;
    }

    .sub__standard__slide{
        width: min(1800px, calc(100vw - 120px));
    }

    .sub__standard__card__img{
        aspect-ratio: 1800 / 570;
        height: auto;
    }

    .sub__simple__card__desc{
        width: 80%;
    }
}

@media (max-width: 720px) {
    .sub__explanation__section__wr img{
        height: 280px;
    }

    .sub__explanation__section__wr .sub__title__wr{
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .sub__explanation__section__wr img{
        height: 260px;
    }

    .sub__explanation__section__wr .sub__title__wr{
        font-size: 16px;
    }
}


@media (max-width: 570px) {

    /* approach, understand 섹션 */
    #sub__approach__section .inner__cen1400,
    #sub__understand__section .inner__cen1400{
        width: 100%;
        padding: 0 20px;
    }

    .sub__approach__img__wr,.sub__understand__img__wr{
        width: 100%;
    }

    .sub__approach__title.section__title,
    .sub__understand__title.section__title{
        margin-bottom: 0px !important;

    }
    .sub__approach__contents__wr,
    .sub__understand__contents__wr{
        gap: 24px;
    }

    .sub__approach__img__wr.mobile-only,
    .sub__understand__img__wr.mobile-only{
        position: static;
        transform: translateX(0) translateY(0);
    }


    .sub__approach__img__wr,.sub__understand__img__wr{
        width: 100%;
    }

    .sub__approach__text__wr .sub__approach__text__item,.sub__understand__text__wr .sub__understand__text__item{
        font-size: 16px;
        line-height: 24px;
    }

    .sub__surgery__section__contents__item .surgery__item__tag {
        font-size: 10px;
    }

    .sub__surgery__section__contents__item .surgery__item__subtitle {
        font-size: 12px;
    }

    .sub__faq__question::before {
        font-size: 15px;
        left: 10px;
        top:36px;
        transform: translateY(-50%);
    }

    .sub__faq__question {
        font-size: 14px;
    }

    .sub__faq__item {
        padding-left: 40px;
    }

    .sub__faq__card__desc {
        font-size: 12px;
        line-height: 20px;
    }

    .sub__revision__contents__text__subtitle {
        font-size: 12px;
    }

    .sub__revision__contents__text__tag {
        font-size: 10px;
    }

    .sub__director__img__wr {
        position: relative;
        width: 510px;
        height: 510px;
    }

    .sub__director__back__marquee {
        bottom: 1100px;
    }

    .sub__comment__text {
        font-size: 24px;
        line-height: 40px;
        margin-bottom: 50px;
    }

    .sub__comment__author {
        font-size: 18px;
    }

    .sub__standard__swiper__wr{
        padding: 0 10px;
    }

    .sub__standard__slide{
        width: min(1800px, calc(100vw - 120px));
    }

    .sub__standard__card__img{
        aspect-ratio: 1800 / 570;
        height: auto;
    }

    .sub__contact__map {
        margin-top: 56px;
        width: 100%;
        height: 300px;
        overflow: hidden;
    }

    .sub__contact__info__item__title__text {
        font-size: 14px;
    }

    .sub__contact__info__item__value {
        font-size: 14px;
    }

    .sub__surgery__section__contents__item .surgery__item__discript {
        line-height: 1.5;
    }

    .sub__surgery__section__contents__item .surgery__item__tag__wr {
        gap: 4px;
    }

    .sub__process__contents__wr {
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
        justify-content: center;
    }

    .sub__process__contents__item__discript {
        font-size: 12px;
        text-align: center;
        line-height: 1.5;
    }

    .sub__selfcheck__title__wr .section__title {
        color: #52463A;
        margin: 16px 0 0;
    }
    .sub__selfcheck__list__item {
        text-align: center;
        line-height: 1.5;
    }

    .sub__contents__wr {
        padding: 60px 0;
    }

    .sub__faq__toggle {
        padding: 24px 0;
    }

    .sub__visual__section .sub__visual__img {
        height: 300px;
    }

    .sub__revision__title {
        margin-top: 0;
        margin-bottom: 40px;;
    }

    .sub__revision__contents__text {
        gap: 0px;
    }

    .sub__revision__contents__text__title {
        margin:16px 0 40px;
    }

    .sub__revision__contents__text__discript {
        line-height: 1.5;
        margin-bottom: 40px;
    }

    .reviews__visual__section{
        padding-top: 160px;
    }

    .page-sub-result--1 .sub__visual__section,
    .page-sub-relapse--1 .sub__visual__section {
        background-image:
            linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
            url("../images/sub_visual_2depth_1_mo.jpg");
            background-size: cover;
    }

    .page-sub-result--2 .sub__visual__section,
    .page-sub-relapse--2 .sub__visual__section {
        background-image:
            linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
            url("../images/sub_visual_2depth_2_mo.jpg");
    }

    .page-sub-result--3 .sub__visual__section,
    .page-sub-relapse--3 .sub__visual__section {
        background-image:
            linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
            url("../images/sub_visual_2depth_3_mo.jpg");
    }

    .page-sub-result--4 .sub__visual__section,
    .page-sub-relapse--4 .sub__visual__section {
        background-image:
            linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
            url("../images/sub_visual_2depth_4_mo.jpg");
    }

    .page-sub-result--5 .sub__visual__section,
    .page-sub-relapse--5 .sub__visual__section {
        background-image:
            linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
            url("../images/sub_visual_2depth_5_mo.jpg");
    }
    
    .gall__title__wr {
        text-align: center;
        margin-bottom: 70px;
    }

    .sub__explanation__section__wr{
        gap: 60px;
    }

    .sub__explanation__section__wr img{
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .sub__explanation__section__wr .sub__title__wr{
        font-size: 16px;
        width: calc(100% - 40px);
    }

    .sub__simple__number{
        width: 14px;
        font-size: 14px;
    }

    .sub__simple__toggle{
        padding: 24px 0;
        gap: 12px;
    }

    .sub__simple__question {
        font-size: 14px;
    }

    .sub__simple__item {
        padding-left: 10px;
    }

    .sub__simple__card__desc {
        font-size: 12px;
        margin-left: 28px;
        line-height: 20px;
    }

    .sub__approach__text__wr, .sub__understand__text__wr{
        align-self: flex-start;
        width: auto;
    }

    .page-sub-result .sub__contents__wr.sub__visual__section{
        padding: 0;
    }

    .page-sub-relapse .sub__contents__wr.sub__visual__section {
        padding: 0;
    }
    
    .page-sub-result .sub__title,
    .page-sub-relapse .sub__title{
        padding: 0;
        margin: 30px 0 36px !important;
    }

    .sub__title__wr .visual__item__tag{
        font-size: 10px;
        padding: 8px 16px;
        line-height: 1.1;
    }

    .sub__title__wr .visual__item__tag__wr{
        gap: 6px;
    }

    .sub__inquiry__btn{
        font-size: 14px;
        padding: 10px 28px;
        line-height: 24px;
    }

    /* 모바일 */
    .sub__result__section__contents__wr.mobile-only{
        margin-top: 32px;
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 40px;
    }

    .sub__result__section__contents__wr.mobile-only .sub__result__section__contents__item{
        width: 100%;
        padding: 0 38px;
        cursor: auto;
    }

    .sub__result__section__contents__wr.mobile-only .result__item__btn{
        pointer-events: all;
        cursor: pointer;
    }

    .result__tab{
        display: flex;
    }

    .resultSwiper{
        width: 100%;
    }

    .swiper-pagination-bullets.swiper-pagination-horizontal{
        position: static;
        width: auto;
        gap: 34px;
    }

    .sub__result__section__contents__wr .swiper-pagination-bullet-active,
    .sub__result__section__contents__wr .swiper-pagination-bullet{
        background: none;
    }

    .sub__result__section__contents__wr .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
        width: 26px;
        height: 26px;
        margin: 0;
        font-size: 24px;
        color: #52463A;
        font-family: "Tenor Sans";
        line-height: 1.1;
        letter-spacing: -1.2px;
    }

    .sub__result__section__contents__item .sub__result__section__contents__box img{
        width: 239px;
        height: auto; 
    }

    .sub__result__section__contents__item.swiper-slide-active .sub__result__section__contents__box img{
        opacity: 1; 
    }

    .sub__result__section__contents__item.swiper-slide-active .result__item__btn{
        color: #52463A;   
    }

    .sub__result__section__contents__wr.mobile-only .sub__result__section__contents__text{
        font-size: 20px;
    }

    .sub__result__section__contents__wr.mobile-only .result__item__tag{
        font-size: 10px;
        padding: 8px 16px;
        border-radius: 24px;
    }

    .sub__result__section__contents__wr.mobile-only .result__item__btn{
        font-size: 16px;
        margin-top: 10px;
    }

    .sub__result__title.section__title{
        margin: 4px 0 8px !important;
    }

    .sub__result__section__contents__wr .swiper-button-next,
    .sub__result__section__contents__wr .swiper-button-prev {
        display: none;
    }

    .page-sub-result .main__consultation__section .main__consultation__bg{
        background-size: cover;
    }

    .sub__result__section__contents__box{
        gap: 16px;
    }

    .sub__process__contents__item{
        justify-content: center;
        margin: 24px 0;
    }
    
    .sub__process__contents__item::after{
        display: none;
    }

    .sub__process__contents__item__title{
        color: #372C24 !important;
        margin: 0;
        font-size: 20px;
        line-height: 1.5;
        margin: 12px 0 24px;
        
    }

    .sub__process__contents__item__number{
        font-size: 24px;
        line-height: 1;
    }

    .sub__space__panels {
        margin-top: 40px;
    }

}


/* hide 취소 시 하단은 삭제 */

.sub__simple__section,
.sub__faq__section{
    background: #ECE3D6;
}



