@charset "utf-8";

:root {
    --main-color: #0296E1;
    --main-color2: #EA4F0A;
    --sub-color: #172A88;
    --text: #212429;
    --text2: #231815;
    --se: #12AFCF;
    --hb: #FE7F0F;
    --font-en: "Nanum Myeongjo", serif;

    /*font-size*/
    --f8: 0.5rem;
    --f10: 0.63rem;
    --f12: 0.75rem;
    --f13: 0.81rem;
    --f14: 0.88rem;
    --f15: 0.94rem;
    --f16: 1rem;
    --f18: 1.13rem;
    --f20: 1.25rem;
    --f22: 1.38rem;
    --f24: 1.5rem;
    --f28: 1.75rem;
    --f32: 2rem;
    --f36: 2.25rem;
    --f40: 2.5rem;
    --f46: 2.88rem;
    --f48: 3rem;
    --f64: 4rem;
}

html {
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
    font-weight: 400;
    font-size: 16px;
}

body {
    color: var(--black);
    min-width: 1200px;
    font-size: 1rem;
}

.btn {
    cursor: pointer;
}

.bold {
    font-weight: 700 !important;
}

.strong {
    font-weight: 600 !important;
}

table {
    table-layout: fixed;
}

input[type="text"], input[type="number"], input[type="password"] {
    width: 100%;
    height: 48px;
    background-color: #FAFAFA;
    border: 0;
    padding: 0 16px;
}

input::placeholder {
    color: #cbcbcb;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* 셀렉트 박스 */
select {
    width: 100%;
    border: none;
    background: #FAFAFA url(/images/ic_under.svg?v=1) center right 16px no-repeat !important;
    height: 48px;
    padding: 0 16px;
    background-size: 16px 9px;
    color: #333;
}
select option {
    color: #333;
}
select:has(option[value=""]:checked) {
    color: #cbcbcb;
}

/* 캘린더 인풋 */
input[class='wedding_date'] {
    position: relative;
    background: #FAFAFA url("/images/ic_date.svg") center right 16px no-repeat;
    background-size: 32px 32px;
    padding: 0 16px;
    outline: none;
    height: 48px;
    border: none;
    width: 100%;
    color: #333;
    box-sizing: border-box;
}

/* 플레이스홀더 색상 (type="text"일 때) */
input[class='wedding_date']::placeholder {
    color: #cbcbcb;
    opacity: 1;
}

/* date 타입일 때 나타나는 기본 아이콘들 제거 */
input[type="date"]::-webkit-clear-button,
input[type="date"]::-webkit-inner-spin-button {
    display: none;
}

/* 캘린더 피커가 아이콘 위치와 상관없이 전체를 클릭해도 뜨게 설정 */
input[type='date']::-webkit-calendar-picker-indicator {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    color: transparent;
    cursor: pointer;
}
/* date input end */

*:focus {
    outline: none;
}

textarea {
    resize: none;
}

.overlay-bg {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 100;
}

/* header */
header.pc {
    position: fixed;
    inset: 0;
    height: 80px;
    z-index: 90;
}

header.pc .nav-area {
    position: relative;
    height: 100%;
    background: #fff;
}

header .top-left {
    position: absolute;
    top: 50%;
    left: clamp(1.25rem, -12.9167rem + 18.8889vw, 9.75rem);
    transform: translateY(-50%);
    z-index: 5;
    /*width: 200px;*/
    height: 60px;
}

header .weather-area {
    display: flex;
    align-items: center;
    color: #434343;
    height: 100%;
    width: max-content;
}

header .weather-area em {
    width: 10px;
}

header .logo-area img {
    width: 165px;
}

header.pc .logo-area,
header.pc .weather-area {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.1s ease-in-out, visibility 0.1s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

header.pc.main .logo-area{
    opacity: 0;
    visibility: hidden;
}

header.pc .logo-area.active,
header.pc .weather-area.active {
    opacity: 1;
    visibility: visible;
}

header.pc .top-right {
    position: absolute;
    top: 50%;
    right: clamp(1.25rem, -12.9167rem + 18.8889vw, 9.75rem);
    transform: translateY(-50%);
    filter: invert(1);
    z-index: 100;
}
header.pc .top-right img {
    display: none;
}
header.pc .top-right .close {
    display: block;
}
header.pc .top-right .open {
    filter: invert(1);
}
header.pc.main .top-right{
    filter: invert(0);
}
header.pc.hovering .nav-area {
    background: transparent;
}

header.pc nav {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 10;
}

header .nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(3.375rem, -1rem + 5.8333vw, 6rem);
}
header.pc.main .nav-menu {
    position: relative;
    justify-content: center;
    align-items: center;
    display: none;
}
header.pc.main .nav-menu.active {
    display: flex;
    color: #231815;
}

header.pc.main .nav-menu::after {
    content: '';
    display: block;
    clear: both;
}

.gnb {
    text-align: center;
    position: relative;
}

.gnb a {
    display: block;
    color: #231815;
    line-height: 80px;
    transition: 0.1s color ease-in-out;
    position: relative;
    font-size: var(--f20);
    font-weight: 600;
}

header.pc .lnb {
    position: absolute;
    width: 100%;
    top: 0;
    display: none;
    background: #fff;
    height: 100vh;
    z-index: 99;
}

header.pc .lnb.show {
    display: block;
}

.lnb-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    position: absolute;
}

