#sub-content {
    position: relative;
    padding-top: 200px;
    background: url("../images/sub/sub-top-bg.png") no-repeat center top / cover;
    padding-bottom: 100px;
    overflow: visible;
}

.high-contrast #sub-content {
    background-color: #333;
    background-image: none;
}

#sub-content::after {
    content: "";
    position: absolute;
    bottom: -26px;
    left: 0;
    width: 100%;
    z-index: -1;
}

.autumn #sub-content::after {
    height: 450px;
    background: url(../images/sub/at-bottom.png) left bottom / contain no-repeat;
}

.winter #sub-content::after {
    height: 450px;
    background: url(../images/sub/wt-bottom.png) left bottom / contain no-repeat;
}

/* SNB Wrap 스타일 */
.snb-wrap {
    position: relative;
    background: #ffffff;
    border: 2px solid var(--green);
    border-radius: 20px;
    padding: 50px 32px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 50px;
    overflow: visible;
}

.snb-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.snb-header {
    display: flex;
    gap: 8px 20px;
}

.snb-category {
    font-size: 0.875rem;
    color: var(--green);
    font-weight: 600;
    font-family: "GmarketSansMedium";
}

.snb-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1c1c1c;
    font-family: "GmarketSansBold";
    line-height: 1.2;
    margin: 0;
}

.snb-nav {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    width: auto;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    width: max-content;
    padding-left: 14px;
}

.snb-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #333;
    transition: all 0.2s ease;
    text-decoration: none;
    position: relative;
    padding-right: 16px;
}

.snb-home::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background-color: #e0e0e0;
}

.snb-home:hover {
    background: #e8e8e8;
    color: #1c1c1c;
}

.snb-home svg {
    width: 18px;
    height: 18px;
}

.snb-select-wrap {
    position: relative;
}

.snb-select {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 12px;
    font-size: 0.938rem;
    font-family: "GmarketSansMedium";
    cursor: pointer;
    transition: all 0.2s ease;
    width: auto;
    min-width: 150px;
    text-align: left;
}

.snb-select:hover {
    background: #eeeeee;
    border-color: #d0d0d0;
}

.snb-select[aria-expanded="true"] {
    background: #eeeeee;
    border-color: #d0d0d0;
}

.snb-select span {
    color: #333;
    flex: 1;
    font-family: "GmarketSansMedium";

}

.snb-select svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    color: #747474;
    transition: transform 0.2s ease, color 0.2s ease;
}

.snb-select:hover svg {
    color: #4f4f4f;
}

.snb-select[aria-expanded="true"] svg {
    transform: rotate(180deg);
    color: #4f4f4f;
}

.snb-select-list {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
}

.snb-select-wrap.active .snb-select-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.snb-select-list li {
    margin: 0;
}

.snb-select-list a {
    display: block;
    padding: 10px 16px;
    color: #1c1c1c;
    font-size: 0.938rem;
    font-weight: 400;
    font-family: "GmarketSansMedium";
    text-decoration: none;
    transition: all 0.2s ease;
}

.snb-select-list a:hover {
    background: #f5f5f5;
    color: var(--green);
}

.snb-share {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    align-self: flex-end;
}

.snb-share-top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.snb-social {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    border: 1px solid #eaeaea;
    background-color: #fff;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.snb-social.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.snb-social .snb-share-btn {
    width: auto;
    height: auto;
}

.snb-social .snb-share-btn img {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    overflow: hidden;
}

.snb-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: #4f4f4f;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    padding: 0;
    border: 1px solid #eaeaea;
}

.snb-share-icon {
    color: #747474;
    transition: color 0.2s ease;
}

.snb-share-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.snb-share-icon:hover {
    color: var(--green);
}

.snb-share-icon.active {
    color: var(--green);
}

.snb-share-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.snb-share-btn svg {
    width: 20px;
    height: 20px;
}

.snb-share-btn:hover {
    background: #e8e8e8;
    transform: translateY(-2px);
}

.bg-img-1 {
    position: fixed;
    top: 30%;
    right: -2%;
    z-index: -1;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.bg-img-2 {
    position: absolute;
    top: 30%;
    left: -2%;
    z-index: -1;
}


.detail-page,
.place-list,
.traffic-page,
.trv-page,
.my-page,
.maj-product-page,
.totalsearch-area {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0;
}


/* 검색바 - 메인과 동일한 스타일 */
.totalsearch-area .search-box {
    display: flex;
    justify-content: space-between;
    border: 1px solid var(--green);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 10px;
    background-color: #fff;
}

.totalsearch-area .search-box input {
    border: none;
    height: 60px;
    line-height: 60px;
    font-family: "GmarketSansMedium" !important;
    color: #444C3B;
    flex: 1;
    padding: 0 20px;
    outline: none;
}

.totalsearch-area .search-box input::placeholder {
    color: #999;
}

.totalsearch-area .search-box button {
    width: 60px;
    height: 60px;
    background-color: var(--green);
    background-image: url("../images/common/search.svg");
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    flex-shrink: 0;
}

/* 태그 슬라이드 - 메인과 동일한 스타일 */
.totalsearch-area .tag-slide {
    position: relative;
    width: 100%;
    margin-top: 28px;
    margin-bottom: 50px;
}


.totalsearch-area .tag-slide .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.totalsearch-area .tag-slide .swiper-slide {
    width: auto;
    display: flex;
    justify-content: center;
}

.totalsearch-area .tag-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 999px;
    background: #F6F2FF;
    color: #9973DB;
    font-family: "GmarketSansMedium";
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.totalsearch-area .tag-chip:hover {
    background: #9973DB;
    color: #fff;
}

/* 검색 섹션 */
.search-section {
    margin-bottom: 60px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #eaeaea;
}

.search-section:last-child{
    margin-bottom: 0;
}

.search-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1c1c1c;
    font-family: "GmarketSansBold";
    margin: 0 0 30px;
}

.search-section-title .count {
    font-weight: 400;
    color: #666;
}

/* 메뉴 경로 리스트 */
.menu-path-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-path-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.menu-path-list li:last-child {
    border-bottom: none;
}

.menu-path-list li a {
    font-size: 1rem;
    color: #333;
    text-decoration: none;
    font-family: "Pretendard", "Noto Sans Korean", sans-serif;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
}

.menu-path-list li a:hover {
    color: var(--green);
}

.menu-path-list li a::before {
    content: ">";
    display: inline-block;
    margin: 0 8px;
    color: #999;
}

.menu-path-list li a span {
    color: #e74c3c;
    font-weight: 600;
}

/* 여행지 카드 슬라이더 - zzim-wrap 스타일 참고 */
/* 관련 여행지 카드 그리드 */
.place-card-grid {
    display: grid;
    gap: 10px;
}

/* 모바일: 2개씩 */
@media (max-width: 479px) {
    .place-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* 태블릿: 2개씩 */
@media (min-width: 480px) and (max-width: 767px) {
    .place-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* PC: 4개씩 */
@media (min-width: 768px) {
    .place-card-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
}

.place-card-item {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    background: #f5f5f5;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
    cursor: pointer;
}

.place-card-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.place-card-item .img {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
}

.place-card-item .tour-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.place-card-item:hover .tour-img {
    transform: scale(1.05);
}


.place-card-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    font-family: "GmarketSansMedium";
    margin-bottom: 12px;
    padding: 4px 12px;
    background: #fff;
    border-radius: 20px;
}

.place-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1c1c1c;
    font-family: "GmarketSansBold";
    margin: 0 0 12px;
    line-height: 1.4;
}

.place-card-desc {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-family: "Pretendard", "Noto Sans Korean", sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 반응형 */
@media (max-width: 1024px) {
    .place-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .totalsearch-area {
        padding: 30px 0;
    }

    .search-section {
        margin-bottom: 40px;
        padding: 20px;
    }

    .search-section-title {
        font-size: 1.25rem;
    }
}

.detail-page .sec-1 h1 {
    font-family: "GmarketSansBold";
    display: flex;
    align-items: center;
    gap: 0 20px;
    margin-bottom: 20px;
    color: #333;
}

.detail-page .sec-1 h1 img {
    height: 38px;
    margin-top: -7px;
}

.detail-page .sec-1 .box-1 {
    background: #ffffff;
    border-radius: 20px;
    font-family: "GmarketSansMedium";
    position: relative;
}

.detail-page .sec-1 .box-1-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.detail-page .sec-1 .box-1 .mapinfo {
    display: flex;
    gap: 8px;
    margin: 0 auto;

}

.detail-page .sec-1 .box-1 .mapinfo li {
    display: flex;
    align-items: center;
    color: #4f4f4f;
    font-family: "GmarketSansMedium";
    font-size: 0.938rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 5px 10px;
}

.detail-page .sec-1 .box-1 .mapinfo li:first-child {
    gap: 8px;
}

.detail-page .sec-1 .box-1 .mapinfo li:first-child span.bd-line {
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 3px 9px;
    font-family: "Pretendard" !important;
    color: #4f4f4f;
    font-size: 0.875rem;
    white-space: nowrap;
}

.detail-page .sec-1 .box-1 .mapinfo li:nth-child(2) a {
    color: #4f4f4f;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-left: 24px;
    background: url("../images/sub/icon-nvmap.svg") no-repeat left center / 20px;
    font-size: 0.938rem;
}

.detail-page .sec-1 .box-1 .description {
    position: relative;
    color: #333333;
    font-family: "GmarketSansMedium";
    display: inline-flex;
    text-align: center;
    word-break: keep-all;
}

.detail-page .sec-1 .box-1 .description::after {
    display: block;
    content: "";
    width: 100%;
    height: 8px;
    background-color: rgba(123, 192, 41, 0.2);
    position: absolute;
    bottom: 0;
    left: 0;
}

.edt {
    border: 1px solid var(--green);
    border-radius: 50px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    padding: 6px 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: auto;
    display: inline-flex;
    background-color: #F8FFF0;
}


.edt span {
    background: url("../images/sub/icon-edt-green.svg") no-repeat left center / 16px;
    padding-left: 22px;
    font-family: "GmarketSansMedium";
    font-size: 0.938rem;
    color: var(--green);

}

.edt-box {
    text-align: right;
    margin-top: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
}

.detail-page .edt {
    margin-left: auto;
}

.detail-page .sec-1 h1 {
    justify-content: center;
}

.detail-page .sec-1 .bd-box {
    padding: 0;
    overflow: hidden;
}

.detail-page .sec-1 .box-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border-radius: 0;
    padding: 20px;
    /*font-family: "GmarketSansMedium";*/
    font-size: 0.938rem;
    border-top: 1px solid var(--line);
    margin-top: 40px;
}

.detail-page .sec-1 .box-2 ul {
    display: flex;
    align-items: center;
    gap: 0 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.detail-page .sec-1 .box-2 ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.detail-page .sec-1 .box-2 ul li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background-color: #e0e0e0;
}

.detail-page .sec-1 .box-2 ul li span {
    color: #4f4f4f;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.938rem;
}

.detail-page .sec-1 .box-2 ul li span img {
    width: 16px;
    height: 16px;
}

.detail-page .sec-1 .box-2 ul li p {
    color: #333333;
    margin: 0;
    font-weight: 600;
    font-size: 0.938rem;
}

.detail-page .sec-1 .box-2 .heart {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.938rem;
    background-position: left 32%;
    background-repeat: no-repeat;
    padding-left: 25px;
    background-size: 9px;
    background-size: 19px;
    background-image: url("../images/common/heart-off-2.svg");
}

.detail-page .sec-1 .box-2 .heart.on {
    color: #333;
    background-image: url("../images/common/heart.svg");
}


/* 이미지 슬라이드 */
.detail-page .sec-1 .img-slide {
    position: relative;
    width: 100%;
    /*height: 800px;*/
    overflow: hidden;
    border-radius: 12px;
}

.detail-page .sec-1 .img-slide .img-swiper {
    width: 100%;
    height: 100%;
}

.detail-page .sec-1 .img-slide .swiper-slide {
    width: 100%;
    height: auto;
    position: relative;
}

.detail-page .sec-1 .img-slide .swiper-slide .tbox {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    z-index: 1;
    padding: 30px 30px 30px 120px;
}

.detail-page .sec-1 .img-slide .swiper-slide .tbox p {
    color: #fff;
    width: 80%;
    word-break: keep-all;
}

.detail-page .sec-1 .img-slide .swiper-slide .image {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding-top: calc(800/1200  * 100%);
}

.detail-page .sec-1 .img-slide .swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.detail-page .sec-1 .img-slide-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 0 5px;
    z-index: 10;
}

.detail-page .sec-1 .img-slide-prev,
.detail-page .sec-1 .img-slide-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0 0 0 / 60%);
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.detail-page .sec-1 .img-slide-prev img,
.detail-page .sec-1 .img-slide-next img {
    width: 20px;
}

.detail-page .sec-1 .img-slide-prev:hover,
.detail-page .sec-1 .img-slide-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.detail-page .sec-1 .img-slide-prev:active,
.detail-page .sec-1 .img-slide-next:active {
    transform: scale(0.95);
}

.detail-page .sec-1 .img-slide-prev svg,
.detail-page .sec-1 .img-slide-next svg {
    width: 20px;
    height: 20px;
}

.detail-page .sec-1 .img-slide-pagination {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #ffffff;
    font-size: 0.938rem;
    font-weight: 500;
    font-family: "GmarketSansMedium";
    min-width: 50px;
    justify-content: center;
    background: rgba(0 0 0 / 60%);
    border-radius: 50px;
    padding: 13px 26px;
    font-size: 0.8rem;
}

.detail-page .sec-1 .img-slide-pagination .current-page {
    color: #ffffff;
}

.detail-page .sec-1 .img-slide-pagination .separator {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 2px;
}

.detail-page .sec-1 .img-slide-pagination .total-pages {
    color: rgba(255, 255, 255, 0.7);
}

.detail-page .sec-1 .img-sd-wrap {
    position: relative;
}

.img-sd-wrap.type-3 {
    position: relative;
}

.img-sd-wrap.type-3 .swiper-slide {
    height: auto;
}

.img-sd-wrap.type-3 .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.detail-page .sec-1 .img-sd-wrap .yo-img {
    position: absolute;
    bottom: 0;
    left: -44px;
    z-index: 1;
}

/* sec-2 네비게이션 */
.detail-page .sec-2 {
    position: relative;
    margin-top: 20px;
    overflow: visible;
}

