@charset "UTF-8";

/* =========================================================
   SOONPLUS AI VIEW GUIDE - COMMON
   공통: 기본값 / 헤더 / 사이트맵 / 로컬목차 / 퀵 / TOP / 위치 / 푸터
   페이지별 Hero, 본문 섹션, 사례, FAQ 전용 스타일은 각 page.css에서 관리
   ========================================================= */

:root {
    --bg: #f7f2ec;
    --paper: #fffdf9;
    --brown: #a7603e;
    --brown-dark: #6f3c28;
    --brown-light: #d9b7a4;
    --ink: #292725;
    --muted: #6c6762;
    --line: #ded4cc;
    --max-width: 1180px;

    --guide-header-height: 92px;
    --guide-local-nav-height: 58px;
}

/* ---------- base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Noto Sans KR", "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
    font-size: 16px;
    line-height: 1.75;
    word-break: keep-all;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

address {
    font-style: normal;
}

.container {
    width: min(calc(100% - 48px), var(--max-width));
    margin-inline: auto;
}

.container--narrow {
    max-width: 900px;
}

.sound_only,
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* =========================================================
   HEADER
   ========================================================= */

#hd {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10002 !important;
    padding: 40px 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding .5s, background .5s;
}

#hd::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient(-180deg, #cdbdaf, transparent);
    transition: top .5s, opacity .5s;
}

#hd .hd-L,
#hd .hd-R {
    position: relative;
    z-index: 5;
}

#hd .brand-logo a {
    display: block;
    width: 270px;
    height: 52px;
    background: url("/img/logo/logo-white.svg") left center / contain no-repeat;
}

#hd .hd-R {
    display: flex;
    align-items: center;
}

#hd .global {
    display: flex;
    align-items: center;
    padding-right: 35px;
}

#hd .global a {
    width: 30px;
    height: 30px;
    margin-left: 10px;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
}

#hd .global .en { background-image: url("/img/common/lang-en.png"); }
#hd .global .cn { background-image: url("/img/common/lang-cn.png"); }
#hd .global .jp { background-image: url("/img/common/lang-jp.png"); }
#hd .global .id { background-image: url("/img/common/lang-id.png"); }

#hd .global a span {
    position: absolute;
    top: 115%;
    left: 50%;
    width: 0;
    display: flex;
    justify-content: center;
    opacity: 0;
    color: #fff;
    font-size: 12px;
    white-space: nowrap;
    transition: top .4s, opacity .4s;
}

#hd .global a:hover span {
    top: 105%;
    opacity: 1;
}

#hd .tel {
    display: flex;
    align-items: center;
    padding-right: 50px;
}

#hd .tel::before {
    content: "";
    width: 1px;
    height: 25px;
    margin: 0 40px;
    background: #fff;
}

#hd .tel p {
    margin: 0;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
}

#hd .tel p::before {
    content: "";
    width: 28px;
    height: 33px;
    margin-right: 18px;
    background: url("/img/common/hd-tel.png") center / contain no-repeat;
}

#btn-menu {
    width: 32px;
    height: 24px;
    position: relative;
    padding: 0;
    border: 0;
    outline: 0;
    background: none;
    font-size: 0;
    cursor: pointer;
}

#btn-menu::before,
#btn-menu::after,
#btn-menu span {
    content: "";
    position: absolute;
    right: 0;
    width: 24px;
    height: 4px;
    border-radius: 4px;
    background: #fff;
    transition: .3s;
}

#btn-menu::before { top: 0; }
#btn-menu span { top: calc(50% - 2px); width: 32px; }
#btn-menu::after { bottom: 0; }

body.hd-fixed #hd {
    padding: 20px 65px;
}

body.hd-fixed #hd::before {
    top: 0;
}

html.menu-active {
    overflow: hidden;
}

html.menu-active #btn-menu::before,
html.menu-active #btn-menu::after {
    width: 32px;
}

html.menu-active #btn-menu span {
    width: 24px;
}

/* =========================================================
   SITEMAP
   ========================================================= */

#sitemap {
    position: fixed;
    inset: 0;
    z-index: -1 !important;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    color: #fff;
    background: rgba(46, 39, 33, .94);
    transition: opacity .5s;
}

html.menu-active #sitemap {
    z-index: 10001 !important;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

#sitemap .nav {
    width: 70%;
    padding: 135px 65px 65px;
    display: flex;
    justify-content: space-between;
    gap: 5%;
    position: relative;
    left: -5%;
    opacity: 0;
    transition: left 1s .3s, opacity 1s .3s;
}

html.menu-active #sitemap .nav {
    left: 0;
    opacity: 1;
}

#sitemap .cate {
    width: 30%;
    display: flex;
    flex-direction: column;
}