.btn-lnb-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 8px;
    margin: 48px 0 80px;
}

.btn-lnb-area a {
    width: 140px;
    line-height: 34px;
    text-align: center;
    border: 1px solid #999;
    background-color: #fff;
    border-radius: 60px;
    font-size: var(--f15);
    font-weight: 500;
    color: #484848;
}

.btn-lnb-area a.on {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    color: #fff;
}
.btn-lnb-area a.my {
    background-color: #222;
    border: 1px solid #222;
    color: #fff;
}

.lnb-box {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0 100px;
    text-align: center;
    position: relative;
}
.lnb-box:before {
    content: '';
    position: absolute;
    top: 65px;
    left: 50%;
    width: clamp(66.875rem, 51.25rem + 20.8333vw, 76.25rem);
    height: 1px;
    background: #ccc;
    transform: translateX(-50%);
}

.lnb-box ul li h3 {
    font-size: var(--f32);
    font-weight: 500;
    padding-bottom: 54px;
}

.lnb-box ul li a {
    padding: 16px 0;
    line-height: inherit;
    display: block;
    transition: 0.2s all ease;
    font-weight: 300;
    color: #424242;
    font-size: var(--f20);
}

.lnb-box ul li a:hover {
    font-weight: 700;
}

.lnb-close {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: var(--f18);
    font-weight: 500;
    margin-top: 98px;
    cursor: pointer;
}
.lnb-close img {
    margin-bottom: 10px;
}

.menu-bg {
    width: 100%;
    height: 0;
    background: rgba(248, 248, 248, 1);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0;
}

.menu-bg.open {
    height: 460px;
    opacity: 1;
}

/* header-mobile */
header.mobile {
    position: fixed;
    inset: 0;
    height: 66px;
    background-color: #FFF;
    box-shadow: 4px 4px 6px 0 rgba(0, 0, 0, 0.03);
    z-index: 90;
    display: none;
}

header.mobile.main .toggle-btn span {
    background: #fff;
}
header.mobile.main .logo-w {
    display: block;
}
header.mobile .logo-w {
    display: none;
}

header.mobile.main .logo-area,
header.mobile.main .weather-area {
    opacity: 0;
    visibility: hidden;
}

header.mobile .logo-area,
header.mobile .weather-area {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

header.mobile .logo-area.active,
header.mobile .weather-area.active {
    opacity: 1;
    visibility: visible;
}

header.mobile .top-left {
    left: 20px;
    top: 40px;
}

header.mobile .logo-area img {
    width: 120px;
}

header.mobile .top-right {
    right: 56px;
}

.toggle-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
}

