@charset "UTF-8";

/* ================================================================
   Header
================================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: var(--header-height);
    border-bottom: 1px solid rgba(220, 221, 227, 0.55);
    background: rgba(255, 255, 255, 0.96);
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 32px rgba(34, 36, 42, 0.08);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: var(--content-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--side-padding);
}

.logo {
    flex: 0 0 190px;
}

.logo a {
    display: inline-flex;
    align-items: center;
}

.logo img {
    width: 188px;
    height: auto;
}

/* ================================================================
   GNB
================================================================ */
.gnb {
    height: 100%;
    margin-left: auto;
}

.gnb-list {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.gnb-item {
    position: relative;
    height: 100%;
}

.gnb-link {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 25px;
    color: var(--dark);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.05em;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.gnb-link::after {
    content: "";
    position: absolute;
    right: 17px;
    bottom: -1px;
    left: 17px;
    height: 2px;
    background: var(--point);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.gnb-item:hover > .gnb-link,
.gnb-item:focus-within > .gnb-link,
.gnb-item.is-open > .gnb-link {
    color: var(--point);
}

.gnb-item:hover > .gnb-link::after,
.gnb-item:focus-within > .gnb-link::after,
.gnb-item.is-open > .gnb-link::after {
    transform: scaleX(1);
}

.submenu {
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    min-width: 202px;
    padding: 20px 22px;
    border: 1px solid rgba(220, 221, 227, 0.95);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 55px rgba(34, 36, 42, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 14px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.gnb-item:hover > .submenu,
.gnb-item:focus-within > .submenu,
.gnb-item.is-open > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.submenu--right {
    right: 0;
    left: auto;
    transform: translate(0, 14px);
}

.gnb-item:hover > .submenu--right,
.gnb-item:focus-within > .submenu--right,
.gnb-item.is-open > .submenu--right {
    transform: translate(0, 0);
}

.submenu--double {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 0 30px;
    width: 460px;
}

.submenu-list a {
    display: block;
    position: relative;
    padding: 11px 2px 10px;
    border-bottom: 1px solid #E6E2D9;
    color: var(--text);
    font-size: 14px;
    line-height: 1.3;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.submenu-list a:hover,
.submenu-list a:focus-visible {
    padding-left: 9px;
    color: var(--point);
}

.header-util {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 17px;
    margin-left: 27px;
}
/*
.lang-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    color: var(--dark);
    font-size: 12px;
    font-weight: 600;
}

.lang-arrow {
    width: 6px;
    height: 6px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
}*/

.lang-wrap {
    position: relative; 
    display: flex;
    align-items: center;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 0 5px;
    background: transparent;
    border: none;
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.lang-arrow {
    width: 6px;
    height: 6px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.2s ease;
}

/* ¸Þ´º°¡ ¿­·ÈÀ» ¶§ È­»ìÇ¥ ¹æÇâ µÚÁý±â */
.lang-btn[aria-expanded="true"] .lang-arrow {
    transform: translateY(2px) rotate(-135deg);
}

/* ¾ð¾î ¼±ÅÃ µå·Ó´Ù¿î ¸®½ºÆ® */
.lang-dropdown {
    position: absolute;
    top: 100%;       /* ¹öÆ° ¹Ù·Î ¾Æ·¡¿¡ À§Ä¡ */
    left: 50%;       /* lang-wrapÀ» ±âÁØÀ¸·Î Áß¾Ó Á¤·Ä */
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    list-style: none;
    padding: 5px 0;
    margin: 0;
    min-width: 60px;
    text-align: center;
    
    /* ±âº» ¼û±è »óÅÂ (¾Æ·¡·Î »ìÂ¦ ³»·Á°¡ ÀÖÀ½) */
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.2s ease;
}

/* ¸Þ´º È°¼ºÈ­ »óÅÂ (À§·Î ºÎµå·´°Ô ¿Ã¶ó¿È) */
.lang-dropdown.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.lang-dropdown li a {
    display: block;
    padding: 8px 15px;
    color: #444;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-dropdown li a:hover {
    background-color: #f5f5f5;
    color: var(--point);
}





.all-menu-open {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 31px;
    height: 36px;
}

.all-menu-open span {
    display: block;
    width: 23px;
    height: 2px;
    margin-left: auto;
    background: var(--dark);
    transition: width 0.2s ease, background-color 0.2s ease;
}

.all-menu-open span:nth-child(2) {
    width: 17px;
}

.all-menu-open:hover span:nth-child(2),
.all-menu-open:focus-visible span:nth-child(2) {
    width: 23px;
}

/* ================================================================
   Full screen menu
================================================================ */
.all-menu {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    overflow: hidden auto;
    background:
        radial-gradient(circle at 15% 85%, rgba(198, 166, 106, 0.15), transparent 34%),
        linear-gradient(135deg, #22242A 0%, #2B2E35 100%);
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 0.32s ease, visibility 0.32s ease, transform 0.32s ease;
}

.all-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.all-menu__head {
    display: flex;
    flex: 0 0 var(--header-height);
    align-items: center;
    justify-content: space-between;
    width: min(100% - 104px, var(--content-width));
    margin: 0 auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.all-menu__logo img {
    width: 168px;
}

.all-menu-close {
    position: relative;
    width: 38px;
    height: 38px;
}

.all-menu-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 1px;
    background: var(--white);
}

.all-menu-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.all-menu-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.all-menu__body {
    display: grid;
    flex: 1 0 auto;
    grid-template-columns: minmax(280px, 0.85fr) minmax(720px, 2.15fr);
    gap: clamp(50px, 6vw, 110px);
    width: min(100% - 104px, 1460px);
    margin: 0 auto;
    padding: clamp(54px, 7vh, 90px) 0 70px;
}

.all-menu__intro {
    padding-top: 7px;
}

.all-menu__eyebrow {
    margin-bottom: 20px;
    color: var(--point);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
}

.all-menu__message {
    font-size: clamp(36px, 3.3vw, 58px);
    font-weight: 400;
    line-height: 1.4;
}

.all-menu__description {
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 15px;
    line-height: 1.8;
}

.all-menu__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(145px, 1fr));
    gap: 42px 35px;
}

.all-menu__group-title {
    display: inline-flex;
    align-items: center;
    min-height: 35px;
    margin-bottom: 16px;
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.all-menu__group-title:hover,
.all-menu__group-title:focus-visible {
    color: var(--point);
}

.all-menu__sub-list {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.all-menu__sub-list li + li {
    margin-top: 10px;
}

.all-menu__sub-list a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.45;
    transition: color 0.2s ease, transform 0.2s ease;
}

.all-menu__sub-list a:hover,
.all-menu__sub-list a:focus-visible {
    color: var(--point);
    transform: translateX(5px);
}

.all-menu__foot {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-end;
    gap: 26px;
    width: min(100% - 104px, var(--content-width));
    margin: 0 auto;
    padding: 24px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
}

.all-menu__foot a {
    color: var(--point);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
}

/* ================================================================
   Quick menu
================================================================ */
.quick-menu {
    position: fixed;
    top: 50%;
    right: 10px;
    z-index: 900;
    width:80px;
    overflow: hidden;
    border: 0px solid rgba(220, 221, 227, 0.8);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.9);
    /*box-shadow: 0 14px 38px rgba(34, 36, 42, 0.13);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);*/
    transform: translate3d(0, -50%, 0);
    will-change: transform;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

body.is-all-menu-open .quick-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.quick-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 98px;
    padding: 15px 5px 11px;
    background: #7A7D87;
    color: var(--white);
    text-align: center;
    border:0px solid red;
}
.quick-phone p{
	width:90%;
	height:auto;
	margin:5px auto 0 auto;
	font-family:GmarketSans;	
	text-align:left;
	line-height:1;
	 border:0px solid red;
	}
.quick-phone span {
	font-family:Pretendard;
    font-size: 14px;
}

.quick-phone p strong {		
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0;
}

.quick-menu li {
    border-bottom: 1px solid rgba(220, 221, 227, 0.7);
}

.quick-menu li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 8px 4px;
    color: var(--sub-text);
    text-align: center;
    font-size: 12px;
    font-weight:500;
    line-height: 1.25;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.quick-menu li a:hover,
.quick-menu li a:focus-visible {
    background: var(--sub-bg);
    color: var(--dark);
}

.quick-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 35px;
    margin-bottom: 4px;
    color: #30323A;
    line-height: 1;
}

/* ÀÌ¹ÌÁö ¾ÆÀÌÄÜ: Ä«Ä«¿ÀÅå, Youtube */
.quick-icon--img img {
    display: block;
    width: 40px;
    height: 35px;
    object-fit: contain;
}

/* Google Material Symbols: »ó´ã, ¿¹¾à, ¿À½Ã´Â ±æ */
.quick-icon--material {
    font-family: "Material Symbols Outlined";
    font-size:35px;
    font-weight: normal;
    font-style: normal;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    direction: ltr;
    font-feature-settings: "liga";
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
    font-variation-settings:
        "FILL" 0,
        "wght" 400,
        "GRAD" 0,
        "opsz" 24;
}

.quick-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 38px;
}

.quick-top span {
    width: 9px;
    height: 9px;
    border-top: 1px solid var(--dark);
    border-left: 1px solid var(--dark);
    transform: translateY(3px) rotate(45deg);
}





/* ================================================================
   Footer / Location
   - PC ·¹ÀÌ¾Æ¿ô ¿ì¼±
   - Áöµµ´Â 800x445 ±âÁØ, max-width Ã³¸®·Î ÃßÈÄ ¸ð¹ÙÀÏ ´ëÀÀ °¡´É
================================================================ */

.location-section {
    background: #F8F5EF;
    padding: 118px 0 108px;
}

.location-inner {
    display: flex;
    align-items: flex-start;
    gap: 78px;
    width: min(100% - 104px, 1520px);
    margin: 0 auto;
}

.location-map {
    flex: 0 0 800px;
    width: 800px;
    max-width: 100%;
    height: 445px;
    overflow: hidden;
    background: #EAE7E1;
}

/* Ä«Ä«¿À ¾àµµ¼­ºñ½º »ý¼º ¸¶Å©¾÷ ´ëÀÀ */
.location-map .root_daum_roughmap {
    width: 100% !important;
    max-width: 100%;
}

.location-map .root_daum_roughmap .wrap_map {
    width: 100% !important;
    height: 445px !important;
}

.location-map .root_daum_roughmap .wrap_controllers {
    box-sizing: border-box;
}

.location-info {
    flex: 1 1 auto;
    min-width: 0;
    padding-top: 6px;
    color: var(--text, #30323A);
}

.location-heading {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 28px;
}

.location-title {
    flex: 0 0 auto;
    color: #747782;
    font-size: 31px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.05em;
}

.location-subway {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 18px;
    color: #30323A;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: -0.035em;
}

.subway-route {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.subway-route--multi {
    gap: 6px;
}

.subway-route__text {
    white-space: nowrap;
}

.subway-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
}

.subway-badge--line2 {
    background: #32B44A;
}

.subway-badge--line9 {
    background: #C6A66A;
}

.subway-badge--shin {
    background: #E7474E;
}



.location-address {
    display: block;
    margin-bottom: 5px;
    color: #30323A;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.045em;
}

.location-tel {
    display: inline-block;
    color: #30323A;
    font-size: 38px;
    font-family: "Noto Serif KR", serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.04em;
}

.clinic-hours {
    margin-top:60px;
}

.clinic-hours__title {
    margin-bottom: 23px;
    color: #747782;
    font-size: 31px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.05em;
}

.clinic-hours__list {
    display: grid;
    gap: 10px;
}

.clinic-hours__item {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    align-items: center;
    column-gap: 30px;
}

.clinic-hours__item dt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    height: 35px;
    padding: 0 16px;
    border-radius: 8px;
    background: #C6A66A;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.04em;
}

.clinic-hours__item dd {
    color: #30323A;
    font-size: 22px;
    font-family: "Noto Serif KR", serif;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: -0.035em;
}

.clinic-hours__item--closed dt,
.clinic-hours__item:nth-child(3) dt {
    background: #E7E0D6;
    color: #30323A;
}

.clinic-hours__item--closed dd {
    color: #C6A66A;
    font-family: "Pretendard", "Noto Sans KR", "Malgun Gothic", sans-serif;
    font-size: 18px;
    font-weight: 500;
}

/* ================================================================
   Site footer
================================================================ */

.site-footer {
    background: #fff;
    border-top: 1px solid rgba(220, 221, 227, 0.55);
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    width: min(100% - 104px, 1520px);
    margin: 0 auto;
    padding: 55px 0 50px;
    color: #747782;
}

.footer-logo {
    flex: 0 0 300px;
    padding-top: 5px;
}

.footer-logo a {
    display: inline-flex;
    align-items: center;
}

.footer-logo img {
    width: 220px;
    height: auto;
    opacity: 0.55;
    filter: grayscale(1);
}

.footer-info {
    flex: 1 1 auto;
    min-width: 0;
    color: #747782;
    font-size: 15px;
    line-height: 1.65;
    letter-spacing: -0.04em;
}

.footer-info address {
    display: block;
    margin-bottom: 6px;
}

.footer-info p {
    display: flex;
    flex-wrap: wrap;
    gap: 0 15px;
}

.footer-info p span {
    position: relative;
}

.footer-info p span + span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -8px;
    width: 1px;
    height: 12px;
    background: #DCDDE3;
    transform: translateY(-50%);
}

.copyright {
    margin-top: 5px;
}

.footer-policy {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 18px;
    margin-left: 40px;
    color: #747782;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: -0.04em;
}

.footer-policy a {
    position: relative;
    color: inherit;
    transition: color 0.2s ease;
}

.footer-policy a + a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -10px;
    width: 1px;
    height: 12px;
    background: #DCDDE3;
    transform: translateY(-50%);
}

.footer-policy a:hover,
.footer-policy a:focus-visible {
    color: var(--point, #C6A66A);
}
