@charset "utf-8";

/* =========================================================
   FONT
========================================================= */

@import url("//fonts.googleapis.com/earlyaccess/notosanskr.css");

@font-face {
    font-family: "GmarketSansMedium";
    src:
        url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff")
        format("woff");
    font-weight: normal;
    font-style: normal;
}


/* =========================================================
   RESET
========================================================= */

html,
body {
    margin: 0;
    padding: 0;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
textarea,
p,
blockquote,
th,
td,
input,
select,
textarea,
button {
    margin: 0;
    padding: 0;
}

fieldset,
img {
    border: 0 none;
    vertical-align: top;
}

dl,
ul,
ol,
li {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: "";
    content: none;
}

input,
select,
textarea,
button {
    vertical-align: middle;
}

button {
    border: 0 none;
    background-color: transparent;
    cursor: pointer;
}

html {
    width: 100%;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-width: 320px;
    overflow-x: hidden;
    background: #fff;
}

body,
th,
td,
input,
select,
textarea,
button {
    font-family:
        "GmarketSansMedium",
        "Noto Sans KR",
        "Malgun Gothic",
        "맑은 고딕",
        AppleGothic,
        Dotum,
        "돋움",
        sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: #000;
}

a {
    color: #000;
    text-decoration: none;
}

a:active,
a:hover {
    text-decoration: none;
}

address,
caption,
cite,
code,
dfn,
em,
var {
    font-style: normal;
    font-weight: normal;
}

img {
    max-width: 100%;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}


/* =========================================================
   HEADER
========================================================= */

.mr-header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 5000;

    width: 100%;

    background-color: #fff;
    border-bottom: 1px solid #c4c4c4;

    transition:
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.mr-header.is-scrolled {
    border-bottom-color: transparent;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}


/* 헤더 안쪽 */

.mr-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 1200px;
    height: 96px;
    margin: 0 auto;
}


/* =========================================================
   LOGO
========================================================= */

.mr-header__logo {
    flex: 0 0 auto;

    width: 273px;
    margin: 0;
    padding: 0;
}

.mr-header__logo a {
    display: flex;
    align-items: center;

    width: 100%;
    height: 96px;
}

.mr-header__logo img {
    display: block;

    width: auto;
    max-width: 273px;
    height: auto;

    object-fit: contain;
}


/* =========================================================
   PC NAVIGATION
========================================================= */

.mr-header__nav {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;

    height: 96px;
    margin-left: auto;
}

.mr-header__menu {
    position: relative;

    display: flex;
    align-items: stretch;
}

.mr-header__menu-link {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    height: 96px;
    padding: 0 27px;

    font-size: 18px;
    line-height: 1.3;
    font-weight: 400;
    color: #111;
    white-space: nowrap;

    transition: color 0.25s ease;
}

.mr-header__menu-link::after {
    position: absolute;
    right: 27px;
    bottom: 0;
    left: 27px;

    height: 3px;

    background-color: #b9a26a;

    content: "";

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.25s ease;
}

.mr-header__menu:hover > .mr-header__menu-link,
.mr-header__menu-link:hover,
.mr-header__menu-link.is-active {
    color: #9b834b;
}

.mr-header__menu:hover > .mr-header__menu-link::after,
.mr-header__menu-link:hover::after,
.mr-header__menu-link.is-active::after {
    transform: scaleX(1);
}


/* 개별 메뉴 너비 */

.mr-header__menu:nth-child(1) .mr-header__menu-link {
    min-width: 102px;
}

.mr-header__menu:nth-child(2) .mr-header__menu-link {
    min-width: 117px;
}

.mr-header__menu:nth-child(3) .mr-header__menu-link {
    min-width: 188px;
}

.mr-header__menu:nth-child(4) .mr-header__menu-link {
    min-width: 174px;
}


/* 메뉴 화살표 */