.detail-page .sec-2 .nav {
    position: relative;
    top: 0;
    z-index: 1;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.detail-page .sec-2 .nav .nav-inner {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid var(--line);
}

.detail-page .sec-2 .nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.detail-page .sec-2 .nav.fixed .nav-inner {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 100px;
}

.detail-page .sec-2 .nav button {
    color: #747474;
    font-size: 0.938rem;
    font-family: "GmarketSansMedium" !important;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    padding: 10px 0;
}


.detail-page .sec-2 .nav button.active {
    border-bottom: 2px solid var(--green);
    color: var(--green);
}



.detail-page .sec-2 .conWrap {
    position: relative;
}

.detail-page .sec-2 .conWrap>div {
    scroll-margin-top: 120px;
    padding: 20px 0;
}

/* 아코디언 스타일 */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333333;
    font-family: "GmarketSansBold";
    margin-bottom: 24px;
}

.accordion-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* 공통 아코디언 스타일 */
.accordion-item {
    overflow: hidden;
}

.accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #e7e7e7;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    font-family: "GmarketSansMedium";
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    border-top: 1px solid #c9c9c9;
    border-bottom: 1px solid #c9c9c9;
    border: none;
}

.accordion-btn:hover {
    opacity: 0.9;
}

.accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.accordion-icon svg {
    width: 100%;
    height: 100%;
}

.accordion-text {
    flex: 1;
    font-family: "GmarketSansMedium";
    color:#333;
}

.accordion-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.accordion-arrow svg{
    color: #333;
}

.accordion-btn[aria-expanded="true"] .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, padding 0.5s ease;
    opacity: 0;
}

.accordion-content.active {
    opacity: 1;
    min-height: 0;
    padding-bottom: 30px;
    padding-top: 30px;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease 0.1s, padding 0.5s ease;
}

.accordion-content.active[style*="max-height"] {
    overflow: visible;
}


.accordion-item {
    overflow: hidden;
}

.accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #f3f3f3;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    font-family: "GmarketSansMedium";
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    border-top: 1px solid #c9c9c9;
    border-bottom: 1px solid #c9c9c9;
}

.conWrap .accordion-btn:hover {
    opacity: 0.9;
}

.accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.accordion-icon svg {
    width: 100%;
    height: 100%;
}

.accordion-text {
    flex: 1;
    font-family: "GmarketSansMedium";
    font-size: 1.2rem;
}

.accordion-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.accordion-btn[aria-expanded="true"] .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, padding 0.5s ease;
    opacity: 0;
}

.accordion-content.active {
    opacity: 1;
    min-height: 0;
    padding-bottom: 30px;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease 0.1s, padding 0.5s ease;
}

.accordion-content.active[style*="max-height"] {
    overflow: visible;
}

/* iframe이 있는 경우 높이 제한 해제 */
.accordion-content.active .youtube-video {
    min-height: 400px;
}

/* iframe이 있는 accordion-content는 최소 높이 보장 */
.accordion-content.active:has(iframe) {
    min-height: 600px;
}

/* 포토리뷰 섹션 스타일 */
.review-input-area {
    margin-bottom: 40px;
}

.review-input-wrapper {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    flex-direction: column;
}

.review-textarea {
    flex: 1;
    width: 100%;
    min-height: 120px;
    padding: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-family: "GmarketSansMedium";
    color: #333333;
    resize: none;
    line-height: 1.6;
}

.review-textarea:focus {
    outline: none;
    border-color: var(--green);
}

.review-textarea::placeholder {
    color: #747474;
}

.review-input-buttons {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.review-photo-btn,
.review-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 20px;
    border: none;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-family: "GmarketSansMedium" !important;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.review-photo-btn {
    background: #fff;
    color: #4f4f4f;
    border: 1px solid #e0e0e0;
}

.review-photo-btn span {
    padding-left: 27px;
    background: url("../images/sub/icon-photo.svg") no-repeat left center / contain;
}

.review-photo-btn:hover {
    background: #e8e8e8;
    border-color: #d0d0d0;
}

.review-photo-btn svg {
    width: 20px;
    height: 20px;
}

.review-submit-btn {
    background: #333333;
    color: #ffffff;
}

.review-submit-btn:hover {
    background: #555555;
}

/* 사진 후기 섹션 */
.photo-review-section {
    margin-bottom: 30px;
    border-top: 1px solid var(--line);
    padding-top: 20px;
}

.photo-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.photo-review-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333333;
    font-family: "GmarketSansBold";
    margin: 0;
}

.photo-review-view-all {
    font-size: 0.9375rem;
    color: #4f4f4f;
    text-decoration: none;
    font-family: "GmarketSansMedium";
    transition: color 0.3s ease;
}

.photo-review-view-all:hover {
    color: var(--green);
}

.photo-review-gallery {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.photo-review-gallery::-webkit-scrollbar {
    height: 4px;
}

.photo-review-gallery::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 2px;
}

.photo-review-gallery::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 2px;
}

.photo-review-item {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    display: block;
    transition: transform 0.3s ease;
}

.photo-review-item:hover {
    transform: scale(1.05);
}

.photo-review-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 필터 및 정렬 */
.review-filter-area {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
    background: #eaeaea;
    padding: 10px 20px;
    border-radius: 10px;
    flex-wrap: nowrap;
}

.filter-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-size: 0.875rem;
    font-family: "GmarketSansMedium";
    color: #4f4f4f;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn svg {
    width: 44px;
}

.filter-btn:focus {
    outline: 0;
    outline-offset: 0;
    border-radius: 20px;
}

.filter-btn.active {
    background: #f0f8ed;
    border-color: #30561a;
    color: #30561a;
}

.filter-btn.active svg path {
    fill: #fff;
}


.filter-btn .filter-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    flex-shrink: 0;
}

.filter-btn .filter-icon svg {
    width: 12px;
    height: 12px;
}

.sort-dropdown {
    margin-left: auto;
}

.sort-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: "GmarketSansMedium";
    color: #4f4f4f;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-btn:hover {
    border-color: #d0d0d0;
    background: #f5f5f5;
}

.sort-btn svg {
    width: 12px;
    height: 12px;
}

/* 리뷰 목록 */
.review-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.review-item {
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.review-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.review-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.review-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.review-avatar svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: var(--green);
}

.review-user-details {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-username {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #333333;
    font-family: "GmarketSansMedium";
}

.high-contrast .review-username {
    color: #fff;
}

.review-date {
    position: relative;
    padding-left: 12px;
    font-size: 0.8125rem;
    color: #747474;
    font-family: "GmarketSansMedium";
}

.review-date::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background-color: #e0e0e0;
}

.review-report-btn {
    padding: 6px 12px;
    background: transparent;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-family: "GmarketSansMedium";
    color: #747474;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: auto;
    background-color: #fff;
}

.review-report-btn:hover {
    border-color: #d0d0d0;
    color: #4f4f4f;
}

.review-content {
    margin-bottom: 16px;
}

.review-content p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #333333;
}

.high-contrast .review-content p {
    color: #fff;
}

.review-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.review-actions-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.review-like-btn,
.review-comment-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 0.875rem;
    font-family: "GmarketSansMedium";
    color: #4f4f4f;
    transition: color 0.3s ease;
}

.review-like-btn {
    padding-left: 24px;
    background: url("../images/common/heart-off-2.svg") no-repeat left center / 20px;
}

.review-like-btn.on {
    background-image: url("../images/common/heart.svg");
    color: #333;
}

.review-like-btn:hover,
.review-comment-btn:hover {
    opacity: 0.8;
}

.review-comment-btn {
    padding-left: 24px;
    background: url("../images/common/icon-cmt.svg") no-repeat left center / 20px;
}

/* 반응형 */
@media (max-width: 768px) {
    .review-input-wrapper {
        flex-direction: column;
    }

    .review-input-buttons {
        flex-direction: row;
        width: 100%;
    }

    .review-photo-btn,
    .review-submit-btn {
        flex: 1;
    }

    .photo-review-gallery {
        gap: 8px;
    }

    .photo-review-item {
        width: 100px;
        height: 100px;
    }

    .review-filter-area {
        flex-wrap: nowrap;
        gap: 8px;
        padding: 8px 12px;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 0.8125rem;
    }

    .filter-btn .filter-icon {
        width: 18px;
        height: 18px;
    }

    .filter-btn .filter-icon svg {
        width: 10px;
        height: 10px;
    }

    .sort-dropdown {
        margin-left: auto;
        flex-shrink: 0;
    }

    .sort-btn {
        padding: 6px 10px;
        font-size: 0.8125rem;
        white-space: nowrap;
    }
}

.detail-page .sec-2 .conWrap .accordion-inner {
    position: relative;
    color: #333333;
    line-height: 1.6;
    margin-top: 20px;
}

/* 정보 아코디언 내부 스타일 */
.detail-page .sec-2 .conWrap .accordion-inner .info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eaeaea;
}

.detail-page .sec-2 .conWrap .accordion-inner .info-tags .tag-item {
    display: inline-block;
    background: #fff;
    border: 1px solid var(--line);
    color: #4f4f4f;
    border-radius: 20px;
    font-size: 0.875rem;
    font-family: "GmarketSansMedium";
    transition: all 0.3s ease;
    padding: 5px 15px;
    cursor: pointer;
}

.detail-page .sec-2 .conWrap .accordion-inner .info-tags .tag-item:hover {
    background: #e8e8e8;
    color: #333333;
}

.detail-page .sec-2 .conWrap .accordion-inner .info-tags .tag-item.active {
    border: 1px solid #333;
    font-weight: 600;
    color: #333;
}

.detail-page .sec-2 .conWrap .accordion-inner .info-notice {
    margin-bottom: 20px;
}

.detail-page .sec-2 .conWrap .accordion-inner .info-notice .notice-text {
    font-size: 0.875rem;
    font-family: "GmarketSansMedium";
}

.detail-page .sec-2 .conWrap .accordion-inner .info-description {
    margin-bottom: 20px;
}

.detail-page .sec-2 .conWrap .accordion-inner .info-description p {
    margin-bottom: 12px;
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #333333;
}

.detail-page .sec-2 .conWrap .accordion-inner .info-description p:last-child {
    margin-bottom: 0;
}


.detail-page .sec-2 .conWrap .accordion-inner .bd-box:not(:last-child) {
    margin-bottom: 20px;
}

.detail-page .sec-2 .conWrap .accordion-inner .bd-box {
    padding: 40px;
}

.detail-page .sec-2 .conWrap .titBox strong {
    border-radius: 50px;
    font-family: "GmarketSansMedium";
}

.infoBox dl {
    display: flex;
    gap: 0 20px;
    color: #333;
    text-align: left;
}

.infoBox dl:not(:last-child) {
    margin-bottom: 20px;
}

.infoBox dl dt {
    width: 150px;
    font-family: "GmarketSansMedium";
    position: relative;
    padding-left: 15px;

}

.infoBox dl dt::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333333;
}

.infoBox dl dd {
    flex: 1;
    word-break: keep-all;
}

.bd-box {
    border: 1px solid var(--line);
    border-radius: 15px;
    padding: 20px;
    background-color: #fff;
}

.bd-box .youtube-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 8px;
    display: block;
}

.detail-page .sec-2 .map-area {
    position: relative;
}

.amenities-info {
    position: absolute;
    top: 20px;
    left: 20px;
}


.gal-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.gal-list .item {
    position: relative;
    width: calc((100% - 40px) / 3);
    overflow: hidden;
    border-radius: 20px;
}

.gal-list .item:hover .tour-img {
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.gal-list.type-1 .item {
    width: calc((100% - 40px) / 3);
}

.gal-list.type-2 .item {
    width: calc((100% - 120px) / 6);
}


.gal-list .item .img {
    border-radius: 20px;
    overflow: hidden;
    height: 200px;
}

.gal-list .item .tour-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gal-list .item .heart-btn,
.zzim-swiper .heart-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gal-list .item .heart-btn::before,
.zzim-swiper .heart-btn::before {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url("../images/common/heart-off.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
}

.gal-list .item .heart-btn.on::before,
.zzim-swiper .heart-btn.on::before {
    background-image: url("../images/common/heart.svg");
    ;
}

.gal-list .item p,
.zzim-swiper .item p {
    padding: 16px 0;
    font-size: 1rem;
    font-weight: 600;
    font-family: "GmarketSansMedium";
    line-height: 1.4;
}



.rud-btn {
    border: 1px solid var(--green);
    color: var(--green);
    padding: 10px 60px;
    border-radius: 50px;
    margin-top: 50px;
    font-family: "GmarketSansMedium";
}

.rud-btn {
    position: relative;
    overflow: hidden;
    transition: color 0.3s;
    z-index: 1;
}

.rud-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--green);
    z-index: -1;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.rud-btn:hover {
    color: #fff;
}

.rud-btn:hover::before {
    width: 100%;
}

.amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.amenities-list .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    width: calc((100% - 80px) / 5);
    text-align: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 20px;
    word-break: keep-all;
    background-color: #fff;
}

.amenities-list .item img {
    width: 90px;
    display: block;
    margin: 0 auto;
}

.amenities-list .item.no {
    background-color: #eaeaea;
}

.amenities-list .item strong {
    border-radius: 50px;
    background-color: #006142;
    padding: 5px 10px;
    display: inline-block;
    color: #fff;
    width: 156px;
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
    font-family: "GmarketSansMedium";
    font-size: 0.8rem;
    word-break: keep-all;
}

.amenities-list .item.no strong {
    background-color: #555;
}

.amenities-list .item p {
    width: 80%;
    text-align: center;
    margin: 0 auto;
    line-height: 1.2;
}

.place-list .item:not(:last-child) {
    margin-bottom: 20px;
}

.place-list .item {
    display: flex;
    gap: 20px 40px;
}

.place-list .item .img {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(28, 28, 30, 0.3);
}

.place-list .item .img img {
    width: 100%;
    height: 100%;
    /*position: absolute;*/
    top: 0;
    left: 0;
    z-index: 0;
    object-fit: cover;
}

.place-list .item .img img + img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: blur(50px);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.place-list .item .cbox {
    flex: 1;
}

.place-list .item .cbox .top {
    margin-bottom: 30px;
}

.place-list .item .cbox .top h3 {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 20px 6px 62px;
    font-family: "GmarketSansMedium";
    font-size: 1.25rem;
    background-repeat: no-repeat;
    background-size: 27px;
    background-position: 20px 45%;
    color: #333;
    width: auto;
    display: inline-flex;
}

.place-list .item .cbox .top > a {
    display: block;
    width: 100%;
}

