@charset "utf-8";

/* PC 기본: 햄버거·시트 토글 숨김은 default.css */

@media (max-width: 1400px) {
    .gp-header-container .header-inner-wrapper {
        padding: 0 24px;
    }
    .main-hero-container .hero-content-wrapper {
        left: 40px;
    }
    .main-feature-container .feature-content-wrapper,
    .main-price-container .price-content-wrapper,
    .location-hero-container .location-content-wrapper {
        left: 40px;
        width: calc(100% - 80px);
        max-width: 1180px;
    }
    .location-hero-container .map-info-box {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 1100px) {
    html,
    body {
        min-width: 0 !important;
        width: 100%;
        word-break: keep-all;
    }

    p,
    td,
    th,
    li,
    dt,
    dd,
    h1, h2, h3, h4, h5, h6,
    a, span, strong, em, label, address, button,
    .tbl_head01 td,
    .tbl_head02 td {
        word-break: keep-all;
    }

    body:not(.is-main-fullpage) {
        height: auto !important;
        overflow-x: hidden;
        overflow-y: auto !important;
    }

    html.fp-enabled,
    html.fp-enabled body,
    body.is-main-fullpage {
        overflow: hidden !important;
        height: 100vh !important;
        height: 100svh !important;
        height: var(--gp-vh, 100vh) !important;
    }

    body.is-main-fullpage #fullpage {
        height: 100vh !important;
        height: 100svh !important;
        height: var(--gp-vh, 100vh) !important;
    }

    #hd,
    #wrapper,
    #ft,
    body.is-main-fullpage #hd,
    body.is-main-fullpage #wrapper,
    body.is-main-fullpage #ft {
        min-width: 0 !important;
        width: 100%;
    }

    #fp-nav,
    .fp-scroll-hint {
        display: none !important;
    }

    body.is-main-fullpage,
    body.gp-is-sub {
        padding: 0;
        padding-bottom: 0;
    }

    body.gp-sheet-open,
    body.gp-nav-open {
        overflow: hidden !important;
    }

    /* 헤더 */
    .gp-header-container,
    body.is-main-fullpage .gp-header-container,
    body.gp-is-sub:not(.gp-revamp) .gp-header-container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 64px;
        background-color: rgba(0, 0, 0, 0.55);
    }

    .gp-header-container .header-inner-wrapper {
        padding: 0 12px 0 16px;
        max-width: none;
    }

    .gp-header-container .header-logo {
        font-size: 18px;
        z-index: 2;
    }

    .gp-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 24px;
        height: 24px;
        /* padding: 10px; */
        margin: 0;
        border: 0;
        background: transparent;
        z-index: 1002;
        -webkit-tap-highlight-color: transparent;
    }

    .gp-menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: #fff;
        border-radius: 1px;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    body.gp-nav-open .gp-menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    body.gp-nav-open .gp-menu-toggle span:nth-child(2) {
        opacity: 0;
    }
    body.gp-nav-open .gp-menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .gp-header-container .header-nav {
        position: fixed;
        top: 64px;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: 1300;
        background: rgba(0, 0, 0, 0.94);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.25s ease, opacity 0.25s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    body.gp-nav-open .gp-header-container .header-nav {
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }

    body.gp-nav-open .gp-fixed-booking {
        z-index: 1100;
    }

    .gp-header-container .header-nav .gnb-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 0 88px;
    }

    .gp-header-container .gnb-item a,
    .gp-header-container.is-scrolled .gnb-item a,
    body.gp-is-sub:not(.gp-revamp) .gp-header-container .gnb-item a {
        display: block;
        padding: 18px 24px;
        font-size: 18px;
        color: #fff;
    }

    /* 메인 풀페이지 섹션: 기기 화면 높이(vh)에 맞춤 */
    body.is-main-fullpage #fullpage > .section:not(.section-footer),
    body.is-main-fullpage #fullpage > .section:not(.section-footer) > .main-hero-container,
    body.is-main-fullpage #fullpage > .section:not(.section-footer) > .main-feature-container,
    body.is-main-fullpage #fullpage > .section:not(.section-footer) > .main-price-container,
    body.is-main-fullpage #fullpage > .section:not(.section-footer) > .main-facility-container,
    body.is-main-fullpage #fullpage > .section:not(.section-footer) > .location-hero-container,
    body.is-main-fullpage .section-hero,
    body.is-main-fullpage .section-hero .main-hero-container,
    body.is-main-fullpage .section-guide,
    body.is-main-fullpage .section-guide .main-feature-container,
    body.is-main-fullpage .section-price,
    body.is-main-fullpage .section-price .main-price-container,
    body.is-main-fullpage .section-faq,
    body.is-main-fullpage .section-faq .main-facility-container,
    body.is-main-fullpage .section-about,
    body.is-main-fullpage .section-about .location-hero-container {
        height: 100vh !important;
        height: 100svh !important;
        height: var(--gp-vh, 100vh) !important;
        min-height: 100vh !important;
        min-height: 100svh !important;
        min-height: var(--gp-vh, 100vh) !important;
        max-height: 100vh !important;
        max-height: 100svh !important;
        max-height: var(--gp-vh, 100vh) !important;
        overflow: hidden;
    }

    body.is-main-fullpage .section-footer,
    body.is-main-fullpage .section-footer .main-footer-container,
    body.is-main-fullpage .main-footer-container {
        min-height: 0 !important;
        height: auto !important;
        overflow: visible;
    }

    .main-feature-container .feature-content-wrapper,
    .main-price-container .price-content-wrapper,
    .main-facility-container .facility-content-wrapper,
    .location-hero-container .location-content-wrapper {
        position: absolute;
        top: 50%;
        left: 20px;
        right: 20px;
        width: auto !important;
        max-width: none;
        transform: translateY(-50%);
        padding: 72px 0 36px;
        box-sizing: border-box;
    }

    .main-feature-container .feature-content-wrapper {
        padding: 40px 0 0;
    }

    .main-hero-container .hero-content-wrapper {
        position: absolute;
        top: 50%;
        left: 5%;
        right: auto;
        width: auto;
        max-width: 90%;
        padding: 0;
        transform: translateY(-50%);
        box-sizing: border-box;
    }

    .main-hero-container .hero-title .title-sub {
        font-size: 28px;
    }
    .main-hero-container .hero-title .title-main {
        font-size: 32px;
    }

    .main-feature-container .feature-section-title,
    .main-price-container .price-section-title,
    .main-facility-container .facility-section-title,
    .location-hero-container .hero-main-title {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 24px !important;
        word-break: keep-all;
    }

    .main-feature-container .feature-card-list,
    .main-facility-container .feature-card-list {
        flex-wrap: wrap;
        gap: 12px;
        width: 100%;
    }

    .main-feature-container .feature-card-item {
        width: calc(50% - 6px);
        height: auto;
        min-height: 95px;
        padding: 16px 14px 20px;
    }

    .main-feature-container .card-header-box {
        margin-bottom: 12px;
        gap: 10px;
        align-items: center;
    }

    .main-feature-container .card-num {
        font-size: 28px;
        margin-bottom: 0;
    }

    .main-facility-container .facility-content-wrapper {
        top: 64px;
        bottom: 80px;
        left: 16px;
        right: 16px;
        transform: none;
        padding: 8px 0 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow: hidden;
    }

    .main-facility-container .facility-section-title {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 10px !important;
        flex-shrink: 0;
    }

    .main-facility-container .feature-card-list {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 8px;
        width: 100%;
        min-height: 0;
        justify-content: center;
    }

    .main-feature-container .card-title {
        font-size: 18px;
    }

    .main-facility-container .card-title {
        font-size: 16px;
    }

    .main-feature-container .card-desc {
        font-size: 16px;
        text-align: left;
    }

    .main-facility-container .card-desc {
        font-size: 14px;
        text-align: left;
    }

    .main-facility-container .feature-card-item {
        width: 100%;
        background: #fff;
        border-radius: 10px;
        padding: 10px 12px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 0;
        max-height: 31%;
    }

    .main-facility-container .card-header-box {
        margin-bottom: 6px;
        gap: 8px;
        align-items: center;
    }

    .main-facility-container .badge-number {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .main-facility-container .card-title {
        color: #000;
        font-size: 16px;
        line-height: 1.25;
    }

    .main-facility-container .card-title br {
        display: none;
    }

    .main-facility-container .card-body-box {
        height: auto;
        min-height: 0;
        padding: 0 44px 0 0;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
    }

    .main-facility-container .card-desc {
        font-size: 14px;
        line-height: 1.35;
    }

    .main-feature-container .card-desc br,
    .main-facility-container .card-desc br {
        display: none;
    }

    .main-facility-container .card-icon {
        display: none;
    }

    .main-price-container .comparison-table-wrapper,
    .main-price-container .comparison-table {
        width: 100% !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .main-price-container .comparison-table th,
    .main-price-container .comparison-table td,
    .main-price-container .td-other,
    .main-price-container .td-ground,
    .main-price-container .th-category,
    .main-price-container .th-other,
    .main-price-container .th-ground,
    .main-price-container .comparison-table tbody th {
        font-size: 14px;
        padding: 4px 6px;
        line-height: 1.25;
        word-break: keep-all;
    }

    .main-price-container .td-other .sub-text,
    .main-price-container .td-ground .sub-text {
        font-size: 14px;
        line-height: 1.2;
        display: inline;
    }

    .main-price-container .comparison-table tbody tr,
    .main-price-container .comparison-table thead tr {
        height: 36px;
    }

    .main-price-container .col-category,
    .main-price-container .col-other,
    .main-price-container .col-ground {
        width: auto;
    }

    .location-hero-container {
        overflow: hidden;
    }

    .location-hero-container .location-content-wrapper {
        top: 0;
        transform: none;
        height: 100%;
        padding: 80px 0 36px;
        display: flex;
        flex-direction: column;
    }

    .location-hero-container .map-info-box {
        flex-direction: column;
        width: 100% !important;
        height: 100% !important;
        min-height: 0;
        flex: 1;
    }

    .location-hero-container .address-card-wrapper {
        width: 100%;
        height: auto;
        flex-shrink: 0;
        padding: 20px 16px;
    }

    .location-hero-container .map-image-wrapper,
    .location-hero-container .map-embed-iframe {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 0;
        flex: 1;
    }

    .location-hero-container .map-embed-iframe {
        position: absolute;
        inset: 0;
        height: 100%;
    }

    .location-hero-container .info-label {
        font-size: 18px;
    }

    .location-hero-container .info-sub-desc,
    .location-hero-container .map-link-group-box > .info-label {
        display: none;
    }

    .location-hero-container .address-text {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .location-hero-container .map-button-list {
        grid-template-columns: 1fr 1fr;
        width: 100%;
        gap: 8px;
    }

    .location-hero-container .btn-map-link {
        width: 100%;
        height: 48px;
        font-size: 14px;
    }

    .main-footer-container,
    .site-footer-container {
        padding: 28px 20px 95px;
        min-height: 0;
    }

    .site-footer-container .footer-content-wrapper {
        padding: 0;
    }

    .main-footer-container .footer-logo,
    .site-footer-container .footer-brand-title {
        font-size: 20px;
    }

    .main-footer-container .footer-info-address,
    .main-footer-container .copyright-text,
    .site-footer-container .footer-info-address,
    .site-footer-container .footer-copyright-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .site-footer-container .footer-info-address .info-row {
        flex-direction: column;
        gap: 4px;
    }

    .site-footer-container .footer-policy-box {
        flex-wrap: wrap;
        gap: 8px 16px;
    }

    .main-footer-container .footer-policy-box {
        flex-wrap: wrap;
        gap: 8px 16px;
    }

    /* 하단 예약 플로팅 */
    .gp-fixed-booking.main-hero-container {
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        top: auto !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        background: none !important;
        overflow: visible !important;
        pointer-events: none;
        z-index: 1200;
    }

    .gp-fixed-booking .booking-sheet-dim,
    .gp-fixed-booking.is-sheet-open .booking-sheet-dim {
        display: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .gp-fixed-booking.main-hero-container .booking-card-wrapper,
    .gp-fixed-booking .booking-card-wrapper {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        min-height: 0 !important;
        max-height: 86svh;
        border-radius: 0;
        transform: none !important;
        pointer-events: auto;
        z-index: 2;
        display: flex;
        flex-direction: column;
        background: transparent !important;
        box-shadow: none;
        overflow: visible;
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }

    .gp-fixed-booking.is-sheet-open .booking-card-wrapper {
        left: 0 !important;
        right: 16px !important;
        width: auto !important;
        margin: 0 auto;
        background: #ffcd00 !important;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
    }

    .booking-sheet-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: -22px;
        left: 50%;
        transform: translateX(-50%);
        width: 48px;
        min-width: 48px;
        max-width: 48px;
        height: 22px;
        margin: 0;
        padding: 0;
        flex-shrink: 0;
        order: 0;
        border: 0;
        background: #ffcd00;
        border-radius: 10px 10px 0 0;
        cursor: pointer;
        z-index: 3;
        -webkit-tap-highlight-color: transparent;
    }

    .booking-mobile-bar {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        flex-shrink: 0;
        min-height: 0;
        height: auto;
        order: 1;
    }

    .gp-fixed-booking .booking-tab-panel {
        order: 2;
    }

    .booking-sheet-arrow {
        display: block;
        width: 10px;
        height: 10px;
        border-left: 2.5px solid #111;
        border-bottom: 2.5px solid #111;
        transform: rotate(135deg);
        transition: transform 0.25s ease;
        margin-top: 4px;
    }

    .gp-fixed-booking.is-sheet-open .booking-sheet-arrow {
        transform: rotate(-45deg);
        margin-top: -3px;
    }

    .gp-fixed-booking .booking-tab-list,
    .main-hero-container .booking-tab-list {
        flex: none;
        width: 100%;
        height: 64px;
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
    }

    .gp-fixed-booking .booking-tab-list .tab-item a,
    .main-hero-container .booking-tab-list .tab-item a,
    .gp-fixed-booking .booking-tab-list .tab-item:first-child a,
    .gp-fixed-booking .booking-tab-list .tab-item.active:first-child a,
    .gp-fixed-booking .booking-tab-list .tab-item:last-child a,
    .gp-fixed-booking .booking-tab-list .tab-item.active:last-child a,
    .gp-fixed-booking .booking-tab-list .tab-item:not(.active) a,
    .gp-fixed-booking .booking-tab-list .tab-item:not(.active):first-child a,
    .gp-fixed-booking .booking-tab-list .tab-item:not(.active):last-child a {
        font-size: 15px;
        border-radius: 0 !important;
        -webkit-tap-highlight-color: transparent;
    }

    .gp-fixed-booking .booking-tab-list .tab-item:not(.active) a {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .gp-fixed-booking:not(.is-sheet-open) .booking-tab-panel,
    .gp-fixed-booking:not(.is-sheet-open) .gp-dt-pop {
        display: none !important;
    }

    .gp-fixed-booking.is-sheet-open .booking-tab-panel.is-active {
        display: block !important;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        max-height: calc(86svh - 64px - env(safe-area-inset-bottom, 0px));
        padding: 20px 18px 28px !important;
        animation: none;
    }

    .gp-fixed-booking .input-label,
    .main-hero-container .input-label {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .gp-fixed-booking .form-group-box,
    .main-hero-container .form-group-box {
        margin-bottom: 16px;
    }

    .gp-fixed-booking .input-text,
    .gp-modal .input-text,
    .gp-fixed-booking .gp-dt-date,
    .gp-fixed-booking .gp-dt-hour,
    .gp-fixed-booking .gp-dt-min {
        font-size: 16px;
    }

    .gp-fixed-booking .btn-booking-submit,
    .main-hero-container .btn-booking-submit {
        height: 52px;
        font-size: 16px;
    }

    .gp-fixed-booking .booking-lookup-box .lookup-field-row {
        display: block;
    }

    .gp-fixed-booking .booking-lookup-box .lookup-field-row .form-group-box {
        width: 100%;
        margin-bottom: 16px;
    }

    .gp-fixed-booking .lookup-result-table {
        overflow-x: auto;
    }

    .gp-fixed-booking .lookup-result-table th,
    .gp-fixed-booking .lookup-result-table td {
        font-size: 14px;
        padding: 8px 4px;
    }

    .gp-fixed-booking .lookup-help-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .gp-fixed-booking .gp-dt-pop,
    .gp-fixed-booking .gp-dt-pop.is-open {
        left: 16px;
        right: 16px;
        top: 50%;
        bottom: auto;
        width: auto;
        position: fixed;
        z-index: 20;
        transform: translateY(-50%);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    }

    .gp-fixed-booking .booking-dt-dim {
        display: none;
        position: absolute;
        top: -22px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 15;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 0;
        pointer-events: auto;
    }

    .gp-fixed-booking.is-dt-open .booking-dt-dim {
        display: block;
    }

    .gp-fixed-booking.is-dt-open .booking-sheet-toggle {
        z-index: 1;
    }

    .gp-modal.is-open {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding: 0 0 env(safe-area-inset-bottom, 0px);
    }

    .gp-modal-dialog {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: none;
        margin: 0;
        border-radius: 18px 18px 0 0;
        max-height: 90svh;
        overflow-y: auto;
        padding: 24px 18px calc(20px + env(safe-area-inset-bottom, 0px));
    }

    .gp-modal-field-row {
        display: block;
    }

    .gp-modal-field-row .form-group-box {
        width: 100%;
        margin-bottom: 14px;
    }

    .gp-modal-actions {
        display: flex;
        gap: 8px;
    }

    .gp-modal-actions button {
        flex: 1;
        height: 48px;
        font-size: 16px;
    }

    /* 서브페이지 */
    body.gp-is-sub,
    body.gp-is-sub #wrapper,
    body.gp-is-sub #container_wr,
    body.gp-is-sub #container,
    body.gp-is-sub #bo_list {
        width: 100%;
        overflow-x: hidden;
    }

    .sub-hero-section {
        height: 200px;
    }

    .sub-hero-section .hero-content-wrapper {
        padding-top: 48px;
    }

    .sub-hero-section .hero-page-title {
        font-size: 20px;
    }

    .sub-guide-container .guide-main-content,
    .sub-price-container .price-main-content,
    .sub-faq-container .faq-main-content,
    .sub-about-container .about-main-content,
    .sub-policy-container .policy-main-content {
        padding: 36px 0 48px;
    }

    .sub-guide-container .content-inner-wrapper,
    .sub-price-container .content-inner-wrapper,
    .sub-faq-container .content-inner-wrapper,
    .sub-about-container .content-inner-wrapper,
    .sub-policy-container .content-inner-wrapper {
        padding: 0 16px;
    }

    .sub-guide-container .section-title,
    .sub-price-container .section-title,
    .sub-faq-container .section-title,
    .sub-about-container .section-title,
    .sub-policy-container .policy-title {
        font-size: 18px;
    }

    .sub-policy-container .policy-lead {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .sub-policy-container .policy-section {
        margin-bottom: 28px;
    }

    .sub-policy-container .policy-section p,
    .sub-policy-container .policy-section li {
        font-size: 14px;
    }

    .sub-guide-container .section-desc,
    .sub-price-container .info-text-list li {
        font-size: 15px;
        word-break: keep-all;
    }

    .sub-faq-container .question-text {
        font-size: 16px;
    }

    .sub-faq-container .answer-text {
        font-size: 15px;
    }

    .sub-faq-container .faq-question-btn,
    .sub-faq-container .faq-answer-box {
        padding-left: 16px;
        padding-right: 16px;
    }

    .sub-guide-container .step-item-box {
        display: block;
        padding: 14px 0;
    }

    .sub-guide-container .step-title {
        width: auto;
        display: block;
        font-size: 16px;
        margin-bottom: 6px;
    }

    .sub-guide-container .step-desc {
        font-size: 14px;
    }

    .sub-price-container .price-data-table {
        font-size: 14px;
    }

    .sub-price-container .price-data-table th,
    .sub-price-container .price-data-table td {
        font-size: 14px;
        padding: 10px 6px;
    }

    .sub-price-container .table-scroll-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .sub-about-container .intro-card-box {
        flex-direction: column;
        gap: 20px;
    }

    .sub-about-container .intro-media-wrapper {
        width: 100%;
        height: 200px;
    }

    .sub-about-container .intro-headline {
        font-size: 22px;
        word-break: keep-all;
    }

    .sub-about-container .intro-subline,
    .sub-about-container .desc-text {
        font-size: 15px;
        word-break: keep-all;
    }

    .sub-about-container .about-location-box {
        display: flex;
        flex-direction: column;
        margin-top: 12px;
        border-radius: 10px;
        overflow: hidden;
        background: #111;
    }

    .sub-about-container .about-location-info {
        padding: 20px 18px;
        color: #fff;
    }

    .sub-about-container .about-location-info .info-label {
        display: block;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 6px;
    }

    .sub-about-container .about-location-info .address-text {
        font-size: 16px;
        font-style: normal;
        margin: 0 0 16px;
        line-height: 1.5;
    }

    .sub-about-container .about-map-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .sub-about-container .about-map-list a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        height: 44px;
        background: #fff;
        color: #111;
        border-radius: 8px;
        font-size: 14px;
    }

    .sub-about-container .about-map-list img {
        width: 18px;
        height: 18px;
    }

    .sub-about-container .about-map-embed {
        width: 100%;
        height: 240px;
        border: 0;
        display: block;
    }

    .sub-about-container .about-footer-wrapper {
        display: none;
    }
}

@media (max-width: 480px) {
    .main-price-container .comparison-table tbody th {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .main-feature-container .feature-content-wrapper {
        top: 64px;
        bottom: 88px;
        left: 16px;
        right: 16px;
        transform: none;
        padding: 40px 0 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow: hidden;
    }

    .main-feature-container .feature-section-title {
        font-size: 20px;
        margin-bottom: 10px !important;
        flex-shrink: 0;
    }

    .main-feature-container .feature-card-list {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 8px;
        flex: 1;
        min-height: 0;
        justify-content: center;
    }

    .main-feature-container .feature-card-item {
        width: 100%;
        min-height: 95px;
        height: auto;
        padding: 10px 14px;
    }

    .main-feature-container .card-header-box {
        margin-bottom: 6px;
        gap: 8px;
    }

    .main-feature-container .card-num {
        font-size: 22px;
    }

    .main-feature-container .card-title {
        font-size: 18px;
    }

    .main-feature-container .card-desc {
        font-size: 16px;
        line-height: 1.35;
    }

    .gp-fixed-booking .booking-tab-list .tab-item a,
    .main-hero-container .booking-tab-list .tab-item a {
        font-size: 14px;
        padding: 0 4px;
        text-align: center;
    }

    .main-hero-container .hero-title .title-sub {
        font-size: 22px;
    }
    .main-hero-container .hero-title .title-main {
        font-size: 24px;
    }

    .main-price-container .price-section-title,
    .location-hero-container .hero-main-title {
        font-size: 22px;
    }

    .main-facility-container .facility-section-title {
        font-size: 18px;
    }
}