.mr-header__arrow {
    display: block;

    width: 7px;
    height: 7px;
    margin-top: -4px;

    border-right: 1px solid #777;
    border-bottom: 1px solid #777;

    transform: rotate(45deg);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.mr-header__menu--dropdown:hover .mr-header__arrow {
    margin-top: 3px;
    border-color: #9b834b;
    transform: rotate(225deg);
}


/* =========================================================
   PC SUB MENU
========================================================= */

.mr-header__submenu {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;

    width: 162px;
    padding: 7px 0;

    visibility: hidden;
    opacity: 0;

    background-color: #fff;
    border: 1px solid #cacaca;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);

    transform:
        translateX(-50%)
        translateY(10px);

    transition:
        visibility 0.25s ease,
        opacity 0.25s ease,
        transform 0.25s ease;

    pointer-events: none;
}

.mr-header__menu--dropdown:hover .mr-header__submenu,
.mr-header__menu--dropdown:focus-within .mr-header__submenu {
    visibility: visible;
    opacity: 1;

    transform:
        translateX(-50%)
        translateY(0);

    pointer-events: auto;
}

.mr-header__submenu a {
    display: flex;
    align-items: center;

    width: 100%;
    min-height: 39px;
    padding: 8px 20px;

    font-size: 14px;
    line-height: 1.4;
    color: #333;

    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.mr-header__submenu a:hover,
.mr-header__submenu a.is-active {
    color: #fff;
    background-color: #b9a26a;
}


/* =========================================================
   MOBILE BUTTON
========================================================= */

.mr-header__toggle {

    position: absolute;
    top: 50%;
    left: 18px;

    display: none;
    align-items: center;
    justify-content: flex-start;

    width: auto;
    height: 42px;
    padding: 0;

    transform: translateY(-50%);
}

.mr-header__toggle-text{

    display:block;

    font-size:20px;
    font-weight:700;
    line-height:1;
    color:#111;
    letter-spacing:-0.5px;

}

/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.mr-mobile-nav {
    display: none;
}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 1240px) {

    .mr-header__inner {
        width: 100%;
        padding: 0 30px;
    }

    .mr-header__logo {
        width: 230px;
    }

    .mr-header__logo img {
        max-width: 230px;
    }

    .mr-header__menu-link {
        padding-right: 18px;
        padding-left: 18px;

        font-size: 16px;
    }

    .mr-header__menu-link::after {
        right: 18px;
        left: 18px;
    }

    .mr-header__menu:nth-child(1) .mr-header__menu-link,
    .mr-header__menu:nth-child(2) .mr-header__menu-link,
    .mr-header__menu:nth-child(3) .mr-header__menu-link,
    .mr-header__menu:nth-child(4) .mr-header__menu-link {
        min-width: auto;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 900px) {

    body.mr-menu-open {
        overflow: hidden;
    }


    /* 헤더 */

    .mr-header__inner {
        width: 100%;
        height: 76px;
        padding: 0 20px;
    }


    /* 로고 */

    .mr-header__logo {
        width: auto;
        max-width: calc(100% - 65px);
    }

    .mr-header__logo a {
        height: 76px;
    }

    .mr-header__logo img {
        width: auto;
        max-width: 220px;
        max-height: 58px;
    }


    /* PC 메뉴 감춤 */

    .mr-header__nav {
        display: none;
    }


    /* 메뉴 버튼 */

    .mr-header__toggle {
    display: flex;
}


    /* 모바일 메뉴 */

    .mr-mobile-nav {
        position: fixed;
        top: 76px;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 4999;

        display: block;

        visibility: hidden;
        overflow-y: auto;
        opacity: 0;

        background-color: rgba(255, 255, 255, 0.99);

        transform: translateY(-15px);

        transition:
            visibility 0.3s ease,
            opacity 0.3s ease,
            transform 0.3s ease;

        pointer-events: none;
    }

    .mr-header.is-mobile-open .mr-mobile-nav {
        visibility: visible;
        opacity: 1;

        transform: translateY(0);

        pointer-events: auto;
    }

    .mr-mobile-nav__inner {
        width: 100%;
        padding: 18px 20px 50px;
    }


    /* 모바일 대메뉴 */

    .mr-mobile-nav__main-link,
    .mr-mobile-nav__group-button {
        display: flex;
        align-items: center;
        justify-content: space-between;

        width: 100%;
        min-height: 62px;
        padding: 0 8px;

        border-bottom: 1px solid #ddd;

        font-size: 17px;
        line-height: 1.4;
        font-weight: 400;
        color: #222;
        text-align: left;
    }

    .mr-mobile-nav__main-link.is-active {
        color: #9b834b;
    }


    /* 모바일 플러스 아이콘 */

    .mr-mobile-nav__plus {
        position: relative;

        display: block;

        width: 18px;
        height: 18px;
    }

    .mr-mobile-nav__plus::before,
    .mr-mobile-nav__plus::after {
        position: absolute;
        top: 50%;
        left: 50%;

        background-color: #333;

        content: "";

        transform: translate(-50%, -50%);

        transition: transform 0.25s ease;
    }

    .mr-mobile-nav__plus::before {
        width: 16px;
        height: 1px;
    }

    .mr-mobile-nav__plus::after {
        width: 1px;
        height: 16px;
    }

    .mr-mobile-nav__group.is-open
    .mr-mobile-nav__plus::after {
        transform:
            translate(-50%, -50%)
            rotate(90deg);
    }


    /* 모바일 서브메뉴 */

    .mr-mobile-nav__submenu {
        display: grid;
        grid-template-rows: 0fr;

        overflow: hidden;

        background-color: #f7f5f0;

        transition:
            grid-template-rows 0.3s ease,
            padding 0.3s ease;
    }

    .mr-mobile-nav__submenu::before {
        min-height: 0;
        content: "";
    }

    .mr-mobile-nav__group.is-open
    .mr-mobile-nav__submenu {
        grid-template-rows: 1fr;
        padding: 9px 0;
    }

    .mr-mobile-nav__submenu a {
        display: flex;
        align-items: center;

        min-height: 45px;
        padding: 8px 24px;

        font-size: 14px;
        line-height: 1.4;
        color: #555;

        border-left: 3px solid transparent;
    }

    .mr-mobile-nav__submenu a:hover {
        color: #9b834b;
        border-left-color: #b9a26a;
        background-color: #fff;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media screen and (max-width: 480px) {

    .mr-header__inner {
        height: 68px;
        padding: 0 15px;
    }

    .mr-header__logo a {
        height: 68px;
    }

    .mr-header__logo img {
        max-width: 185px;
        max-height: 50px;
    }

    .mr-mobile-nav {
        top: 68px;
    }

    .mr-mobile-nav__inner {
        padding-right: 16px;
        padding-left: 16px;
    }

    .mr-mobile-nav__main-link,
    .mr-mobile-nav__group-button {
        min-height: 58px;
        font-size: 16px;
    }

}


/* =========================================================
   FOOTER
========================================================= */

.mr-footer {
    width: 100%;
    background-color: #333;
}

.mr-footer__inner {
    display: grid;
    grid-template-columns: 308px 584px 308px;
    align-items: start;

    width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}


/* =========================================================
   FOOTER LOGO
========================================================= */

.mr-footer__logo {
    width: 308px;
}

.mr-footer__logo img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
}


/* =========================================================
   FOOTER INFORMATION
========================================================= */

.mr-footer__info {
    width: 584px;
}

.mr-footer__menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    min-height: 23px;
}

.mr-footer__menu a,
.mr-footer__menu span {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 300;
    color: #fff;
}

.mr-footer__menu a {
    transition: opacity 0.2s ease;
}

.mr-footer__menu a:hover {
    opacity: 0.7;
}

.mr-footer__menu span {
    margin: 0 5px;
}


.mr-footer__company {
    margin-top: 10px;
}

.mr-footer__company p {
    min-height: 20px;

    font-size: 12px;
    line-height: 20px;
    font-weight: 300;
    color: #fff;
}

.mr-footer__divider {
    margin: 0 3px;
}


.mr-footer__copyright {
    margin-top: 20px;

    font-size: 12px;
    line-height: 1.6;
    font-weight: 300;
    color: #cfcaca;
}


/* =========================================================
   FOOTER CONTACT
========================================================= */

.mr-footer__contact {
    width: 308px;
    text-align: right;
}

.mr-footer__contact-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.mr-footer__reservation,
.mr-footer__phone-button {
    display: block;
}

.mr-footer__reservation img {
    display: block;

    width: 170px;
    height: 37px;
}

.mr-footer__phone-button img {
    display: block;

    width: 37px;
    height: 37px;
}

.mr-footer__phone-number {
    display: inline-block;
    margin-top: 20px;

    font-size: 30px;
    line-height: 1.3;
    font-weight: 300;
    color: #edebeb;
    white-space: nowrap;
}


/* =========================================================
   FOOTER TABLET
========================================================= */

@media screen and (max-width: 1240px) {

    .mr-footer__inner {
        grid-template-columns: 250px 1fr 250px;

        width: 100%;
        padding: 40px 30px;
    }

    .mr-footer__logo {
        width: 250px;
    }

    .mr-footer__info {
        width: auto;
        padding: 0 25px;
    }

    .mr-footer__contact {
        width: 250px;
    }

    .mr-footer__phone-number {
        font-size: 26px;
    }

}


/* =========================================================
   FOOTER MOBILE
========================================================= */

@media screen and (max-width: 900px) {

    .mr-footer__inner {
        display: flex;
        flex-direction: column;

        width: 100%;
        padding: 38px 20px 40px;
    }


    /* 로고 */

    .mr-footer__logo {
        width: 100%;
    }

    .mr-footer__logo img {
        max-width: 220px;
    }


    /* 정보 */

    .mr-footer__info {
        order: 2;

        width: 100%;
        padding: 0;
    }

    .mr-footer__menu {
        margin-top: 26px;
    }

    .mr-footer__menu a,
    .mr-footer__menu span {
        font-size: 13px;
    }

    .mr-footer__company {
        margin-top: 15px;
    }

    .mr-footer__company p {
        min-height: auto;
        margin-bottom: 4px;

        font-size: 11px;
        line-height: 1.7;
        word-break: keep-all;
    }

    .mr-footer__copyright {
        margin-top: 17px;
        font-size: 11px;
    }


    /* 연락처 */

    .mr-footer__contact {
        order: 1;

        width: 100%;
        margin-top: 25px;

        text-align: left;
    }

    .mr-footer__contact-buttons {
        justify-content: flex-start;
    }

    .mr-footer__phone-number {
        margin-top: 16px;

        font-size: 26px;
    }

}


/* =========================================================
   FOOTER SMALL MOBILE
========================================================= */

@media screen and (max-width: 480px) {

    .mr-footer__inner {
        padding: 32px 16px 35px;
    }

    .mr-footer__logo img {
        max-width: 190px;
    }

    .mr-footer__menu {
        gap: 0;
    }

    .mr-footer__menu a,
    .mr-footer__menu span {
        font-size: 12px;
    }

    .mr-footer__menu span {
        margin: 0 3px;
    }

    .mr-footer__contact-buttons {
        flex-wrap: wrap;
    }

    .mr-footer__phone-number {
        font-size: 24px;
    }

}

/* =========================================================
   RIGHT FIX MENU
========================================================= */

.mr-fixed-menu{
    position:fixed;
    right:30px;
    bottom:30px;

    z-index:9999;

    display:flex;
    flex-direction:column;
    gap:12px;
}

.mr-fixed-menu__item,
.mr-fixed-menu__top{

    display:block;

    transition:.25s;
}

.mr-fixed-menu__item:hover,
.mr-fixed-menu__top:hover{

    transform:translateY(-4px);

}

.mr-fixed-menu img{

    display:block;
    width:auto;
    height:auto;

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width:768px){

    .mr-fixed-menu{

        right:16px;
        bottom:16px;

    }

    .mr-fixed-menu__item:nth-child(2),
    .mr-fixed-menu__top{

        display:none;

    }

}


/* =========================================================
   MAIN PAGE
========================================================= */

.mr-main-page {
    width: 100%;
    overflow: hidden;
}

.mr-main-mobile {
    display: none;
}


/* =========================================================
   PC VIDEO
========================================================= */

.mr-main-video {
    position: relative;

    width: 100%;
    height: 0;
    padding-bottom: 56.25%;

    overflow: hidden;
    background: #000;
}

.mr-main-video__media {
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.mr-main-video__text {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;

    transform: translate(-50%, -50%);

    text-align: center;
}

.mr-main-video__text img {
    display: block;

    width: auto;
    max-width: none;
    height: auto;
}


/* =========================================================
   PC MAIN IMAGES
========================================================= */

.mr-main-image {
    width: 100%;
    overflow: hidden;
    text-align: center;
}

.mr-main-image a {
    display: block;
    width: 100%;
}

.mr-main-image img {
    display: block;

    width: auto;
    max-width: none;
    height: auto;
    margin: 0 auto;
}


/* =========================================================
   PC BOTTOM BANNER
========================================================= */

.mr-main-bottom {
    width: 100%;
    background: #1e3964;
}

.mr-main-bottom__inner {
    display: grid;
    grid-template-columns: 560px 940px;
    align-items: start;

    width: 1500px;
    margin: 0 auto;
    padding: 50px 0 90px;
}

.mr-main-bottom__left {
    width: 560px;
}

.mr-main-bottom__left img {
    display: block;

    width: auto;
    max-width: none;
    height: auto;
}

.mr-main-bottom__right {
    display: flex;
    align-items: flex-start;

    width: 940px;
}

.mr-main-bottom__right img {
    display: block;
    flex: 0 0 auto;
}

.mr-main-bottom__right img + img {
    margin-left: 20px;
}


/* =========================================================
   PC SMALL SCREEN
========================================================= */

@media screen and (max-width: 1500px) {

    .mr-main-image img {
        max-width: 100%;
    }

    .mr-main-bottom__inner {
        grid-template-columns: 37.333% 62.667%;

        width: 100%;
        padding-right: 30px;
        padding-left: 30px;
    }

    .mr-main-bottom__left,
    .mr-main-bottom__right {
        width: 100%;
    }

    .mr-main-bottom__left img {
        max-width: 100%;
    }

    .mr-main-bottom__right img:first-child {
        width: 55.32%;
        height: auto;
    }

    .mr-main-bottom__right img:last-child {
        width: calc(42.55% - 20px);
        height: auto;
    }

}


/* =========================================================
   MOBILE MAIN
========================================================= */

@media screen and (max-width: 900px) {

    .mr-main-pc {
        display: none;
    }

    .mr-main-mobile {
        display: block;
        width: 100%;
    }

    .mr-mobile-main-image {
        width: 100%;
    }

    .mr-mobile-main-image a {
        display: block;
        width: 100%;
    }

    .mr-mobile-main-image img {
        display: block;

        width: 100%;
        max-width: 100%;
        height: auto;
    }


    /* 모바일 하단 배너 */

    .mr-mobile-bottom {
        width: 100%;
        background: #1e3964;
    }

    .mr-mobile-bottom__inner {
        width: 95%;
        margin: 0 auto;
        padding: 20px 0;
    }

    .mr-mobile-bottom__banner {
        width: 100%;
        text-align: center;
    }

    .mr-mobile-bottom__banner + .mr-mobile-bottom__banner {
        margin-top: 20px;
    }

    .mr-mobile-bottom__banner img {
        display: block;

        width: 90%;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }

}

/* =========================================================
   개인정보처리방침 모달
========================================================= */

body.mr-privacy-open{
    overflow:hidden;
}

.mr-privacy-modal{
    position:fixed;
    inset:0;
    z-index:20000;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:30px;

    visibility:hidden;
    opacity:0;

    transition:
        visibility .25s ease,
        opacity .25s ease;

    pointer-events:none;
}

.mr-privacy-modal.is-open{
    visibility:visible;
    opacity:1;
    pointer-events:auto;
}

.mr-privacy-modal__backdrop{
    position:absolute;
    inset:0;

    background:rgba(0,0,0,.68);
    backdrop-filter:blur(2px);
}

.mr-privacy-modal__dialog{
    position:relative;
    z-index:1;

    display:flex;
    flex-direction:column;

    width:min(920px,100%);
    max-height:86vh;

    overflow:hidden;

    background:#fff;
    border-radius:4px;
    box-shadow:0 25px 80px rgba(0,0,0,.35);

    transform:translateY(18px) scale(.985);

    transition:transform .25s ease;
}

.mr-privacy-modal.is-open .mr-privacy-modal__dialog{
    transform:translateY(0) scale(1);
}

.mr-privacy-modal__header{
    position:relative;

    display:flex;
    align-items:center;
    justify-content:space-between;

    flex:0 0 auto;

    min-height:78px;
    padding:0 78px 0 32px;

    background:#fff;
    border-bottom:1px solid #dedbd4;
}

.mr-privacy-modal__header h2{
    margin:0;

    font-size:24px;
    line-height:1.35;
    font-weight:600;
    color:#111;
    letter-spacing:-.5px;
}

.mr-privacy-modal__close{
    position:absolute;
    top:50%;
    right:24px;

    width:42px;
    height:42px;

    border:0;
    border-radius:50%;

    background:#f2f0eb;

    transform:translateY(-50%);

    transition:
        background-color .2s ease,
        transform .2s ease;
}

.mr-privacy-modal__close:hover{
    background:#e5e0d6;
    transform:translateY(-50%) rotate(90deg);
}

.mr-privacy-modal__close span::before,
.mr-privacy-modal__close span::after{
    position:absolute;
    top:50%;
    left:50%;

    width:19px;
    height:2px;

    background:#222;

    content:"";
}

.mr-privacy-modal__close span::before{
    transform:translate(-50%,-50%) rotate(45deg);
}

.mr-privacy-modal__close span::after{
    transform:translate(-50%,-50%) rotate(-45deg);
}

.mr-privacy-modal__body{
    flex:1 1 auto;

    min-height:0;
    padding:30px 34px;

    overflow-y:auto;
    overscroll-behavior:contain;

    background:#fff;

    outline:none;
}

.mr-privacy-modal__body pre{
    margin:0;

    overflow:visible;

    font-family:
        "GmarketSansMedium",
        "Noto Sans KR",
        sans-serif;

    font-size:14px;
    line-height:1.85;
    font-weight:300;
    color:#333;

    white-space:pre-wrap;
    word-break:keep-all;
    overflow-wrap:anywhere;
}

.mr-privacy-modal__footer{
    display:flex;
    align-items:center;
    justify-content:center;

    flex:0 0 auto;

    padding:18px 30px 22px;

    background:#fff;
    border-top:1px solid #e5e2dc;
}

.mr-privacy-modal__confirm{
    min-width:150px;
    height:48px;
    padding:0 30px;

    border:0;
    border-radius:2px;

    background:#9b834b;

    font-size:15px;
    line-height:48px;
    font-weight:500;
    color:#fff;
    text-align:center;

    transition:
        background-color .2s ease,
        transform .2s ease;
}

.mr-privacy-modal__confirm:hover{
    background:#826b39;
    transform:translateY(-1px);
}


/* =========================================================
   개인정보처리방침 모달 - 모바일
========================================================= */

@media screen and (max-width:768px){

    .mr-privacy-modal{
        align-items:flex-end;
        padding:0;
    }

    .mr-privacy-modal__dialog{
        width:100%;
        max-height:92dvh;

        border-radius:16px 16px 0 0;

        transform:translateY(100%);
    }

    .mr-privacy-modal.is-open .mr-privacy-modal__dialog{
        transform:translateY(0);
    }

    .mr-privacy-modal__header{
        min-height:66px;
        padding:0 66px 0 20px;
    }

    .mr-privacy-modal__header h2{
        font-size:20px;
    }

    .mr-privacy-modal__close{
        right:14px;

        width:40px;
        height:40px;
    }

    .mr-privacy-modal__body{
        padding:22px 20px 28px;

        -webkit-overflow-scrolling:touch;
    }

    .mr-privacy-modal__body pre{
        font-size:13px;
        line-height:1.8;
        word-break:normal;
    }

    .mr-privacy-modal__footer{
        padding:14px 16px calc(14px + env(safe-area-inset-bottom));
    }

    .mr-privacy-modal__confirm{
        width:100%;
        height:50px;
        line-height:50px;
        font-size:15px;
    }

}


@media screen and (max-width:380px){

    .mr-privacy-modal__header{
        min-height:60px;
    }

    .mr-privacy-modal__header h2{
        font-size:18px;
    }

    .mr-privacy-modal__body{
        padding-right:16px;
        padding-left:16px;
    }

    .mr-privacy-modal__body pre{
        font-size:12px;
        line-height:1.75;
    }

}


/* =========================================================
   FINAL MOBILE HEADER / SUBMENU / FIXED BUTTON FIX
========================================================= */

.mr-mobile-nav__submenu[hidden]{
    display:none !important;
}

@media screen and (max-width:900px){

    /* 헤더 안쪽을 화면 중앙 기준으로 사용 */
    .mr-header__inner{
        position:relative !important;
        display:block !important;
        width:100% !important;
        height:76px !important;
        padding:0 !important;
    }

    /* 메뉴 버튼: 왼쪽 고정 */
    .mr-header__toggle{
        position:absolute !important;
        top:50% !important;
        left:18px !important;
        right:auto !important;
        z-index:20 !important;

        display:flex !important;
        align-items:center !important;
        justify-content:flex-start !important;

        width:auto !important;
        height:42px !important;
        margin:0 !important;
        padding:0 !important;

        transform:translateY(-50%) !important;
    }

    /* 로고: 화면 정중앙 고정 */
    .mr-header__logo{
        position:absolute !important;
        top:50% !important;
        left:50% !important;
        right:auto !important;
        z-index:10 !important;

        display:block !important;

        width:auto !important;
        max-width:calc(100% - 140px) !important;
        margin:0 !important;
        padding:0 !important;

        transform:translate(-50%,-50%) !important;
    }

    .mr-header__logo a{
        display:flex !important;
        align-items:center !important;
        justify-content:center !important;

        width:auto !important;
        height:76px !important;
        margin:0 !important;
    }

    .mr-header__logo img{
        display:block !important;

        width:auto !important;
        max-width:210px !important;
        max-height:56px !important;
        height:auto !important;
        margin:0 auto !important;

        object-fit:contain !important;
    }

    /* PC 메뉴 감춤 */
    .mr-header__nav{
        display:none !important;
    }

    /* 모바일 전체 메뉴 */
    .mr-mobile-nav{
        top:76px !important;
    }

    /* 하위 메뉴는 hidden일 때 무조건 닫힘 */
    .mr-mobile-nav__submenu,
    .mr-mobile-nav__group:not(.is-open) > .mr-mobile-nav__submenu{
        display:none !important;
        grid-template-rows:none !important;
        height:auto !important;
        max-height:0 !important;
        padding:0 !important;
        overflow:hidden !important;
    }

    .mr-mobile-nav__group.is-open > .mr-mobile-nav__submenu:not([hidden]){
        display:block !important;
        max-height:none !important;
        padding:9px 0 !important;
        overflow:visible !important;
    }

    .mr-mobile-nav__submenu::before{
        display:none !important;
        content:none !important;
    }

    /* + 버튼 */
    .mr-mobile-nav__plus{
        position:relative !important;
        display:block !important;
        flex:0 0 18px !important;

        width:18px !important;
        height:18px !important;
    }

    .mr-mobile-nav__plus::before,
    .mr-mobile-nav__plus::after{
        position:absolute !important;
        top:50% !important;
        left:50% !important;

        display:block !important;
        background:#555 !important;
        content:"" !important;

        transform:translate(-50%,-50%) !important;
    }

    .mr-mobile-nav__plus::before{
        width:16px !important;
        height:1px !important;
    }

    .mr-mobile-nav__plus::after{
        width:1px !important;
        height:16px !important;
        opacity:1 !important;
    }

    /* 열렸을 때 세로선만 감춰서 - 표시 */
    .mr-mobile-nav__group.is-open
    > .mr-mobile-nav__group-button
    .mr-mobile-nav__plus::after{
        opacity:0 !important;
    }

    /* 모바일 고정 버튼 */
    .mr-fixed-menu{
        right:12px !important;
        bottom:12px !important;

        display:flex !important;
        flex-direction:column !important;
        align-items:flex-end !important;
        gap:8px !important;
    }

    /* 전화상담 + TOP 표시 */
    .mr-fixed-menu__item:first-child,
    .mr-fixed-menu__top{
        display:block !important;
    }

    /* 오시는길은 모바일에서 감춤 */
    .mr-fixed-menu__item:nth-child(2){
        display:none !important;
    }

    .mr-fixed-menu__item:first-child img{
        width:68px !important;
        max-width:68px !important;
        height:auto !important;
    }

    .mr-fixed-menu__top img{
        width:42px !important;
        max-width:42px !important;
        height:42px !important;
        object-fit:contain !important;
    }

}

@media screen and (max-width:480px){

    .mr-header__inner{
        height:68px !important;
    }

    .mr-header__toggle{
        left:15px !important;
    }

    .mr-header__toggle-text{
        font-size:17px !important;
    }

    .mr-header__logo{
        max-width:calc(100% - 125px) !important;
    }

    .mr-header__logo a{
        height:68px !important;
    }

    .mr-header__logo img{
        max-width:175px !important;
        max-height:48px !important;
    }

    .mr-mobile-nav{
        top:68px !important;
    }

    .mr-fixed-menu__item:first-child img{
        width:60px !important;
        max-width:60px !important;
    }

    .mr-fixed-menu__top img{
        width:38px !important;
        max-width:38px !important;
        height:38px !important;
    }

}