:root {
    --main_blue: #1272E0;
    --main_blue_light: #9AC9FF;
    --main_blue_dark: #113E72;
    --dark1: #3E3F40;
    --dark2: #686C72;
    --dark3: #BBC0CC;
    --dark4: #D7DCE6;
    --light1: #C9CDD7;
    --light2: #DADEE8;
    --light3: #EFF1F5;
    --light4: #FBFCFF;
    --light45: rgba(251, 252, 255, 0.5);
    --light5: #FFFFFF;
    --yellow: #FFEA00;
    --orange: #F9BB40;
    --purple: #8158BF;
    --green: #3BB058;
    --gradient: linear-gradient(90deg,
            #1272E0 0%,
            #EF236E 35%,
            #F99040 70%,
            #47CA1E 100%);
    --Light: 300;
    --Regular: 400;
    --Medium: 500;
    --Semibold: 600;
    --Bold: 700;
    --Extrabold: 800;
    --Heavy: 900;
}

@font-face {
    font-family: 'Sweet';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2304-2@1.0/SUITE-Light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Sweet';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2304-2@1.0/SUITE-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Sweet';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2304-2@1.0/SUITE-Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Sweet';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2304-2@1.0/SUITE-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Sweet';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2304-2@1.0/SUITE-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Sweet';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2304-2@1.0/SUITE-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'Sweet';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2304-2@1.0/SUITE-Heavy.woff2') format('woff2');
    font-weight: 900;
    font-display: swap;
}

/* 헤더 */
#header {
    margin-bottom: 20px;
}

/* 패밀리사이트 메뉴 */
#header .top_menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    height: 40px;
    background: linear-gradient(to right,
            #1272E0 0%,
            rgba(239, 35, 110, 0.8) 35%,
            rgba(249, 144, 64, 0.8) 70%,
            #47CA1E 100%);
    background-size: 200% 100%;
    animation: flow 7s linear infinite;
    animation-delay: 0s;
    animation-direction: alternate;
}

@keyframes flow {
    0% {
        background-position: 0% 0;
    }

    100% {
        background-position: 100% 0;
    }
}

.top_menu .family_gnb,
.top_menu .user_menu {
    display: flex;
    height: 100%;
}

.top_menu .family_gnb li:hover,
.top_menu .user_menu li:hover {
    background: var(--light45);
}

.top_menu .family_gnb li,
.top_menu .user_menu li {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 15px;
    border-right: 1px solid var(--light45);
    transition: .4s;
}

.top_menu .family_gnb li a,
.top_menu .user_menu li a {
    color: var(--light4);
    font-size: 16px;
    font-weight: var(--Regular);
}

.top_menu .family_gnb,
.top_menu .user_menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top_menu .family_gnb {
    padding-left: 174px;
}

.top_menu .user_menu {
    padding-right: 174px;
}

.top_menu .m_menu_img {
    display: none;
}

.header-main {}

/* 헤더 로고 */
.header-main .main_logo {
    margin-top: 15px;
    margin-bottom: 30px;
    padding-left: 65px;
}

.header-main .main_logo a {}

.header-main .main_logo a .img {
    width: 255px;
    height: 83px;
    background-image: url(../image/Logo_hwaseong.png);
    background-size: cover;
    background-repeat: no-repeat;
}

/* 햄버거 네비게이션 메뉴 */
.header-main .all_menu_wrap {
    display: flex;
    flex-direction: row;
    position: relative;
    justify-content: space-between;
    /*  border: 1px solid black; */
}

.all_menu_wrap .nav {
    /*  border: 1px solid green; */
}