#sitemap .cate button,
#sitemap .cate a {
    width: 100%;
    min-height: 2.4em;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    color: #fff;
    border: 0;
    background: none;
    text-align: left;
}

#sitemap .cate button::after,
#sitemap .cate a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,.2);
}

#sitemap .cate i {
    padding-top: .5em;
    font-size: .5em;
    font-style: normal;
}

#sitemap .cate strong {
    width: 8em;
    font-weight: 400;
}

#sitemap .c-1 { font-size: 24px; }
#sitemap .c-2 { font-size: 20px; }
#sitemap .c-3 { font-size: 16px; }

#sitemap .c-2 strong {
    width: 10em;
}

#sitemap .more {
    width: .5em;
    height: .5em;
    position: relative;
}

#sitemap .more::before,
#sitemap .more::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    width: .5em;
    height: 2px;
    background: #fff;
    opacity: .5;
}

#sitemap .more::after {
    transform: rotate(90deg);
}

#sitemap .contact {
    width: 30%;
    padding: 135px 65px 65px;
}

#sitemap .contact dl {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

#sitemap .contact dl + dl {
    padding-top: 4em;
}

#sitemap .contact dt {
    width: 100%;
    margin-bottom: .5em;
    font-weight: 700;
}

#sitemap .contact dd {
    margin: 0;
    font-weight: 300;
}

#sitemap .contact dd + dd::before {
    content: "|";
    margin: 0 1em;
}

/* 메뉴는 처음 열 때 1단만 표시 */
#sitemap .c-2,
#sitemap .c-3 {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateX(-24px);
    transition: opacity .45s ease, transform .45s ease;
}

#sitemap .c-2.active,
#sitemap .c-3.active {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateX(0);
}

#sitemap .c-2 > ul,
#sitemap .c-3 > ul {
    display: none !important;
}

#sitemap .c-2 > ul.active,
#sitemap .c-3 > ul.active {
    display: block !important;
}

#sitemap .c-1 button,
#sitemap .c-2 button {
    width: 100%;
    cursor: pointer;
}

#sitemap .is-current strong,
#sitemap .c-3 a.is-current {
    font-weight: 700;
}

#sitemap .c-1 button.active .more::after,
#sitemap .c-2 button.active .more::after {
    transform: rotate(0deg);
}

/* =========================================================
   LOCAL NAV - 공통 구조/동작
   각 페이지에서는 링크 텍스트와 href만 변경
   ========================================================= */

.local-nav {
    position: relative;
    top: auto;
    width: 100%;
    z-index: 900 !important;
    height: var(--guide-local-nav-height);
    border-top: 1px solid rgba(137, 112, 96, .16);
    border-bottom: 1px solid rgba(137, 112, 96, .2);
    background: rgba(255, 252, 248, .94);
    backdrop-filter: blur(12px);
}

.local-nav.is-fixed {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--guide-header-live-height, 72px);
    z-index: 900 !important;
    box-shadow: 0 8px 22px rgba(55, 39, 29, .08);
}

.local-nav__inner {
    height: 100%;
    min-width: max-content;
    display: flex;
    gap: clamp(20px, 3.3vw, 52px);
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: none;
}

.local-nav__inner::-webkit-scrollbar {
    display: none;
}

.local-nav a {
    height: 100%;
    display: inline-flex;
    align-items: center;
    position: relative;
    flex: 0 0 auto;
    color: #776c64;
    font-size: .86rem;
    white-space: nowrap;
}

.local-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 0;
    height: 2px;
    background: #a7603e;
    transition: left .25s, right .25s;
}

.local-nav a.active {
    color: #6f3c28;
    font-weight: 600;
}

.local-nav a.active::after {
    left: 0;
    right: 0;
}

.local-nav-placeholder {
    display: none;
    width: 100%;
}

.local-nav-placeholder.is-active {
    display: block;
    height: var(--guide-local-nav-live-height, 58px);
}

html.menu-active .local-nav {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* =========================================================
   QUICK
   ========================================================= */

#floating__quick {
    position: fixed !important;
    z-index: 900 !important;
    top: 50% !important;
    right: 22px !important;
    bottom: auto !important;
    width: 224px !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    transform: translateY(-50%) !important;
    background: transparent !important;
}

#floating__quick .quick__link {
    position: relative;
    width: 224px !important;
    height: 54px !important;
    margin: 0 !important;
    padding: 0 22px 0 66px !important;
    display: flex !important;
    align-items: center;
    border: 0 !important;
    border-radius: 999px !important;
    box-sizing: border-box;
    color: #fff !important;
    background-color: #a76443 !important;
    background-repeat: no-repeat !important;
    background-position: 22px center !important;
    background-size: 30px auto !important;
    text-decoration: none !important;
    transition: transform .2s ease, background-color .2s ease;
}