.place-list.food .item .cbox .top h3 {
    background-image: url("../images/sub/icon-food.svg");
}

.place-list .item .cbox .top h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    word-break: keep-all;
}

.place-list.herit .item .cbox .top h3 {
    background-image: url("../images/sub/icon-heritage.svg");
}

.place-list.fes .item .cbox .top h3 {
    background-image: url("../images/sub/icon-festv.svg");
}


.place-list.gid .item .cbox .top h3 {
    background-image: url("../images/sub/icon-gid.svg");
}

.place-list .item .cbox .top .rbox {
    display: flex;
    gap: 0 20px;
}

.place-list .item .cbox .top .rbox .star {
    background: url("../images/sub/icon-star.svg") no-repeat center center / contain;
    background-repeat: no-repeat;
    background-position: center center;
    padding-left: 20px;
    background-position: 0 center;
    padding: 5px 0 0 20px;
    background-size: 17px;
    color: #333 !important;
}

.place-list .item .cbox .top .rbox p,
.place-list .item .cbox .top .rbox .heart-btn {
    color: #727272;
    font-family: "GmarketSansMedium" !important;
    font-size: 0.9375rem;
}

.place-list .item .cbox .top .rbox .heart-btn {
    background-image: url("../images/common/heart-off-2.svg");
    background-repeat: no-repeat;
    background-position: center center;
    padding-left: 30px;
    background-position: 0 center;
    background-size: 24px;
}

.place-list .item .cbox .top .rbox .heart-btn.on {
    background-image: url("../images/common/heart.svg");
}

.place-list .item .cbox ul.flexBox {
    gap: 10px;
    flex-wrap: wrap;
}

.place-list .item .cbox ul.flexBox li {
    text-align: center;
    width: 60px;
}

.place-list .item .cbox ul.flexBox li img {
    width: 60px;
    display: block;
    margin: 0 auto;
}

.place-list .item .cbox ul.flexBox li p {
    font-size: 13px;
    margin-top: 8px;
    word-break: keep-all;
    line-height: 1.2;
}

.place-list .item .cbox .bottom {
    display: flex;
    gap: 0 10px
}

.place-list .item .cbox .bottom a,
.place-list .item .cbox .bottom button {
    flex: 1;
    border-radius: 10px;
    padding: 12px 0;
    justify-content: center;
    align-items: center;
    display: flex;
}

.place-list .item .cbox .bottom a span,
.place-list .item .cbox .bottom button span {
    font-family: "GmarketSansMedium";
    font-size: 0.9375rem;
}

.place-list .item .cbox .bottom a {
    border: 1px solid var(--line);
}

.place-list .item .cbox .bottom a span {
    color: #727272;
}

.place-list .item .cbox .bottom button {
    background-color: var(--green);
}

.place-list .item .cbox .bottom button span {
    color: #fff;
}

.place-list .item .cbox .bottom .map-naver-btn{
    border: 1px solid var(--line);
    background-color: #fff;

}

.place-list .item .cbox .bottom .map-naver-btn span{
    color: #333;
}

/* 평점 영역 */
.rating-area {
    position: relative;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 1200px;
    max-width: 100%;
    margin: 50px auto 0 auto;
}

.rating-area .rating-header {
    background: #f5f5f5;
    padding: 12px 24px;
    border: 1px solid #eaeaea;
    border-radius: 10px 10px 0 0;
}

.rating-area .rating-header p {
    margin: 0;
    font-size: 0.875rem;
    color: #4f4f4f;
    font-family: "GmarketSansMedium";
}

.rating-area .rating-content {
    padding: 40px;
    position: relative;
    z-index: 2;
}

.rating-area .rating-question-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.rating-area .rating-question {
    flex: 1;
}

.rating-area .rating-question h3 {
    margin: 0 0 8px 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333333;
    font-family: "GmarketSansBold";
    line-height: 1.4;
    word-break: keep-all;
}

.rating-area .rating-question .rating-subtitle {
    margin: 0;
    font-size: 0.9375rem;
    color: #747474;
    font-family: "GmarketSansMedium";
    line-height: 1.6;
    word-break: keep-all;
}

.rating-area .rating-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.rating-area .rating-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #f5f5f5;
    border: 1px solid #eaeaea;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "GmarketSansMedium";
    font-size: 0.9375rem;
    color: #4f4f4f;
}

.rating-area .rating-btn:hover {
    background: #e8e8e8;
    border-color: #d0d0d0;
}

.rating-area .rating-btn.active {
    background: var(--green);
    border-color: var(--green);
    color: #ffffff;
}

.rating-area .rating-btn .rating-icon {
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
}


.rating-area .rating-btn.n-1 .rating-icon {
    background-image: url("../images/sub/rat-icon-1-off.svg");
}

.rating-area .rating-btn.n-1.active .rating-icon {
    background-image: url("../images/sub/rat-icon-1-on.svg");
}

.rating-area .rating-btn.n-2 .rating-icon {
    background-image: url("../images/sub/rat-icon-2-off.svg");
}

.rating-area .rating-btn.n-2.active .rating-icon {
    background-image: url("../images/sub/rat-icon-2-on.svg");
}

.rating-area .rating-btn.n-3 .rating-icon {
    background-image: url("../images/sub/rat-icon-3-off.svg");
}

.rating-area .rating-btn.n-3.active .rating-icon {
    background-image: url("../images/sub/rat-icon-3-on.svg");
}

.rating-area .rating-btn .rating-text {
    font-size: 0.9375rem;
    font-weight: 500;
}

.rating-area .rating-form {
    display: flex;
    align-items: flex-start;
}

.rating-area .rating-comment {
    flex: 1;
    height: 56px;
    line-height: 34px;
    padding: 10px 20px;
    border: 1px solid #eaeaea;
    border-radius: 8px 0 0 8px;
    font-size: 0.9375rem;
    resize: none;
    width: 100%;
}

.rating-area .rating-comment:focus {
    outline: none;
    border-color: var(--green);
}

.rating-area .rating-comment::placeholder {
    color: #747474;
}

.rating-area .rating-submit {
    padding: 16px 32px;
    background: #333;
    color: #ffffff;
    border: none;
    border-radius: 0 8px 8px 0;
    font-size: 0.9375rem;
    font-weight: 500;
    font-family: "GmarketSansMedium";
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.rating-area .rating-submit:hover {
    background: #555555;
}

.rating-area .rating-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.rating-area .rating-decoration img {
    display: block;
    max-width: 200px;
    height: auto;
}

.bd-btn {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 5px 20px;
    font-family: "GmarketSansMedium";
    font-size: 0.9375rem;
    color: #4f4f4f;
    background-color: #fff;
}

.bd-btn:hover {
    background-color: var(--purple);
    color: #fff;
    transition: all 0.3s ease;
}

.place-list .item .cbox .bottom {
    margin-top: 30px;
}


.subTop-mn {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 0 20px;
}

.subTop-mn .tit {
    width: auto;
    display: flex;
    align-items: center;
    gap: 0 20px;
}

.subTop-mn h2 {
    font-size: 2.2rem;
    font-family: "GmarketSansBold";
    background-position: left 38%;
    background-repeat: no-repeat;
    background-size: 40px;
    padding-left: 50px;
}

.place-list .flexBox.area02{
    align-items: center;
    gap: 0 10px;
}

.place-list .item .cbox .top {
    flex-wrap: nowrap;
    align-items: center;
}


.place-list .item .cbox .top .rbox {
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0 20px;
    margin-left: 0;
}

.subTop-mn ul {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: auto;
}

.subTop-mn ul li {
    border-radius: 50px;
    border: 1px solid var(--line);
    padding: 5px 15px;
    background-color: #fff;
}

.subTop-mn ul li.on {
    background-color: var(--green);
}

.subTop-mn ul li.on a {
    color: #fff;
}

.subTop-mn ul li a {
    font-family: "GmarketSansMedium";
    font-size: 0.9375rem;
    color: #4f4f4f;
}

.traffic-page .subTop-mn h2 {
    background-image: url("../images/sub/icon-trf.svg");
}

.traffic-page .titCont {
    margin-bottom: 40px;
}

.titCont {
    display: flex;
    align-items: center;
    gap: 0 20px;
    padding: 16px 20px;
    background: #f3f3f3;
    border-top: 1px solid #c9c9c9;
    border-bottom: 1px solid #c9c9c9;
}

.titCont h3 {
    font-size: 1.2rem;
    font-family: "GmarketSansMedium";
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 40px;
    color: #333;
}


.titCont .edt {
    padding-top: 5px;
    padding-bottom: 5px;
}

.npage {
    background-position: 90% 40%;
    background-repeat: no-repeat;
    padding-right: 40px;
}

.npage {
    background-image: url("../images/sub/icon-npage.svg");
}


.npage:hover {
    background-image: url("../images/sub/icon-npage-w.svg");
}

.busCont {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #333;
}

.busCont .item {
    display: flex;
    gap: 0 20px;
    width: calc((100% - 40px) / 3);
    justify-content: space-between;
}

.busCont .item .tit{
    display: flex;
    align-items: center;
    gap: 0 10px;
}

.carCont .sec-1 {
    border-bottom: 1px solid var(--line);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.carCont .sec-2 {
    margin-bottom: 40px;
}

.carCont .sec-1 .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.carCont .sec-1 .top .mapin {
    font-size: 0.9375rem;
    font-family: "GmarketSansMedium";
    background: url("../images/sub/icon-mapin.svg") no-repeat left top;
    background-size: 20px;
    padding-left: 30px;
}

.high-contrast .carCont .sec-1 .top .mapin {
    background: url("../images/sub/icon-mapin-w.svg") no-repeat left top;
}

.carCont .sec-1 .top ul {
    display: flex;
    gap: 10px;
}

.carCont .sec-1 .top ul li {
    border-radius: 10px;
    border: 1px solid var(--line);
    padding: 12px 50px;
    background-color: #fff;
    text-align: center;
    font-size: 0.9375rem;
    font-family: "GmarketSansMedium";

}

.carCont .sec-1 .top ul li a {
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 20px;
    padding-left: 30px;
    color: #4f4f4f;
}

.carCont .sec-1 .top ul li.naver a {
    background-image: url("../images/sub/icon-nvmap.svg");
}

.carCont .sec-1 .top ul li.google a {
    background-image: url("../images/sub/icon-ggmap.svg");
}

.carCont .sec-1 .top ul li.kakao a {
    background-image: url("../images/sub/icon-kkomap.svg");
}

.carCont .sec-1 .map-area {
    background-color: #cfcfcf;
    height: 450px;
    border-radius: 10px;
    margin-top: 20px;
}

.carCont .sec-2 .list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
    color: #333;
}

.carCont .sec-2 .list .item {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 20px;
    width: calc((100% - 20px) / 3);
    background-color: #fff;
}

.carCont .sec-2 .list .item .col-green {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.carCont .sec-2 .list .item .col-green::before {
    display: inline-block;
    content: "";
    width: 2px;
    height: 2px;
    border-radius: 2px;
    background-color: var(--green);
}

.carCont .sec-2 .list .item dl {
    display: flex;
    background-color: #F5F5F5;
    border-radius: 5px;
    padding: 5px 20px;
    margin-bottom: 5px;
    color: #6a6a6a;
    justify-content: space-between;
}

.carCont .sec-2 .list .item dl dt {
    width: 120px;
}

.carCont .sec-2 .list .item .bd-btn {
    width: 100%;
    text-align: center;
}

.place-list .top p,
.carCont.rent .sec-2 .top p {
    color: #4f4f4f;
}

.place-list .top p>span,
.carCont.rent .sec-2 .top p span {
    color: #333;
    margin-left: 5px;
    word-break: keep-all;
}

.carCont.rent .sec-2 .list .item dl dt {
    width: 66px;
}

.high-contrast .place-list .top p>span,
.high-contrast .carCont.rent .sec-2 .top p span {
    color: #fff;
}

.trv-page .board-wrap {
    margin-top: 20px;
}

/* 게시판 상세보기 */
.board-view {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}

.board-view .view-header {
    border-bottom: 2px solid var(--line);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.board-view .view-title {
    font-family: "GmarketSansMedium";
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.5;
    word-break: keep-all;
}

.board-view .view-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
}

.board-view .view-info dl {
    display: flex;
    align-items: center;
    gap: 10px;
}

.board-view .view-info dt {
    font-family: "GmarketSansMedium";
    color: #666;
    font-size: 14px;
}

.board-view .view-info dd {
    color: #333;
    font-size: 14px;
}

.board-view .view-info .file-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.board-view .view-info .file-link:hover {
    color: var(--green);
}

.board-view .view-content {
    min-height: 300px;
    padding: 30px 0;
    line-height: 1.8;
    color: #333;
    word-break: keep-all;
}

.board-view .view-content p {
    margin-bottom: 20px;
}

.board-view .view-content p:last-child {
    margin-bottom: 0;
}

/* 게시글 본문 이미지가 컨텐츠 영역을 벗어나지 않도록 (모바일 오버플로 수정) */
.board-view .view-content img {
    max-width: 100%;
    height: auto;
}

/* 게시글 본문 표가 영역을 벗어나지 않도록 (모바일 오버플로 수정) */
.board-view .view-content {
    overflow-x: auto;
}

.board-view .view-content table {
    max-width: 100%;
}

.board-view .view-footer {
    border-top: 1px solid var(--line);
    padding-top: 30px;
    text-align: center;
}

.board-view .list-btn {
    display: inline-block;
    padding: 12px 40px;
    background-color: var(--green);
    color: #fff;
    border-radius: 50px;
    font-family: "GmarketSansMedium";
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.board-view .list-btn:hover {
    background-color: #4a9a2a;
}

.trv-page .subTop-mn h2 {
    background-image: url("../images/sub/icon-trv.svg");
}

.place-list.food .subTop-mn h2 {
    background-image: url("../images/sub/icon-food.svg");
}

.place-list.herit .subTop-mn h2 {
    background-image: url("../images/sub/icon-heritage.svg");
}

.place-list.fes .subTop-mn h2 {
    background-image: url("../images/sub/icon-festv.svg");
}


.trv-page .trvCont .bd-box {
    margin-top: 40px;
    word-break: keep-all;
    display: flex;
    padding: 50px 100px;
    gap: 50px;
    text-align: left;
    background: url("../images/sub/line-bg.png") no-repeat top center / cover;
    background-color: #fff;
}

.trv-page .trvCont .bd-box .img {
    width: 30%;
}

.trv-page .trvCont .bd-box .img img {
    width: 100%;
}

.trv-page .trvCont .bd-box .tbox {
    flex: 1;
}

.trv-page .trvCont .bd-box h2 {
    font-family: "GmarketSansBold";
    font-size: 2.2rem;
    color: #333;
}

.trv-page .trvCont .bd-box p {
    margin: 40px auto;
    font-family: "GmarketSansMedium";
    color: #666;
}

.trv-page .trvCont .bd-box .btn-area {
    display: flex;
    gap: 0 10px;
    width: 500px;
    max-width: 100%;
    justify-content: center;
}

.trv-page .trvCont .bd-box .btn-area .btn {
    display: block;
    flex: 1;
    padding: 15px 20px;
    color: #fff;
    border-radius: 10px;
    font-family: "GmarketSansMedium" !important;
    text-align: center;
}

.trv-page .trvCont .bd-box .btn-area .btn.n-1 {
    background-color: var(--green);
}

.trv-page .trvCont .bd-box .btn-area .btn.n-2 {
    background-color: var(--purple);
}

.my-page .prf-info-wrap .top {
    margin-bottom: 20px;
}

.my-page .prf-info-wrap .top .edt {
    padding-top: 5px;
    padding-bottom: 5px;
    width: auto;
}

/* 프로필 정보 영역 */
.prf-info-wrap .info {
    display: flex;
    gap: 40px;
    padding: 40px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    position: relative;
}

.prf-info-wrap .info::after {
    content: '';
    position: absolute;
    left: 280px;
    top: 0;
    height: 100%;
    bottom: 40px;
    width: 1px;
    background-color: #e0e0e0;
}

/* 왼쪽 프로필 섹션 */
.prf-left {
    width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
}

.prf-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prf-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prf-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333333;
    font-family: "GmarketSansBold";
    margin-bottom: 8px;
}

.prf-location {
    font-size: 0.9375rem;
    color: #747474;
    font-family: "GmarketSansMedium";
    margin-bottom: 20px;
}

.prf-status {
    width: 100%;
}

.prf-status span {
    display: inline-block;
    padding: 8px 16px;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 0.875rem;
    color: #747474;
    font-family: "GmarketSansMedium";
    line-height: 1.4;
}

/* 오른쪽 카드 섹션 */
.prf-right {
    flex: 1;
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.prf-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 20px 0 20px;
    background: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.prf-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #FBFBFB;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.prf-card-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.prf-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333333;
    font-family: "GmarketSansMedium";
    margin-bottom: 12px;
}

.prf-card-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.9375rem;
    color: var(--green);
    font-family: "GmarketSansMedium";
    font-weight: 600;
    border: 1px solid var(--line);
    border-radius: 50px;
    padding: 5px 20px;
}

.prf-card-count svg {
    flex-shrink: 0;
}

.my-page>div:not(:last-child) {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--line);
}