.nav .hamburger_nav {
    /*   border: 1px solid rgb(255, 0, 0); */
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger_nav .hamburger_btn {
    background: var(--light3);
    border: none;
    border-radius: 50%;
    width: 62px;
    height: 62px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
}

.hamburger_nav .hamburger_btn span {
    width: 30px;
    height: 4px;
    border-radius: 5px;
    background: var(--dark3);
    opacity: 1;
    transition: transform .3s, opacity .5s;
}

.hamburger_nav .hamburger_btn.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger_nav .hamburger_btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger_nav .hamburger_btn.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.hamburger_nav.active .lnb_list {
    display: flex;
    position: absolute;
    left: 0;
    top: 66.33px;
    z-index: 9999;
}

.hamburger_nav .hamburger_btn img {}

.hamburger_nav .lnb_list {
    display: flex;
    justify-content: flex-start;
    margin-left: 80px;
    display: none;
    background: var(--light4);
    border: 1px solid var(--light2);
    border-radius: 30px;
}

.hamburger_nav .lnb_list .lnb {
    /*   border: 1px solid red; */
    width: 160px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hamburger_nav .lnb_list .event {
    width: 223.74px;
}

.hamburger_nav .lnb_list .lnb li {
    /*   border: 1px solid black; */
    padding: 10px 0;
    display: flex;
    justify-content: center;
}

.hamburger_nav .lnb_list .lnb li:hover a {
    color: var(--main_blue);
    font-weight: var(--Semibold);
}

.hamburger_nav .lnb_list .lnb li a::after {
    content: 'attr(title)';
    font-weight: var(--Semibold);
    display: block;
    height: 0px;
    visibility: hidden;
}

.hamburger_nav .lnb_list .lnb li a {
    font-weight: var(--Medium);
    font-size: 18px;
    text-align: center;
}

.hamburger_nav .lnb_list .lnb li .click {
    color: var(--main_blue);
    /* 기본 색 */
    animation: blink 1s infinite;
    /* 1초 간격으로 계속 깜빡 */
}

/* 깜빡거리는 애니메이션 */
@keyframes blink {
    0% {
        opacity: 1;
    }

    /* 보임 */
    50% {
        opacity: 0;
    }

    /* 사라짐 */
    100% {
        opacity: 1;
    }

    /* 다시 보임 */
}

/* 메인 네비게이션 개별 메뉴 */
.nav .nav_gnb_wrap {
    position: absolute;
    left: 80px;
    top: 0;
}

.nav_gnb_wrap .nav_gnb {
    display: flex;
}

.nav_gnb li {
    display: flex;
    flex-direction: column;
}

.nav_gnb li .has_sub {
    padding: 18px 0;
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light3);
    /*   border: 1px solid red; */
    font-weight: var(--Semibold);
    font-size: 20px;
    width: 160px;
    position: relative;
    z-index: 1;
}

.nav_gnb li .first {
    border-radius: 30px 0 0 30px;
    width: 223.74px;
}

.nav_gnb li .last {
    border-radius: 0px 30px 30px 0;
}

/* .li에 마우스오버시 흰배경 */
.nav_gnb li .has_sub::before {
    content: '';
    position: absolute;
    background: var(--light4);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 78.667px;
    height: 25.333px;
    padding: 8px 10px;
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
}

.nav_gnb li .first::before {
    content: '';
    position: absolute;
    background: var(--light4);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 122.407px;
    height: 25.333px;
    padding: 8px 10px;
    border-radius: 30px;
    z-index: -1;
}

.nav_gnb li.active .has_sub::before {
    opacity: 1;
}

.nav_gnb .lnb.active {
    display: flex;
}

.nav_gnb .lnb {
    display: none;
    flex-direction: column;
    align-items: center;
    background: var(--light4);
    margin-top: 5px;
    height: 100%;
    border-radius: 30px;
    z-index: 9999;

    border: 1px solid var(--light2);
}

.nav_gnb .lnb li {
    display: inline-block;
    padding: 20px 10px;
}

.nav_gnb .lnb li:hover a {
    color: var(--main_blue);
    font-weight: var(--Semibold);
}

.nav_gnb .lnb li a {
    font-size: 18px;
    font-weight: var(--Medium);
}

/* 첫 번째 a만 선택해서 애니메이션 적용 */
.nav_gnb .lnb li .click {
    color: var(--main_blue);
    /* 기본 색 */
    animation: blink 1s infinite;
    /* 1초 간격으로 계속 깜빡 */
}

/* 깜빡거리는 애니메이션 */
@keyframes blink {
    0% {
        opacity: 1;
    }

    /* 보임 */
    50% {
        opacity: 0;
    }

    /* 사라짐 */
    100% {
        opacity: 1;
    }

    /* 다시 보임 */
}

/* 서치탭 */
.all_menu_wrap .search_tab {
    background: var(--light3);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    border-radius: 30px;
    width: 300px;
    height: 60px;
}

.search_tab input {
    background: none;
    border: none;
    margin-left: 30px;
    font-size: 16px;
    font-weight: var(--Regular);
}

.search_tab input::placeholder {
    color: var(--dark3);
}

.search_tab .search_btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--light4);
    border: none;
    margin-right: 10px;
}

.search_tab .search_btn a i {
    font-size: 20px;
    color: var(--main_blue);
}

/* 모바일메뉴 */
.mobail_menu {
    display: none;
}

/* 페이지 소개 */
#pageIntro {
    margin-top: 100px;
}

#pageIntro .title {
    align-items: flex-start;
}

#pageIntro .main_title {
    position: relative;
}

#pageIntro .main_title::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 16px;
    background: var(--gradient);
    bottom: -3px;
    left: 0;
    z-index: -1;
    opacity: 80%;
}

#pageIntro .breadcrumb_nav {
    background: var(--light5);
    border-bottom: 3px solid var(--light2);
    width: 100%;
    height: 70px;

    display: flex;
    align-items: center;
    padding-left: 30px;
    margin-bottom: 50px;

    position: relative;
    z-index: 20;
}

#pageIntro .breadcrumb_list {
    display: flex;
    align-items: center;
    width: 100%;
    height: 70px;
    gap: 60px;
}

/* li 공통 css */
#pageIntro .breadcrumb_list>li {
    height: 100%;
    width: 210px;
    display: flex;
    align-items: center;
    position: relative;
}