#floating__quick .quick__link:hover {
    transform: translateX(-7px);
    background-color: #8f5337 !important;
}

#floating__quick .quick__link span {
    position: static !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    overflow: visible !important;
    opacity: 1 !important;
    color: #fff !important;
    font-size: 16px !important;
    line-height: 1 !important;
    letter-spacing: .01em;
    white-space: nowrap;
    transform: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

#floating__quick .--kakao {
    background-image: url("/img/common/icon-kakao.svg") !important;
}

#floating__quick .--insta {
    background-image: url("/img/common/icon-insta.svg") !important;
}

#floating__quick .--blog {
    background-image: url("/img/common/icon-N.svg") !important;
}

#floating__quick .--tel,
#floating__quick .--location,
#floating__quick .--reservation {
    background-image: none !important;
}

#floating__quick .--tel::before {
    content: "☎";
    position: absolute;
    left: 24px;
    top: 50%;
    color: #fff;
    font-size: 27px;
    line-height: 1;
    transform: translateY(-50%);
}

/* 네이버 빠른예약 */
#floating__quick .quick__link.--reservation::before {
    content: "N";
    position: absolute;
    left: 22px;
    top: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #03c75a;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    transform: translateY(-50%);
}

#floating__quick .--location::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 22px;
    width: 17px;
    height: 17px;
    border: 3px solid #fff;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

#floating__quick .--location::after {
    content: "";
    position: absolute;
    left: 34px;
    top: 28px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
}

/* =========================================================
   TOP
   ========================================================= */

#btn-top {
    position: fixed !important;
    z-index: 851 !important;
    right: 22px !important;
    bottom: 26px !important;
    width: 54px;
    height: 54px;
    border: 1px solid #a7603e;
    border-radius: 50%;
    color: #a7603e;
    background: rgba(255,255,255,.9);
    cursor: pointer;
}

/* =========================================================
   FOOTER / LOCATION / VISUAL
   ========================================================= */

#ft-location {
    position: relative;
    height: 786px;
    margin-bottom: 135px;
    background: url("/img/common/ft-location.png") center / auto 100% no-repeat;
}

#ft-location .title {
    position: absolute;
    top: 460px;
    left: calc(50% + 30px);
}

#ft-location .title h2,
#ft-location .title h3 {
    margin: 0;
    color: #323130;
    font-weight: 400;
}

#ft-location .title h2 {
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: .02em;
}

#ft-location .title h3 {
    padding: 1em 0;
    font-size: 30px;
    line-height: 1;
}

#ft-location .title p {
    margin: 0 0 40px;
    color: #555;
    font-size: 14px;
    line-height: 2.5;
}

#ft-location a.more {
    width: 2em;
    height: 1em;
    display: block;
    position: relative;
    font-size: 38px;
}

#ft-location a.more span {
    position: absolute;
}

#ft-location a.more .cir {
    top: 0;
    right: 0;
    width: 1em;
    height: 1em;
    border: 1px solid #a7603e;
    border-radius: 50%;
}

#ft-location a.more .tri {
    top: calc(50% - .15em);
    right: .35em;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: .2em 0 .2em .2em;
    border-color: transparent transparent transparent #a7603e;
}

#ft-location a.more .bar {
    top: 50%;
    right: .35em;
    width: 1.6em;
    height: 1px;
    background: #a7603e;
}

#ft-visual {
    padding: 0 5% 100px;
    position: relative;
}

#ft-visual h2 {
    padding: 170px 0 50px;
    margin: 0;
    color: #555;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    letter-spacing: .5em;
}

#ft-visual iframe {
    width: 90vw;
    height: 39.9vw;
    display: block;
    border: 0;
}

#ft-visual .line.top {
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: #d0cbc5;
}

#ft {
    padding-bottom: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

#ft h2 {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #555;
    font-size: 25px;
    font-weight: 400;
}

#ft h2::after {
    content: "";
    width: 1px;
    height: 60px;
    margin: 30px 0 35px;
    background: #000;
}

#ft .logo {
    width: 270px;
    height: 50px;
    background: url("/img/logo/logo-gray.svg") center / contain no-repeat;
}

#ft .copy {
    padding: 70px 0 30px;
    margin: 0;
}

#ft ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    list-style: none;
}

#ft .info {
    width: 45em;
    margin-bottom: 1.5em;
    flex-wrap: wrap;
}