.zzim-wrap .top,
.mysch-wrap .top,
.myreview-wrap .top {
    margin-bottom: 40px;
}

.mysch-wrap .top h2 {
    position: relative;
    display: inline-flex;
    align-items: center;
}


.zzim-wrap .top .more,
.mysch-wrap .top .more,
.myreview-wrap .top .more {
    border: 1px solid var(--line);
    border-radius: 10px;
    background-color: #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    color: #666;
}

.zzim-wrap .top .more:hover,
.mysch-wrap .top .more:hover,
.myreview-wrap .top .more:hover {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}

.gal-list.type-2 .item {
    width: calc((100% - 60px) / 4);
}

.zzim-wrap .zzim-swiper-wrapper {
    position: relative;
}

.zzim-wrap .zzim-swiper {
    overflow: hidden;
    position: relative;
}

.zzim-wrap .zzim-swiper .swiper-wrapper {
    align-items: stretch;
}

/* 모바일에서 마지막 슬라이드에서 빈 공간 방지 */
@media (max-width: 767px) {
    .zzim-wrap .zzim-swiper .swiper-wrapper {
        padding-right: 0 !important;
    }
}

.zzim-wrap .zzim-swiper .swiper-slide {
    height: auto;
    box-sizing: border-box;
    width: auto;
    flex-shrink: 0;
}

.zzim-wrap .zzim-swiper .swiper-slide .item {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}

/* 슬라이드가 1개일 때도 여러 개일 때와 동일한 width 계산 적용 (JavaScript에서 처리) */

.zzim-wrap .zzim-swiper .swiper-slide .item .img {
    width: 100%;
    height: 150px;
    border-radius: 20px;
    overflow: hidden;
}

.zzim-wrap .zzim-swiper .swiper-slide .item .tour-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.zzim-wrap .zzim-swiper-prev,
.zzim-wrap .zzim-swiper-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: #333333;
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
}

.high-contrast .zzim-wrap .zzim-swiper-prev,
.high-contrast .zzim-wrap .zzim-swiper-next,
.high-contrast .myreview-wrap .review-swiper-prev,
.high-contrast .myreview-wrap .review-swiper-next {
    background-color: #000;
}

/* 기본적으로 모든 버튼 숨김 (미디어 쿼리에서 표시) */
.zzim-wrap .zzim-prev-1,
.zzim-wrap .zzim-next-1,
.zzim-wrap .zzim-prev-2,
.zzim-wrap .zzim-next-2,
.zzim-wrap .zzim-prev-3,
.zzim-wrap .zzim-next-3 {
    display: none;
    opacity: 0;
    pointer-events: none;
}

/* 슬라이드가 1개일 때 버튼 숨김 - 최우선 적용 (모든 경우 커버) */
.zzim-wrap .zzim-swiper-prev.hide-button,
.zzim-wrap .zzim-swiper-next.hide-button,
.zzim-wrap .zzim-swiper-wrapper:has(.zzim-swiper[data-slides-count="1"]) .zzim-swiper-prev,
.zzim-wrap .zzim-swiper-wrapper:has(.zzim-swiper[data-slides-count="1"]) .zzim-swiper-next,
.zzim-wrap .zzim-swiper[data-slides-count="1"]~.zzim-swiper-prev,
.zzim-wrap .zzim-swiper[data-slides-count="1"]~.zzim-swiper-next,
.zzim-wrap .zzim-swiper-wrapper:has(.zzim-swiper-2[data-slides-count="1"]) .zzim-prev-2,
.zzim-wrap .zzim-swiper-wrapper:has(.zzim-swiper-2[data-slides-count="1"]) .zzim-next-2,
.zzim-wrap .zzim-swiper-wrapper:has(.zzim-swiper-3[data-slides-count="1"]) .zzim-prev-3,
.zzim-wrap .zzim-swiper-wrapper:has(.zzim-swiper-3[data-slides-count="1"]) .zzim-next-3 {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

.zzim-wrap .zzim-swiper-prev.swiper-button-disabled,
.zzim-wrap .zzim-swiper-next.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.zzim-wrap .zzim-swiper-prev:not(.swiper-button-disabled):not(.hide-button),
.zzim-wrap .zzim-swiper-next:not(.swiper-button-disabled):not(.hide-button),
.zzim-wrap .zzim-prev-1:not(.swiper-button-disabled):not(.hide-button),
.zzim-wrap .zzim-next-1:not(.swiper-button-disabled):not(.hide-button),
.zzim-wrap .zzim-prev-2:not(.swiper-button-disabled):not(.hide-button),
.zzim-wrap .zzim-next-2:not(.swiper-button-disabled):not(.hide-button),
.zzim-wrap .zzim-prev-3:not(.swiper-button-disabled):not(.hide-button),
.zzim-wrap .zzim-next-3:not(.swiper-button-disabled):not(.hide-button) {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

.zzim-wrap .zzim-swiper-prev:hover:not(.swiper-button-disabled),
.zzim-wrap .zzim-swiper-next:hover:not(.swiper-button-disabled) {
    background-color: var(--green);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.zzim-wrap .zzim-swiper-prev {
    left: -25px;
}

.zzim-wrap .zzim-swiper-next {
    right: -25px;
}

.zzim-wrap .zzim-swiper-prev img,
.zzim-wrap .zzim-swiper-next img {
    width: 24px;
    height: 24px;
}

/* 모바일/태블릿에서 좌우 버튼 숨기고 pagination 표시 */
@media (max-width: 1023px) {

    .zzim-wrap .zzim-swiper-prev,
    .zzim-wrap .zzim-swiper-next,
    .zzim-wrap .zzim-prev-1,
    .zzim-wrap .zzim-next-1,
    .zzim-wrap .zzim-prev-2,
    .zzim-wrap .zzim-next-2,
    .zzim-wrap .zzim-prev-3,
    .zzim-wrap .zzim-next-3 {
        display: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* pagination 표시 */
    .zzim-wrap .zzim-swiper .swiper-pagination {
        display: block !important;
        position: relative;
        margin-top: 20px;
        text-align: center;
    }

    /* progressbar 스타일 */
    .zzim-wrap .zzim-swiper .swiper-pagination-progressbar {
        background-color: #e0e0e0;
        height: 4px;
        border-radius: 2px;
    }

    .zzim-wrap .zzim-swiper .swiper-pagination-progressbar-fill {
        background-color: var(--green);
        border-radius: 2px;
    }
}

/* 1024px 이상에서 버튼 표시하고 pagination 숨김 */
@media (min-width: 1024px) {
    .zzim-wrap .zzim-swiper .swiper-pagination {
        display: none !important;
    }

    .zzim-wrap .zzim-swiper-prev:not(.hide-button),
    .zzim-wrap .zzim-swiper-next:not(.hide-button),
    .zzim-wrap .zzim-prev-1:not(.hide-button),
    .zzim-wrap .zzim-next-1:not(.hide-button),
    .zzim-wrap .zzim-prev-2:not(.hide-button),
    .zzim-wrap .zzim-next-2:not(.hide-button),
    .zzim-wrap .zzim-prev-3:not(.hide-button),
    .zzim-wrap .zzim-next-3:not(.hide-button) {
        display: flex !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        visibility: visible !important;
        width: 48px !important;
        height: 48px !important;
    }
}

/* zzim-swiper pagination 스타일 */
.zzim-wrap .zzim-swiper .swiper-pagination {
    position: relative !important;
    margin-top: 20px;
    text-align: center;
    bottom: auto !important;
}

.zzim-wrap .zzim-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ddd;
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
    display: inline-block;
    border-radius: 50%;
}

.zzim-wrap .zzim-swiper .swiper-pagination-bullet-active {
    background-color: var(--green);
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.zzim-wrap .item:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 20px;
    /* border-bottom: 1px solid var(--line); */
}

.zzim-wrap .item h4 {
    display: flex;
    align-items: center;
    gap: 0 10px;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.zzim-wrap .item h4::before {
    display: block;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: #333;
}

/* 내가 작성한 리뷰 */
.myreview-wrap .top {
    margin-bottom: 40px;
}

.myreview-wrap .top .more {
    border: 1px solid var(--line);
    border-radius: 10px;
    background-color: #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    color: #666;
    text-decoration: none;
}

.myreview-wrap .top .more:hover {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}

.myreview-wrap .review-swiper-wrapper {
    position: relative;
}

.myreview-wrap .review-swiper {
    overflow: hidden;
    position: relative;
}

.myreview-wrap .review-swiper .swiper-wrapper {
    align-items: stretch;
}

.myreview-wrap .review-swiper .swiper-slide {
    height: auto;
}

.myreview-wrap .item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 40px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.myreview-wrap .item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.myreview-wrap .item .item-header {
    margin-bottom: 16px;
}

.myreview-wrap .item .item-title-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.myreview-wrap .item .item-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333333;
    font-family: "GmarketSansBold";
    margin: 0;
}

.myreview-wrap .item .item-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: "GmarketSansMedium";
    white-space: nowrap;
}

.myreview-wrap .item .item-badge.badge-festival {
    background-color: #cc6f35;
    color: #ffffff;
}

.myreview-wrap .item .item-badge.badge-tourist {
    background-color: var(--green);
    color: #ffffff;
}

.myreview-wrap .item .item-user-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #747474;
    font-family: "GmarketSansMedium";
}

.myreview-wrap .item .user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.myreview-wrap .item .user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.myreview-wrap .item .user-name {
    color: #4f4f4f;
}

.myreview-wrap .item .divider {
    color: #e0e0e0;
    margin: 0 4px;
}

.myreview-wrap .item .item-date {
    color: #747474;
}

.myreview-wrap .item .item-image {
    width: 100px;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #f5f5f5;
}

.myreview-wrap .item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.myreview-wrap .item .item-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.myreview-wrap .review-swiper-prev,
.myreview-wrap .review-swiper-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: #333333;
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
}