#pageIntro .breadcrumb_list .main_page_open {
    width: 30px;
}

/* 홈 아이콘 */
#pageIntro .main_page_open i {
    color: var(--main_blue);
    font-size: 30px;
}

/* 토글 버튼(a) */
#pageIntro .menu_toggle .menu_btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 18px;
    font-weight: var(--Bold);
    text-decoration: none;
}

#pageIntro .menu_toggle .menu_btn span {}

#pageIntro .menu_toggle .menu_btn i {
    color: var(--light2);
    font-size: 20px;
    transition: .3s ease;
}

#pageIntro .menu_toggle .menu_btn i.active {
    transform: rotate(180deg);
}

/* 관광지 이름 */
#pageIntro .tour_listName span {
    position: relative;
    font-size: 18px;
    font-weight: var(--Bold);
    padding-left: 20px;

    cursor: default;
}

#pageIntro .tour_listName span::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--main_blue);
    border-radius: 50%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);

    margin-left: 20px;
}

/* 드롭다운 메뉴 */
#pageIntro .menu_toggle .main_menu {
    display: none;
    position: absolute;
    /* 토글 밑으로 뜨게 */
    top: 100%;
    /* li 아래 */
    left: 0;
    width: 210px;
    background: var(--light5);
    z-index: 999;

    flex-direction: column;
    align-items: stretch;
    padding: 0;
    margin: 0;
    list-style: none;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* 메인메뉴 active */
#pageIntro .menu_toggle .main_menu.active {
    display: flex;
}

/* 메인메뉴 목록 */
#pageIntro .menu_toggle .main_menu li {
    width: 100%;
    border-bottom: 2px dotted var(--light2);
}

#pageIntro .menu_toggle .main_menu li:first-child {
    border-top: 3px solid var(--main_blue);
}

#pageIntro .menu_toggle .main_menu li a {
    display: block;
    font-size: 18px;
    font-weight: var(--Bold);
    text-decoration: none;
    line-height: 1.3;
}

#pageIntro .menu_toggle .main_menu li a:hover {
    color: var(--main_blue);
}

#pageIntro .menu_toggle .menu1 li:nth-child(2) a {
    color: var(--main_blue);
}

#pageIntro .menu_toggle .menu2 li:nth-child(4) a {
    color: var(--main_blue);
}

/* 관광지 이름 */
#pageIntro .breadcrumb_nav .breadcrumb_list .tour_listName span {
    position: relative;
}

#pageIntro .breadcrumb_nav .breadcrumb_list .tour_listName span::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--main_blue);
    border-radius: 50%;

    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

/* 메뉴 토글 */
#pageIntro .dropDown {
    position: absolute;
    left: 0;
    top: 0;
}

#pageIntro .menu_toggle .main_menu {}

#pageIntro .menu_toggle .main_menu.gnb {
    background: var(--light5);
    /* display: flex; */
    display: none;
    flex-direction: column;
    align-items: center;

    width: 200px;
}

#pageIntro .menu_toggle .main_menu.lnb {
    background: var(--light5);
    /* display: flex; */
    display: none;
    flex-direction: column;
    align-items: center;
}

#pageIntro .menu_toggle .main_menu.gnb.active {
    display: flex;
}

#pageIntro .menu_toggle .main_menu.lnb.active {
    display: flex;
}

#pageIntro .menu_toggle .main_menu li {
    border-bottom: 2px dotted var(--light2);
    width: 100%;
    padding: 20px 10px;
}

#pageIntro .menu_toggle .main_menu li:first-child {
    border-top: 3px solid var(--main_blue);
}

#pageIntro .menu_toggle .main_menu li:last-child {
    border: none;
}

#pageIntro .menu_toggle .main_menu li a {
    font-size: 18px;
    font-weight: var(--Bold);

    display: block;
}

#pageIntro .gnb {
    width: 200px;
}

#pageIntro .lnb {
    width: 210px;
}


/* 관광지 상단 소개 */
#topGuide {
    margin-bottom: 200px;
    position: relative;
}

#topGuide .container .mainImgSwiper .img_box {
    width: 100%;
    height: 400px;
}

#topGuide .container .mainImgSwiper .img_box img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* 슬라이드 컨트롤 버튼 */
.mainImgSwiper-button-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 162px;
    transform: translateX(-50%);
    gap: 1340px;
}

.mainImgSwiper-button-wrap .mainImgSwiper-button-prev,
.mainImgSwiper-button-wrap .mainImgSwiper-button-next {
    border: 2px solid var(--light2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.mainImgSwiper-button-wrap .mainImgSwiper-button-prev i,
.mainImgSwiper-button-wrap .mainImgSwiper-button-next i {
    color: var(--light2);
    font-size: 35px;
}

/* 관광지 이름 */
#topGuide .container .tour_name {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px 0 30px 0;
}

#topGuide .container .tour_name h4 {
    font-size: 42px;
    font-weight: var(--Heavy);
    color: var(--main_blue_dark);
    position: relative;
}

