@font-face {
    font-family: 'Pretendard Variable';
    font-weight: 45 920;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/Pretendard/woff2/PretendardVariable.woff2') format('woff2-variations')
}

@font-face {
    font-family: 'EB Garamond';
    font-weight: 800;
    font-display: swap;
    font-style: normal;
    src: local('EBGaramond ExtraBold'), url(../fonts/EBGaramond/EBGaramond-ExtraBold.ttf) format('truetype');
}

@font-face {
    font-family: 'EB Garamond';
    font-weight: 800;
    font-display: swap;
    font-style: Italic;
    src: local('EBGaramond ExtraBold'), url(../fonts/EBGaramond/EBGaramond-ExtraBoldItalic.ttf) format('truetype');
}

@font-face {
    font-family: 'EB Garamond';
    font-weight: 700;
    font-display: swap;
    font-style: normal;
    src: local('EBGaramond Bold'), url(../fonts/EBGaramond/EBGaramond-Bold.ttf) format('truetype');
}

@font-face {
    font-family: 'EB Garamond';
    font-weight: 700;
    font-display: swap;
    font-style: Italic;
    src: local('EBGaramond Bold'), url(../fonts/EBGaramond/EBGaramond-BoldItalic.ttf) format('truetype');
}

@font-face {
    font-family: 'EB Garamond';
    font-weight: 600;
    font-display: swap;
    font-style: normal;
    src: local('EBGaramond SemiBold'), url(../fonts/EBGaramond/EBGaramond-SemiBold.ttf) format('truetype');
}

@font-face {
    font-family: 'EB Garamond';
    font-weight: 600;
    font-display: swap;
    font-style: Italic;
    src: local('EBGaramond SemiBold'), url(../fonts/EBGaramond/EBGaramond-SemiBoldItalic.ttf) format('truetype');
}

@font-face {
    font-family: 'EB Garamond';
    font-weight: 500;
    font-display: swap;
    font-style: normal;
    src: local('EBGaramond Medium'), url(../fonts/EBGaramond/EBGaramond-Medium.ttf) format('truetype');
}

@font-face {
    font-family: 'EB Garamond';
    font-weight: 500;
    font-display: swap;
    font-style: Italic;
    src: local('EBGaramond Medium'), url(../fonts/EBGaramond/EBGaramond-MediumItalic.ttf) format('truetype');
}

@font-face {
    font-family: 'EB Garamond';
    font-weight: 400;
    font-display: swap;
    font-style: normal;
    src: local('EBGaramond Regular'), url(../fonts/EBGaramond/EBGaramond-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'EB Garamond';
    font-weight: 400;
    font-display: swap;
    font-style: Italic;
    src: local('EBGaramond Regular'), url(../fonts/EBGaramond/EBGaramond-RegularItalic.ttf) format('truetype');
}

:root {
    --side-margin: 20px;

    --section-padding-1: 160px;
    --section-padding-2: 80px;
    --section-padding-3: 60px;
    --section-padding-4: 40px;

    /* 리뉴얼로 인한 추가 */
    --section-padding-5: 100px;
    /* 스타일 추가 end */

    --theme-duration-1: 600ms;
    --theme-duration-2: 300ms;

    --header-height: 93px;
    --header-active-height: 60px;
    --header-menu-top: 36px;
    --header-active-menu-top: 21px;
    --header-logo-top: 17.5px;
    --header-active-logo-top: 14px;

    --contents-gap-1: 46px;
    --contents-gap-2: 30px;
    --contents-gap-3: 27px;

    --max-width: 1100px;

    --img-max-width: 820px;

    --font-pretendard: 'Pretendard Variable';
    --font-eb-garamond: 'optima';

    /* --font-black: #000000; */
    --font-black: #333333;
    --font-white: #FFFFFF;
    --font-sepia: #544E43;
    --font-warmgrey4: #746F66;
    
    /* 리뉴얼로 인한 추가 */
    --font-warmgrey5: #97928A;
    /* 스타일 추가 end */

    --bg-warmgrey: #746F66;
    --bg-sepia: #2F2A21;
    --bg-ivory: #F6F5F4;
    --bg-remote: rgba(255, 255, 255, 0.9);

    /* 리뉴얼로 인한 추가 */
    --circle-step-1: #F6F5F4;
    --circle-step-2: #DBD9D6;
    --circle-step-3: #B3AFA9;
    --circle-step-4: #97928A;
    --circle-step-5: #746F66;
    --circle-step-6: #534E43;
    --circle-step-7: #2E2920;
    /* 스타일 추가 end */
}

* {
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    border: none;
    outline: none;
    background: transparent;
    word-break: keep-all;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-pretendard), sans-serif;
    color: #000;
}

*::-webkit-scrollbar {
    display: none;
}

img,
svg {
    max-width: 100%;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

h1,h3,h4,h5,p,span,b {
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.container {
    margin: 0 auto;
    position: relative;
    width: 100%;
    max-width: var(--max-width);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--contents-gap-2);
    overflow: hidden;
    animation: fadeIn var(--theme-duration-1);
}

.title {
    font-family: var(--font-eb-garamond), var(--font-pretendard);
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
    color: var(--font-black);
}

.potenza_special_subtitle__SV2Qc {
  font-size: 20px !important;
}

.menu_list__M6Z78.is-hover {
  opacity: 1;
  pointer-events: auto;
}

.menu_third_list.is-hover {
  opacity: 1;
}


@media screen and (max-width: 700px) {
    /* header + nav 가려짐 방지 */
    .treatmentDetail_main__TmA33 section {
        scroll-margin-top: var(--header-height, 0px);
    }

    .title {
        text-align: center;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 32px;
    }

}

@media screen and (max-width: 600px) {

    .potenza_special_subtitle__SV2Qc {
        font-size: 16px !important;
}

}

@media screen and (max-width: 500px) {

    .container {
        gap: var(--contents-gap-3);
    }

}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