.myreview-wrap .review-swiper-prev.swiper-button-disabled,
.myreview-wrap .review-swiper-next.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.myreview-wrap .review-swiper-prev:not(.swiper-button-disabled),
.myreview-wrap .review-swiper-next:not(.swiper-button-disabled) {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

.myreview-wrap .review-swiper-prev:hover:not(.swiper-button-disabled),
.myreview-wrap .review-swiper-next:hover:not(.swiper-button-disabled) {
    background-color: var(--green);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.myreview-wrap .review-swiper-prev {
    left: -25px;
}

.myreview-wrap .review-swiper-next {
    right: -25px;
}

.myreview-wrap .review-swiper-prev img,
.myreview-wrap .review-swiper-next img {
    width: 24px;
    height: 24px;
}

/* 모바일/태블릿에서 review-swiper 좌우 버튼 숨기고 pagination 표시 */
@media (max-width: 1023px) {

    .myreview-wrap .review-swiper-prev,
    .myreview-wrap .review-swiper-next {
        display: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* pagination 표시 */
    .myreview-wrap .review-swiper .swiper-pagination {
        display: block !important;
        position: relative;
        margin-top: 20px;
        text-align: center;
    }

    /* progressbar 스타일 */
    .myreview-wrap .review-swiper .swiper-pagination-progressbar {
        background-color: #e0e0e0;
        height: 4px;
        border-radius: 2px;
    }

    .myreview-wrap .review-swiper .swiper-pagination-progressbar-fill {
        background-color: var(--green);
        border-radius: 2px;
    }
}

/* 1024px 이상에서 review-swiper 버튼 표시하고 pagination 숨김 */
@media (min-width: 1024px) {
    .myreview-wrap .review-swiper .swiper-pagination {
        display: none !important;
    }

    .myreview-wrap .review-swiper-prev:not(.hide-button),
    .myreview-wrap .review-swiper-next:not(.hide-button) {
        display: flex !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        visibility: visible !important;
        width: 48px !important;
        height: 48px !important;
    }
}

/* review-swiper pagination 스타일 */
.myreview-wrap .review-swiper .swiper-pagination {
    position: relative;
    margin-top: 20px;
    text-align: center;
}

.myreview-wrap .review-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ddd;
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.myreview-wrap .review-swiper .swiper-pagination-bullet-active {
    background-color: var(--green);
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* 나의 여행스케줄 */
.mysch-wrap .schedule-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.mysch-wrap .schedule-card {
    width: calc((100% - 40px) / 3);
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-top: 0;
    border-radius: 28px 28px 15px 15px;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
}

.mysch-wrap .schedule-date {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333333;
    font-family: "GmarketSansMedium";
    margin-bottom: 16px;
    border: 1px solid var(--line);
    border-radius: 50px;
    padding: 10px 20px;
    text-align: center;
}

.mysch-wrap .schedule-image-slider {
    position: relative;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: visible;
    padding: 20px 20px 0 20px;
}

.mysch-wrap .schedule-swiper {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
}

.mysch-wrap .schedule-swiper .swiper-wrapper {
    height: 200px;
}

.mysch-wrap .schedule-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.mysch-wrap .schedule-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mysch-wrap .schedule-swiper .schedule-slide-prev,
.mysch-wrap .schedule-swiper .schedule-slide-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.3s ease;
    padding: 0;
}

.mysch-wrap .schedule-swiper .schedule-slide-prev {
    left: 12px;
}

.mysch-wrap .schedule-swiper .schedule-slide-next {
    right: 12px;
}

.mysch-wrap .schedule-swiper .schedule-slide-prev:hover,
.mysch-wrap .schedule-swiper .schedule-slide-next:hover {
    background: rgba(0, 0, 0, 0.7);
}

.mysch-wrap .schedule-swiper .schedule-slide-prev svg,
.mysch-wrap .schedule-swiper .schedule-slide-next svg {
    width: 20px;
    height: 20px;
}

.mysch-wrap .schedule-swiper .schedule-slide-pagination {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-family: "GmarketSansMedium";
    z-index: 10;
    width: auto !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.mysch-wrap .schedule-swiper .schedule-slide-pagination .swiper-pagination-current,
.mysch-wrap .schedule-swiper .schedule-slide-pagination .swiper-pagination-total {
    display: inline-block;
    color: #ffffff;
}

.mysch-wrap .schedule-itinerary {
    font-size: 0.9375rem;
    color: #4f4f4f;
    font-family: "GmarketSansMedium";
    line-height: 1.6;
    margin-bottom: 16px;
    padding: 12px;
    background: #f5f5f5;
    border-radius: 8px;
    margin: 0 20px 20px 20px;
    word-break: keep-all;
}

.mysch-wrap .schedule-actions {
    display: flex;
    gap: 10px;
    padding: 0 20px 20px 20px;
}

.mysch-wrap .schedule-btn-view,
.mysch-wrap .schedule-btn-delete {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #ffffff;
    color: #4f4f4f;
    font-size: 0.9375rem;
    font-family: "GmarketSansMedium" !important;
    cursor: pointer;
    transition: all 0.3s ease;
    word-break: keep-all;
}

.mysch-wrap .schedule-btn-view:hover {
    border-color: var(--green);
    color: var(--green);
    background: #f0f8ed;
}

.mysch-wrap .schedule-btn-delete:hover {
    border-color: #ff4444;
    color: #ff4444;
    background: #fff5f5;
}


.trvagc-Cont {
    margin-top: 40px;
}


.board-wrap .search-box {
    display: flex;
    flex-direction: column;
    gap: 30px 0;
    width: 730px;
    max-width: 100%;
    margin: 0 auto;
}

.board-wrap .tab-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.board-wrap .tab-btn {
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    color: #4f4f4f;
    font-size: 0.9375rem;
    font-family: "GmarketSansMedium" !important;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.board-wrap .tab-btn:hover {
    border-color: var(--green);
    color: var(--green);
}

.board-wrap .tab-btn.active {
    background-color: var(--green);
    border-color: var(--green);
    color: #ffffff;
}

.board-wrap .search-bar {
    display: flex;
    align-items: center;
    border: 1px solid var(--green);
    border-radius: 20px;
    padding: 10px 16px;
    background-color: #ffffff;
    gap: 12px;
}

.board-wrap .search-dropdown {
    position: relative;
}

.board-wrap .dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 0;
    font-size: 0.9375rem;
    font-family: "GmarketSansMedium";
    color: #333333;
    cursor: pointer;
}

.board-wrap .dropdown-btn svg {
    width: 12px;
    height: 12px;
    color: #747474;
    transition: transform 0.2s ease;
}

.board-wrap .dropdown-btn:hover svg {
    color: #4f4f4f;
}

.board-wrap .search-divider {
    width: 1px;
    height: 20px;
    background-color: #e0e0e0;
    flex-shrink: 0;
}

.board-wrap .search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.9375rem;
    font-family: "GmarketSansMedium";
    color: #333333;
    background: transparent;
}

.board-wrap .search-input::placeholder {
    color: #747474;
}

.board-wrap .search-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--green);
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.board-wrap .search-icon-btn:hover {
    color: #4a9a2d;
}

.board-wrap .search-icon-btn svg {
    width: 30px;
    height: 30px;
}

.board-list .top {
    display: flex;
    justify-content: space-between;
}

.board-list .top p {
    font-family: "GmarketSansMedium";
    color: var(--gray9);
}

.board-list .top p span {
    color: #333;
    margin-left: 5px;
}

.board-list-box {
    margin-top: 40px;
}

.board-list-box .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0 0 0 / 10%);
    padding-bottom: 20px;
}

.high-contrast .board-list-box .top {
    border-bottom: 1px solid #fff;
}

.board-list-box .top p {
    font-family: "GmarketSansMedium";
    font-size: 0.9375rem;
    color: #4f4f4f;
}

.board-list-box .top p span {
    color: #333333;
    margin-left: 5px;
    font-weight: 600;
}

.high-contrast .board-list-box .top p span {
    color: #fff;
}

.board-list-box .top select {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: "GmarketSansMedium";
    color: #333333;
    background-color: #ffffff;
    cursor: pointer;
}

.board-list .agency-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    background-color: transparent;
}

.board-list .agency-table thead {
    background-color: transparent;
}

.board-list .agency-table thead tr {
    background-color: transparent;
}

.board-list .agency-table th {
    position: relative;
    padding: 16px 12px;
    text-align: center;
    font-size: 0.9375rem;
    font-family: "GmarketSansMedium";
    font-weight: 600;
    color: #333333;
    /* border: 1px solid #e0e0e0; */
    border-bottom: 1px solid #333;
}


.board-list .agency-table tbody tr {
    transition: all 0.2s ease;
}