/* 관광지 이름 밑줄 */
#topGuide .container .tour_name h4::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    background: var(--yellow);
    bottom: 5px;
    left: 0;
    z-index: -1;
    opacity: 80%;
}

#topGuide .container .tour_name p {
    font-size: 20px;
    font-weight: var(--Medium);
}

/* 관광지 해시태그/주소 전화번호 */
#topGuide .container .tour_tag {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

#topGuide .container .tour_tag .tag_list {
    display: flex;
    gap: 20px;
}

#topGuide .container .tour_tag .tag_list li {
    padding: 10px 12px;
    background: var(--light3);
    border-radius: 50px;

    font-size: 15px;
    font-weight: var(--Bold);
    color: var(--main_blue);

    cursor: default;
}

#topGuide .container .tour_tag .info li {
    background: var(--main_blue);
}

#topGuide .container .tour_tag .info li i {
    color: var(--light4);
    margin-right: 5px;
}

#topGuide .container .tour_tag .info li span {
    color: var(--light4);
}

/* 관광지 설명글 */
#topGuide .container .tour_desc {
    text-align: center;
    line-height: 25px;
    font-size: 18px;
    font-weight: var(--Regular);
}

#topGuide .container .tour_desc p {
    text-align: center;
    line-height: 1.5;
}

/* 제부도 안의 즐길거리 */
#tour_activity {
    margin-bottom: 200px;
    position: relative;
}

#tour_activity .container {}

#tour_activity .container .title {
    align-items: flex-start;
}

#tour_activity .container title .main_title {}

#tour_activity .container .tourActivitySwiper {}

.tourActivitySwiper .swiper-wrapper .tour_activity_slide {}

.tour_activity_slide .slide_box {
    position: relative;
    height: 630px;
}

/* 슬라이드 박스 비포 */
.tour_activity_slide .slide_box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    background: var(--main_blue);
    bottom: 0;
    width: 0;
    transition: .5s ease;
}

.tour_activity_slide .slide_box a {}

.tour_activity_slide .slide_box a .img_box {
    margin-bottom: 15px;
}

.tour_activity_slide .slide_box a .img_box img {}

.tour_activity_slide .slide_box a .text_box {
    margin-bottom: 45px;
}

.tour_activity_slide .slide_box a .text_box .activity_name {
    font-size: 22px;
    font-weight: var(--Bold);
    margin-bottom: 10px;
    transition: .3s ease;
}

.tour_activity_slide .slide_box a .text_box .activity_desc {
    font-size: 18px;
    font-weight: var(--Regular);
}

.tour_activity_slide .slide_box a .next_box {
    width: 50px;
    height: 50px;
    border: 2px solid var(--light2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s ease;
}

.tour_activity_slide .slide_box a .next_box .img {
    background-image: url(../image/tourActivity_arrow.png);
    width: 31px;
    height: 23px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: .3s ease;
}

/* 슬라이드 호버시 */
.tour_activity_slide .slide_box:hover .activity_name {
    color: var(--main_blue);
}

.tour_activity_slide .slide_box:hover .next_box {
    border: 2px solid var(--main_blue);
}

.tour_activity_slide .slide_box:hover .next_box .img {
    background-image: url(../image/tourActivity_arrow_blue.png);
}

.tour_activity_slide .slide_box:hover::before {
    width: 100%;
}


/* 슬라이드 컨트롤 버튼 */
.tourActivitySwiper_button_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    gap: 1340px;
}

.tourActivitySwiper_button_wrap .tourActivitySwiper-button-next,
.tourActivitySwiper_button_wrap .tourActivitySwiper-button-prev {
    border: 2px solid var(--light2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.tourActivitySwiper_button_wrap i {
    color: var(--light2);
    font-size: 35px;
}

/* 이용안내 */
#guideInfo {
    margin-bottom: 100px;
}

#guideInfo .container {}

#guideInfo .container .information_box {
    border: 2px solid var(--light2);
    background: var(--light5);
    padding: 30px;
    border-radius: 30px;
}

.information_box .title {}

.information_box .title .main_title {}

.information_box .information {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.information_box .information li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.information_box .information li .tag {
    font-size: 16px;
    font-weight: var(--Bold);
    color: var(--main_blue);

    background: var(--light3);
    padding: 8px 16px;
    border-radius: 50px;
}

.information_box .information li .desc {
    font-size: 18px;
    font-weight: var(--Regular);
}

/* 물때 시간표 강조 */
.information_box .information li .desc em {
    font-style: normal;
    position: relative;
}

.information_box .information li .desc em a {
    color: var(--main_blue);
}

/* 밑줄 */
.information_box .information li .desc em::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--main_blue);
    left: 0;
    bottom: -5px;
}

/* 주차 */
.information_box .information .parking {
    align-items: flex-start;
}