#ft .info li:nth-child(1)::after,
#ft .info li:nth-child(3)::after,
#ft .link li:nth-child(1)::after {
    content: "|";
    margin: 0 .7em;
    color: #000;
    font-size: .8em;
    font-weight: 700;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1180px) {
    #floating__quick {
        right: 12px !important;
        width: 178px !important;
    }

    #floating__quick .quick__link {
        width: 178px !important;
        height: 48px !important;
        padding-left: 56px !important;
        background-position: 18px center !important;
        background-size: 26px auto !important;
    }

    #floating__quick .quick__link span {
        font-size: 14px !important;
    }
}

@media (max-width: 900px) {
    :root {
        --guide-header-height: 61px;
        --guide-local-nav-height: 52px;
    }

    body {
        font-size: 15px;
    }

    .container {
        width: min(calc(100% - 32px), var(--max-width));
    }

    #hd {
        padding: 10px 20px;
        border-bottom: 1px solid rgba(255,255,255,.75);
    }

    body.hd-fixed #hd {
        padding: 10px 20px;
        background: rgba(0,0,0,.4);
    }

    #hd::before {
        display: none;
    }

    #hd .brand-logo a {
        width: 150px;
        height: 35px;
    }

    #hd .global,
    #hd .tel {
        display: none;
    }

    #btn-menu {
        width: 40px;
        height: 40px;
    }

    #btn-menu::before,
    #btn-menu::after,
    #btn-menu span {
        left: 0;
        right: auto;
        width: 30px;
        height: 2px;
        border-radius: 0;
    }

    #btn-menu::before { top: 7px; }
    #btn-menu span { top: calc(50% - 1px); }
    #btn-menu::after { bottom: 7px; }

    html.menu-active #btn-menu::before {
        top: 19px;
        transform: rotate(45deg);
    }

    html.menu-active #btn-menu span {
        opacity: 0;
    }

    html.menu-active #btn-menu::after {
        bottom: 19px;
        transform: rotate(-45deg);
    }

    #sitemap {
        display: block;
        overflow-y: auto;
        background: rgba(46,39,33,.98);
    }

    #sitemap .nav {
        width: 100%;
        padding: 90px 25px 30px;
        display: block;
    }

    #sitemap .cate {
        width: 100%;
    }

    #sitemap .c-1 {
        font-size: 19px;
    }

    #sitemap .c-2,
    #sitemap .c-3 {
        display: none !important;
        transform: none;
    }

    #sitemap .c-2.active,
    #sitemap .c-3.active {
        display: block !important;
    }

    #sitemap .contact {
        width: 100%;
        padding: 10px 25px 50px;
        font-size: 13px;
    }

    #sitemap .contact dl + dl {
        padding-top: 2em;
    }

    .local-nav.is-fixed {
        top: var(--guide-header-live-height, 61px);
    }

    .local-nav {
        overflow: hidden;
    }

    .local-nav__inner {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        padding: 0 20px;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* 모바일에서는 퀵메뉴 숨김 */
    #floating__quick {
        display: none !important;
    }

    #btn-top {
        display: flex !important;
        align-items: center;
        justify-content: center;
        right: 16px !important;
        bottom: 20px !important;
        width: 56px !important;
        height: 56px !important;
        padding: 0 !important;
        border: 1px solid #a76443 !important;
        border-radius: 50% !important;
        color: #a76443 !important;
        background: rgba(255, 252, 248, .94) !important;
        box-shadow: 0 6px 20px rgba(58, 40, 29, .12) !important;
    }

    #btn-top::before,
    #btn-top::after {
        display: none !important;
    }

    #btn-top span {
        position: static !important;
        width: auto !important;
        height: auto !important;
        overflow: visible !important;
        color: inherit !important;
        font-size: 13px !important;
        line-height: 1 !important;
        opacity: 1 !important;
        transform: none !important;
    }

    #ft-location {
        height: auto;
        min-height: 640px;
        margin-bottom: 70px;
        background:
            linear-gradient(rgba(255,255,255,.15), rgba(255,255,255,.15)),
            url("/mobile/img/common/ft-location.jpg") center top / cover no-repeat;
    }

    #ft-location .title {
        position: static;
        padding: 360px 30px 60px;
    }

    #ft-location .title h2 {
        font-size: 30px;
    }

    #ft-location .title h3 {
        font-size: 22px;
    }

    #ft-visual {
        padding: 0 20px 70px;
    }

    #ft-visual h2 {
        padding: 80px 0 30px;
        font-size: 11px;
    }

    #ft-visual iframe {
        width: 100%;
        height: 58vw;
    }

    #ft {
        padding: 0 24px 100px;
        font-size: 12px;
    }

    #ft h2 {
        font-size: 20px;
    }

    #ft .logo {
        width: 210px;
        height: 42px;
    }

    #ft .copy {
        padding: 45px 0 20px;
    }

    #ft .info {
        width: 100%;
        display: block;
    }

    #ft .info li,
    #ft .link li {
        margin: 5px 0;
    }
}