.toggle-btn span {
    display: block;
    background: #222;
    width: 24px;
    height: 3px;
    border-radius: 3px;
    transition: 0.1s margin 0.1s, 0.1s transform;
}

.toggle-btn span:nth-of-type(1) {
    margin-bottom: 4px;
}

.toggle-btn span:nth-of-type(2) {
}

.toggle-btn span:nth-of-type(3) {
    margin-top: 4px;
}

#toggleNav {
    display: none;
}

#toggleNav:checked + label.toggle-btn span {
    background-color: #fff;
    transition: 0.1s margin, 0.1s transform 0.1s;
}

#toggleNav:checked + label.toggle-btn span:nth-of-type(1) {
    margin-bottom: -1px;
    transform: rotate(45deg);
}

#toggleNav:checked + label.toggle-btn span:nth-of-type(2) {
    transform: rotate(45deg);
    display: none;
}

#toggleNav:checked + label.toggle-btn span:nth-of-type(3) {
    margin-top: -2px;
    transform: rotate(135deg);
}

#toggleNav:checked ~ nav {
    opacity: 1;
    visibility: visible;
    z-index: 90;
}

#toggleNav:checked ~ nav ul li {
    transform: translateY(0);
    opacity: 1;
}

header.mobile nav {
    background-color: #F0F0F0;
    position: fixed;
    inset: 0;
    width: 100% !important;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 10;
}

.nav-box {
    height: 100%;
}

.nav-header {
    width: 100%;
    height: 134px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nav-header .menu-login {
    margin-top: 20px;
    display: flex;
    align-items: center;
    width: 100%;
}

.nav-header .menu-login a {
    flex: 1;
    text-align: center;
    line-height: 34px;
    background-color: #fff;
    color: #484848;
    font-size: var(--f14);
}

.nav-header .menu-login a.login {
    background-color: var(--main-color);
    color: #fff;
}

.nav-header .menu-login a.mypage {
    background-color: #222;
    color: #fff;
}

.menu-list {
    position: relative;
    transition: all 0.3s ease-in-out;
    height: calc(100% - 124px);
    overflow-y: auto;
    /*margin-top: 10px;*/
}

.menu-list li a {
    height: 80px;
    color: #292929;
    position: relative;
    font-weight: 400;
    display: flex;
    align-items: center;
    padding-left: 30px;
    /*border-bottom: 1px solid #cbcbcb;*/
}

.menu-list li a p {
    font-size: var(--f24);
    text-align: left;
}

.menu-list li a p span {
    font-family: var(--font-en);
    font-size: var(--f12);
    color: #A9A9A9;
    display: block;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.menu-list li a b {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 60px;
    color: #292929;
}

.menu-list li a b span {
    position: relative;
    width: 15px;
    height: 15px;
    display: inline-block;
}

.menu-list li a b span::before,
.menu-list li a b span::after {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    width: 11px;
    height: 1px;
    background-color: #292929;
    transition: 0.2s ease;
}

.menu-list li a b span::before {
    transform: rotate(0deg);
}

.menu-list li a b span::after {
    transform: rotate(90deg);
}

.menu-list li a b span.click::after {
    display: none;
}

/* 기본적으로 숨김 */
.menu-list .lnb {
    display: none;
    background: #fff;
    padding: 10px 0;
}

.menu-list .lnb a {
    height: 35px;
    font-size: var(--f14);
    position: relative;
    padding-left: 30px;
}

.menu-list .lnb a::before {
    content: '·';
    margin-right: 8px;
}

/* header-main pc&mobile */
.header.pc.main .logo-area{
    opacity: 1 !important;
}
header.pc.main,
header.mobile.main {
    background-color: transparent;
    transition: background-color 0.1s ease;
    box-shadow: none;
}

header.pc.main .nav-area,
header.mobile.main .nav-area {
    background-color: transparent;
    box-shadow: none;
}

header.pc.main .weather-area,
header.mobile.main .weather-area {
    color: #fff;
}

header.pc.main .weather-area img,
header.mobile.main .weather-area img {
    filter: brightness(0) invert(1);
}

header.pc.main .gnb a {
    color: #fff;
}

/* footer */
footer {
    width: 100%;
    background: #F5F5F5;
    text-align: center;
    color: #222;
    position: relative;
    padding-bottom: 58px;
}

.imp {
    color: var(--main-color);
}

.footer-top {
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    padding: 34px 15px;
    font-size: var(--f18);
}
.footer-top .group {
    max-width: 1310px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    align-items: center;
}

.f-terms-list {
    display: flex;
    align-items: center;
    gap: 32px;
}
.f-terms-list li {
    cursor: pointer;
}

.footer-top .tel {
    display: flex;
    gap: 16px;
    color: #666666;
    align-items: center;
}
.footer-top .tel h1 {
    display: flex;
    gap: 9px;
    align-items: center;
}
.footer-top .tel span {
    color: #222;
    font-size: var(--f24);
    font-weight: 800;
}

.footer-bottom {
    padding: 32px 0 40px;
    max-width: 728px;
    margin: 0 auto;
}
.info-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 33px;
}
.info-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}
.info-list li span {
    font-weight: 700;
}
.info-list li:after {
    content:'';
    position:absolute;
    top:50%;
    left:-16px;
    transform:translateY(-50%);
    width:1px;
    height:10px;
    background:#D9D9D9;
}
.info-list li:first-child:after {
    display:none;
}