.information_box .information .parking .desc_wrap {
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.information_box .information .parking .desc_wrap .desc {}

.information_box .information .parking .desc_wrap .info_list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.information_box .information .parking .desc_wrap .info_list li {
    font-size: 18px;
    font-weight: var(--Regular);
}

.information_box .information .parking .desc_wrap .info_list li:last-child {
    color: red;
}

/* 교통 정보 */
#trafficInfo {
    margin-bottom: 200px;
}

#trafficInfo .container {}

#trafficInfo .container .information_box {
    border: 2px solid var(--light2);
    background: var(--light5);
    padding: 30px;
    border-radius: 30px;
}

.information_box .title {}

.information_box .title .main_title {}

.information_box .information {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.traffic.information li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.information li .tag {
    font-size: 16px;
    font-weight: var(--Bold);
    color: var(--main_blue);

    background: var(--light3);
    padding: 8px 16px;
    border-radius: 50px;
}

.information .bus ul.info_list,
.information .oceanCablecar ul.info_list {
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.information .bus .info_list li,
.information .oceanCablecar .info_list li {
    display: list-item;
    list-style-position: outside;
    padding-left: 10px;
    margin-left: 15px;

    font-size: 18px;
    font-weight: var(--Regular);
}

.information .bus .info_list li::marker,
.information .oceanCablecar .info_list li::marker {
    content: "●";
    color: var(--light3);
    font-weight: bold;
}

/* 찾아오시는길 */
#Directions {
    margin-bottom: 200px;
}

#Directions .container .title {
    align-items: flex-start;
}

/* 맵 */
#Directions .container .map_wrap {
    position: relative;
}

#Directions .container .map_wrap #directionsMap {
    width: 100%;
    height: 500px;
}

/* 맵 마커 클릭 안내멘트 */
#Directions .container .map_wrap .maker_guide {
    position: absolute;
    left: 0;
    top: 0;
    background: var(--light4);
    border-radius: 30px;
    margin: 10px;
    box-shadow: 0 0 5px #35353530;
}

#Directions .container .map_wrap .maker_guide p {
    font-size: 16px;
    font-weight: var(--Semibold);
    padding: 10px 15px;
}

#Directions .container .map_wrap .maker_guide p em {
    font-style: normal;
    position: relative;
}

#Directions .container .map_wrap .maker_guide p em::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background: #F56652;
    left: 0;
    bottom: -2px;
}

/* 주변 정보 */
#nearbyInfo {
    margin-bottom: 200px;
}

#nearbyInfo .container {}

#nearbyInfo .container .title {
    align-items: flex-start;
}

/* 탭 */
#nearbyInfo .container .place_tab {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

#nearbyInfo .container .place_tab .place_list {
    display: flex;
    gap: 20px;
}

#nearbyInfo .container .place_tab .place_list .place_item {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px 15px;
    background: var(--light5);
    border: 2px solid var(--light2);
    border-radius: 20px;

    font-size: 16px;
    font-weight: var(--Bold);

    cursor: pointer;
}

/* 탭 액티브 */
#nearbyInfo .container .place_tab .place_list .place_item.active,
#nearbyInfo .container .place_tab .place_list .place_item:hover {
    background: var(--main_blue);
    border: 2px solid transparent;

    color: var(--light4);
}

/* 리스트 콘텐츠 */
#nearbyInfo .container .whole {
    height: 800px;
}

#nearbyInfo .container .whole.active {
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: none;

    /* 리스트 콘텐츠 잘리는거 방지 */
    padding-right: 17px;

    width: 100%;
    height: 800px;
}

#nearbyInfo .container .whole .places {
    display: none;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;

    margin-bottom: 30px;

    height: 800px;
}

#nearbyInfo .container .whole .places.active {
    display: grid;
}

.places .place_box {
    display: flex;
    flex-direction: column;
    gap: 20px;

    cursor: pointer;
}

.places .place_box .img_box {}

.places .place_box .img_box img {
    width: 100%;
}

.places .place_box .place_name {
    display: flex;
    justify-content: space-between;
}

.places .place_box .place_name span {
    font-size: 20px;
    font-weight: var(--Semibold);

    transition: .3s ease;
}

/* 이름 active */
.places .place_box .place_name.active span,
.places .place_box:hover span {
    color: var(--main_blue);
}

.places .place_box .place_name.active .img,
.places .place_box:hover .place_name .img {
    background-image: url(../image/nearbyInfo_arrowBlue.png);
}

.places .place_box .place_name .img {
    width: 21px;
    height: 15px;

    background-image: url(../image/nearbyInfo_arrow.png);
    background-size: 21px 15px;
    background-repeat: no-repeat;

    transition: .3s ease;
}

/* 탑버튼 */
.top_btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--light4);
    border: 2px solid var(--light2);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: .3s ease;
    z-index: 9999;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.top_btn i {
    font-size: 20px;
}

/* 보이기 */
.top_btn.show {
    opacity: 0.8;
    pointer-events: auto;
    box-shadow: 0 0 10px rgba(94, 94, 94, 0.285);
}

/* 푸터 */
#footer {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: #fff;
}