.board-list .agency-table tbody tr td {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.board-list .agency-table tbody tr:hover td {
    background-color: #fafafa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.board-list .agency-table td {
    padding: 16px 12px;
    text-align: center;
    font-size: 0.9375rem;
    vertical-align: middle;
    background-color: #ffffff;
    color: #333;
}

.board-list .agency-table tbody tr td {
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

.board-list .agency-table tr th:not(:last-child)::after,
.board-list .agency-table tr td:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    width: 1px;
    height: 30%;
    background-color: #e0e0e0;
}

.board-list .agency-table tbody tr td:first-child {
    border-left: 1px solid #e0e0e0;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.board-list .agency-table tbody tr td:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    border-right: 1px solid #eaeaea;
}

.board-list .agency-table td:nth-child(2) {
    text-align: left;
    padding-left: 20px;
}

.board-list .contact-btn {
    display: inline-block;
    padding: 6px 16px;
    background-color: #260068;
    color: #ffffff;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-family: "GmarketSansMedium";
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.board-list .contact-btn:hover {
    background-color: #5a3f7a;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

.page-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border-radius: 50%;
    color: #4f4f4f;
    font-size: 0.9375rem;
    font-family: "GmarketSansMedium";
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-btn:hover {
    border-color: var(--green);
    color: var(--green);
}

.page-btn.active {
    background-color: var(--green);
    border-color: var(--green);
    color: #ffffff;
    font-weight: 600;
}

.page-btn.first,
.page-btn.prev,
.page-btn.next,
.page-btn.last {
    border-radius: 50%;
}


.board-list {
    padding: 0 20px 20px 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.board-list .agency-table {
    min-width: 800px;
}

.board-wrap .gal-list>a {
    width: calc((100% - 60px) / 3);
    display: block;
}

.board-wrap .gal-list>a:hover .img img {
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.board-wrap .gal-list>a .img {
    width: 100%;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.board-wrap .gal-list>a .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.board-wrap .gal-list>a .tbox strong {
    font-family: "GmarketSansMedium";
    color: #333;
}

.high-contrast .board-wrap .gal-list>a .tbox strong {
    color: #fff;
}

.board-wrap .gal-list>a .tbox ul {
    display: flex;
    gap: 0 20px;
}

.board-wrap .gal-list>a .tbox ul li {
    color: var(--gray9);
}

.board-wrap .gal-list.mapctrg>a .tbox .btn-area .bd-btn {
    background-repeat: no-repeat;
    background-position: 20px center;
    background-color: #fff;
    padding-left: 50px;
    font-family: "GmarketSansMedium" !important;
    font-size: 0.9rem;
}

.board-wrap .gal-list.mapctrg>a .tbox .btn-area .bd-btn.view {
    background-image: url("../images/sub/icon-view.svg");
}

.board-wrap .gal-list.mapctrg>a .tbox .btn-area .bd-btn.view:hover {
    background-image: url("../images/sub/icon-view-w.svg");
    background-color: var(--purple);
}

.board-wrap .gal-list.mapctrg>a .tbox .btn-area .bd-btn.download {
    background-image: url("../images/sub/icon-down.svg");
}

.board-wrap .gal-list.mapctrg>a .tbox .btn-area .bd-btn.download:hover {
    background-image: url("../images/sub/icon-down-w.svg");
    background-color: var(--purple);
}


.board-wrap .gal-list.mapctrg .btn-area {
    display: flex;
    gap: 0 10px;
    margin-top: 10px;
}

.mysch-top-wrap .titCont {
    margin-bottom: 40px;
}

.mysch-top-wrap .bd-box {
    padding: 50px;
    text-align: center;
    font-family: "GmarketSansMedium";
    color: #333;
}

.mysch-top-wrap .bd-box p {
    color: #666;
    margin-top: 30px;
    word-break: keep-all;
}

.mysch-top-wrap {
    padding-bottom: 10px !important;
}

/* 여행스케줄 상세 */
.mysch-detail-wrap {
    margin-top: 40px;
}

.mysch-detail-wrap .top {
    margin-bottom: 40px;
}

.mysch-detail-wrap .top h2,
.sch-detail-info-wrap .top h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1c1c1c;
    font-family: "GmarketSansBold";
    margin-bottom: 24px;
}

.high-contrast .mysch-detail-wrap .top h2,
.high-contrast .sch-detail-info-wrap .top h2 {
    color: #fff;
}

.mysch-detail-wrap .top .step-list {
    display: flex;
    gap: 10px 30px;
    flex-wrap: wrap;
    align-items: center;
}

.mysch-detail-wrap .top .step-list li {
    background: #fff;
    border: 1px solid var(--green);
    border-radius: 50px;
    color: var(--green);
    padding: 10px 24px;
    font-size: 0.9375rem;
    font-family: "GmarketSansMedium";
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.mysch-detail-wrap .top .step-list li span {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    text-align: center;
    background-color: var(--green);
    color: #fff;
    font-size: 0.9375rem;
}

.mysch-detail-wrap .top .step-list li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url("../images/common/arr-right-2.svg") no-repeat center center / contain;
    z-index: 1;
}

.high-contrast .mysch-detail-wrap .top .step-list li:not(:last-child)::after {
    filter: brightness(0) invert(1);
}


.mysch-detail-wrap .list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.mysch-detail-wrap .list .schedule-card-item {
    width: calc((100% - 40px) / 3);
}

.mysch-detail-wrap .schedule-card-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #333;
}



.mysch-detail-wrap .schedule-card-item .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: "GmarketSansBold";
    padding: 0 20px 10px 20px;
    border-bottom: 1px solid var(--line);
}

.mysch-detail-wrap .schedule-card-item .card-title span {
    width: 25px;
    height: 25px;
    border-radius: 25px;
    line-height: 27px;
    text-align: center;
    background-color: var(--green);
    color: #fff;
    display: inline-block;
    font-size: 0.9375rem;
    margin-top: 0;
    transform: translateY(-2px);
    margin-right: 5px;
}

.mysch-detail-wrap .schedule-card-item .card-image {
    width: 90%;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    margin: 0 20px 0 20px;
}

.mysch-detail-wrap .schedule-card-item .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mysch-detail-wrap .schedule-card-item .card-travel-time {
    display: flex;
    gap: 10px;
    padding: 0 20px;
}

.mysch-detail-wrap .schedule-card-item .card-travel-time button {
    background: #f5f5f5;
    border: 1px solid #f1f1f1;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.875rem;
    font-family: "GmarketSansMedium";
    color: #4f4f4f;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.mysch-detail-wrap .schedule-card-item .card-travel-time button:hover {
    background: #e8e8e8;
    border-color: #d0d0d0;
}

.mysch-detail-wrap .schedule-card-item .card-datetime {
    display: flex;
    gap: 20px;
    font-size: 0.9375rem;
    font-family: "GmarketSansMedium";
    color: #333333;
}

.mysch-detail-wrap .schedule-card-item .card-datetime p {
    margin: 0;
}

.mysch-detail-wrap .schedule-card-item .card-hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 20px;
}

.mysch-detail-wrap .schedule-card-item .card-hashtags button {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 4px 8px;
    font-size: 0.8rem;
    font-family: "GmarketSansMedium" !important;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mysch-detail-wrap .schedule-card-item .card-hashtags button:hover {
    background: #e8f5e0;
    border-color: var(--green);
}

.mysch-detail-wrap .schedule-card-item .card-amenities {
    padding: 20px 0 0 0;
    border-top: 1px solid var(--line);
    padding: 20px 20px 0 20px;
}

.dot-txt {
    display: flex;
    align-items: center;
    gap: 0 10px;
    font-family: "GmarketSansMedium";
    position: relative;
    font-weight: 600;
}

.dot-txt::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50px;
    background-color: #333;
}


.mysch-detail-wrap .schedule-card-item .card-amenities .list {
    display: flex;
    gap: 20px;

}

.mysch-detail-wrap .schedule-card-item .card-amenities .amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mysch-detail-wrap .schedule-card-item .card-amenities .amenity-item .amenity-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mysch-detail-wrap .schedule-card-item .card-amenities .amenity-item .amenity-icon img {
    width: 100%;
    height: 100%;
}

.mysch-detail-wrap .schedule-card-item .card-amenities .amenity-item span {
    font-size: 0.8rem;
}

.mysch-detail-wrap .schedule-card-item .card-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    padding: 0 20px;
}

.mysch-detail-wrap .schedule-card-item .card-actions button {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #ffffff;
    color: #4f4f4f;
    font-size: 0.9375rem;
    font-family: "GmarketSansMedium" !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mysch-detail-wrap .schedule-card-item .card-actions .btn-edit:hover {
    border-color: var(--green);
    color: var(--green);
    background: #f0f8ed;
}

.mysch-detail-wrap .schedule-card-item .card-actions .btn-delete:hover {
    border-color: #ff4444;
    color: #ff4444;
    background: #fff5f5;
}

.mysch-detail-wrap .schedule-card-item .infoBox {
    padding: 0 20px;
}

.mysch-detail-wrap .schedule-card-item .infoBox dt {
    width: 80px;
}

.sch-detail-info-wrap {
    margin-top: 40px;
}


/* 공통 모달 스타일 */
[class*="-modal-overlay"] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

[class*="-modal-overlay"][aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

[class*="-modal-container"] {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

[class*="-modal-overlay"][aria-hidden="false"] [class*="-modal-container"] {
    transform: scale(1);
}

[class*="-modal-close"] {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4f4f4f;
    transition: color 0.2s ease;
    padding: 0;
    z-index: 10;
    border: 1px solid var(--line);
    border-radius: 5px;
}

[class*="-modal-close"]:hover {
    color: #333333;
}

[class*="-modal-close"] svg {
    width: 24px;
    height: 24px;
}

[class*="-modal-title"] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333333;
    font-family: "GmarketSansBold";
    margin: 0 0 20px 0;
    text-align: center;
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
}

/* 스케줄 설정 모달 */
.schedule-modal-container {
    max-width: 600px;
}

.schedule-modal-title {
    margin: 0 0 20px 0;
}

.schedule-modal-content {
    position: relative;
}


.schedule-modal-notice {
    margin-bottom: 30px;
}

.schedule-modal-notice p {
    font-size: 0.875rem;
    color: #4f4f4f;
    font-family: "GmarketSansMedium";
    margin: 0 0 8px 0;
    line-height: 1.6;
}

.schedule-modal-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.schedule-form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.schedule-form-group label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #333333;
    font-family: "GmarketSansMedium";
}

.schedule-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: "GmarketSansMedium";
    color: #333333;
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.schedule-input:focus {
    outline: none;
    border-color: var(--green);
}

.schedule-datetime-wrapper {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.schedule-time-wrapper {
    display: flex;
    gap: 8px;
    flex: 0 0 auto;
    min-width: 0;
}

.schedule-time-wrapper .schedule-select {
    flex: 0 0 auto;
    min-width: 100px;
}

.schedule-select {
    flex: 1;
    min-width: 100px;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: "GmarketSansMedium";
    color: #333333;
    background-color: #ffffff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%23666666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.schedule-select:focus {
    outline: none;
    border-color: var(--green);
}

.schedule-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: "GmarketSansMedium";
    color: #333333;
    resize: vertical;
    min-height: 100px;
}

.schedule-textarea:focus {
    outline: none;
    border-color: var(--green);
}

.schedule-textarea::placeholder {
    color: #747474;
}

/* 공통 모달 버튼 스타일 */
.schedule-modal-buttons,
.delete-modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    justify-content: center;
}

.schedule-btn,
.delete-btn {
    flex: 1;
    min-width: 120px;
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    font-family: "GmarketSansMedium";
    cursor: pointer;
    transition: all 0.3s ease;
}

.schedule-btn-primary,
.delete-btn-confirm {
    background-color: var(--green);
    color: #ffffff;
}

.schedule-btn-primary:hover,
.delete-btn-confirm:hover {
    background-color: #4a9a2d;
}

.schedule-btn-cancel,
.delete-btn-cancel {
    background-color: #e0e0e0;
    color: #4f4f4f;
}

.schedule-btn-cancel:hover,
.delete-btn-cancel:hover {
    background-color: #d0d0d0;
    color: #333333;
}

/* 스케줄 삭제 확인 모달 */
.delete-modal-container {
    max-width: 500px;
}

.delete-modal-content {
    position: relative;
    text-align: center;
}

.delete-modal-title {
    margin: 0 0 30px 0;
}

.delete-modal-message {
    margin-bottom: 40px;
}

.delete-modal-message p {
    font-size: 1rem;
    color: #333333;
    font-family: "GmarketSansMedium";
    margin: 0 0 8px 0;
    line-height: 1.6;
}

.delete-modal-message p:last-child {
    margin-bottom: 0;
}

.delete-modal-buttons {
    justify-content: center;
}

.audio-guide-box {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.audio-guide-box p.col-gray9 {
    margin-bottom: 10px;
}

.air-train-Cont {
    display: flex;
    gap: 20px;
}

.air-train-Cont .item {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 20px;
    width: calc((100% - 40px) / 3);
    background-color: #fff;
}

.air-train-Cont .item .img {
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.air-train-Cont .item .tbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
}

.air-train-Cont .item .tbox strong {
    font-family: "GmarketSansMedium";
}

.add-schedule-btn span {
    padding-left: 24px;
    background: url("../images/common/icon-add-shd.svg") no-repeat left center / 20px;
}

.trfCont-wrap .search-box {
    margin: 50px auto;
}

.sch-tit {
    margin-left: 10px;
}

.high-contrast .col-black {
    color: #fff !important;
}

.maj-product-page {}

.maj-product-page .maj-wrap {
    padding: 40px;
    background: url("../images/sub/major-bg.png") no-repeat center center / cover;
    margin-top: 20px;
}

.maj-product-page .titBox {
    margin: 50px auto;
}

.maj-product-page .titBox .top {
    font-family: "GmarketSansMedium";
    text-align: center;
}

.maj-product-page .titBox .top .tit1 {
    display: inline-block;
    border: 1px solid #575757;
    border-radius: 5px;
    color: #575757;
    background-color: #fff;
    padding: 5px 10px;
}

.maj-product-page .titBox .top h1 {
    margin: 5px auto;
    color: #333;
}

.maj-product-page .titBox .top .tit2 {
    position: relative;
    color: var(--green);
    display: flex;
    justify-content: center;
    gap: 0 20px;
    align-items: center;
}

.maj-product-page .titBox .top .tit2::before,
.maj-product-page .titBox .top .tit2::after {
    display: inline-block;
    content: "";
    width: 1px;
    height: 15px;
    background-color: var(--green);
}

.maj-product-page .titBox .bottom {
    position: relative;
    padding: 50px;
    text-align: center;
    font-family: "GmarketSansMedium";
    box-shadow: 1px 1px 10px rgba(0 0 0 / 10%);
    max-width: 100%;
    width: 800px;
    margin: 30px auto 50px auto;
    word-break: keep-all;
    color: #333;
}

.maj-product-page .titBox .bottom .hmo {
    position: absolute;
    bottom: 0;
    right: -120px;
}

.maj-product-page .titBox .bottom .txt1 {
    margin: 5px auto;
}

.maj-product-page .titBox .bottom .txt2 {
    display: inline-block;
    background-color: rgba(182, 240, 134, 0.3);
    padding: 4px 8px;
    max-width: 100%;
}

.maj-product-page .titBox .bottom .txt2-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px 0;
}

.maj-product-page .list {
    display: flex;
    flex-wrap: wrap;
    gap: 100px 40px;
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
}

.maj-product-page .list .item {
    position: relative;
    width: calc((100% - 80px) / 3);
}

.maj-product-page .list .item:hover .img {
    border: 15px solid #FAE100;
    transition: 0.2s;
}

.maj-product-page .list .item .img {
    height: 330px;
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
}


.maj-product-page .list .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.maj-product-page .list .item .tbox {
    background-color: #F4F4F4;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}


.maj-product-page .list .item .tbox h2 {
    font-family: "GmarketSansMedium";
    color: #333;
    margin-bottom: 5px;
}

.maj-product-page .list .item .tbox span {
    border: 1px solid var(--green);
    background-color: #fff;
    border-radius: 50px;
    padding: 4px 10px;
    color: var(--green);
}

/* 말풍선 툴팁 */
.maj-product-page .list .item .tooltip-bubble {
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border: 3px solid #000;
    border-radius: 15px;
    padding: 10px 18px;
    font-family: "GmarketSansMedium";
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, top 0.3s ease;
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 삼각형 포인터 - 외부 테두리 (검은색) */
.maj-product-page .list .item .tooltip-bubble::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #000;
    z-index: 1;
}

/* 삼각형 포인터 내부 흰색 */
.maj-product-page .list .item .tooltip-bubble::before {
    content: "";
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 9px solid #fff;
    z-index: 2;
}

.maj-product-page .list .item:hover .tooltip-bubble {
    opacity: 1;
    visibility: visible;
    top: -65px;
}


.maj-product-page .list .deco-img {
    position: absolute;

}

.maj-product-page .list .item:first-child .deco-img {
    bottom: 100px;
    left: -58px;
}

.maj-product-page .list .item:nth-child(2) .deco-img {
    bottom: 100px;
    right: -58px;
}

.maj-product-page .list .item:nth-child(3) .deco-img {
    top: 0px;
    right: -58px;
}

.maj-product-page .list .item:nth-child(4) .deco-img {
    top: 0px;
    left: -58px;
}

.maj-product-page .list .item:nth-child(5) .deco-img {
    bottom: 97px;
    right: 0;
}

.maj-product-page .list .item:nth-child(6) .deco-img {
    bottom: 113px;
    right: -50px;
}

.maj-product-page .list .item:nth-child(7) .deco-img {
    bottom: 125px;
    right: 0;
}

.maj-product-page .maj-detail-wrap {
    text-align: center;
    padding: 50px 150px;
    box-shadow: 1px 1px 10px rgba(0 0 0 / 10%);
}


.maj-product-page .maj-detail-wrap  .titBox{
    margin: 0 auto;
}

.maj-product-page .maj-detail-wrap .titBox .bottom.bd-box {
    box-shadow: none;
    border: none;
    padding: 0;
    width: auto;
    border-bottom: 1px solid var(--line);
    padding-bottom: 30px;
    border-radius: 0;
    margin: 30px auto 0 auto;
}

.maj-product-page .maj-detail-wrap .call {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #fff;
    border: 2px solid var(--green);
    border-radius: 50px;
    padding: 10px 20px;
    margin: 30px auto;
}

.maj-product-page .maj-detail-wrap .call img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.maj-product-page .maj-detail-wrap .call span {
    font-family: "GmarketSansMedium";
    color: #333;
    white-space: nowrap;
}

.maj-product-page .infoBox .infoBox{
    padding: 20px;
}

.maj-product-page .maj-swiper {
    margin-top: 30px;
}

.maj-product-page .maj-swiper .swiper-slide {
    border-radius: 10px;
    overflow: hidden;
}

.maj-product-page .maj-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.maj-product-page .maj-swiper .swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.maj-product-page .maj-swiper .swiper-pagination-progressbar {
    background-color: rgba(0, 0, 0, 0.1);
    height: 4px;
    border-radius: 2px;
}

.maj-product-page .maj-swiper .swiper-pagination-progressbar-fill {
    background-color: var(--green);
    border-radius: 2px;
}

.maj-product-page .infoBox2{
    margin-top: 20px;
    padding-bottom: 40px;
}

.maj-product-page .infoBox2 p.txt{
    width: 70%;
    margin: 50px auto;
    text-align: center;
    word-break: keep-all;
    color: #333;
}

.maj-product-page .infoBox2 .btn-wrap{
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 450px;
    max-width: 100%;
    margin: 0 auto;
}

.maj-product-page .infoBox2 .btn-wrap a{
    flex: 1;
    padding: 10px 20px;
    background-color: var(--green);
}

.maj-product-page .infoBox2 .btn-wrap a .npage {
    background-position: left center;
    padding-left: 25px;
    padding-right: 0;
    background-image: url("../images/sub/icon-npage-w.svg");
    color: #fff;
}


/* ============================================

   ============================================ */

@media (max-width: 1400px) {

    #sub-content {
        padding-top: 250px;
    }



}

/*E:1400px*/

@media (max-width: 1024px) {

    #sub-content {
        padding-top: 200px;
        padding-bottom: 50px;
    }

    .prf-info-wrap .info {
        flex-direction: column;
        gap: 30px;
    }

    .prf-info-wrap .info::after {
        display: none;
    }

    .prf-left {
        width: 100%;
    }

    .prf-right {
        flex-wrap: wrap;
    }

    .prf-card {
        flex: 0 0 calc(50% - 10px);
    }


    .snb-wrap {
        flex-wrap: wrap;
        padding: 20px 24px;
    }

    .mysch-detail-wrap .list .schedule-card-item {
        width: calc((100% - 20px) / 2);
    }


    .board-list .agency-table th,
    .board-list .agency-table td {
        padding: 12px 8px;
        font-size: 0.875rem;
    }

    .board-list .agency-table td:nth-child(2),
    .board-list .agency-table td:nth-child(4) {
        padding-left: 12px;
    }


    .carCont .sec-1 .top {
        flex-direction: column;
        gap: 10px 0;
    }

    .carCont .sec-1 .top ul li {
        padding: 10px 20px;
    }

    .prf-card {
        padding: 20px 20px 0 20px;
    }

    .place-list .item .img {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .place-list .item {
        flex-direction: column;
    }

    .place-list .item .cbox .top {
        flex-direction: column;
        gap: 20px 0;
    }

    .place-list .item .cbox .top .rbox {
        margin-left: auto;
    }

    .place-list .item .cbox .top h3 {
        width: 100%;
    }

    .place-list.food .item .cbox .top .rbox {
        margin-top: 20px;
        width: 100%;
    }

    .place-list .item .cbox .bottom a,
    .place-list .item .cbox .bottom button {
        padding: 8px 0;
    }

    .trv-page .trvCont .bd-box {
        padding: 50px 20px;
        flex-direction: column;
        text-align: center;
    }

    .trv-page .trvCont .bd-box .img {
        margin: 0 auto;
        width: 50%;
    }

    .place-list {
        margin-top: 20px;
    }

    .trv-page .trvCont .bd-box .btn-area{
        margin: 0 auto;
    }

}

/*E:1024px*/


@media (max-width: 768px) {
    .snb-wrap {
        padding: 16px 20px;
        gap: 16px;
        margin-bottom: 50px !important;
    }

    .snb-title {
        font-size: 1.5rem;
    }

    .snb-nav {
        width: 100%;
        flex-wrap: wrap;
    }

    .snb-select-wrap.depth-1 {
        display: none;
    }

    .snb-select-wrap {
        position: relative;
        flex: 1;
    }

    .snb-select {
        flex: 1;
        width: 100%;
    }

    .snb-share {
        margin-bottom: 0;
        width: auto;
        position: absolute;
        top: 12px;
        right: 20px;
    }

    .detail-page .sec-1 .box-1 {
        padding: 20px 16px;
    }

    .detail-page .sec-1 .box-1-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }



    .edt {
        padding: 6px 12px;
        border-radius: 8px;
        width: auto;
        margin-left: 0;
        align-self: flex-end;
    }

    .detail-page .sec-1 .box-2 {
        padding: 10px;
        font-family: "GmarketSansMedium";
        font-size: 0.75rem;
        margin-top: 0;
    }

    .detail-page .sec-1 .box-2 ul li span {
        margin-right: 0;
        font-size: 12px;

    }

    .detail-page .sec-1 .box-2 ul li p {
        font-size: 12px;
    }

    .detail-page .sec-1 .box-2 .heart {
        font-size: 12px;
        color:#333;
    }

    .detail-page .sec-1 .box-2 ul {
        gap: 0 20px;
    }

    .detail-page .sec-1 .box-2 ul li:not(:last-child)::after {
        right: -10px;
    }


    .detail-page .sec-1 .img-sd-wrap .yo-img {
        bottom: -11px;
        left: 0;
        width: 93px;
    }

    .detail-page .sec-2 .conWrap .accordion-inner .bd-box {
        padding: 20px;
    }

    .amenities-list .item strong {
        border-radius: 8px;
        font-size: 0.75rem;
        width: auto;
        padding: 5px;
    }

    .detail-page .sec-2 .nav.fixed .nav-inner {
        padding: 0 20px;
    }

    .rating-area .rating-comment {
        margin-bottom: 10px;
        border-radius: 10px;
    }

    .rating-area .rating-submit {
        border-radius: 10px;
    }

    .rating-area .rating-content {
        padding: 24px 20px;
    }

    .rating-area .rating-question-wrapper {
        flex-direction: column;
        gap: 16px;
    }

    .rating-area .rating-question h3 {
        font-size: 1.25rem;
    }

    .rating-area .rating-buttons {
        width: 100%;
        flex-wrap: wrap;
    }

    .rating-area .rating-btn {
        flex: 1;
        min-width: 0;
        justify-content: center;
    }

    .rating-area .rating-form {
        flex-direction: column;
    }

    .rating-area .rating-submit {
        width: 100%;
    }

    .rating-area .rating-decoration {
        display: none;
    }

    .rating-area .rating-btn {
        border-radius: 10px;
        padding: 10px;
        flex-direction: column;
    }

    .prf-info-wrap .info {
        padding: 30px 20px;
    }

    .mysch-wrap .schedule-card {
        min-width: 100%;
    }

    .schedule-slide-wrapper {
        height: 180px;
    }


    .mysch-detail-wrap {
        margin-top: 0;
    }

    .mysch-detail-wrap .top h2 {
        font-size: 1.5rem;
    }

    .mysch-detail-wrap .top .tab-list {
        flex-wrap: wrap;
    }

    .mysch-detail-wrap .top .tab-list li {
        font-size: 0.875rem;
        padding: 8px 16px;
    }

    .mysch-detail-wrap .list .schedule-card-item {
        width: 100%;
        padding: 20px 0;
    }

    .mysch-detail-wrap .schedule-card-item {
        padding: 20px;
    }

    .mysch-detail-wrap .schedule-card-item .card-image {
        height: 200px;
    }

    .mysch-detail-wrap .schedule-card-item .card-amenities {
        flex-wrap: wrap;
        gap: 15px;
    }

    .mysch-detail-wrap .schedule-card-item .card-actions {
        flex-direction: column;
    }

    .board-list .agency-table {
        border-spacing: 0 8px;
    }



    .board-list .contact-btn {
        padding: 4px 10px;
        font-size: 12px;
    }

    .pagination {
        margin-top: 30px;
        flex-wrap: wrap;
    }

    .page-btn {
        min-width: 32px;
        height: 32px;
        padding: 0 8px;
        font-size: 0.8125rem;
    }

    /* 숫자 버튼 5개로 제한 (6번째부터 숨김) */
    .pagination .page-btn:nth-child(n+8):not(.next):not(.last) {
        display: none;
    }

    [class*="-modal-container"] {
        padding: 30px 20px;
        width: 95%;
    }

    [class*="-modal-title"] {
        font-size: 1.5rem;
    }

    .schedule-datetime-wrapper {
        flex-direction: column;
    }

    .schedule-time-wrapper {
        width: 100%;
        flex-direction: row;
    }

    .schedule-select {
        width: 100%;
    }

    .schedule-time-wrapper .schedule-select {
        flex: 1;
    }

    [class*="-modal-buttons"] {
        flex-direction: column;
    }

    .amenities-info {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        margin-bottom: 20px;
    }

    .delete-btn {
        width: 100%;
    }

    .amenities-list {
        gap: 10px;
    }

    .amenities-list .item {
        gap: 10px;
        width: calc((100% - 20px) / 3);
        padding: 10px;
    }

    .amenities-list .item p {
        line-height: 1.2rem;
    }

    .amenities-list .item img {
        width: 50px;
    }

    .detail-page .sec-2 .conWrap>div {
        padding: 0 0 20px 0;
    }

    .gal-list.type-1 .item {
        width: calc((100% - 20px) / 2);
        height: 180px;
    }

    .gal-list.type-2 .item {
        width: calc((100% - 20px) / 2);
    }



    .infoBox dl dt {
        width: 80px;
    }

    .infoBox dl {
        gap: 0 10px;
    }

    .bd-btn {
        font-size: 0.85rem;
        word-break: keep-all;
    }

    .subTop-mn {
        flex-direction: column;
        margin-bottom: 0;
    }

    .busCont .item {
        flex-direction: column;
        gap: 10px 0;
        width: 100%;
    }

    .busCont {
        gap: 10px;
        flex-direction: column;
    }

    .carCont .sec-1 .top ul li {
        padding: 10px;
    }

    .carCont .sec-2 .list {
        margin-top: 30px;
    }

    .carCont .sec-2 .list .item {
        width: calc((100% - 10px) / 2);
        padding: 20px 10px;
    }

    .carCont .sec-2 .list .item dl {
        flex-direction: column;
        padding: 10px;
        font-size: 0.9rem;
    }

    .carCont .sec-2 .list .item>p {
        word-break: keep-all;
    }

    .carCont .sec-1 .top ul li a {
        font-size: 0.8rem;
    }

    .titCont h3 {
        font-size: 1.2rem;
    }

    .titCont .edt {
        width: auto;
    }

    .trv-page .trvCont .bd-box .btn-area .btn {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .trv-page .trvCont .bd-box h2 {
        font-size: 1.5rem;
    }

    .board-wrap .gal-list>a {
        width: calc((100% - 40px) / 2);
    }

    .board-wrap .gal-list.mapctrg .btn-area {
        gap: 5px;
        flex-direction: column;
    }

    .board-wrap .gal-list>a .img {
        height: auto;
        border-radius: 10px;
    }

    .titCont {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
    }

    .busCont,
    .carCont,
    .trv-page .trvCont .bd-box {
        margin-top: 20px;
    }

    .edt span {
        font-size: 0.8rem;
    }

    .board-wrap .gal-list.mapctrg>a .tbox .btn-area .bd-btn {
        font-size: 0.8rem;
    }

    .board-wrap .dropdown-btn {
        width: 70px;
    }

    .board-wrap .search-bar {
        flex-wrap: nowrap;
        padding: 8px 12px;
        gap: 8px;
        border-radius: 15px;
    }

    .board-wrap .search-dropdown {
        flex-shrink: 0;
    }

    .board-wrap .dropdown-btn {
        width: auto;
        min-width: 70px;
        padding: 6px 8px;
        font-size: 0.875rem;
        white-space: nowrap;
    }

    .board-wrap .search-divider {
        display: block;
        height: 18px;
        flex-shrink: 0;
    }

    .board-wrap .search-input {
        flex: 1;
        min-width: 0;
        padding: 6px 0;
        font-size: 0.875rem;
    }

    .board-wrap .search-icon-btn {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }

    .board-wrap .search-icon-btn svg {
        width: 18px;
        height: 18px;
    }

    .board-wrap .search-box {
        width: 100%;
    }

    .board-wrap .tab-buttons {
        gap: 5px;
        flex-wrap: wrap;
    }

    .board-wrap .tab-btn {
        padding: 5px 10px;
        font-size: 0.8rem;
    }

    .mysch-detail-wrap .top .step-list {
        gap: 30px;
    }

    .mysch-detail-wrap .top .step-list li {
        width: 100%;
    }

    .mysch-detail-wrap .top .step-list li:not(:last-child)::after {
        right: auto;
        left: 50%;
        top: auto;
        bottom: -22px;
        transform: translateX(-50%) rotate(90deg);
    }

    .detail-page .sec-1 .box-1 .mapinfo li:first-child span.bd-line {
        border-radius: 8px;
    }

    .detail-page .sec-1 .box-1 .mapinfo li:first-child span.bd-line,
    .detail-page .sec-1 .box-1 .mapinfo li,
    .detail-page .sec-1 .box-1 .mapinfo li:nth-child(2) a {
        font-size: 0.75rem;
    }

    .audio-guide-box img {
        width: 100%;
    }

    .detail-page .sec-2 .conWrap .accordion-content.active:has(iframe) {
        max-height: none !important;
        min-height: auto;
    }

    .detail-page .sec-2 .conWrap .accordion-content.active:has(iframe) .youtube-video {
        min-height: 250px;
    }

    .detail-page .sec-2 .conWrap .accordion-inner:has(iframe) {
        padding: 16px 0;
    }

    .detail-page .sec-2 .conWrap .accordion-inner:has(iframe) .bd-box {
        padding: 16px;
    }

    .detail-page .sec-1 .box-1 .description::after {
        display: none;
    }

    .subTop-mn ul {}

    .air-train-Cont {
        gap: 10px;
        flex-wrap: wrap;
    }

    .air-train-Cont .item {
        padding: 20px 10px;
        width: calc((100% - 10px) / 2);
    }

    .air-train-Cont .item .img,
    .air-train-Cont .item .img img {
        width: 100%;
    }

    .air-train-Cont .item .tbox {
        flex-direction: column;
        gap: 10px 0;
    }

    .subTop-mn .tit {
        flex-direction: column;
        width: 100%;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--line);
    }

    .subTop-mn h2 {
        width: 100%;
        margin-bottom: 5px;
    }



    .place-list .item .cbox .bottom a span,
    .place-list .item .cbox .bottom button span {
        font-size: 0.75rem;
    }


    .detail-page .sec-1 h1 {
        gap: 5px;
        padding: 0 20px;
        justify-content: flex-start;
        font-size: 1.4rem;
        margin-bottom: 0;
    }

    .trfCont-wrap .search-box {
        margin: 20px auto;
    }

    .sch-tit {
        display: none;
    }

    .detail-page .sec-1 .img-slide {
        height: 400px;

    }

    .detail-page .sec-1 .img-slide .swiper-slide img {
        height: 100%;
    }

    .maj-product-page .list {
        gap: 40px 20px;
    }

    .maj-product-page .list .item {
        width: calc((100% - 20px) / 2);
    }

    .maj-product-page .list .item .img {
        height: auto;
    }


    .maj-product-page .list .item:first-child .deco-img {
        bottom: 134px;
        left: -58px;
        width: 120px;
    }

    .maj-product-page .list .item:nth-child(2) .deco-img {
        bottom: 167px;
        right: -58px;
        width: 120px;
    }

    .maj-product-page .list .item:nth-child(3) .deco-img {
        top: 0px;
        right: 0;
        width: 84px;
    }

    .maj-product-page .list .item:nth-child(4) .deco-img {
        top: 0px;
        left: 0;
        width: 62px;
    }

    .maj-product-page .list .item:nth-child(5) .deco-img {
        bottom: 141px;
        right: 0;
        width: 61px;
    }

    .maj-product-page .list .item:nth-child(7) .deco-img {
        width: 100%;
        bottom: 114px;
    }

    .maj-product-page .maj-wrap {
        padding: 40px 20px;
    }

    .maj-product-page .list .item .tbox h2{
        font-size: 1.1rem;
    }

    .maj-product-page .titBox .bottom .hmo{
        display: none;
    }

    .maj-product-page .maj-detail-wrap{
        padding: 50px 20px;
    }

    .maj-product-page .infoBox .infoBox {
        padding: 0;
    }

    .maj-product-page .infoBox2 p.txt{
        width: 100%;
    }

    .maj-product-page .titBox .bottom .txt2{
        background-color: #fff;
    }

    .maj-product-page .titBox .bottom .txt2-wrap {
        gap: 0;
    }

    .maj-product-page .infoBox2 .btn-wrap a {
        padding: 10px 10px;
    }

    .board-view {
        padding: 20px;
    }

    .board-view .view-title {
        font-size: 18px;
    }

    .board-view .view-info {
        flex-direction: column;
        gap: 15px;
    }

    .board-view .view-info dl {
        flex-wrap: wrap;
    }

    .board-view .view-content {
        padding: 20px 0;
        min-height: auto;
    }

    .board-view .list-btn {
        width: 100%;
        padding: 12px 20px;
    }

    .detail-page .sec-1 .box-1 .mapinfo{
        flex-direction: column;
        width: 100%;
    }


    .place-list .item .cbox .top > a {
        flex: 1;
        width: 100%;
    }

}