.footer-bottom .copy {
    margin: 33px auto 40px;
    font-size: var(--f12);
    color: #666;
}

.icon-list {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin: 0 auto;
}

.scroll-top {
    position: absolute;
    top: 95px;
    right: 84px;
    width: 72px;
    height: 72px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-top a {
    font-size: var(--f14);
    text-transform: uppercase;
    display: block;
    width: 100%;
}
.scroll-top a img {
    display: block;
    margin: 0 auto 5px;
}

/* aside */
.quick-menu {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: auto;
    z-index: 1;
}

.quick-menu-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.quick-menu-btn .btn {
    border: none;
    display: flex;
    align-items: center;
    font-weight: 500;
    overflow: hidden;
    padding: 20px 16px;
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
    justify-content: flex-start;
    position: relative;
    background-color: #F9F9F9;
    text-align: left;
    font-size: var(--f18);
}
.quick-menu-btn .btn .label {
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
    margin-right: 20px;
}

/* 공통 아이콘 위치 */
.quick-menu-btn .icon-wrap {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.quick-menu-btn .icon {
    transition: opacity 0.3s ease;
}

/* aside hover */
.quick-menu-btn .btn:hover {
    width: 144px !important;
    background: var(--main-color);
    border-radius: 16px 0 0 16px;
}
.quick-menu-btn .btn:hover .label {
    opacity: 1;
    transform: translateX(0);
    color: #fff;
}
.quick-menu-btn .icon.hover {
    opacity: 0;
    position: absolute;
}

.quick-menu-btn .btn:hover .icon.default {
    opacity: 0;
}

.quick-menu-btn .btn:hover .icon.hover {
    opacity: 1;
}
/* aside end */


/* 하단 바 */
.mobile-btn {
    display: none;
}
.bottom-cta {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    max-width: 1320px;
    background: #222;
    border-radius: 16px 16px 0 0;
    z-index: 89;
}

.cta-wrap {
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px 248px 15px 24px;
    justify-content: space-between;
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.cta-content {
    flex: 0 0 auto;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    max-width: 450px;
}

.cta-reser {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    min-width: 232px;
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--f20);
    font-weight: 700;
    border-radius: 0 16px 0 0;
    color: #fff;
    gap: 4px;
}
.bottom-cta .flex-layout {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    left: 0;
    transform: none;
}

/* 날씨영역 */
.weather-select {
    position: relative;
    flex: 0 0 auto;
    min-width: 215px;
    color: #F3F3F3;
}

.select-trigger {
    width: 100%;
    height: 40px;
    background: transparent;
    color: #F3F3F3;
    border: none;
    border-radius: 12px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 12px;
}

.select-trigger .arrow {
    transition: transform 0.25s ease;
}

.select-options {
    position: absolute;
    bottom: 120%;
    left: 0;
    width: 100%;
    background: #222;
    list-style: none;
    margin: 0;
    display: none;
}

.select-options li {
    padding: 12px 0 7px 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 12px;
}

.select-options li:hover {
    background: #333;
}

.select-options li.active {
    background: #2a2a2a;
}

.weather-select.open .select-options {
    display: block;
}

.weather-select.open .arrow {
    transform: rotate(180deg);
}
/*날씨 end*/

.btn-group {
    display: flex;
    gap: 8px;
}

.info-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-wrap span {
    color: #eee;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.info-wrap a {
    border: 1px solid #fff;
    color: #fff;
    border-radius: 60px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

/*로그인후*/
.reser-info {
    display: flex;
    align-items: center;
    gap: 3px 48px;
    font-size: var(--f18);
    flex-wrap: wrap;
    justify-content: flex-end;
    width: 100%;
    margin-right: 16px;
}
.reser-info li {
    position: relative;
    color: #fff;
}
.reser-info li:before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -24px;
    width: 1px;
    height: 14px;
    background: #999;
}
.reser-info li:last-child:before {
    display: none;
}
.reser-info li span {
    color: var(--main-color);
    margin-right: 0;
    font-weight: 700;
    display: inline;
}


.cta-reser .icon-animation {
    transition:all 0.3s;
}
.cta-reser:hover .icon-animation {
    transform:translate(2px, -2px);
    transition:all 0.3s;
}
/* 하단 바 end */

/* 점검중 페이지 */
.repair-wrap {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.repair-wrap:before {
    position:absolute;
    content:'';
    top:0;
    left:0;
    width:100%;
    height:440px;
    background: linear-gradient(180deg, #0296E1 0%, rgba(255, 255, 255, 0) 85.58%);
    opacity: 0.4;
    pointer-events: none;
    z-index: -1;
}

.re-text h1 {
    font-size: var(--f14);
}
.re-text h2 {
    font-size: var(--f64);
    margin: 24px 0 36px;
    font-weight: 700;
    color: var(--sub-color);
}
.re-text p {
    font-size: var(--f18);
    line-height: 1.5em;
}
.re-text h3 {
    font-size: var(--f24);
    font-weight: 700;
    line-height: 1.5em;
    margin-top: 40px;
}
/* // 점검중 페이지 */


/* 1200px 이하일 때 적용되는 스타일 */
@media (max-width: 1200px) {
    body {
        min-width: 320px;
    }

    header.pc {
        display: none;
    }

    header.mobile {
        display: block;
    }

    .nav-open #toggleNav:checked + label.toggle-btn span {
        background-color: #222;
    }

    footer {
        font-size: var(--f16);
    }

    .footer-top {
        padding: 24px 16px;
        font-size: var(--f16);
    }
    .footer-top .group {
        flex-wrap: wrap;
    }
    .f-terms-list {
        flex-wrap: wrap;
        gap: 8px;
        width: 100%;
    }

    .info-list {
        gap: 8px 17px;
        font-size: var(--f14);
    }
    .info-list li:after {
        left: -8px;
    }

    .footer-top .tel {
        text-align: center;
        margin: 20px auto 0;
    }
    .footer-top .tel span {
        font-size: var(--f20);
    }

    .footer-bottom {
        padding: 26px 20px 20px;
    }
    .footer-bottom .copy {
        margin: 14px auto 16px;
    }
    .footer-bottom .copy span {
        display: block;
        margin-top: 3px;
    }

    .icon-list {
        gap: 0;
    }
    .icon-list a {
        width: 35%;
    }
    .icon-list a img {
        width: 100%;
    }

    .scroll-top {
        width: 48px;
        height: 48px;
        top: calc(100% - 110px);
        right: 16px;
    }
    .scroll-top a {
        font-size: var(--f12);
    }
    .scroll-top a img {
        width: 16px;
        height: 16px;
    }

    .quick-menu {
        display: none;
    }

    /* bottom-cta */
    .mobile-hidden {
        display: none;
    }

    .cta-wrap {
        padding: 14px 84px 14px 16px;
        align-items: flex-end;
        height: 100%;
    }

    .mobile-btn {
        display: block;
        position: absolute;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        width: 72px;
        background: #222222;
        height: 69px;
        border-radius: 50%;
        text-align: center;
        padding: 6px 0;
        z-index: -1;
    }

    .bottom-cta {
        height: 56px;
        transition: height 0.3s ease;
    }

    .weather-select {
        min-width: 62px;
    }

    .select-trigger {
        padding: 0;
        gap: 4px;
        height: 30px;
    }
    .select-trigger .arrow {
        display: none;
    }
    .select-options {
        display: none !important;
    }

    .info-wrap {
        justify-content: center;
    }

    .btn-group {
        gap: 4px;
    }
    .btn-group a {
        font-size: var(--f13);
        padding: 7px 15px;
    }
    .btn-group a img {
        display: none;
    }

    .bottom-cta .flex-layout {
        gap: 8px;
    }
    .cta-reser {
        position: absolute;
        right: 0;
        bottom: 0;
        top: auto;
        height: 56px;
        min-width: 80px;
        font-size: var(--f16);
    }

    .info-wrap span {
        font-size: var(--f13);
        color: #ccc;
        width: 100%;
        display: none;
    }
    .bottom-cta.open .info-wrap span {
        display: inline-block;
        width: 100%;
        font-size: var(--f14);
    }
    .bottom-cta.open .info-wrap .reser-info span {
        display: inline;
    }

    .reser-info {
        gap: 2px 16px;
        margin-right: 0;
        width: 100%;
        letter-spacing: -0.8px;
        justify-content: flex-start;
        display: none;
    }
    .reser-info li {
        font-size: var(--f14);
        flex: 0 1 auto;
    }
    .reser-info li:before {
        right: -8px;
    }
    .bottom-cta.open .reser-info {
        display: flex;
        padding: 8px 0;
        line-height: 1.3em;
    }

    /* 펼쳤을 때 */
    .bottom-cta.open {
        min-height: 112px;
    }

    .bottom-cta .cta-content{
        display: none;
    }

    .bottom-cta.open .cta-content {
        border-bottom: 1px solid #666;
        position: absolute;
        top: 30%;
        left: 16px;
        transform: translateY(-50%);
        display: flex;
        flex-wrap: wrap;
        width: calc(100% - 96px);
        padding-right: 10px;
        line-height: 1.1em;
        /*justify-content: flex-start;*/
        height: 45px;
        overflow-y: scroll;
        max-width: 100%;
    }
    .bottom-cta.open .mobile-btn img {
        transform: rotate(180deg);
        transition: transform 0.3s ease;
    }

    .bottom-cta.open .cta-reser {
        min-height: 100%;
        z-index: 1;
    }

    /* 점검중 페이지 */
    .re-text h2 {
        margin: 25px 0 60px;
        font-size: var(--f32);
    }
    .re-text p {
        font-size: var(--f16);
    }
    .re-text h3 {
        font-size: var(--f20);
        margin-top: 24px;
    }
    .re-text img {
        max-width: 180px;
    }
    /* // 점검중 페이지 */
}

/* 320px 이하일 때 적용되는 스타일 */
@media (max-width: 320px) {
    .reser-info {
        gap: 4px;
        letter-spacing: -1px;
        justify-content: flex-start;
    }
    .reser-info li:before {
        right: -2px;
    }
    .reser-info li span {
        padding-left: 0;
        padding-right: 3px;
    }

    .btn-group a {
        font-size: var(--f12);
        padding: 8px 5px;
    }
}

@keyframes scaleUp {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

@keyframes scaleDown {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}



@media (prefers-reduced-motion: reduce){
    html{ scroll-behavior:auto; }
    [data-aos]{ transition:none !important; animation:none !important; }
}