/* 하단 그라데이션 */
.footer-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            #1272E0 0%,
            rgba(239, 35, 110, 0.85) 35%,
            rgba(249, 144, 64, 0.85) 70%,
            #47CA1E 100%);
    pointer-events: none;
}

.wave_wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 220px;
    transform: scaleY(-1);
    z-index: 2;
    pointer-events: none;
}

/* 물결 공통 */
.wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 220px;
    display: flex;
    pointer-events: none;
}

/* 물결 색 */
.wave-1 path {
    fill: rgba(255, 255, 255, 0.80);
}

.wave-2 path {
    fill: rgba(255, 255, 255, 0.60);
    transform: scaleY(1.30);
    transform-origin: center;
}


/* 물결 애니메이션 */
.wave-1 {
    animation: waveMove 18s linear infinite;
    z-index: 2;
}

.wave-2 {
    animation: waveMove 22s linear infinite;
    z-index: 1;
    top: 10px;
}

@keyframes waveMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.container .footer_contents {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    align-items: flex-end;
    transform: translateY(100px);

    z-index: 3;
}

.footer_contents .footer_left {
    display: flex;
    flex-direction: column;
}

.footer_contents .footer_left .logo {
    margin-bottom: 10px;
}

.footer_contents .footer_left .wrap {
    display: flex;
    flex-direction: column;
}