/*E:768px*/

/* 480px 이하 */
@media (max-width: 480px) {


    .detail-page .sec-1 .img-slide-controls {
        bottom: 0;
        right: 0;
        z-index: 10;
        transform: scale(0.8);
    }

}

/* 로그인 폼 스타일 */
.login-form {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 0 100px;
}

.login-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1c1c1c;
    font-family: "GmarketSansBold";
    margin: 0 0 50px;
}

.login-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.welcome-message {
    text-align: center;
    font-size: 1.8rem;
    color: #333;
    font-family: "GmarketSansMedium";
    margin: 0 0 40px;
}

.login-input-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.login-input-form .input-group {
    width: 100%;
}

.login-input-form .input-group input {
    width: 100%;
    height: 55px;
    padding: 0 20px;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    font-size: 1rem;
    color: #333;
    background: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.login-input-form .input-group input::placeholder {
    color: #999;
    font-family: "Pretendard", "Noto Sans Korean", sans-serif;
}

.login-input-form .input-group input:focus {
    border-color: var(--green);
    outline: none;
    box-shadow: 0 0 0 3px rgba(63, 98, 42, 0.1);
}

.remember-id {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: -10px 0 10px;
}

.remember-id input[type="checkbox"] {
    display: none;
}

.remember-id label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    color: #4f4f4f;
    cursor: pointer;
    font-family: "Pretendard", "Noto Sans Korean", sans-serif;
}