.footer_contents .footer_left .wrap .footer_policy {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.footer_contents .footer_left .wrap .footer_policy li a {
    font-size: 14px;
    font-weight: var(--Bold);
    color: var(--light4);
}

.footer_contents .footer_left .wrap .footer_address {
    color: var(--light4);
    opacity: 80%;
    font-weight: var(--Semibold);
    font-size: 14px;
}

.footer_contents .footer_left .wrap .footer_info {
    display: flex;
    margin-bottom: 10px;
}

.footer_contents .footer_left .wrap .footer_info li {
    color: var(--light4);
    opacity: 80%;
    font-weight: var(--Semibold);
    font-size: 14px;
}

.footer_contents .footer_left .wrap .footer_copyright {
    color: var(--light4);
    opacity: 50%;
    font-weight: var(--Bold);
}

.footer_contents .footer_right {
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

.footer_contents .footer_right img {
    width: 76px;
    height: 74px;
}

.footer_contents .footer_right .footer_right_content .footer_help_box {
    margin-bottom: 20px;
}

.footer_contents .footer_right .footer_right_content .footer_help_box .help_ment {
    display: flex;
    gap: 5px;
    font-size: 24px;
    font-weight: var(--Bold);
    margin-bottom: 10px;
}

.footer_contents .footer_right .footer_right_content .footer_help_box .help_ment i,
.footer_contents .footer_right .footer_right_content .footer_help_box .help_ment p {
    color: var(--light4);
}

.footer_contents .footer_right .footer_right_content .footer_help_box .help_callNumber li {
    font-size: 14px;
    font-weight: var(--Bold);
    color: var(--light4);
}

.footer_contents .footer_right .footer_right_content .footer_family {
    position: relative;
    width: 170px;
}

.footer_contents .footer_right .footer_right_content .footer_family .family_toggle {
    border: 3px solid var(--light4);
    height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5px;

    cursor: pointer;
}

.footer_contents .footer_right .footer_right_content .footer_family .family_toggle.active+.family_list {
    display: block;
}

.footer_contents .footer_right .footer_right_content .footer_family .family_toggle.active i {
    transform: rotate(180deg);
}

.footer_contents .footer_right .footer_right_content .footer_family .family_toggle p,
.footer_contents .footer_right .footer_right_content .footer_family .family_toggle i {
    font-size: 14px;
    font-weight: var(--Bold);
    color: var(--light4);
}

.footer_contents .footer_right .footer_right_content .footer_family .family_toggle i {
    transition: .3s;
}

.footer_contents .footer_right .footer_right_content .footer_family .family_list {
    position: absolute;
    width: 100%;
    top: -150px;
    background: var(--light4);
    display: none;
    transition: .3s;
}

.footer_contents .footer_right .footer_right_content .footer_family .family_list li {
    height: 30px;
    border-bottom: 3px solid var(--light3);
    padding-left: 10px;
    line-height: 30px;
    width: 100%;
}

.footer_contents .footer_right .footer_right_content .footer_family .family_list li a {
    font-weight: var(--Medium);
    font-size: 14px;
    display: block;
    cursor: pointer;
}

.footer_contents .footer_right .footer_right_content .footer_family .family_list li:hover a {
    color: var(--main_blue);
}

.footer_contents .footer_right .footer_right_content .footer_family .family_list li:last-child {
    border: none;
}

@media (max-width : 500px) {

    /* 공통클래스 */
    .container {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .top_container {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .title {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
    }

    .main_title {
        font-size: 35px;
    }

    .sub_title {
        font-size: 16px;
    }


    /* 헤더 */
    #header {
        display: flex;
        flex-direction: column;
    }

    #header .top_menu {
        order: 2;
        display: none;
        background: var(--light4);
        height: 60px;
        justify-content: space-between;
        position: relative;
        z-index: 1;
        border-bottom: 2px solid var(--light2);
    }

    #header .top_menu.active {
        display: flex;
    }

    #header .top_menu::after {
        content: '';
        position: absolute;
        background: var(--light45);
        opacity: 50%;
        inset: 0;
        z-index: 2;
    }

    .top_menu .family_gnb {
        display: none;
    }

    .top_menu .user_menu {
        padding-right: 0;
        z-index: 3;
    }

    .top_menu .family_gnb li,
    .top_menu .user_menu li {
        border-right: 1px solid var(--light2);
    }

    .top_menu .family_gnb li:hover,
    .top_menu .user_menu li:hover {
        background: none;
    }

    .top_menu .user_menu li {
        padding: 0 5px;
    }

    .top_menu .family_gnb li a,
    .top_menu .user_menu li a {
        color: var(--dark2);
        font-size: 20px;
        font-weight: var(--Semibold);
    }

    .top_menu .m_menu_img {
        display: flex;
        z-index: 3;
        padding-left: 10px;
        padding-top: 8px;
    }

    .header-main {
        order: 1;
        width: 100%;
        background: linear-gradient(to right,
                #1272E0 0%,
                rgba(239, 35, 110, 0.8) 35%,
                rgba(249, 144, 64, 0.8) 70%,
                #47CA1E 100%);
        background-size: 200% 100%;
        animation: flow 7s linear infinite;
        animation-delay: 0s;
        animation-direction: alternate;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        height: 70px;
    }

    /* 헤더 로고 */
    .header-main .main_logo {
        padding-left: 20px;
    }

    .header-main .main_logo a .img {
        width: 150px;
        height: 49px;
        background-image: url(../image/Logo_hwaseong_white.png);
        background-size: cover;
    }

    .header-main .all_menu_wrap {
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 65px;
    }

    /* pc 햄버거 메뉴 안 보이게 */
    .hamburger_nav.active .lnb_list {
        display: none;
    }

    .hamburger_nav .hamburger_btn {}

    /* pc 네비게이션 안 보이게*/
    .nav .nav_gnb_wrap {
        display: none;
    }

    /* 햄버거 버튼 디자인*/
    .hamburger_nav .hamburger_btn {
        background: var(--light4);
        width: 40px;
        height: 40px;
    }

    .hamburger_nav .hamburger_btn span {
        background: linear-gradient(to right,
                #1272E0 0%,
                rgba(239, 35, 110, 0.8) 35%,
                rgba(249, 144, 64, 0.8) 70%,
                #47CA1E 100%);
        background-size: 200% 100%;
        animation: flow 7s linear infinite;
        animation-delay: 0s;
        animation-direction: alternate;
    }

    /* 서치탭 */
    .all_menu_wrap .search_tab_wrap {
        background: white;
        width: 100%;
        height: 50px;
        margin: 20px auto 20px auto;
        display: none;
    }

    .all_menu_wrap .search_tab {
        width: 100%;
        margin: 20px auto 0 auto;
        height: 60px;
    }

    .search_tab input {}

    /* 모바일 메뉴 */
    /* 햄버거 */
    .m_hamburger_btn {
        display: block;
        background: var(--light3);
    }

    /* 모바일 메뉴만 보이게 */
    .m_menu_open.active {
        overflow: hidden;
    }

    .mobail_menu {
        display: none;
        position: fixed;
        top: 130px;
        left: 0;
        right: 0;
        width: 100vw;
        height: calc(100vh - 130px);
        background: #FFFFFF;
        z-index: 999999;
    }

    .mobail_menu.active {
        display: flex;
    }

    .mobail_menu_lift {
        background: var(--light3);
        flex: 1.5;
    }

    .mobail_gnb_tab {
        display: flex;
        flex-direction: column;
    }

    .mobail_gnb_tab li {
        padding: 30px 0;
        /*  border: 1px solid black; */
        width: 100%;
        text-align: center;
        font-size: 20px;
        font-weight: var(--Semibold);
        border: none;
        border-bottom: 1px solid var(--light4);
        color: var(--dark3);

        cursor: pointer;
    }

    .mobail_gnb_tab li.active {
        background: var(--light4);
        border: none;
        border-bottom: 2px solid var(--main_blue);
        color: var(--dark2);
    }

    .mobail_menu_right {
        background: var(--light4);
        flex: 3;
        /*    border: 1px solid black; */
        overflow-y: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .m_lnb {
        display: none;
    }

    .m_lnb.active {
        display: block;
    }

    .m_lnb li {
        padding: 30px 0;
        padding-left: 20px;
    }

    .m_lnb li a {
        font-size: 20px;
        font-weight: var(--Medium);
    }

    .m_lnb li .depth {
        margin-top: 10px;
    }

    .m_lnb li .depth li {
        /*   border: 1px solid black; */
        padding: 5px 0;
        list-style: square;
        list-style-position: inside;
    }

    /* 관광지 상단 소개 */
    #topGuide {
        margin-bottom: 100px;
    }

    #topGuide .container .img_box {
        height: 100%;
    }



    /* 페이지소개 */
    #pageIntro {
        margin-top: 30px;
    }

    #pageIntro .breadcrumb_nav {
        padding-left: 0;
    }

    #pageIntro .breadcrumb_nav .breadcrumb_list {
        gap: 5px;
    }

    /* li 공통 css */
    #pageIntro .breadcrumb_list>li {
        height: auto;
        width: fit-content;
    }

    #pageIntro .menu_toggle .main_menu {
        width: 105%;
        top: 46.5px;
    }

    #pageIntro .menu_toggle .main_menu li {
        padding: 15px 10px;
    }

    #pageIntro .menu_toggle .main_menu li a {
        font-size: 14px;
        font-weight: var(--Bold);
    }

    /* 홈 아이콘 */
    #pageIntro .main_page_open i {
        font-size: 25px;
    }

    #pageIntro .gnb {
        width: 100px;
    }

    #pageIntro .lnb {
        width: 100px;
    }

    /* 관광지 상단 소개 */
    .mainImgSwiper-button-wrap {
        display: none;
    }

    /* 제부도 안의 즐길거리 */
    #tour_activity {
        margin-bottom: 100px;
    }

    .tourActivitySwiper .swiper-wrapper .tour_activity_slide {
        width: 100%;
    }

    .tour_activity_slide .slide_box {
        height: auto;
    }

    .tour_activity_slide .slide_box::before {
        display: none;
    }

    .tour_activity_slide .slide_box a .img_box {}

    .tour_activity_slide .slide_box a .img_box img {
        width: 100%;
        max-width: 220px;
    }

    .tour_activity_slide .slide_box a .text_box .activity_desc {
        width: 100%;
        max-width: 220px;
        text-overflow: ellipsis;
        white-space: normal;
        line-height: 1.5;
        height: 3.6rem;
        overflow: hidden;

        word-wrap: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .tourActivitySwiper_button_wrap {
        display: none;
    }

    /* 이용안내 */
    #guideInfo {
        margin-bottom: 100px;
    }

    #guideInfo .container .information_box {
        padding: 20px;
    }

    .information_box .information li {
        gap: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .information_box .information li .desc {
        font-size: 16px;
    }

    .information_box .information .parking .desc_wrap .info_list li {
        font-size: 16px;
    }

    .information_box .information .parking .desc_wrap {
        gap: 10px;
    }

    .information_box .information .parking .desc_wrap .info_list {
        gap: 3px;
    }

    /* 교통정보 */
    #trafficInfo {
        margin-bottom: 100px;
    }

    #trafficInfo .container .information_box {
        padding: 20px;
    }

    .information .bus .info_list li,
    .information .oceanCablecar .info_list li {
        font-size: 16px;
    }

    /* 찾아오시는길 */
    #Directions {
        margin-bottom: 100px;
    }

    /* 주변정보 */
    #nearbyInfo {
        margin-bottom: 100px;
    }

    #nearbyInfo .container {
        width: 100%;
    }

    #nearbyInfo .container .whole {
        height: 400px;
    }

    #nearbyInfo .container .whole.active {
        height: 400px;
        padding-right: 0;

    }

    #nearbyInfo .container .whole .places {
        overflow-y: scroll;
        overflow-x: hidden;
        scrollbar-width: none;

        grid-template-columns: repeat(2, minmax(0, 1fr));
        /* 리스트 콘텐츠 잘리는거 방지 */

        width: 100%;
        height: 400px;

        padding-right: 0;
    }

    .places .place_box {}

    .places .place_box .img_box img {
        width: 100%;
    }

    /* 탑버튼 */
    .top_btn {
        bottom: 30px;
        right: 10px;
    }

    /* 푸터 */
    #footer {
        width: 100%;
        min-height: 320px;
        height: auto;
        overflow-x: hidden;
    }

    .wave_wrap {
        top: -10px;
    }

    .container .footer_contents {
        justify-content: space-between;
        align-items: flex-end;
        transform: translateY(0);
        padding-top: 100px;
    }

    .footer_contents .footer_left .wrap {
        width: 320px;
    }

    .footer_contents .footer_left .wrap .footer_policy {
        flex-wrap: wrap;
        gap: 5px;
        margin-bottom: 13px;
    }

    .footer_contents .footer_left .wrap .footer_policy li a {
        font-size: 13px;
    }

    .footer_contents .footer_left .wrap .footer_address {
        font-size: 10px;
        margin-bottom: 3px;
    }

    .footer_contents .footer_left .wrap .footer_info {
        flex-direction: column;
    }

    .footer_contents .footer_left .wrap .footer_copyright {
        font-size: 10px;
    }

    .footer_contents .footer_left .wrap .footer_info li {
        font-size: 10px;
    }

    .footer_contents .footer_right .footer_help_box {
        display: none;
    }

    .footer_contents .footer_right .footer_family {
        display: none;
    }
}