.remember-id label::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 2px solid #DDD;
    border-radius: 50%;
    background: #fff;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.remember-id input[type="checkbox"]:checked + label::before {
    background: var(--green);
    border-color: var(--green);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
}

.login-btn {
    width: 100%;
    height: 55px;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: "GmarketSansMedium";
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.login-btn:hover {
    background: #2d4a1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(63, 98, 42, 0.3);
}

.login-btn:active {
    transform: translateY(0);
}

.login-utils {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 30px 0 40px;
    padding-top: 30px;
    border-top: 1px solid #eaeaea;
}

.login-utils .util-link {
    font-size: 0.9375rem;
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
    font-family: "Pretendard", "Noto Sans Korean", sans-serif;
}

.login-utils .util-link:hover {
    color: var(--green);
}

.login-utils .divider {
    color: #eaeaea;
    font-size: 0.875rem;
}

.sns-login {
    border-radius: 10px;
    text-align: center;
    padding: 40px;
    border: 1px solid #eaeaea;
}

.sns-title {
    font-size: 1rem;
    font-weight: 600;
    color: #4f4f4f;
    margin: 0 0 25px;
    font-family: "GmarketSansMedium";
}

.sns-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.sns-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sns-icon .sns-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    font-family: "GmarketSansBold";
}

.sns-icon.google{
    border: 1px solid #eaeaea;
}

/* 고대비 모드 */
.high-contrast .login-card {
    background: #1a1a1a;
    border: 2px solid #fff;
}

.high-contrast .login-title {
    color: #fff;
}

.high-contrast .welcome-message {
    color: #ccc;
}

.high-contrast .login-input-form .input-group input {
    background: #2a2a2a;
    border-color: #fff;
    color: #fff;
}

.high-contrast .login-input-form .input-group input::placeholder {
    color: #999;
}

.high-contrast .remember-id label {
    color: #ccc;
}

.high-contrast .login-utils .util-link {
    color: #ccc;
}

.high-contrast .sns-title {
    color: #ccc;
}

/* 반응형 */
@media (max-width: 768px) {
    .login-form {
        padding: 0 20px 60px;
    }

    .login-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .login-card {
        padding: 40px 30px;
        border-radius: 15px;
    }

    .welcome-message {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .login-input-form .input-group input {
        height: 50px;
        font-size: 0.9375rem;
    }

    .login-btn {
        height: 50px;
        font-size: 1rem;
    }

    .sns-icon {
        width: 50px;
        height: 50px;
    }

    .sns-icon .sns-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .login-card {
        padding: 30px 20px;
    }

    .login-title {
        font-size: 1.75rem;
    }

    .sns-icons {
        gap: 15px;
    }

    .sns-icon {
        width: 45px;
        height: 45px;
    }
}

/* 회원가입 폼 스타일 */
.join-form {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 0 100px;
}

.join-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1c1c1c;
    font-family: "GmarketSansBold";
    margin: 0 0 50px;
}

.join-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.join-form-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-label {
    font-size: 1rem;
    font-weight: 600;
    color: #1c1c1c;
    font-family: "GmarketSansMedium";
}

.form-input {
    width: 100%;
    height: 55px;
    padding: 0 20px;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    font-size: 1rem;
    color: #333;
    background: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.input-with-btn .form-input {
    width: auto;
    width: 80%;
}

.form-input::placeholder {
    color: #999;
    font-family: "Pretendard", "Noto Sans Korean", sans-serif;
}

.form-input:focus {
    border-color: var(--green);
    outline: none;
    box-shadow: 0 0 0 3px rgba(63, 98, 42, 0.1);
}

.input-with-btn {
    display: flex;
    gap: 12px;
    align-items: center;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 5px 10px;
}

.input-with-btn .form-input{
    border: none;
}

.input-with-btn .form-input {
    flex: 1;
}

.check-btn {
    height: 40px;
    padding: 0 24px;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: "GmarketSansMedium";
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.check-btn:hover {
    background: #2d4a1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(63, 98, 42, 0.3);
}

.email-input-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.email-input-group .form-input {
    flex: 1;
}

.email-separator {
    font-size: 1.125rem;
    color: #666;
    font-weight: 600;
    flex-shrink: 0;
}

.form-select {
    flex: 1;
    padding: 0 40px 0 20px;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-select:focus {
    border-color: var(--green);
    outline: none;
    box-shadow: 0 0 0 3px rgba(63, 98, 42, 0.1);
}

.phone-input-group {
    display: flex;
    gap: 12px;
    align-items: center;
}

.phone-input-group .form-input {
    flex: 1;
    width: auto;
    min-width: 0;
}

.verify-btn {
    height: 55px;
    padding: 0 24px;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: "GmarketSansMedium";
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.verify-btn:hover {
    background: #2d4a1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(63, 98, 42, 0.3);
}

.verify-input-group {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
}

.verify-input-group .form-input {
    flex: 1;
    width: auto;
    min-width: 0;
}

.resend-btn {
    height: 40px;
    padding: 0 24px;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: "GmarketSansMedium";
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.resend-btn:hover {
    background: #2d4a1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(63, 98, 42, 0.3);
}

.verify-message {
    font-size: 0.875rem;
    color: #333;
    margin: 8px 0 0;
    font-family: "Pretendard", "Noto Sans Korean", sans-serif;
}

.verify-message .timer {
    color: #e74c3c;
    font-weight: 600;
}

.verify-complete-btn {
    width: 100%;
    height: 55px;
    background: #999;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    font-family: "GmarketSansMedium";
    cursor: not-allowed;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.verify-complete-btn:not(:disabled) {
    background: var(--green);
    cursor: pointer;
}

.verify-complete-btn:not(:disabled):hover {
    background: #2d4a1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(63, 98, 42, 0.3);
}

.birth-gender-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.birth-gender-group .form-input {
    flex: 1;
}

.gender-radio-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    overflow: hidden;
}

.gender-radio-group input[type="radio"] {
    display: none;
}

.gender-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 45px;
    background: #fff;
    color: #666;
    font-size: 1rem;
    font-weight: 600;
    font-family: "GmarketSansMedium";
    cursor: pointer;
    transition: all 0.3s ease;
}

.gender-label.man{
    border-right: 1px solid #eaeaea;
}

.gender-radio-group input[type="radio"]:checked + .gender-label {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

.agree-all {
    display: flex;
    align-items: center;
}

.agree-all input[type="checkbox"] {
    display: none;
}

.agree-all label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #1c1c1c;
    cursor: pointer;
    font-family: "GmarketSansMedium";
}

.agree-all label::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 2px solid #DDD;
    border-radius: 50%;
    background: #fff;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.agree-all input[type="checkbox"]:checked + label::before {
    background: var(--green);
    border-color: var(--green);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
}

.join-submit-btn {
    width: 100%;
    height: 55px;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: "GmarketSansMedium";
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.join-submit-btn:hover {
    background: #2d4a1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(63, 98, 42, 0.3);
}

.join-submit-btn:active {
    transform: translateY(0);
}

/* 고대비 모드 */
.high-contrast .join-card {
    background: #1a1a1a;
    border: 2px solid #fff;
}

.high-contrast .join-title {
    color: #fff;
}

.high-contrast .form-label {
    color: #fff;
}

.high-contrast .form-input {
    background: #2a2a2a;
    border-color: #fff;
    color: #fff;
}

.high-contrast .form-input::placeholder {
    color: #999;
}

.high-contrast .form-select {
    background: #2a2a2a;
    border-color: #fff;
    color: #fff;
}

.high-contrast .gender-label {
    background: #2a2a2a;
    border-color: #fff;
    color: #fff;
}

.high-contrast .agree-all label {
    color: #fff;
}

.high-contrast .verify-message {
    color: #ff6b6b;
}

/* 반응형 */
@media (max-width: 768px) {
    .join-form {
        padding: 0 20px 60px;
    }

    .join-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .join-card {
        padding: 40px 30px;
        border-radius: 15px;
    }

    .form-input,
    .form-select {
        font-size: 0.9375rem;
    }

    .check-btn,
    .verify-btn,
    .resend-btn {
        padding: 0 20px;
        font-size: 0.875rem;
    }

    .verify-complete-btn {
        height: 50px;
    }

    .gender-label {
        flex: 1;
        font-size: 0.9375rem;
    }

    .birth-gender-group {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .gender-radio-group {
        justify-content: flex-start;
    }

    .join-submit-btn {
        height: 50px;
        font-size: 1rem;
    }

    .verify-input-group {
        flex-direction: column;
        gap: 10px;
    }

    .join-form .verify-btn{
        width: 100%;
    }

    .input-with-btn{
        gap: 0;
        width: 100%;
    }

}

@media (max-width: 480px) {
    .join-card {
        padding: 30px 20px;
    }

    .join-title {
        font-size: 1.75rem;
    }

    .email-input-group {
        flex-wrap: wrap;
    }

}

/* 아이디/비밀번호 찾기 폼 스타일 */
.find-form {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 0 100px;
}

.find-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1c1c1c;
    font-family: "GmarketSansBold";
    margin: 0 0 40px;
}

.find-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 30px;
}

.find-tab {
    padding: 12px 40px;
    font-size: 1rem;
    font-weight: 600;
    font-family: "GmarketSansMedium";
    color: #666;
    background: #fff;
    border: 1px solid #eaeaea;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.find-tab:first-child {
    border-radius: 10px 0 0 10px;
    border-right: none;
}

.find-tab:last-child {
    border-radius: 0 10px 10px 0;
    border-left: none;
}

.find-tab.active {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
    z-index: 1;
}

.find-tab:not(.active):hover {
    background: #f5f5f5;
}

.find-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.find-tab-content {
    display: block;
}

.find-tab-content[hidden] {
    display: none;
}

.find-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1c1c1c;
    font-family: "GmarketSansBold";
    margin: 0 0 12px;
}

.find-description {
    font-size: 0.9375rem;
    color: #666;
    margin: 0 0 30px;
    line-height: 1.6;
    word-break: keep-all;

}

.find-form-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.confirm-btn {
    height: 55px;
    padding: 0 24px;
    background: #999;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: "GmarketSansMedium";
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    flex: 1;
    margin-left: 10px;
}

.find-submit-btn {
    width: 100%;
    height: 55px;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    font-family: "GmarketSansMedium";
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.find-submit-btn:hover {
    background: #2d4a1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(63, 98, 42, 0.3);
}

.find-submit-btn:active {
    transform: translateY(0);
}

/* 고대비 모드 */
.high-contrast .find-card {
    background: #1a1a1a;
    border: 2px solid #fff;
}

.high-contrast .find-title {
    color: #fff;
}

.high-contrast .find-section-title {
    color: #fff;
}

.high-contrast .find-description {
    color: #ccc;
}

.high-contrast .find-tab {
    background: #2a2a2a;
    border-color: #fff;
    color: #ccc;
}

.high-contrast .find-tab.active {
    background: var(--green);
    color: #fff;
}

/* 반응형 */
@media (max-width: 768px) {
    .find-form {
        padding: 0 20px 60px;
    }

    .find-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .find-card {
        padding: 40px 30px;
        border-radius: 15px;
    }

    .find-tab {
        padding: 10px 30px;
        font-size: 0.9375rem;
    }

    .find-section-title {
        font-size: 1.125rem;
    }

    .find-description {
        font-size: 0.875rem;
    }

    .confirm-btn {
        height: 50px;
        width: 100%;
        margin: 0;
        flex: auto;
    }
}

@media (max-width: 480px) {
    .find-card {
        padding: 30px 20px;
    }

    .find-title {
        font-size: 1.75rem;
    }

    .find-tab {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
}

/* 아이디 찾기 결과 스타일 */
.find-id-rst {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 0 100px;
}

.find-result-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.result-info-group {
    display: flex;
    gap: 12px;
    margin: 30px 0;
}

.result-info-box {
    flex: 1;
    background: #f5f5f5;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.result-label {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    font-family: "GmarketSansMedium";
    white-space: nowrap;
}

.result-value {
    font-size: 1rem;
    color: #333;
    font-family: "Pretendard", "Noto Sans Korean", sans-serif;
}

/* 고대비 모드 */
.high-contrast .find-result-card {
    background: #1a1a1a;
    border: 2px solid #fff;
}

.high-contrast .result-info-box {
    background: #2a2a2a;
    border: 1px solid #fff;
}

.high-contrast .result-label,
.high-contrast .result-value {
    color: #fff;
}

/* 반응형 */
@media (max-width: 768px) {
    .find-id-rst {
        padding: 0 20px 60px;
    }

    .find-result-card {
        padding: 40px 30px;
        border-radius: 15px;
    }

    .result-info-group {
        flex-direction: column;
        gap: 12px;
    }

    .result-info-box {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .find-result-card {
        padding: 30px 20px;
    }
}

/* 비밀번호 변경 폼 스타일 */
.find-rfw {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 0 100px;
}

.find-rfw .find-description {
    margin-bottom: 30px;
}

/* 고대비 모드 */
.high-contrast .find-rfw .find-result-card {
    background: #1a1a1a;
    border: 2px solid #fff;
}

/* 반응형 */
@media (max-width: 768px) {
    .find-rfw {
        padding: 0 20px 60px;
    }

    .find-rfw .find-result-card {
        padding: 40px 30px;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .find-rfw .find-result-card {
        padding: 30px 20px;
    }
}