/* ======================================
   AOS02 CSS - 정리본
   - 원본 스타일 유지
   - 동일 중복 규칙 제거
   - 공백/들여쓰기 정리
====================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html, body{
    width:100%;
    height:100%;
}

body{
    font-family:"Pretendard",sans-serif;
    font-size:14px;
    color:#222;
    line-height:1.5;
    background:#ffffff;
}

ul, ol{
    list-style:none;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    display:block;
    /*width:100%;*/
}

button{
    border:none;
    background:none;
    cursor:pointer;
}

input, select{
    outline:none;
}

.aos02_wrap{
    font-family:"Pretendard", "Noto Sans KR", sans-serif;
    color:#1f2937;
    background:#f6f8fb;
}

.aos02_wrap *{
    box-sizing:border-box;
}


.aos02_inner{
    width:1200px;
    margin:0 auto;
}

.aos02_top{
    background:#111827;
    color:#fff;
    font-size:13px;
}

.aos02_top .aos02_inner{
    height:42px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.aos02_top strong{
    margin-left:8px;
    color:#7dd3fc;
}

.aos02_top_draft{
    display:flex;
    align-items:center;
    gap:0;
}

.aos02_top_draft strong{
    margin-left:0;
}

.aos02_top_draft strong + strong{
    margin-left:8px;
    padding-left:8px;
}

.aos02_top_draft a{
    margin-left:0;
}

.aos02_top a{
    margin-left:18px;
    color:#d1d5db;
}

.sns{
    display:flex;
    gap:10px;
}

.sns a{
    width:28px;
    height:28px;
    margin-left:0;
    border:1px solid rgba(255,255,255,.4);
    border-radius:50%;
    background:rgba(255,255,255,.06);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:border-color .2s ease, background-color .2s ease;
}

.sns a:hover{
    border-color:#fff;
    background:rgba(255,255,255,.16);
}

.sns img{
    width:16px;
    height:16px;
    opacity:.88;
    transition:opacity .2s ease;
}

.sns a:hover img{
    opacity:1;
}

.aos02_top_links{
    display:flex;
    align-items:center;
}

.aos02_top_links a:first-child{
    margin-left:0;
}

.aos02_nav{
    background:rgba(255,255,255,.95);
    border-bottom:1px solid #e5e7eb;
    backdrop-filter:blur(10px);
}

.aos02_nav .aos02_inner{
    height:86px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.aos02_logo{
    width:148px;
}

.aos02_logo a{
    display:block;
}

.aos02_logo img{
    width:100%;
    height:auto;
}

.aos02_header{
    position:relative;
    z-index:200;
}

.aos02_menu{
    display:flex;
    gap:34px;
    list-style:none;
    padding:0;
    margin:0;
    font-weight:700;
}

.aos02_menu > li{
    position:relative;
}

.aos02_menu > li::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:100%;
    height:10px;
}

.aos02_menu > li > a{
    display:block;
    padding:8px 0;
    border-bottom:2px solid transparent;
    transition:color .2s ease, border-color .2s ease;
}

.aos02_menu > li:hover > a,
.aos02_menu > li > a:hover{
    color:#2563eb;
    border-bottom-color:#2563eb;
}

.aos02_depth2{
    position:absolute;
    top:calc(100% + 8px);
    left:50%;
    width:max-content;
    min-width:0;
    height:auto;
    margin:0;
    padding:8px;
    list-style:none;
    background:#fff;
    border:1px solid rgba(15,23,42,.08);
    border-radius:16px;
    box-shadow:0 18px 36px rgba(15,23,42,.12);
    transform:translateX(-50%) translateY(10px);
    opacity:0;
    visibility:hidden;
    overflow:hidden;
    transition:opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.aos02_depth2:not(:has(li)){
    display:none !important;
}

ul.aos02_depth2,
.aos02_depth2 > ul{
    display:grid;
    grid-template-rows:repeat(8, max-content);
    grid-auto-flow:column;
    grid-auto-columns:max-content;
    align-content:start;
    justify-items:stretch;
    column-gap:6px;
    row-gap:4px;
    width:100%;
    height:auto;
    margin:0;
    padding:0;
    list-style:none;
}

.aos02_depth2 li{
    margin:0;
    padding:0;
    min-width:0;
    background:transparent;
}

.aos02_menu > li:hover .aos02_depth2{
    opacity:1;
    visibility:visible;
    transform:translateX(-50%) translateY(0);
}

.aos02_depth2 a{
    display:block;
    box-sizing:border-box;
    width:100%;
    min-width:0;
    padding:10px 16px;
    border-radius:10px;
    font-size:14px;
    font-weight:600;
    color:#1f2937;
    text-align:left;
    white-space:nowrap;
    transition:color .2s ease, background-color .2s ease;
}

.aos02_depth2 a:hover{
    background:#003b7a;
    color:#fff;
}

.aos02_util{
    display:flex;
    gap:10px;
}

.aos02_util a{
    padding:10px 15px;
    border-radius:999px;
    background:#eff6ff;
    color:#2563eb;
    font-size:13px;
    font-weight:700;
}

.aos02_visual{
    padding:30px 0 110px;
    background:linear-gradient(135deg, rgba(37,99,235,.78), rgba(14,165,233,.55)),
        url("../images/main/main02.jpeg") center/cover no-repeat;
    color:#fff;
    overflow:hidden;
}

.aos02_visual .aos02_inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:48px;
}

.aos02_visual_text{
    flex:1;
    min-width:0;
}

.aos02_visual_text span:empty,
.aos02_visual_text h2:empty,
.aos02_visual_text p:empty{
    display:none !important;
}

.aos02_visual_points li:empty{
    display:none;
}

.aos02_visual_points:not(:has(li:not(:empty))){
    display:none;
}

.aos02_visual_text span{
    display:inline-block !important;
    margin-bottom:20px;
    padding:9px 18px;
    border-radius:999px;
    background:rgba(255,255,255,.18);
    font-size:13px;
    font-weight:800;
    letter-spacing:2px;
}

.aos02_visual_text h2{
    margin:0;
    font-size:58px;
    line-height:1.2;
    letter-spacing:-2px;
}

.aos02_visual_text p{
    margin:24px 0 28px;
    font-size:20px;
    color:rgba(255,255,255,.9);
    line-height:1.7;
}

.aos02_visual_points{
    display:flex;
    flex-wrap:wrap;
    gap:10px 24px;
    margin:0 0 32px;
    padding:0;
    list-style:none;
    padding-top: 20px;
}

.aos02_visual_points li{
    font-size:15px;
    font-weight:600;
    color:rgba(255,255,255,.92);
}

.aos02_visual_btns{
    font-size:20px;
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.aos02_visual_text a{
    display:inline-flex;
    align-items:center;
    height:54px;
    padding:0 30px;
    border-radius:999px;
    background:#fff;
    color:#2563eb;
    font-weight:900;
}

.aos02_visual_text a.is-outline{
    border:1px solid rgba(255,255,255,.55);
    background:transparent;
    color:#fff;
}

.aos02_visual_btns a:empty{
    display:none;
}

.aos02_visual_btns:not(:has(a:not(:empty))){
    display:none;
}

.aos02_wrap a.aos02_visual_card,
a.aos02_visual_card{
    position:relative;
    display:block;
    width:360px;
    flex-shrink:0;
    color:#fff;
    text-decoration:none;
    transition:transform .2s ease, box-shadow .2s ease;
}

.aos02_wrap a.aos02_visual_card:hover,
a.aos02_visual_card:hover{
    color:#fff;
    transform:translateY(-4px);
    box-shadow:0 34px 74px rgba(0,0,0,.28);
}

.aos02_visual_card_badge:empty{
    display:none;
}

.aos02_visual_card span:empty,
.aos02_visual_card strong:empty,
.aos02_visual_card small:empty{
    display:none;
}

.aos02_visual_card_badge{
    position:absolute;
    top:30px;
    left:30px;
    z-index:1;
    padding:7px 14px;
    border-radius:999px;
    background:#003b7a;
    font-size:12px;
    font-style:normal;
    font-weight:700;
    letter-spacing:.5px;
}

.aos02_visual_card small{
    display:block;
    margin-top:8px;
    font-size:13px;
    font-weight:600;
    color:rgba(255,255,255,.78);
}

.aos02_quick li a{
    display:block;
    color:inherit;
    text-decoration:none;
}

.aos02_quick li a:hover p{
    color:#2563eb;
}

.aos02_visual_card{
    width:360px;
    padding:18px;
    border-radius:34px;
    background:rgba(255,255,255,.18);
    box-shadow:0 30px 70px rgba(0,0,0,.25);
    backdrop-filter:blur(12px);
}

.aos02_visual_card img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:26px;
}

.aos02_visual_card div{
    padding:20px 10px 8px;
}

.aos02_visual_card span{
    display:block;
    margin-bottom:8px;
    font-size:13px;
    color:#dbeafe;
}

.aos02_visual_card strong{
    display:block;
    font-size:26px;
}

.aos02_visual_card p{
    margin:8px 0 0;
    font-size:22px;
    font-weight:900;
}

.aos02_quick{
    margin-top:-48px;
}

.aos02_quick ul{
    display:grid;
    grid-template-columns:repeat(8, 1fr);
    gap:14px;
    padding:24px;
    margin:0;
    list-style:none;
    background:#fff;
    border-radius:28px;
    box-shadow:0 20px 50px rgba(15,23,42,.12);
}

.aos02_quick li{
    text-align:center;
    padding:18px 8px;
    border-radius:20px;
    background:#f8fafc;
}

.aos02_quick span{
    display:block;
    font-size:30px;
}

.aos02_quick p{
    margin:10px 0 0;
    font-weight:800;
}

.home_aos02_category{
    padding:60px 0;
    background:#fff;
}

.home_aos02_category .aos02_wrap_inner{
    width:1200px;
    margin:0 auto;
}

.home_aos02_title{
    text-align:center;
    margin-bottom:50px;
}

.home_aos02_title span{
    display:block;
    color:#2458ff;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:10px;
}

.home_aos02_title h2{
    font-size:52px;
    font-weight:800;
    margin-bottom:15px;
}

.home_aos02_title p{
    font-size:18px;
    color:#777;
}

.home_aos02_category_wrap{
    display:flex;
    gap:30px;
    align-items:center;
}

.home_aos02_category_visual{
    width:70%;
    display:flex;
    gap:20px;
    align-items:center;
}

.travel_card{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    transition:.35s;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.travel_card:hover{
    transform:translateY(-10px);
}

.travel_card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.travel_card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.15)
    );
    z-index:1;
}

.travel_card.side{
    width:220px;
    height:520px;
    flex-shrink:0;
}

.travel_card.center{
    flex:1;
    height:620px;
}

.travel_card_txt{
    position:absolute;
    left:30px;
    bottom:30px;
    z-index:2;
    color:#fff;
}

.travel_card_txt span{
    display:inline-block;
    padding:8px 16px;
    border-radius:30px;
    background:#2458ff;
    font-size:12px;
    font-weight:700;
    margin-bottom:15px;
}

.travel_card_txt strong{
    display:block;
    font-size:40px;
    font-weight:800;
    line-height:1.3;
}

.travel_card_txt p{
    margin-top:10px;
    font-size:16px;
    color:rgba(255,255,255,.9);
}

.home_aos02_category_menu{
    width:30%;
    display:flex;
    flex-direction:column;
    gap:12px;
}



.home_aos02_category_menu a:hover{
    background:#2458ff;
    transform:translateX(8px);
}

.home_aos02_category_menu strong{
    display:block;
    font-size:24px;
    font-weight:800;
    margin-bottom:5px;
    transition:.3s;
}

.home_aos02_category_menu span{
    color:#666;
    font-size:15px;
    transition:.3s;
}

.home_aos02_category_menu a:hover strong, .home_aos02_category_menu a:hover span{
    color:#fff;
}

@media screen and (max-width:1200px){
    .home_aos02_category .aos02_wrap_inner{
        width:94%;
    }

    .home_aos02_category_wrap{
        flex-direction:column;
    }

    .home_aos02_category_visual{
        width:100%;
    }

    .home_aos02_category_menu{
        width:100%;
    }
}

@media screen and (max-width:768px){
    .home_aos02_title h2{
        font-size:34px;
    }

    .home_aos02_category_visual{
        flex-direction:column;
    }

    .travel_card.side, .travel_card.center{
        width:100%;
        height:320px;
    }

    .travel_card_txt strong{
        font-size:28px;
    }

    .home_aos02_category_menu strong{
        font-size:20px;
    }
}

.aos02_title{
    text-align:center;
    margin-bottom:42px;
}

.aos02_title span{
    color:#2563eb;
    font-size:13px;
    font-weight:900;
    letter-spacing:2px;
}

.aos02_title h2{
    margin:10px 0;
    font-size:36px;
    letter-spacing:-1px;
}

.aos02_title p{
    margin:0;
    color:#6b7280;
}

.aos02_event{
    padding:70px 0 40px;
}

.aos02_event .aos02_inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:36px 46px;
    border-radius:30px;
    background:linear-gradient(135deg, #111827, #1d4ed8);
    color:#fff;
}

.aos02_event span{
    color:#93c5fd;
    font-weight:900;
    letter-spacing:2px;
}

.aos02_event h2{
    margin:10px 0;
    font-size:30px;
}

.aos02_event p{
    margin:0;
    color:#dbeafe;
}

.aos02_event a{
    padding:15px 26px;
    border-radius:999px;
    background:#fff;
    color:#1d4ed8;
    font-weight:900;
}

.aos02_best{
    padding:30px 0;
}

.aos02_best_list{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:26px;
}

.aos02_best_list article{
    overflow:hidden;
    border-radius:28px;
    background:#fff;
    box-shadow:0 18px 40px rgba(15,23,42,.08);
    transition:.25s;
}

.aos02_best_list article:hover{
    transform:translateY(-8px);
}

.aos02_best_list img{
    width:100%;
    height:210px;
    object-fit:cover;
}

.aos02_best_list div{
    padding:22px;
}

.aos02_best_list em{
    display:inline-block;
    margin-bottom:12px;
    padding:6px 12px;
    border-radius:999px;
    background:#dbeafe;
    color:#2563eb;
    font-size:12px;
    font-style:normal;
    font-weight:900;
}

.aos02_best_list h3{
    margin:0;
    font-size:20px;
}

.aos02_best_list p{
    color:#6b7280;
}

.aos02_best_list strong{
    color:#ef4444;
    font-size:22px;
}

.aos02_theme{
    padding:40px 0;
    background:#fff;
}

.aos02_theme_list{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr 1fr;
    gap:18px;
}

.aos02_theme_list a{
    position:relative;
    overflow:hidden;
    height:280px;
    border-radius:28px;
}

.aos02_theme_list img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.3s;
}

.aos02_theme_list a:hover img{
    transform:scale(1.08);
}

.aos02_theme_list span{
    position:absolute;
    left:22px;
    bottom:22px;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(255,255,255,.92);
    font-weight:900;
}

.aos02_about{
    padding:40px 0;
    background:#eff6ff;
}

.aos02_about .aos02_inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.aos02_about_text span{
    color:#2563eb;
    font-weight:900;
}

.aos02_about_text h2{
    margin:12px 0;
    font-size:38px;
}

.aos02_about_text p{
    color:#6b7280;
    line-height:1.7;
}

.aos02_about_count{
    display:grid;
    grid-template-columns:repeat(2, 180px);
    gap:18px;
}

.aos02_about_count div{
    padding:30px 20px;
    border-radius:26px;
    background:#fff;
    text-align:center;
    box-shadow:0 14px 30px rgba(37,99,235,.08);
}

.aos02_about_count strong{
    display:block;
    color:#2563eb;
    font-size:34px;
}

.aos02_about_count span{
    display:block;
    margin-top:8px;
    color:#6b7280;
}

.aos02_magazine{
    padding:30px 0;
}

.aos02_magazine_list{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
}

.aos02_magazine_list article{
    display:flex;
    gap:18px;
    padding:18px;
    border-radius:26px;
    background:#fff;
    box-shadow:0 14px 32px rgba(15,23,42,.08);
    transition:.25s;
    cursor:pointer;
    overflow:hidden;
}

.aos02_magazine_list article:hover{
    transform:translateY(-6px);
    box-shadow:0 22px 44px rgba(15,23,42,.14);
}

.aos02_magazine_list img{
    width:130px;
    height:120px;
    border-radius:10px;
    object-fit:cover;
    transition:.3s;
}

.aos02_magazine_list article:hover img{
    transform:scale(1.06);
}

.aos02_magazine_list span{
    color:#2563eb;
    font-size:17px;
    font-weight:900;
}

.aos02_magazine_list h3{
    margin:8px 0;
    font-size:20px;
    transition:.25s;
}

.aos02_magazine_list article:hover h3{
    color:#2563eb;
}

.aos02_magazine_list p{
    margin:0;
    color:#6b7280;
}

.aos02_customer{
    padding:30px 0;
    background:#fff;
}

.aos02_customer .aos02_inner{
    display:grid;
    grid-template-columns:1fr 1fr 320px;
    gap:24px;
    align-items:stretch;
}

.aos02_account{
    grid-column:3;
    grid-row:1;
    display:flex;
    flex-direction:column;
    height:100%;
    padding:0;
    background:#fff;
    border:1px solid #ccc;
    overflow:hidden;
}

.aos02_board{
    padding:24px 28px;
    background:#fff;
    border:1px solid #ccc;
}

.aos02_account h3{
    margin:0;
    padding:14px 20px;
    font-size:16px;
    font-weight:700;
    color:#fff;
    background:#003b7a;
    border-bottom:none;
}

.aos02_account_body{
    flex:1;
    display:flex;
    flex-direction:column;
    padding:24px 28px;
}

.aos02_account_cs{
    padding-bottom:18px;
    border-bottom:1px solid #e4e7eb;
}

.aos02_account_cs strong{
    display:block;
    margin-bottom:6px;
    font-size:24px;
    font-weight:800;
    color:#003b7a;
    letter-spacing:0.5px;
}

.aos02_account_cs p{
    margin:0;
    font-size:13px;
    color:#666;
    line-height:1.5;
}

.aos02_account_bank{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding-top:18px;
}

.aos02_account_bank h4{
    margin:0 0 12px;
    font-size:14px;
    font-weight:700;
    color:#111;
}

.aos02_account_bank dl{
    display:grid;
    grid-template-columns:64px 1fr;
    gap:8px 12px;
    margin:0;
}

.aos02_account_bank dt{
    font-size:13px;
    color:#888;
}

.aos02_account_bank dd{
    margin:0;
    font-size:13px;
    font-weight:600;
    color:#333;
}

.aos02_account_bank dd.is-num{
    font-size:16px;
    font-weight:800;
    color:#003b7a;
    letter-spacing:0.5px;
}

.aos02_board_head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:16px;
    padding-bottom:14px;
    border-bottom:2px solid #222;
}

.aos02_board_head h3{
    margin:0;
    padding:0;
    font-size:18px;
    font-weight:700;
    color:#111;
    border-bottom:none;
}

.aos02_board_head a{
    font-size:13px;
    color:#666;
    white-space:nowrap;
}

.aos02_board_head a:hover{
    color:#003b7a;
}

.aos02_board ul{
    padding:0;
    margin:0;
    list-style:none;
}

.aos02_board li{
    display:flex;
    justify-content:space-between;
    gap:16px;
    padding:13px 0;
    border-bottom:1px solid #e5e7eb;
    font-size:14px;
}

.aos02_board span{
    color:#9ca3af;
    white-space:nowrap;
}

.aos02_footer{
    padding:30px 0 20px 60px;
    background:#0f172a;
    color:#cbd5e1;
    text-align:left;
}

.aos02_footer_top{
    display:flex;
    align-items:center;
    gap:24px;
}

.aos02_footer img{
    height:62px;
    width:auto;
    max-width:100%;
    display:block;
    flex-shrink:0;
}

.aos02_footer_nav{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
}

.aos02_footer a{
    color:#fff;
    font-weight:700;
}

.aos02_footer p{
    margin:0;
    line-height:1.8;
    color:#94a3b8;
    white-space:nowrap;
}

.aos02_footer p small{
    color:#64748b;
}

@media (max-width: 1200px){
    .aos02_inner{
        width:94%;
    }

    .aos02_best_list{
        grid-template-columns:repeat(2, 1fr);
    }

    .aos02_quick ul{
        grid-template-columns:repeat(4, 1fr);
    }
}

@media (max-width: 768px){
    .aos02_menu, .aos02_util, .aos02_visual_card{
        display:none;
    }

    .aos02_visual_text h2{
        font-size:38px;
    }

    .aos02_best_list, .aos02_magazine_list, .aos02_customer .aos02_inner, .aos02_about .aos02_inner{
        grid-template-columns:1fr;
        display:grid;
    }

    .aos02_account{
        grid-column:auto;
        grid-row:auto;
    }

    .aos02_theme_list{
        grid-template-columns:1fr 1fr;
    }

    .aos02_theme_list a{
        height:210px;
    }

    .aos02_about_count{
        grid-template-columns:repeat(2, 1fr);
    }
}

.sub_visual{
    padding:0;
    background:#111;
    color:#fff;
    text-align:center;
}

.sub_visual.has-banner{
    background:#000;
}

.sub_visual_banner_wrap{
    width:100%;
    min-height:0;
}

.sub_visual_banner{
    position:relative;
    width:100%;
    height:280px;
    overflow:hidden;
}

.sub_visual_banner_bg{
    position:absolute;
    inset:-24px;
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    filter:blur(10px);
    transform:scale(1.08);
}

.sub_visual_banner_bg::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.28);
}

.sub_visual_banner_front{
    position:relative;
    z-index:1;
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
}

.sub_visual_banner_front img{
    display:block;
    max-width:100%;
    max-height:100%;
    width:auto;
    height:auto;
    object-fit:contain;
}

.sub_visual_txt span{
    display:block;
    margin-bottom:8px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    color:rgba(255,255,255,.85);
}

.sub_visual h2{
    font-size:32px;
    font-weight:700;
    margin:0 0 8px;
}

.sub_visual_txt p{
    margin:0;
    font-size:15px;
    color:rgba(255,255,255,.9);
}

.sub_category{
    padding:0;
    border-bottom:1px solid #ccc;
    background:#fff;
    box-shadow:0 2px 6px rgba(0,0,0,.05);
}

.sub_category ul{
    display:flex;
    justify-content:center;
    gap:0;
    flex-wrap:wrap;
}

.sub_category a{
    display:block;
    padding:14px 18px;
    border:none;
    border-bottom:2px solid transparent;
    font-size:14px;
    color:#666;
}

.sub_category a:hover, .sub_category .is-active a{
    color:#111;
    border-bottom-color:#003b7a;
    font-weight:700;
}

.sub_product_list{
    padding:32px 0 64px;
    background:#f3f5f8;
}

.sub_product_list .aos02_title{
    text-align:left;
    margin-bottom:20px;
    padding-bottom:18px;
    border-bottom:2px solid #222;
}

.sub_product_list .aos02_title span{
    font-size:12px;
    color:#003b7a;
    letter-spacing:1px;
}

.sub_product_list .aos02_title h2{
    margin:6px 0;
    font-size:22px;
    font-weight:700;
}

.sub_product_list .aos02_title p{
    font-size:14px;
    color:#888;
}

.aos02_product_layout{
    display:flex;
    align-items:flex-start;
    gap:24px;
}

.aos02_product_filter{
    flex:0 0 240px;
    background:#fff;
    border:1px solid #ccc;
}

.aos02_product_filter_head{
    padding:18px 20px;
    border-bottom:1px solid #e4e7eb;
    background:#f0f2f5;
}

.aos02_product_filter_head strong{
    display:block;
    margin-bottom:4px;
    font-size:16px;
    color:#111;
}

.aos02_product_filter_head span{
    font-size:12px;
    color:#888;
}

.aos02_product_filter_search{
    padding:16px 20px;
    border-bottom:1px solid #e4e7eb;
}

.aos02_product_filter_search input{
    width:100%;
    height:40px;
    padding:0 12px;
    border:1px solid #ddd;
    font-size:13px;
    color:#333;
}

.aos02_product_filter_group{
    padding:16px 20px;
    border-bottom:1px solid #e4e7eb;
}

.aos02_product_filter_group h4{
    margin:0 0 12px;
    font-size:14px;
    font-weight:700;
    color:#111;
}

.aos02_product_filter_group select{
    width:100%;
    height:36px;
    margin-bottom:10px;
    padding:0 10px;
    border:1px solid #ddd;
    font-size:13px;
    color:#333;
}

.aos02_product_filter_date{
    display:flex;
    align-items:center;
    gap:8px;
}

.aos02_product_filter_date input{
    flex:1;
    width:100%;
    height:36px;
    padding:0 8px;
    border:1px solid #ddd;
    font-size:12px;
    color:#333;
}

.aos02_product_filter_date span{
    font-size:13px;
    color:#888;
}

.aos02_product_filter_btns{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
}

.aos02_product_filter_btns span{
    display:inline-flex;
    align-items:center;
    height:32px;
    padding:0 12px;
    border:1px solid #ddd;
    background:#fff;
    font-size:13px;
    color:#333;
    cursor:pointer;
}

.aos02_product_filter_btns span.is-active{
    border-color:#003b7a;
    background:#003b7a;
    color:#fff;
}

.aos02_product_filter_check label{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:8px;
    font-size:13px;
    color:#333;
    cursor:pointer;
}

.aos02_product_filter_check input{
    width:16px;
    height:16px;
    margin:0;
}

.aos02_product_content{
    flex:1;
    min-width:0;
}

.product_list_box{
    background:#fff;
    border:1px solid #ccc;
}

.product_sort{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:0;
    padding:14px 24px;
    background:#f0f2f5;
    border-bottom:1px solid #ccc;
}

.product_sort p{
    font-size:14px;
    color:#333;
}

.product_sort strong{
    color:#003b7a;
}

.product_sort select{
    width:140px;
    height:36px;
    padding:0 12px;
    border:1px solid #ddd;
    font-size:13px;
    color:#333;
}

.product_sort_tabs{
    display:flex;
    gap:6px;
}

.product_sort_tabs button{
    height:36px;
    padding:0 16px;
    border:1px solid #ddd;
    background:#fff;
    font-size:13px;
    color:#666;
    cursor:pointer;
    transition:all .15s;
}

.product_sort_tabs button:hover{
    border-color:#003b7a;
    color:#003b7a;
}

.product_sort_tabs button.is-active{
    background:#003b7a;
    border-color:#003b7a;
    color:#fff;
    font-weight:600;
}

.product_item{
    display:flex;
    align-items:stretch;
    gap:28px;
    padding:28px 24px;
}

.product_item + .product_item{
    border-top:1px solid #ddd;
}

.product_thumb_wrap{
    position:relative;
    flex:0 0 200px;
    height:156px;
    align-self:flex-start;
}

.product_thumb{
    display:block;
    width:100%;
    height:100%;
    overflow:hidden;
}

.product_thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.product_wish_heart{
    position:absolute;
    top:10px;
    right:10px;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:center;
    width:32px;
    height:32px;
    margin:0;
    padding:0;
    border:0;
    border-radius:50%;
    background:rgba(0,0,0,.35);
    color:#fff;
    cursor:pointer;
    box-sizing:border-box;
    font:inherit;
    line-height:1;
    -webkit-appearance:none;
    appearance:none;
    transition:background-color .2s, color .2s;
}

.product_wish_heart::before{
    content:'♡';
    font-size:16px;
    line-height:1;
    transform:translateY(1px);
}

.product_wish_heart:hover{
    background:rgba(0,0,0,.5);
}

.product_wish_heart.is-active{
    background:rgba(255,77,109,.92);
    color:#fff;
}

.product_wish_heart.is-active::before{
    content:'♥';
}

.product_info{
    flex:1;
    min-width:0;
}

.product_badge{
    display:inline-block;
    margin-bottom:6px;
    padding:3px 8px;
    background:#003b7a;
    color:#fff;
    font-size:11px;
    font-weight:700;
}

.product_badge.hot{
    background:#ff6b00;
}

.product_badge.sale{
    background:#e60012;
}

.product_badge.confirm{
    background:#fff;
    border:1px solid #003b7a;
    color:#003b7a;
}

.product_badge_row{
    display:flex;
    flex-wrap:wrap;
    gap:4px;
    margin-bottom:6px;
}

.product_badge_row .product_badge{
    margin-bottom:0;
}

.product_code{
    margin-bottom:4px;
    font-size:12px;
    color:#999;
}

.product_info h3{
    margin-bottom:8px;
    font-size:18px;
    font-weight:700;
    color:#111;
    line-height:1.4;
}

.product_info h3 a{
    color:inherit;
}

.product_info p{
    margin-bottom:10px;
    font-size:14px;
    color:#666;
    line-height:1.6;
}

.product_desc{
    margin-bottom:0;
}

.product_meta{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:8px 20px;
    margin:0 0 12px;
    padding:4px 16px;
    background:#f7f8fa;
    border:1px solid #e4e7eb;
    list-style:none;
}

.product_meta li{
    display:flex;
    gap:8px;
    margin:0;
    font-size:13px;
}

.product_meta li span{
    flex:0 0 52px;
    color:#888;
}

.product_meta li strong{
    color:#333;
    font-weight:600;
}


.product_meta--row{
    display:flex;
    flex-wrap:nowrap;
    align-items:center;
    gap:0;
    grid-template-columns:unset;
}

.product_meta--row .product_meta_icon{
    display:inline-block;
    width:18px;
    height:18px;
    border-radius:50%;
    background:#003b7a;
    color:#fff;
    font-size:9px;
    font-style:normal;
    font-weight:700;
    line-height:18px;
    text-align:center;
    flex-shrink:0;
}

.product_meta--row .product_meta_icon::after{
    content:"";
}

.product_meta_air.airline-korean .product_meta_icon{
    background:#0b4ea2;
}

.product_meta_air.airline-korean .product_meta_icon::after{
    content:"KE";
}

.product_meta_air.airline-asiana .product_meta_icon{
    background:#c41e3a;
}

.product_meta_air.airline-asiana .product_meta_icon::after{
    content:"OZ";
}

.product_meta_air.airline-jeju .product_meta_icon{
    background:#ff6b00;
}

.product_meta_air.airline-jeju .product_meta_icon::after{
    content:"7C";
}

.product_meta_air.airline-jinair .product_meta_icon{
    background:#7cc242;
}

.product_meta_air.airline-jinair .product_meta_icon::after{
    content:"LJ";
}

.product_meta_air.airline-tway .product_meta_icon{
    background:#d71920;
}

.product_meta_air.airline-tway .product_meta_icon::after{
    content:"TW";
}

.product_meta_air.airline-airseoul .product_meta_icon{
    background:#00a651;
}

.product_meta_air.airline-airseoul .product_meta_icon::after{
    content:"RS";
}

.product_meta_air.airline-airbusan .product_meta_icon{
    background:#1f76d2;
}

.product_meta_air.airline-airbusan .product_meta_icon::after{
    content:"BX";
}

.product_meta_air.airline-eastar .product_meta_icon{
    background:#e60012;
}

.product_meta_air.airline-eastar .product_meta_icon::after{
    content:"ZE";
}

.product_meta--row strong{
    font-size:13px;
    font-weight:600;
    color:#333;
}

.product_meta--row > * + *{
    margin-left:16px;
    padding-left:16px;
    border-left:1px solid #d0d4da;
}


.product_icons{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    margin:0 0 10px;
}

.product_icons span{
    padding:3px 8px;
    border:1px solid #e8e8e8;
    background:#fafafa;
    font-size:11px;
    color:#666;
}

.product_tags{
    display:flex;
    flex-wrap:wrap;
    gap:4px;
}

.product_tags span{
    padding:2px 8px;
    background:#f5f5f5;
    font-size:11px;
    color:#888;
}

.product_info ul li{
    margin-top:3px;
    font-size:13px;
    color:#888;
}

.product_price{
    flex:0 0 168px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-end;
    text-align:right;
    padding:8px 0 8px 24px;
    border-left:1px solid #e0e0e0;
}

.product_seat{
    display:block;
    margin-bottom:6px;
    font-size:12px;
    color:#003b7a;
    font-weight:600;
}

.product_seat.urgent{
    color:#e60012;
}

.product_origin{
    display:block;
    margin-bottom:2px;
    font-size:13px;
    color:#bbb;
    text-decoration:line-through;
}

.product_price span{
    display:block;
    margin-bottom:4px;
    font-size:12px;
    color:#888;
}

.product_price strong{
    display:block;
    margin-bottom:12px;
    font-size:20px;
    font-weight:800;
    color:#003b7a;
}

.product_price a{
    display:inline-block;
    padding:10px 35px;
    background:#003b7a;
    color:#fff;
    font-size:14px;
    font-weight:700;
}

.product_paging{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:4px;
    margin-top:28px;
    padding:20px 24px;
    background:#fff;
    border:1px solid #ccc;
}

.product_paging a{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:36px;
    height:36px;
    padding:0 10px;
    border:1px solid #ddd;
    font-size:14px;
    color:#666;
}

.product_paging a.is-active{
    border-color:#003b7a;
    background:#003b7a;
    color:#fff;
    font-weight:700;
}

.product_paging a.next{
    padding:0 14px;
    font-size:13px;
}

.product_notice{
    margin-top:16px;
    padding:18px 24px;
    background:#fff;
    border:1px solid #ddd;
}

.product_notice{
    display:flex;
    flex-direction:column;
    gap:6px;
}

.product_notice p{
    margin:0;
    font-size:13px;
    color:#888;
    line-height:1.6;
}

.china_main_visual{
    background:linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)),
        url("../images/main/c02.png") center center / cover no-repeat;
}

.china_dest_quick{
    padding:24px 0;
    background:#fff;
    border-bottom:1px solid #ccc;
}

.china_dest_quick ul{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:12px;
    list-style:none;
}

.china_dest_quick a{
    display:block;
    padding:12px;
    border:1px solid #ddd;
    background:#fff;
    text-align:center;
    color:#333;
}

.china_dest_quick a:hover{
    border-color:#003b7a;
}

.china_dest_quick img{
    width:100%;
    height:90px;
    object-fit:cover;
    margin-bottom:10px;
    border:1px solid #eee;
}

.china_dest_quick strong{
    display:block;
    margin-bottom:4px;
    font-size:15px;
    font-weight:700;
    color:#111;
}

.china_dest_quick span{
    font-size:12px;
    color:#888;
}

.aos02_product_region .aos02_dest_panel{
    display:none;
    margin:0;
    padding:0;
    list-style:none;
}

.aos02_product_region .is-panel-all{
    display:grid;
}

.aos02_product_region .sub_category li{
    position:relative;
}

.aos02_product_region .sub_category li.is-tab-sea:hover::after,
.aos02_product_region .sub_category li.is-tab-japan:hover::after,
.aos02_product_region .sub_category li.is-tab-europe:hover::after,
.aos02_product_region .sub_category li.is-tab-america:hover::after,
.aos02_product_region .sub_category li.is-tab-china:hover::after,
.aos02_product_region .sub_category li.is-tab-aus:hover::after{
    content:'';
    position:absolute;
    left:0;
    right:0;
    top:100%;
    height:48px;
    z-index:5;
}

.aos02_product_region .china_dest_quick{
    padding-top:0;
}

.aos02_product_region .china_dest_quick .aos02_inner{
    padding-top:24px;
}

.aos02_product_region:has(.is-tab-sea:hover) .is-panel-all,
.aos02_product_region:has(.is-panel-sea:hover) .is-panel-all,
.aos02_product_region:has(.is-tab-japan:hover) .is-panel-all,
.aos02_product_region:has(.is-panel-japan:hover) .is-panel-all,
.aos02_product_region:has(.is-tab-europe:hover) .is-panel-all,
.aos02_product_region:has(.is-panel-europe:hover) .is-panel-all,
.aos02_product_region:has(.is-tab-america:hover) .is-panel-all,
.aos02_product_region:has(.is-panel-america:hover) .is-panel-all,
.aos02_product_region:has(.is-tab-china:hover) .is-panel-all,
.aos02_product_region:has(.is-panel-china:hover) .is-panel-all,
.aos02_product_region:has(.is-tab-aus:hover) .is-panel-all,
.aos02_product_region:has(.is-panel-aus:hover) .is-panel-all{
    display:none;
}

.aos02_product_region:has(.is-tab-sea:hover) .is-panel-sea,
.aos02_product_region:has(.is-panel-sea:hover) .is-panel-sea{
    display:grid;
}

.aos02_product_region:has(.is-tab-japan:hover) .is-panel-japan,
.aos02_product_region:has(.is-panel-japan:hover) .is-panel-japan{
    display:grid;
}

.aos02_product_region:has(.is-tab-europe:hover) .is-panel-europe,
.aos02_product_region:has(.is-panel-europe:hover) .is-panel-europe{
    display:grid;
}

.aos02_product_region:has(.is-tab-america:hover) .is-panel-america,
.aos02_product_region:has(.is-panel-america:hover) .is-panel-america{
    display:grid;
}

.aos02_product_region:has(.is-tab-china:hover) .is-panel-china,
.aos02_product_region:has(.is-panel-china:hover) .is-panel-china{
    display:grid;
}

.aos02_product_region:has(.is-tab-aus:hover) .is-panel-aus,
.aos02_product_region:has(.is-panel-aus:hover) .is-panel-aus{
    display:grid;
}

.aos02_product_region:has(.is-tab-all:hover) .is-tab-all a,
.aos02_product_region:has(.is-panel-all:hover) .is-tab-all a,
.aos02_product_region:has(.is-tab-sea:hover) .is-tab-sea a,
.aos02_product_region:has(.is-panel-sea:hover) .is-tab-sea a,
.aos02_product_region:has(.is-tab-japan:hover) .is-tab-japan a,
.aos02_product_region:has(.is-panel-japan:hover) .is-tab-japan a,
.aos02_product_region:has(.is-tab-europe:hover) .is-tab-europe a,
.aos02_product_region:has(.is-panel-europe:hover) .is-tab-europe a,
.aos02_product_region:has(.is-tab-america:hover) .is-tab-america a,
.aos02_product_region:has(.is-panel-america:hover) .is-tab-america a,
.aos02_product_region:has(.is-tab-china:hover) .is-tab-china a,
.aos02_product_region:has(.is-panel-china:hover) .is-tab-china a,
.aos02_product_region:has(.is-tab-aus:hover) .is-tab-aus a,
.aos02_product_region:has(.is-panel-aus:hover) .is-tab-aus a{
    color:#111;
    border-bottom-color:#003b7a;
    font-weight:700;
}

.aos02_product_region:has(.is-tab-sea:hover) .is-tab-all a,
.aos02_product_region:has(.is-panel-sea:hover) .is-tab-all a,
.aos02_product_region:has(.is-tab-japan:hover) .is-tab-all a,
.aos02_product_region:has(.is-panel-japan:hover) .is-tab-all a,
.aos02_product_region:has(.is-tab-europe:hover) .is-tab-all a,
.aos02_product_region:has(.is-panel-europe:hover) .is-tab-all a,
.aos02_product_region:has(.is-tab-america:hover) .is-tab-all a,
.aos02_product_region:has(.is-panel-america:hover) .is-tab-all a,
.aos02_product_region:has(.is-tab-china:hover) .is-tab-all a,
.aos02_product_region:has(.is-panel-china:hover) .is-tab-all a,
.aos02_product_region:has(.is-tab-aus:hover) .is-tab-all a,
.aos02_product_region:has(.is-panel-aus:hover) .is-tab-all a{
    color:#666;
    border-bottom-color:transparent;
    font-weight:400;
}

.aos02_product_region .is-panel-cols-4{
    grid-template-columns:repeat(4,1fr);
}

.china_promo{
    padding:24px 0;
    background:#f3f5f8;
}

.china_promo_box{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:24px;
    padding:24px 32px;
    background:#003b7a;
    border:1px solid #003b7a;
    color:#fff;
}

.china_promo_txt span{
    display:block;
    margin-bottom:6px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    color:rgba(255,255,255,.8);
}

.china_promo_txt h3{
    margin:0 0 6px;
    font-size:22px;
    font-weight:700;
}

.china_promo_txt p{
    margin:0;
    font-size:14px;
    color:rgba(255,255,255,.9);
}

.china_promo_box > a{
    flex-shrink:0;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:44px;
    padding:0 24px;
    background:#fff;
    color:#003b7a;
    font-size:14px;
    font-weight:700;
}

.china_section{
    padding:32px 0;
}

.china_section .aos02_title{
    text-align:left;
    margin-bottom:20px;
    padding-bottom:18px;
    border-bottom:2px solid #222;
}

.china_section .aos02_title span{
    font-size:12px;
    color:#003b7a;
    letter-spacing:1px;
    font-weight:700;
}

.china_section .aos02_title h2{
    margin:6px 0;
    font-size:22px;
    font-weight:700;
    letter-spacing:0;
}

.china_section .aos02_title p{
    font-size:14px;
    color:#888;
}

.china_best{
    background:#f3f5f8;
}

.china_best_grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
}

.china_best_card{
    background:#fff;
    border:1px solid #ccc;
    overflow:hidden;
}

.china_best_card a{
    display:block;
    color:inherit;
}

.china_best_card img{
    width:100%;
    height:180px;
    object-fit:cover;
    display:block;
    border-bottom:1px solid #eee;
}

.china_best_card div{
    padding:16px;
}

.china_best_card em{
    display:inline-block;
    margin-bottom:8px;
    padding:3px 8px;
    background:#003b7a;
    color:#fff;
    font-size:11px;
    font-style:normal;
    font-weight:700;
}

.china_best_card em.hot{
    background:#ff6b00;
}

.china_best_card em.is-sale{
    background:#e60012;
}

.china_best_card em.is-outline{
    background:#fff;
    border:1px solid #003b7a;
    color:#003b7a;
}

.china_best_card h3{
    margin:0 0 6px;
    font-size:16px;
    font-weight:700;
    color:#111;
    line-height:1.4;
}

.china_best_card p{
    margin:0 0 10px;
    font-size:13px;
    color:#666;
    line-height:1.5;
}

.china_best_card strong{
    font-size:18px;
    font-weight:800;
    color:#003b7a;
}

.china_spotlight{
    background:#fff;
    border-top:1px solid #ccc;
    border-bottom:1px solid #ccc;
}

.china_spotlight_grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr;
    gap:12px;
}

.china_spotlight_card{
    position:relative;
    display:block;
    height:280px;
    overflow:hidden;
    border:1px solid #ccc;
    color:#fff;
}

.china_spotlight_card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .3s;
}

.china_spotlight_card:hover img{
    transform:scale(1.05);
}

.china_spotlight_card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.65), rgba(0,0,0,.1));
}

.china_spotlight_txt{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    z-index:1;
    padding:20px;
}

.china_spotlight_txt span{
    display:block;
    margin-bottom:6px;
    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
    color:rgba(255,255,255,.85);
}

.china_spotlight_txt strong{
    display:block;
    font-size:20px;
    font-weight:700;
}

.china_spotlight_txt p{
    margin:8px 0 0;
    font-size:13px;
    color:rgba(255,255,255,.9);
    line-height:1.5;
}

.china_spotlight_card.is-large{
    height:280px;
}

.china_theme{
    background:#f3f5f8;
}

.china_theme_list{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:10px;
}

.china_theme_list a{
    display:flex;
    align-items:center;
    justify-content:center;
    height:52px;
    background:#fff;
    border:1px solid #ccc;
    font-size:14px;
    font-weight:600;
    color:#333;
}

.china_theme_list a:hover{
    border-color:#003b7a;
    color:#003b7a;
}

.china_theme_product{
    margin-top:24px;
}

.china_theme_panel{
    display:none;
}

.china_theme_panel.is-active{
    display:grid;
}

.china_theme_list a.is-active{
    background:#003b7a;
    border-color:#003b7a;
    color:#fff;
}

.china_theme_product .china_best_card em{
    background:#f0f2f5;
    border:1px solid #e4e7eb;
    color:#003b7a;
}

@media (max-width:768px){
    .sub_visual{
        padding:0;
    }

    .sub_visual_banner{
        height:220px;
    }

    .sub_visual h2{
        font-size:24px;
    }

    .sub_category ul{
        overflow-x:auto;
        flex-wrap:nowrap;
    }

    .sub_category a{
        white-space:nowrap;
        padding:12px 14px;
        font-size:13px;
    }

    .aos02_product_layout{
        flex-direction:column;
    }

    .aos02_product_filter{
        flex:0 0 auto;
        width:100%;
    }

    .product_item{
        flex-direction:column;
        gap:14px;
        padding:20px 16px;
    }

    .product_thumb_wrap{
        width:100%;
        flex:0 0 auto;
        height:180px;
    }

    .product_thumb{
        width:100%;
        height:100%;
    }

    .product_meta{
        grid-template-columns:1fr;
    }

    .product_icons{
        gap:4px;
    }

    .product_price{
        width:100%;
        flex:0 0 auto;
        flex-direction:row;
        align-items:center;
        justify-content:space-between;
        text-align:left;
        padding:16px 0 0;
        border-left:none;
        border-top:1px solid #e0e0e0;
    }

    .product_sort{
        padding:12px 16px;
    }

    .product_price strong{
        margin-bottom:0;
    }

    .china_dest_quick ul,
    .aos02_product_region .aos02_dest_panel{
        grid-template-columns:repeat(3,1fr);
        gap:8px;
    }

    .aos02_product_region .is-panel-cols-4{
        grid-template-columns:repeat(2,1fr);
    }

    .china_dest_quick img{
        height:70px;
    }

    .china_promo_box{
        flex-direction:column;
        align-items:flex-start;
        padding:20px;
    }

    .china_promo_box > a{
        width:100%;
    }

    .china_best_grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .china_spotlight_grid{
        grid-template-columns:1fr;
    }

    .china_spotlight_card, .china_spotlight_card.is-large{
        height:200px;
    }

    .china_theme_list{
        grid-template-columns:repeat(3,1fr);
    }
}

.tour_view{
    background:#f3f5f8;
}

.view_top{
    padding:32px 0 36px;
    background:#fff;
    border-bottom:1px solid #ccc;
    box-shadow:0 2px 6px rgba(0,0,0,.05);
}

.view_title{
    margin-bottom:28px;
    padding-bottom:24px;
    border-bottom:2px solid #111;
}

.view_title > div{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:14px;
}

.view_badge{
    display:inline-block;
    padding:4px 8px;
    background:#003b7a;
    color:#fff;
    border-radius:0;
    font-size:11px;
    font-weight:700;
}

.view_title_badges{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
}

.view_code{
    color:#555;
    font-size:14px;
}

.view_title h2{
    margin-bottom:16px;
    font-size:34px;
    line-height:1.35;
    color:#111;
    font-weight:800;
}

.view_title p{
    color:#333;
    font-size:16px;
}

.view_layout{
    display:flex;
    gap:36px;
    align-items:flex-start;
}

.view_left{
    flex:1;
    min-width:0;
}

.reserve_box{
    width:280px;
    flex-shrink:0;
    align-self:stretch;
}

.reserve_inner{
    position:sticky;
    top:24px;
    padding:24px;
    background:#fff;
    border:1px solid #ccc;
}

.reserve_inner h3{
    margin-bottom:14px;
    padding-bottom:10px;
    border-bottom:1px solid #222;
    font-size:18px;
    font-weight:700;
    color:#111;
}

.reserve_date{
    padding-bottom:12px;
    border-bottom:1px solid #eee;
}

.reserve_date dl{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:8px;
}

.reserve_date dt{
    color:#888;
    font-size:13px;
}

.reserve_date dd{
    color:#111;
    font-size:13px;
    font-weight:700;
}

.date_btn{
    width:100%;
    height:36px;
    margin:12px 0;
    border:1px solid #ccc;
    background:#fff;
    color:#333;
    font-size:13px;
    font-weight:600;
    cursor:pointer;
}

.reserve_people{
    display:flex;
    flex-direction:column;
    gap:12px;
    padding:12px 0;
    border-bottom:1px solid #eee;
}

.people_row{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.people_row span{
    display:block;
    margin-bottom:2px;
    color:#888;
    font-size:12px;
}

.people_row strong{
    color:#111;
    font-size:14px;
    font-weight:700;
}

.count_box{
    display:flex;
    align-items:center;
}

.count_box button, .count_box input{
    width:28px;
    height:28px;
    border:1px solid #ddd;
    background:#fff;
    font-size:13px;
    text-align:center;
}

.count_box input{
    width:32px;
    border-left:none;
    border-right:none;
}

.coupon_box{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 0;
    border-bottom:1px solid #eee;
}

.coupon_box span{
    color:#666;
    font-size:13px;
}

.coupon_box button{
    height:28px;
    padding:0 10px;
    border:1px solid #ff6b00;
    background:#fff;
    color:#ff6b00;
    font-size:12px;
    font-weight:700;
    cursor:pointer;
}

.total_price{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 0 12px;
}

.total_price span{
    color:#666;
    font-size:13px;
}

.total_price strong{
    color:#003b7a;
    font-size:22px;
    font-weight:800;
}

a.reserve_btn{
    display:flex;
    justify-content:center;
    align-items:center;
    height:48px;
    background:#003b7a;
    color:#fff;
    font-size:16px;
    font-weight:700;
}

a.reserve_btn:hover{
    color:#fff;
}

.view_visual{
    display:grid;
    grid-template-columns:1fr 400px;
    gap:20px;
    align-items:stretch;
    width:100%;
    margin-bottom:24px;
}

.view_gallery{
    display:flex;
    width:100%;
    min-width:0;
    min-height:100%;
}

.view_slider{
    position:relative;
    flex:1;
    width:100%;
    min-height:100%;
}

.view_slider_radio{
    position:absolute;
    width:1px;
    height:1px;
    margin:-1px;
    padding:0;
    overflow:hidden;
    clip:rect(0,0,0,0);
    border:0;
}

.view_slider_viewport{
    position:relative;
    width:100%;
    height:100%;
    min-height:100%;
    overflow:hidden;
    border:1px solid #ccc;
    background:#f3f5f8;
}

.view_tour_swiper{
    position:relative;
    width:100%;
    height:100%;
    min-height:420px;
}

.view_tour_swiper .swiper-wrapper,
.view_tour_swiper .swiper-slide{
    height:100%;
}

.view_tour_swiper .view_slide_inner{
    width:100%;
    height:100%;
}

.view_tour_swiper .view_slide_inner img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
}

.view_tour_swiper .view_slider_arrow{
    display:flex;
}

.view_tour_swiper .view_slider_arrow.swiper-button-prev{
    left:14px;
    right:auto;
}

.view_tour_swiper .view_slider_arrow.swiper-button-next{
    right:14px;
    left:auto;
}

.view_tour_swiper .view_slider_arrow.is-prev::before,
.view_tour_swiper .view_slider_arrow.is-next::before{
    content:"";
    display:block;
    width:9px;
    height:9px;
    margin:0 auto;
    border-top:2px solid #333;
    border-right:2px solid #333;
}

.view_tour_swiper .view_slider_arrow.is-prev::before{
    transform:translateX(2px) rotate(-135deg);
}

.view_tour_swiper .view_slider_arrow.is-next::before{
    transform:translateX(-2px) rotate(45deg);
}

.view_tour_swiper.is-single .view_slider_arrow{
    display:none;
}

.view_tour_swiper .view_slider_count{
    display:block;
    left:50%;
    right:auto;
    transform:translateX(-50%);
}

.view_tour_swiper .swiper-button-prev:after,
.view_tour_swiper .swiper-button-next:after{
    display:none;
}

.view_tour_swiper .swiper-button-disabled{
    opacity:.35;
    pointer-events:none;
}

.view_slider_list{
    margin:0;
    padding:0;
    list-style:none;
    width:100%;
    height:100%;
}

.view_slide{
    display:none;
    width:100%;
    height:100%;
}

.view_slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
}

.view_slider_arrow{
    display:none;
    position:absolute;
    top:50%;
    z-index:2;
    width:42px;
    height:42px;
    margin:0;
    padding:0;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.88);
    box-shadow:0 1px 4px rgba(0,0,0,.15);
    transform:translateY(-50%);
    cursor:pointer;
    align-items:center;
    justify-content:center;
}

.view_slider_arrow.is-prev{
    left:14px;
}

.view_slider_arrow.is-next{
    right:14px;
}

.view_slider_arrow.is-prev::before,
.view_slider_arrow.is-next::before{
    content:"";
    display:block;
    width:9px;
    height:9px;
    margin:0 auto;
    border-top:2px solid #333;
    border-right:2px solid #333;
}

.view_slider_arrow.is-prev::before{
    transform:translateX(2px) rotate(-135deg);
}

.view_slider_arrow.is-next::before{
    transform:translateX(-2px) rotate(45deg);
}

.view_slider_arrow:hover{
    background:#fff;
}

.view_slider_count{
    display:none;
    position:absolute;
    right:14px;
    bottom:14px;
    z-index:2;
    padding:5px 12px;
    border-radius:20px;
    background:rgba(0,0,0,.55);
    font-size:12px;
    font-weight:600;
    color:#fff;
    line-height:1.2;
}

#tourViewSlide1:checked ~ .view_slider_viewport .is-slide-1,
#tourViewSlide2:checked ~ .view_slider_viewport .is-slide-2,
#tourViewSlide3:checked ~ .view_slider_viewport .is-slide-3{
    display:block;
}

#tourViewSlide1:checked ~ .view_slider_viewport .is-nav-from-1,
#tourViewSlide2:checked ~ .view_slider_viewport .is-nav-from-2,
#tourViewSlide3:checked ~ .view_slider_viewport .is-nav-from-3{
    display:flex;
}

#tourViewSlide1:checked ~ .view_slider_viewport .is-count-1,
#tourViewSlide2:checked ~ .view_slider_viewport .is-count-2,
#tourViewSlide3:checked ~ .view_slider_viewport .is-count-3{
    display:block;
}

.view_summary{
    width:100%;
    min-width:0;
    height:100%;
    padding:18px 20px;
    background:#fff;
    border:1px solid #ccc;
    box-sizing:border-box;
}

.view_summary_price{
    margin-bottom:14px;
    padding-bottom:14px;
    border-bottom:1px solid #e4e7eb;
}

.view_summary_price span{
    display:block;
    margin-bottom:6px;
    font-size:13px;
    color:#888;
}

.view_summary_price p{
    margin:0 0 4px;
    font-size:15px;
    color:#111;
}

.view_summary_price p strong{
    font-size:28px;
    font-weight:800;
    color:#003b7a;
    letter-spacing:-0.02em;
}

.view_summary_price em{
    display:block;
    font-size:12px;
    font-style:normal;
    color:#999;
}

.view_summary_info{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:0 12px;
    margin:0 0 14px;
    padding:0 0 14px;
    border-bottom:1px solid #e4e7eb;
}

.view_summary_info div{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:8px;
    padding:5px 0;
}

.view_summary_info dt{
    flex:0 0 auto;
    font-size:12px;
    color:#888;
    white-space:nowrap;
}

.view_summary_info dd{
    margin:0;
    font-size:13px;
    font-weight:600;
    color:#111;
    text-align:right;
}

.view_summary_info dd.is-point{
    color:#003b7a;
    font-weight:700;
}

.view_summary_depart{
    margin-bottom:14px;
    padding-bottom:14px;
    border-bottom:1px solid #e4e7eb;
}

.view_summary_depart p{
    margin:0 0 8px;
    font-size:12px;
    font-weight:700;
    color:#333;
}

.view_summary_depart ul{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin:0;
    padding:0;
    list-style:none;
}

.view_summary_depart li button{
    height:32px;
    padding:0 10px;
    border:1px solid #ccc;
    background:#fff;
    font-size:12px;
    font-weight:600;
    color:#666;
    cursor:pointer;
}

.view_summary_depart li.is-active button{
    border-color:#003b7a;
    background:#003b7a;
    color:#fff;
}

.view_summary_benefit{
    margin:0 0 14px;
    padding:10px 12px;
    list-style:none;
    background:#f3f5f8;
    border:1px solid #e4e7eb;
}

.view_summary_benefit li{
    position:relative;
    padding:0 0 0 10px;
    font-size:11px;
    color:#666;
    line-height:1.5;
}

.view_summary_benefit li + li{
    margin-top:4px;
}

.view_summary_benefit li::before{
    content:"·";
    position:absolute;
    left:0;
    color:#999;
}

.view_summary_benefit strong{
    color:#003b7a;
    font-weight:700;
}

.view_summary_btns{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.aos02_wrap .view_summary_reserve, .view_summary_reserve{
    flex:1 1 100%;
    display:flex;
    align-items:center;
    justify-content:center;
    height:46px;
    background:#003b7a;
    font-size:15px;
    font-weight:700;
    color:#fff;
}

.aos02_wrap .view_summary_reserve:hover, .view_summary_reserve:hover{
    color:#fff;
    background:#002a57;
}

.view_summary_wish, .view_summary_qna{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    height:40px;
    border:1px solid #ccc;
    background:#fff;
    font-size:13px;
    font-weight:600;
    color:#333;
}

.view_summary_wish:hover, .view_summary_qna:hover{
    border-color:#003b7a;
    color:#003b7a;
}

.div_image, .main_image{
    flex:1;
    min-width:0;
    aspect-ratio:4/3;
    overflow:hidden;
    border:1px solid #ccc;
    background:#f3f5f8;
}

.div_image img, .main_image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
}

.thumb_list{
    display:flex;
    flex-direction:column;
    gap:8px;
    width:112px;
    flex:0 0 112px;
}

.thumb_list img{
    flex:1;
    width:100%;
    min-height:0;
    object-fit:cover;
    object-position:center;
    display:block;
    border:1px solid #ccc;
    cursor:pointer;
    opacity:.85;
    transition:border-color .15s, opacity .15s;
}

.thumb_list img.is-active{
    border:2px solid #003b7a;
    opacity:1;
}

.view_icons{
    border:1px solid #ccc;
    background:#fff;
}

.view_icons ul{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:0;
}

.view_icons li{
    text-align:center;
    padding:20px 12px;
    border:none;
    background:#fff;
}

.view_icons li + li{
    border-left:1px solid #e4e7eb;
}

.view_icons li span{
    display:block;
    margin-bottom:6px;
    font-size:24px;
    line-height:1;
}

.view_icons li strong{
    display:block;
    font-size:14px;
    color:#111;
    line-height:1.3;
}

.view_icons li p{
    font-size:13px;
    color:#666;
    line-height:1.4;
}

.detail_left{
    flex:1;
    min-width:0;
    display:flex;
    flex-direction:column;
    gap:16px;
}

.view_section, .view_div{
    margin-bottom:0;
    padding:28px 24px;
    background:#fff;
    border:1px solid #ccc;
}

.view_section h3, .view_div h3{
    margin-bottom:20px;
    padding-bottom:14px;
    border-bottom:2px solid #222;
    font-size:20px;
    color:#111;
    font-weight:700;
}

.reserve_inner h3{
    margin-bottom:14px;
    padding-bottom:10px;
    border-bottom:1px solid #222;
    font-size:18px;
    font-weight:700;
}

.view_section_head, .view_div_head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
    padding-bottom:14px;
    border-bottom:2px solid #222;
}

.view_section_head h3, .view_div_head h3{
    margin-bottom:0;
    padding-bottom:0;
    border-bottom:none;
    font-size:20px;
    font-weight:700;
}

.view_section_head a, .view_div_head a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:38px;
    padding:0 22px;
    border:1px solid #bbb;
    color:#333;
    font-size:14px;
}

.view_section_head span, .view_div_head span{
    color:#666;
    font-size:14px;
}

.schedule_box{
    border:1px solid #e4e7eb;
}

.schedule_row{
    display:grid;
    grid-template-columns:100px 1fr;
}

.schedule_row + .schedule_row{
    border-top:1px solid #e4e7eb;
}

.schedule_row > strong{
    display:flex;
    align-items:center;
    padding:14px 16px;
    background:#f7f8fa;
    color:#111;
    font-size:14px;
    font-weight:700;
}

.schedule_row > div{
    padding:14px 16px;
}

.schedule_row p{
    margin-bottom:4px;
    color:#333;
    font-size:14px;
    line-height:1.6;
}

.schedule_row b{
    font-weight:700;
    color:#111;
}

.schedule_row span{
    font-size:13px;
    color:#888;
}

.price_table{
    width:100%;
    border-collapse:collapse;
    border:1px solid #e4e7eb;
}

.price_table th, .price_table td{
    padding:12px 14px;
    border:1px solid #e4e7eb;
    text-align:center;
    font-size:14px;
}

.price_table thead th{
    background:#f0f2f5;
    color:#111;
    font-weight:700;
}

.price_table tbody th{
    background:#f7f8fa;
    color:#666;
    font-weight:700;
}

.price_table td{
    color:#003b7a;
    font-size:16px;
    font-weight:700;
}

.notice_text{
    margin-top:12px;
    padding:12px 16px;
    background:#f7f8fa;
    border:1px solid #e4e7eb;
    color:#888;
    font-size:13px;
    line-height:1.6;
}

.intro_box{
    border:1px solid #e4e7eb;
    overflow:hidden;
}

.intro_img img{
    width:100%;
    display:block;
}

.intro_txt{
    padding:20px 20px 4px;
}

.intro_box h4{
    margin-bottom:8px;
    font-size:16px;
    font-weight:700;
    color:#111;
}

.intro_box p{
    font-size:14px;
    color:#666;
    line-height:1.8;
}

.day_plan{
    display:flex;
    gap:20px;
    padding:20px 0;
}

.day_plan + .day_plan{
    border-top:1px solid #ddd;
}

.day_label{
    width:52px;
    flex-shrink:0;
    padding-top:2px;
    background:none;
    color:#003b7a;
    font-size:13px;
    font-weight:800;
    text-align:left;
    line-height:1.4;
}

.day_cont{
    flex:1;
    min-width:0;
    padding:0;
}

.day_cont h4{
    margin-bottom:6px;
    font-size:16px;
    font-weight:700;
    color:#111;
}

.day_cont p{
    margin-bottom:8px;
    font-size:14px;
    color:#666;
    line-height:1.7;
}

.day_cont ul li{
    margin-bottom:2px;
    font-size:13px;
    color:#888;
}

.day_cont img {
    display: inline-block;
    vertical-align: top;
    margin: 4px 8px 10px 0;
}

.spot_item{
    display:flex;
    align-items:flex-start;
    gap:20px;
    padding:20px 0;
}

.spot_item + .spot_item{
    border-top:1px solid #ddd;
}

.spot_item img{
    width:180px;
    height:120px;
    flex-shrink:0;
    object-fit:cover;
    border:1px solid #ddd;
}

.spot_item h4{
    margin-bottom:6px;
    font-size:16px;
    font-weight:700;
    color:#111;
}

.spot_item p{
    font-size:14px;
    color:#666;
    line-height:1.7;
}

.include_grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    border:1px solid #e4e7eb;
    background:#fff;
}

.include_box{
    padding:20px 24px;
    border:none;
    background:#fff;
}

.include_box + .include_box{
    padding:20px 24px;
    border-left:1px solid #e4e7eb;
    background:#f7f8fa;
}

.include_box h3{
    margin-bottom:14px;
    padding-bottom:10px;
    border-bottom:1px solid #e4e7eb;
    font-size:16px;
    font-weight:700;
    color:#111;
}

.include_box li{
    position:relative;
    padding:8px 0 8px 10px;
    font-size:14px;
    color:#555;
}

.include_box li + li{
    border-top:1px solid #f0f0f0;
}

.include_box li:before{
    content:"";
    position:absolute;
    left:0;
    top:16px;
    width:3px;
    height:3px;
    background:#bbb;
    border-radius:50%;
}

.hotel_box{
    display:flex;
    align-items:flex-start;
    gap:24px;
    padding:20px;
    border:1px solid #e4e7eb;
    background:#f7f8fa;
}

.hotel_box img{
    width:200px;
    height:140px;
    flex-shrink:0;
    object-fit:cover;
    border:1px solid #ddd;
}

.hotel_box h4{
    margin:0 0 8px;
    font-size:18px;
    font-weight:700;
    color:#111;
}

.hotel_box p{
    margin:0 0 12px;
    font-size:14px;
    color:#888;
    line-height:1.7;
}

.hotel_box ul{
    margin:0;
    padding:0;
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:6px;
}

.hotel_box li{
    position:relative;
    padding-left:10px;
    font-size:14px;
    color:#555;
    line-height:1.5;
}

.hotel_box li::before{
    content:"";
    position:absolute;
    left:0;
    top:9px;
    width:3px;
    height:3px;
    border-radius:50%;
    background:#ccc;
}

.guide_box{
    display:flex;
    flex-direction:column;
    gap:8px;
    padding:16px 20px;
    background:#f7f8fa;
    border:1px solid #e4e7eb;
}

.guide_box p{
    position:relative;
    padding-left:12px;
    margin:0;
    font-size:14px;
    color:#666;
    line-height:1.7;
}

.guide_box p:before{
    content:"·";
    position:absolute;
    left:0;
    color:#999;
}

.cancel_table{
    width:100%;
    border-collapse:collapse;
    border:1px solid #e4e7eb;
}

.cancel_table th, .cancel_table td{
    padding:14px 16px;
    border-bottom:1px solid #eee;
    font-size:14px;
}

.cancel_table th{
    width:200px;
    background:#f8f8f8;
    color:#111;
    text-align:left;
    font-weight:700;
}

.cancel_table td{
    color:#666;
}

@media (max-width:1200px){
    .view_layout{
        flex-direction:column;
    }

    .view_visual{
        grid-template-columns:1fr 360px;
    }

    .reserve_box{
        width:100%;
    }

    .reserve_inner{
        position:static;
    }
}

@media (max-width:768px){
    .view_top{
        padding:40px 0 70px;
    }

    .view_title h2{
        font-size:26px;
    }

    .view_visual{
        grid-template-columns:1fr;
        gap:16px;
    }

    .view_gallery{
        min-height:auto;
    }

    .view_slider_viewport{
        aspect-ratio:4/3;
        min-height:auto;
    }

    .view_tour_swiper{
        min-height:auto;
        height:100%;
    }

    .view_summary{
        padding:20px 16px;
    }

    .view_summary_info{
        grid-template-columns:1fr;
    }

    .view_summary_price p strong{
        font-size:26px;
    }

    .view_slider_arrow{
        width:36px;
        height:36px;
    }

    .div_image, .main_image{
        width:100%;
        aspect-ratio:4/3;
    }

    .thumb_list{
        flex-direction:row;
        width:100%;
        flex:0 0 auto;
        height:auto;
    }

    .thumb_list img{
        flex:1;
        aspect-ratio:4/3;
        height:auto;
    }

    .view_icons ul{
        grid-template-columns:repeat(2,1fr);
    }

    .schedule_row, .day_plan{
        grid-template-columns:1fr;
    }

    .spot_item{
        flex-direction:column;
    }

    .day_plan{
        flex-direction:column;
        gap:8px;
        padding:16px 0;
    }

    .hotel_box{
        flex-direction:column;
    }

    .schedule_row > strong{
        padding:12px 14px;
    }

    .include_grid{
        grid-template-columns:1fr;
    }

    .include_box{
        padding:20px 0;
    }

    .include_box + .include_box{
        padding:20px 0;
        border-left:none;
        border-top:1px solid #eee;
    }

    .spot_item img, .hotel_box img{
        width:100%;
        height:180px;
    }
}

.view_title{
    margin-bottom:24px;
    padding-bottom:18px;
    border-bottom:2px solid #222;
}

.view_title_top{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:12px;
}

.view_code{
    color:#777;
    font-size:13px;
}

.view_title h2{
    margin-bottom:10px;
    font-size:32px;
    line-height:1.35;
    color:#111;
    font-weight:800;
}

.view_title p{
    font-size:16px;
    color:#666;
    line-height:1.7;
}

.thumb_list img:hover{
    opacity:1;
}

.view_icons li{
    padding:20px 12px;
    text-align:center;
    border:none;
    border-right:1px solid #e4e7eb;
    border-radius:0;
    background:#fff;
}

.view_icons li strong{
    display:block;
    margin-bottom:4px;
    color:#111;
    font-size:14px;
    line-height:1.3;
}

.view_icons li p{
    color:#666;
    font-size:13px;
    line-height:1.4;
}

.view_detail{
    padding:32px 0 64px;
    background:#f3f5f8;
}

.detail_layout{
    display:flex;
    gap:28px;
    align-items:flex-start;
}

.count_box button{
    width:28px;
    height:28px;
    border:1px solid #ddd;
    background:#fff;
    font-size:13px;
    cursor:pointer;
}

.count_box input{
    width:32px;
    height:28px;
    border:1px solid #ddd;
    border-left:none;
    border-right:none;
    text-align:center;
    font-size:13px;
}

.coupon_box span{
    font-size:13px;
    color:#666;
}

.total_price span{
    margin:0;
    color:#666;
    font-size:13px;
}

.total_price strong{
    font-size:22px;
    color:#003b7a;
    font-weight:800;
}

a.reserve_btn{
    display:flex;
    align-items:center;
    justify-content:center;
    height:48px;
    background:#003b7a;
    color:#fff;
    font-size:16px;
    font-weight:700;
}

.view_section_head span, .view_div_head span{
    color:#777;
    font-size:14px;
}

.schedule_row strong{
    display:flex;
    align-items:center;
    padding:14px 16px;
    background:#f7f8fa;
    font-size:14px;
    font-weight:700;
    color:#111;
}

.schedule_row div{
    padding:14px 16px;
}

.schedule_row p{
    margin-bottom:4px;
    font-size:14px;
    color:#333;
    line-height:1.6;
}

.price_table td{
    font-size:16px;
    font-weight:700;
    color:#003b7a;
}

.day_label{
    width:52px;
    flex-shrink:0;
    padding-top:2px;
    background:none;
    text-align:left;
    font-size:13px;
    font-weight:800;
    color:#003b7a;
    line-height:1.4;
}

.include_box{
    padding:20px 24px;
    background:#fff;
}

.include_box ul li{
    position:relative;
    padding:8px 0 8px 10px;
    font-size:14px;
    color:#555;
}

.include_box ul li + li{
    border-top:1px solid #f0f0f0;
}

.include_box ul li::before{
    content:"";
    position:absolute;
    left:0;
    top:16px;
    width:3px;
    height:3px;
    background:#bbb;
    border-radius:50%;
}

.guide_box p::before{
    content:"·";
    position:absolute;
    left:0;
    color:#999;
}

.cancel_table th, .cancel_table td{
    padding:14px 16px;
    border-bottom:1px solid #e4e7eb;
    font-size:14px;
}

.cancel_table th{
    width:200px;
    background:#f7f8fa;
    text-align:left;
    font-weight:700;
    color:#111;
}

@media (max-width:1200px){
    .detail_layout{
        flex-direction:column;
    }
}

@media (max-width:768px){
    .view_title h2{
        font-size:28px;
    }

    .view_div{
        padding:20px 16px;
    }

    .view_icons li{
        border:1px solid #e4e7eb;
    }

    .view_icons li + li{
        border-left:1px solid #e4e7eb;
    }

    .spot_item img{
        width:100%;
        height:160px;
    }

    .hotel_box{
        flex-direction:column;
        padding:16px;
    }

    .hotel_box img{
        width:100%;
        height:180px;
    }

    .include_box{
        padding:20px 16px;
    }

    .include_box + .include_box{
        padding:20px 16px;
        border-left:none;
        border-top:1px solid #e4e7eb;
    }
}

.aos02_login{
    background:#f3f5f8;
}

.aos02_login_head{
    padding:40px 0 36px;
    background:#fff;
    border-bottom:1px solid #ccc;
    text-align:center;
}

.aos02_login_head span{
    display:block;
    margin-bottom:8px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    color:#003b7a;
}

.aos02_login_head h2{
    margin:0 0 10px;
    font-size:28px;
    font-weight:700;
    color:#111;
}

.aos02_login_head p{
    margin:0;
    font-size:15px;
    color:#666;
}

.aos02_login_body{
    padding:40px 0 64px;
}

.aos02_login_wrap{
    display:flex;
    align-items:flex-start;
    gap:24px;
}

.aos02_login_box{
    flex:1;
    min-width:0;
    padding:36px 40px;
    background:#fff;
    border:1px solid #ccc;
}

.aos02_login_box_head{
    margin-bottom:28px;
    padding-bottom:20px;
    border-bottom:2px solid #222;
}

.aos02_login_box_head h3{
    margin:0 0 8px;
    font-size:22px;
    font-weight:700;
    color:#111;
}

.aos02_login_box_head p{
    margin:0;
    font-size:14px;
    color:#888;
}

.aos02_login_field{
    margin-bottom:16px;
}

.aos02_login_field label{
    display:block;
    margin-bottom:8px;
    font-size:13px;
    font-weight:600;
    color:#333;
}

.aos02_login_field input{
    width:100%;
    height:48px;
    padding:0 14px;
    border:1px solid #ccc;
    font-size:14px;
    color:#111;
    background:#fff;
}

.aos02_login_field input:focus{
    outline:none;
    border-color:#003b7a;
}

.aos02_login_field input::placeholder{
    color:#bbb;
}

.aos02_login_option{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:24px;
}

.aos02_login_check{
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-size:13px;
    color:#666;
    cursor:pointer;
}

.aos02_login_check input{
    width:16px;
    height:16px;
    margin:0;
}

.aos02_login_btn,
.aos02_wrap a.aos02_login_btn{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:52px;
    border:none;
    background:#003b7a;
    color:#fff;
    font-size:16px;
    font-weight:700;
    text-align:center;
    cursor:pointer;
}

.aos02_wrap a.aos02_login_btn:hover{
    color:#fff;
}

.aos02_login_links{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:0;
    margin-top:20px;
    padding-top:20px;
    border-top:1px solid #eee;
}

.aos02_login_links a{
    padding:0 14px;
    font-size:13px;
    color:#666;
}

.aos02_login_links a + a{
    border-left:1px solid #ddd;
}

.aos02_login_links a:hover{
    color:#003b7a;
}

.aos02_login_social{
    margin-top:28px;
    padding-top:24px;
    border-top:1px solid #eee;
}

.aos02_login_social > p{
    margin:0 0 12px;
    font-size:13px;
    font-weight:600;
    color:#333;
    text-align:center;
}

.aos02_login_social_btns{
    display:flex;
    gap:10px;
}

.aos02_login_social_btns button{
    flex:1;
    height:44px;
    border:1px solid #ccc;
    background:#fff;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
}

.aos02_login_social_btns .is-naver{
    border-color:#03c75a;
    color:#03c75a;
}

.aos02_login_social_btns .is-kakao{
    border-color:#f5d000;
    background:#fee500;
    color:#3c1e1e;
}

.aos02_login_side{
    flex:0 0 320px;
}

.aos02_login_side_box{
    padding:24px;
    background:#fff;
    border:1px solid #ccc;
}

.aos02_login_side_box + .aos02_login_side_box{
    margin-top:12px;
}

.aos02_login_side_box h4{
    margin:0 0 14px;
    padding-bottom:12px;
    border-bottom:1px solid #e4e7eb;
    font-size:16px;
    font-weight:700;
    color:#111;
}

.aos02_login_side_box ul{
    margin:0;
    padding:0;
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.aos02_login_side_box li{
    position:relative;
    padding:0 0 0 12px;
    font-size:13px;
    color:#555;
    line-height:1.6;
}

.aos02_login_side_box li::before{
    content:"";
    position:absolute;
    left:0;
    top:8px;
    width:4px;
    height:4px;
    background:#003b7a;
    border-radius:50%;
}

.aos02_login_side_box > p{
    margin:0 0 16px;
    font-size:13px;
    color:#666;
    line-height:1.7;
}

.aos02_login_guest_btn{
    display:flex;
    align-items:center;
    justify-content:center;
    height:44px;
    border:1px solid #003b7a;
    background:#fff;
    color:#003b7a;
    font-size:14px;
    font-weight:700;
}

.aos02_login_guest_btn:hover{
    background:#f0f4f8;
    color:#003b7a;
}

.aos02_login_notice{
    display:flex;
    flex-direction:column;
    gap:6px;
    margin-top:12px;
    padding:16px 20px;
    background:#fff;
    border:1px solid #ddd;
}

.aos02_login_notice p{
    margin:0;
    font-size:12px;
    color:#888;
    line-height:1.6;
}

.aos02_login_guide_list{
    margin:0;
    padding:0;
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.aos02_login_guide_list li{
    position:relative;
    padding:0 0 0 12px;
    font-size:13px;
    color:#555;
    line-height:1.6;
}

.aos02_login_guide_list li::before{
    content:"";
    position:absolute;
    left:0;
    top:8px;
    width:4px;
    height:4px;
    background:#003b7a;
    border-radius:50%;
}

.aos02_login_guide_txt{
    margin:0 0 16px;
    font-size:13px;
    color:#666;
    line-height:1.7;
}

.aos02_join_section .aos02_login_guest_btn{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:44px;
}

.aos02_join_section .aos02_login_links{
    margin-top:20px;
}

.aos02_join_section .aos02_login_social{
    margin-top:24px;
    padding-top:24px;
}

@media (max-width:768px){
    .aos02_login_head{
        padding:32px 0 28px;
    }

    .aos02_login_head h2{
        font-size:22px;
    }

    .aos02_login_body{
        padding:24px 0 48px;
    }

    .aos02_login_wrap{
        flex-direction:column;
    }

    .aos02_login_box{
        padding:28px 20px;
    }

    .aos02_login_side{
        flex:0 0 auto;
        width:100%;
    }

    .aos02_login_option{
        flex-wrap:wrap;
        gap:12px;
    }
}

.aos02_join_inner{
    max-width:720px;
}

.aos02_join_step{
    display:flex;
    margin:0 0 24px;
    padding:0;
    list-style:none;
    background:#fff;
    border:1px solid #ccc;
}

.aos02_join_step li{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    height:52px;
    font-size:14px;
    font-weight:600;
    color:#999;
}

.aos02_join_step li + li{
    border-left:1px solid #e4e7eb;
}

.aos02_join_step li span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:22px;
    height:22px;
    border:1px solid #ccc;
    font-size:11px;
    font-weight:700;
}

.aos02_join_step li.is-active{
    color:#003b7a;
    background:#f0f4f8;
}

.aos02_join_step li.is-active span{
    border-color:#003b7a;
    background:#003b7a;
    color:#fff;
}

.aos02_join_section{
    display:flex;
    flex-direction:column;
    gap:20px;
    margin-bottom:16px;
    padding:32px 36px;
    background:#fff;
    border:1px solid #ccc;
}

.aos02_join_section .aos02_join_section_head{
    margin-bottom:0;
}

.aos02_join_section_head{
    margin-bottom:24px;
    padding-bottom:16px;
    border-bottom:2px solid #222;
}

.aos02_join_section_head h3{
    margin:0 0 6px;
    font-size:18px;
    font-weight:700;
    color:#111;
}

.aos02_join_section_head p{
    margin:0;
    font-size:13px;
    color:#888;
}

.aos02_join_required{
    color:#e60012;
}

.aos02_join_agree_all{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:8px 12px;
    margin-bottom:20px;
    padding:16px 20px;
    background:#f0f4f8;
    border:1px solid #e4e7eb;
    cursor:pointer;
}

.aos02_join_agree_all input{
    width:18px;
    height:18px;
    margin:0;
}

.aos02_join_agree_all strong{
    font-size:15px;
    color:#111;
}

.aos02_join_agree_all > span{
    width:100%;
    font-size:12px;
    color:#888;
}

.aos02_join_agree_list{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.aos02_join_agree_item{
    border:1px solid #e4e7eb;
}

.aos02_join_check{
    display:flex;
    align-items:center;
    gap:8px;
    padding:14px 16px;
    background:#f7f8fa;
    border-bottom:1px solid #e4e7eb;
    font-size:14px;
    color:#333;
    cursor:pointer;
}

.aos02_join_agree_item .aos02_join_check{
    border-bottom:none;
}

.aos02_join_check input{
    width:16px;
    height:16px;
    margin:0;
}

.aos02_join_check em{
    color:#003b7a;
    font-style:normal;
    font-weight:700;
}

.aos02_join_terms_box{
    display:flex;
    flex-direction:column;
    gap:8px;
    max-height:100px;
/*    overflow-y:auto; */
    padding:14px 16px;
    background:#fff;
    font-size:12px;
    color:#666;
    line-height:1.7;
}

.aos02_join_terms_box p{
    margin:0
}

.aos02_join_field{
    margin-bottom:20px;
    padding-top:20px;
}

.aos02_join_section .aos02_join_field{
    margin-bottom:0;
}

.aos02_join_field > label{
    display:block;
    margin-bottom:8px;
    font-size:13px;
    font-weight:600;
    color:#333;
}

.aos02_join_field > input[type="text"], .aos02_join_field > input[type="password"]{
    width:100%;
    height:48px;
    padding:0 14px;
    border:1px solid #ccc;
    font-size:14px;
    color:#111;
}

.aos02_join_field > input:focus, .aos02_join_field_row input:focus, .aos02_join_field_row select:focus{
    outline:none;
    border-color:#003b7a;
}

.aos02_join_field_row{
    display:flex;
    align-items:center;
    gap:8px;
}

.aos02_join_field_row input, .aos02_join_field_row select{
    height:48px;
    padding:0 12px;
    border:1px solid #ccc;
    font-size:14px;
    color:#111;
    background:#fff;
}

.aos02_join_field_row .aos02_join_sub_btn{
    flex-shrink:0;
    height:48px;
    padding:0 16px;
    border:1px solid #003b7a;
    background:#fff;
    color:#003b7a;
    font-size:13px;
    font-weight:700;
    cursor:pointer;
}

.aos02_join_field_row.is-phone select{
    width:90px;
}

.aos02_join_field_row.is-phone input{
    flex:1;
    min-width:0;
}

.aos02_join_field_row.is-email input{
    flex:1;
    min-width:0;
}

.aos02_join_field_row.is-email select{
    width:130px;
    flex-shrink:0;
}

.aos02_join_field_row.is-birth input{
    flex:1;
    min-width:0;
}

.aos02_join_dash, .aos02_join_at{
    flex-shrink:0;
    color:#999;
    font-size:14px;
}

.aos02_join_radio{
    display:flex;
    gap:24px;
    padding:12px 0;
}

.aos02_join_btns{
    display:flex;
    gap:10px;
    margin-top:24px;
}

.aos02_join_cancel_btn{
    flex:0 0 120px;
    display:flex;
    align-items:center;
    justify-content:center;
    height:52px;
    border:1px solid #ccc;
    background:#fff;
    color:#333;
    font-size:15px;
    font-weight:600;
}

.aos02_join_cancel_btn:hover{
    border-color:#999;
    color:#111;
}

.aos02_join_btns .aos02_login_btn{
    flex:1;
}

.aos02_join_bottom{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-top:24px;
    padding:20px;
    background:#fff;
    border:1px solid #ccc;
    font-size:14px;
    color:#666;
}

.aos02_join_bottom a{
    font-weight:700;
    color:#003b7a;
}

@media (max-width:768px){
    .aos02_join_section{
        padding:24px 20px;
    }

    .aos02_join_step li{
        font-size:12px;
        gap:4px;
    }

    .aos02_join_step li span{
        display:none;
    }

    .aos02_join_field_row{
        flex-wrap:wrap;
    }

    .aos02_join_field_row.is-phone .aos02_join_sub_btn, .aos02_join_field_row .aos02_join_sub_btn{
        width:100%;
    }

    .aos02_join_field_row.is-email select{
        width:100%;
    }

    .aos02_join_btns{
        flex-direction:column;
    }

    .aos02_join_cancel_btn{
        flex:none;
        width:100%;
    }
}

.aos02_join_step li.is-done span{
    border-color:#003b7a;
    background:#fff;
    color:#003b7a;
}

.aos02_join_ok_box{
    padding:48px 40px;
    background:#fff;
    border:1px solid #ccc;
    text-align:center;
}

.aos02_join_ok_icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:64px;
    height:64px;
    margin:0 auto 24px;
    border:2px solid #003b7a;
    border-radius:50%;
    font-size:28px;
    font-weight:700;
    color:#003b7a;
}

.aos02_join_ok_box h3{
    margin:0 0 12px;
    font-size:24px;
    font-weight:700;
    color:#111;
}

.aos02_join_ok_box > p{
    margin:0 0 32px;
    font-size:15px;
    color:#666;
    line-height:1.7;
}

.aos02_join_ok_box > p strong{
    color:#003b7a;
}

.aos02_join_ok_info{
    display:grid;
    grid-template-columns:100px 1fr;
    max-width:400px;
    margin:0 auto 32px;
    padding:20px 24px;
    background:#f7f8fa;
    border:1px solid #e4e7eb;
    text-align:left;
}

.aos02_join_ok_info dt{
    padding:8px 0;
    font-size:13px;
    color:#888;
    font-weight:600;
}

.aos02_join_ok_info dd{
    margin:0;
    padding:8px 0;
    font-size:14px;
    color:#111;
    font-weight:600;
}

.aos02_join_ok_btns{
    display:flex;
    justify-content:center;
    gap:10px;
    max-width:400px;
    margin:0 auto;
}

.aos02_join_ok_btns .aos02_login_btn{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    height:52px;
    color:#fff;
}

.aos02_join_ok_btns .aos02_login_btn:hover{
    color:#fff;
}

.aos02_join_ok_btns .aos02_join_cancel_btn{
    flex:1;
    height:52px;
}

.aos02_join_ok_banner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:24px;
    margin-top:16px;
    padding:24px 32px;
    background:#003b7a;
    border:1px solid #003b7a;
    color:#fff;
}

.aos02_join_ok_banner_txt span{
    display:block;
    margin-bottom:6px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    color:rgba(255,255,255,.8);
}

.aos02_join_ok_banner_txt strong{
    display:block;
    margin-bottom:6px;
    font-size:18px;
    font-weight:700;
}

.aos02_join_ok_banner_txt p{
    margin:0;
    font-size:13px;
    color:rgba(255,255,255,.9);
}

.aos02_join_ok_banner > a{
    flex-shrink:0;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:44px;
    padding:0 24px;
    background:#fff;
    color:#003b7a;
    font-size:14px;
    font-weight:700;
}

@media (max-width:768px){
    .aos02_join_ok_box{
        padding:36px 20px;
    }

    .aos02_join_ok_box h3{
        font-size:20px;
    }

    .aos02_join_ok_info{
        grid-template-columns:80px 1fr;
        padding:16px;
    }

    .aos02_join_ok_btns{
        flex-direction:column;
    }

    .aos02_join_ok_banner{
        flex-direction:column;
        align-items:flex-start;
        padding:20px;
    }

    .aos02_join_ok_banner > a{
        width:100%;
    }
}

.aos02_find_radio{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    border:0;
}

.aos02_find_tab{
    display:flex;
    margin-bottom:16px;
    border:1px solid #ccc;
    background:#fff;
}

.aos02_find_tab label{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    height:52px;
    font-size:14px;
    font-weight:600;
    color:#666;
    cursor:pointer;
}

.aos02_find_tab label + label{
    border-left:1px solid #e4e7eb;
}

.aos02_find_wrap:has(#findTabPhone:checked) .aos02_find_tab label[for="findTabPhone"], .aos02_find_wrap:has(#findTabEmail:checked) .aos02_find_tab label[for="findTabEmail"]{
    background:#003b7a;
    color:#fff;
}

.aos02_find_panel{
    display:none;
}

.aos02_find_wrap:has(#findTabPhone:checked) .aos02_find_panel_phone, .aos02_find_wrap:has(#findTabEmail:checked) .aos02_find_panel_email{
    display:block;
}

.aos02_find_form .aos02_login_btn{
    margin-top:8px;
}

.aos02_find .aos02_join_bottom{
    gap:0;
}

.aos02_find .aos02_join_bottom a{
    padding:0 14px;
    font-weight:600;
    color:#666;
}

.aos02_find .aos02_join_bottom a + a{
    border-left:1px solid #ddd;
}

.aos02_find .aos02_join_bottom a:hover{
    color:#003b7a;
}

.aos02_pw .aos02_find_wrap:has(#pwTabPhone:checked) .aos02_find_tab label[for="pwTabPhone"], .aos02_pw .aos02_find_wrap:has(#pwTabEmail:checked) .aos02_find_tab label[for="pwTabEmail"]{
    background:#003b7a;
    color:#fff;
}

.aos02_pw .aos02_find_wrap:has(#pwTabPhone:checked) .aos02_pw_panel_phone, .aos02_pw .aos02_find_wrap:has(#pwTabEmail:checked) .aos02_pw_panel_email{
    display:block;
}

.aos02_join_field input[readonly]{
    background:#f7f8fa;
    color:#666;
}

.aos02_pw_guide{
    margin-bottom:24px;
    padding:16px 20px;
    background:#f7f8fa;
    border:1px solid #e4e7eb;
}

.aos02_pw_guide > p{
    margin:0 0 10px;
    font-size:13px;
    font-weight:700;
    color:#333;
}

.aos02_pw_guide ul{
    margin:0;
    padding:0;
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:6px;
}

.aos02_pw_guide li{
    position:relative;
    padding:0 0 0 10px;
    font-size:12px;
    color:#666;
    line-height:1.6;
}

.aos02_pw_guide li::before{
    content:"-";
    position:absolute;
    left:0;
}

.aos02_pw .aos02_join_btns .aos02_login_btn{
    flex:1;
}

.aos02_mypage{
    background:#f3f5f8;
}

.aos02_mypage_body{
    padding:32px 0 64px;
}

.aos02_mypage_layout{
    display:flex;
    align-items:flex-start;
    gap:24px;
}

.aos02_mypage_lnb{
    flex:0 0 220px;
    background:#fff;
    border:1px solid #ccc;
}

.aos02_mypage_member{
    padding:24px 20px;
    border-bottom:1px solid #e4e7eb;
}

.aos02_mypage_member strong{
    display:block;
    margin-bottom:4px;
    font-size:18px;
    color:#111;
}

.aos02_mypage_member span{
    font-size:13px;
    color:#888;
}

.aos02_mypage_lnb nav ul{
    margin:0;
    padding:0;
    list-style:none;
}

.aos02_mypage_lnb nav a{
    display:block;
    padding:14px 20px;
    font-size:14px;
    font-weight:600;
    color:#333;
    border-left:3px solid transparent;
    background:#fff;
}

.aos02_wrap .aos02_mypage_lnb nav li a{
    color:#333;
}

.aos02_mypage_lnb nav li a:hover{
    background:#003b7a;
    color:#fff;
    border-left-color:#003b7a;
}

.aos02_mypage_lnb nav li.active a{
    background:#003b7a;
    color:#fff;
    border-left-color:#003b7a;
}



.aos02_mypage_wish_heart{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:36px;
    height:36px;
    margin:0 0 10px auto;
    border:1px solid #e4e7eb;
    border-radius:50%;
    background:#fff;
    font-size:18px;
    color:#ccc;
    line-height:1;
    cursor:pointer;
    transition:border-color .2s, background-color .2s, color .2s;
}

.aos02_mypage_wish_heart span{
    display:block;
    margin-top:1px;
    font-size:18px;
    line-height:1;
}

.aos02_mypage_wish_heart span::before{
    content:'♡';
}

.aos02_mypage_wish_heart.is-active span::before{
    content:'♥';
}

.aos02_mypage_wish_heart.is-active{
    border-color:#ff4d6d;
    background:#fff5f7;
    color:#ff4d6d;
}

.aos02_mypage_content{
    flex:1;
    min-width:0;
}


.detail_tab{
    position:sticky;
    top:24px;
    z-index:10;
    display:flex;
    width:100%;
    flex-wrap:nowrap;
    background:#fff;
    border:1px solid #ccc;
}

.detail_tab > div{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:0;
    height:48px;
    padding:0 6px;
    border-bottom:2px solid transparent;
    font-size:13px;
    font-weight:600;
    color:#666;
    white-space:nowrap;
    cursor:pointer;
    text-align:center;
}

.detail_tab > div:hover{
    color:#111;
}

.detail_tab > div.is-active{
    color:#003b7a;
    border-bottom-color:#003b7a;
}

.aos02_mypage_welcome{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-bottom:16px;
    padding:28px 32px;
    background:#fff;
    border:1px solid #ccc;
}

.aos02_mypage_welcome h3{
    margin:0 0 6px;
    font-size:20px;
    font-weight:700;
    color:#111;
}

.aos02_mypage_welcome h3 strong{
    color:#003b7a;
}

.aos02_mypage_welcome p{
    margin:0;
    font-size:14px;
    color:#666;
}

.aos02_mypage_welcome > a{
    flex-shrink:0;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:40px;
    padding:0 18px;
    border:1px solid #003b7a;
    color:#003b7a;
    font-size:13px;
    font-weight:700;
}

.aos02_mypage_summary{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
    margin:0 0 16px;
    padding:0;
    list-style:none;
}

.aos02_mypage_summary a{
    display:block;
    padding:20px;
    background:#fff;
    border:1px solid #ccc;
    text-align:center;
    color:inherit;
}

.aos02_mypage_summary a:hover{
    border-color:#003b7a;
}

.aos02_mypage_summary span{
    display:block;
    margin-bottom:8px;
    font-size:13px;
    color:#666;
}

.aos02_mypage_summary strong{
    font-size:24px;
    font-weight:800;
    color:#003b7a;
}

.aos02_mypage_summary em{
    margin-left:2px;
    font-size:14px;
    font-style:normal;
    font-weight:600;
}

.aos02_mypage_section{
    display:flex;
    flex-direction:column;
    gap:0px;
    margin-bottom:16px;
    padding:24px 28px;
    background:#fff;
    border:1px solid #ccc;
}

.aos02_mypage_section .aos02_mypage_section_head{
    margin-bottom:0;
}

.aos02_mypage_section_head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:16px;
    padding-bottom:14px;
    border-bottom:2px solid #222;
}

.aos02_mypage_section_head h3{
    margin:0;
    font-size:18px;
    font-weight:700;
    color:#111;
}

.aos02_mypage_section_head a{
    font-size:13px;
    color:#666;
}

.aos02_mypage_section_head a:hover{
    color:#003b7a;
}


.aos02_mypage_table_wrap{
    overflow-x:auto;
}

.aos02_mypage_table{
    width:100%;
    border-collapse:collapse;
    border:1px solid #e4e7eb;
}

.aos02_mypage_table th, .aos02_mypage_table td{
    padding:14px 12px;
    border-bottom:1px solid #e4e7eb;
    font-size:14px;
    text-align:center;
    color:#333;
}

.aos02_mypage_table thead th{
    background:#f0f2f5;
    font-weight:700;
    color:#111;
}

.aos02_mypage_table td.is-left{
    text-align:left;
}

.aos02_mypage_table a{
    color:#003b7a;
    font-weight:600;
}

.aos02_mypage_badge{
    display:inline-block;
    padding:3px 8px;
    font-size:12px;
    font-weight:700;
}

.aos02_mypage_badge.confirm{
    background:#003b7a;
    color:#fff;
}

.aos02_mypage_badge.wait{
    background:#fff;
    border:1px solid #ff6b00;
    color:#ff6b00;
}

.aos02_mypage_wish_list{
    margin:0;
    padding:0;
    list-style:none;
}

.aos02_mypage_wish_list li + li{
    border-top:1px solid #e4e7eb;
}

.aos02_mypage_wish_list a{
    display:flex;
    align-items:center;
    gap:16px;
    padding:16px 0;
    color:inherit;
}

.aos02_mypage_wish_list a:hover strong{
    color:#003b7a;
}

.aos02_mypage_wish_list img{
    width:100px;
    height:68px;
    object-fit:cover;
    border:1px solid #ddd;
    flex-shrink:0;
}

.aos02_mypage_wish_list strong{
    display:block;
    margin-bottom:4px;
    font-size:15px;
    font-weight:700;
    color:#111;
}

.aos02_mypage_wish_list p{
    margin:0;
    font-size:14px;
    font-weight:700;
    color:#003b7a;
}

.aos02_mypage_quick{
    display:flex;
    gap:10px;
}

.aos02_mypage_quick a{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    height:48px;
    background:#fff;
    border:1px solid #ccc;
    font-size:14px;
    font-weight:600;
    color:#333;
}

.aos02_mypage_quick a:hover{
    border-color:#003b7a;
    color:#003b7a;
}

@media (max-width:1024px){
    .aos02_mypage_layout{
        flex-direction:column;
    }

    .aos02_mypage_lnb{
        flex:0 0 auto;
        width:100%;
    }

    .aos02_mypage_lnb nav ul{
        display:grid;
        grid-template-columns:repeat(4,1fr);
    }

    .aos02_mypage_lnb nav a{
        padding:12px 10px;
        text-align:center;
        font-size:13px;
        border-left:none;
        border-bottom:3px solid transparent;
        background:#fff;
    }

    .aos02_mypage_lnb nav li a:hover,
    .aos02_mypage_lnb nav li.active a{
        border-left:none;
        border-bottom-color:#003b7a;
        background:#003b7a;
        color:#fff;
    }

    .aos02_mypage_summary{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:768px){
    .aos02_mypage_welcome{
        flex-direction:column;
        align-items:flex-start;
        padding:24px 20px;
    }

    .aos02_mypage_welcome > a{
        width:100%;
    }

    .aos02_mypage_section{
        padding:20px 16px;
    }

    .aos02_mypage_lnb nav ul{
        grid-template-columns:repeat(2,1fr);
    }

    .aos02_mypage_quick{
        flex-direction:column;
    }
}

.aos02_mypage_section_head p{
    margin:0;
    font-size:13px;
    font-weight:400;
    color:#888;
}

.aos02_mypage_section_head.is-desc{
    flex-wrap:wrap;
    align-items:flex-end;
    gap:4px 16px;
}

.aos02_mypage_section_head.is-desc h3{
    margin-right:auto;
}

.aos02_mypage_section .aos02_join_field{
    margin-bottom:0;
}

.aos02_mypage_content .aos02_join_field > input[type="text"], .aos02_mypage_content .aos02_join_field > input[type="password"]{
    width:100%;
    height:48px;
    padding:0 14px;
    border:1px solid #ccc;
    font-size:14px;
}

.aos02_mypage_content .aos02_join_field input[readonly]{
    background:#f7f8fa;
    color:#666;
}

.aos02_mypage_agree{
    padding:4px 0;
    font-size:14px;
    color:#333;
}

.aos02_mypage_agree_txt{
    margin:8px 0 0;
    padding-left:24px;
    font-size:12px;
    color:#888;
    line-height:1.6;
}

.aos02_mypage_field_note{
    margin:8px 0 0;
    font-size:12px;
    color:#888;
    line-height:1.5;
}

.aos02_address_group{
    margin-bottom:0;
}

.aos02_address_row{
    display:grid;
    grid-template-columns:140px 1fr 1fr;
    gap:16px;
    align-items:end;
}

.aos02_address_col label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:600;
    color:#333;
}

.aos02_address_col input[readonly]{
    background:#f3f4f6;
    color:#555;
}

.aos02_address_col input{
    width:100%;
    height:44px;
    padding:0 14px;
    border:1px solid #d1d5db;
    border-radius:8px;
    font-size:14px;
}

.aos02_address_label_row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin-bottom:8px;
}

.aos02_address_label_row label{
    margin-bottom:0;
}

.aos02_address_search_btn{
    flex-shrink:0;
    height:30px;
    padding:0 12px;
    border:0;
    border-radius:4px;
    background:#f59e0b;
    color:#fff;
    font-size:12px;
    font-weight:700;
    cursor:pointer;
}

.aos02_address_search_btn:hover{
    background:#d97706;
}

@media (max-width:768px){
    .aos02_address_row{
        grid-template-columns:1fr;
    }
}

.aos02_mypage_btns{
    margin-top:16px;
}

.aos02_mypage_btns .aos02_login_btn{
    flex:1;
}

.aos02_mypage_reserve_tab{
    display:flex;
    margin:0 0 16px;
    padding:0;
    list-style:none;
    background:#fff;
    border:1px solid #ccc;
}

.aos02_mypage_reserve_tab li{
    flex:1;
}

.aos02_mypage_reserve_tab li + li{
    border-left:1px solid #e4e7eb;
}

.aos02_mypage_reserve_tab a{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    height:48px;
    font-size:14px;
    font-weight:600;
    color:#666;
}

.aos02_mypage_reserve_tab a:hover{
    color:#003b7a;
}

.aos02_mypage_reserve_tab li.is-active a{
    background:#003b7a;
    color:#fff;
}

.aos02_mypage_reserve_tab em{
    font-size:12px;
    font-style:normal;
    font-weight:700;
    opacity:.85;
}

.aos02_mypage_reserve_list{
    padding:0;
}

.aos02_mypage_reserve_item + .aos02_mypage_reserve_item{
    border-top:1px solid #e4e7eb;
}

.aos02_mypage_reserve_item{
    display:flex;
    align-items:flex-start;
    gap:20px;
    padding:24px 28px;
}

.aos02_mypage_reserve_thumb{
    flex:0 0 140px;
    display:block;
    border:1px solid #ddd;
}

.aos02_mypage_reserve_thumb img{
    width:100%;
    height:94px;
    object-fit:cover;
    display:block;
}

.aos02_mypage_reserve_info{
    flex:1;
    min-width:0;
}

.aos02_mypage_reserve_info > strong{
    display:block;
    margin:8px 0 12px;
    font-size:17px;
    font-weight:700;
    color:#111;
    line-height:1.4;
}

.aos02_mypage_reserve_info ul{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:6px 20px;
    margin:0;
    padding:0;
    list-style:none;
}

.aos02_mypage_reserve_info li{
    font-size:13px;
    color:#333;
}

.aos02_mypage_reserve_info li span{
    display:inline-block;
    width:56px;
    color:#888;
}

.aos02_mypage_reserve_side{
    flex:0 0 140px;
    text-align:right;
}

.aos02_mypage_reserve_side > strong{
    display:block;
    margin-bottom:14px;
    font-size:18px;
    font-weight:800;
    color:#003b7a;
}

.aos02_mypage_reserve_btns{
    display:flex;
    flex-direction:column;
    gap:6px;
}

.aos02_mypage_reserve_btns a{
    display:flex;
    align-items:center;
    justify-content:center;
    height:36px;
    border:1px solid #ccc;
    background:#fff;
    font-size:13px;
    font-weight:600;
    color:#333;
}



.tour_reservation{
    background:#f3f5f8;
}

.aos02_reserve_head{
    padding:40px 0 36px;
    background:#fff;
    border-bottom:1px solid #ccc;
    text-align:center;
}

.aos02_reserve_head span{
    display:block;
    margin-bottom:8px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    color:#003b7a;
}

.aos02_reserve_head h2{
    margin:0 0 10px;
    font-size:28px;
    font-weight:700;
    color:#111;
}

.aos02_reserve_head p{
    margin:0;
    font-size:15px;
    color:#888;
}

.aos02_reserve_body{
    padding:32px 0 64px;
}

.aos02_reserve_form{
    flex:1;
    min-width:0;
    display:flex;
    flex-direction:column;
    gap:16px;
}

.aos02_reserve_form_inner{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.aos02_reserve_product{
    display:flex;
    gap:20px;
    align-items:flex-start;
}

.aos02_reserve_product_img{
    flex:0 0 160px;
    width:160px;
    height:120px;
    overflow:hidden;
    border:1px solid #e4e7eb;
}

.aos02_reserve_product_img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.aos02_reserve_product_info{
    flex:1;
    min-width:0;
}

.aos02_reserve_product_info h3{
    margin:8px 0 14px;
    padding:0;
    border:none;
    font-size:20px;
    font-weight:700;
    color:#111;
}

.aos02_reserve_product_code{
    margin:6px 0 0;
    font-size:13px;
    color:#888;
}

.aos02_reserve_product_info ul{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:8px 20px;
    margin:0;
    padding:0;
    list-style:none;
}

.aos02_reserve_product_info li span{
    display:block;
    margin-bottom:2px;
    font-size:12px;
    color:#888;
}

.aos02_reserve_product_info li strong{
    font-size:14px;
    font-weight:700;
    color:#111;
}

.aos02_reserve_traveler{
    display:flex;
    flex-direction:column;
    gap:16px;
    padding:20px;
    background:#f7f8fa;
    border:1px solid #e4e7eb;
}

.aos02_reserve_traveler > strong{
    font-size:15px;
    font-weight:700;
    color:#003b7a;
}

.aos02_reserve_form textarea{
    width:100%;
    min-height:120px;
    padding:12px 14px;
    border:1px solid #ddd;
    font-size:14px;
    color:#333;
    resize:vertical;
    box-sizing:border-box;
}

.aos02_reserve_form textarea:focus{
    outline:none;
    border-color:#003b7a;
}

.aos02_reserve_btns{
    display:flex;
    gap:10px;
}

.aos02_reserve_btns .aos02_login_btn{
    flex:1;
    border:none;
    cursor:pointer;
}

.aos02_reserve_notice{
    margin:0;
    padding-top:12px;
    border-top:1px solid #eee;
    font-size:12px;
    line-height:1.6;
    color:#888;
}

@media (max-width:768px){
    .aos02_reserve_product{
        flex-direction:column;
    }

    .aos02_reserve_product_img{
        width:100%;
        height:180px;
    }

    .aos02_reserve_product_info ul{
        grid-template-columns:1fr;
    }

    .aos02_reserve_btns{
        flex-direction:column;
    }

    .aos02_reserve_btns .aos02_join_cancel_btn{
        flex:1;
        width:100%;
    }
}


.aos02_mypage_reserve_btns a.is-primary{
    border-color:#003b7a;
    background:#003b7a;
    color:#fff;
}

.aos02_mypage_reserve_btns a.is-primary:hover{
    color:#fff;
}

.aos02_mypage_reserve_btns a:hover{
    border-color:#003b7a;
    color:#003b7a;
}

.aos02_mypage_badge.done{
    background:#fff;
    border:1px solid #666;
    color:#666;
}

.aos02_mypage_badge.cancel{
    background:#f5f5f5;
    border:1px solid #ccc;
    color:#999;
}

.aos02_mypage_content .product_paging{
    margin-top:16px;
}

.aos02_mypage_wish_page{
    padding:0;
}

.aos02_mypage_wish_toolbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 28px;
    border-bottom:1px solid #e4e7eb;
}

.aos02_mypage_wish_toolbar p{
    margin:0;
    font-size:14px;
    color:#333;
}

.aos02_mypage_wish_toolbar strong{
    color:#003b7a;
}

.aos02_mypage_wish_del{
    height:36px;
    padding:0 14px;
    border:1px solid #ccc;
    background:#fff;
    font-size:13px;
    font-weight:600;
    color:#666;
    cursor:pointer;
}

.aos02_mypage_wish_items{
    margin:0;
    padding:0;
    list-style:none;
}

.aos02_mypage_wish_item + .aos02_mypage_wish_item{
    border-top:1px solid #e4e7eb;
}

.aos02_mypage_wish_item{
    display:flex;
    align-items:flex-start;
    gap:16px;
    padding:24px 28px;
}

.aos02_mypage_wish_check{
    flex:0 0 auto;
    padding-top:40px;
    cursor:pointer;
}

.aos02_mypage_wish_check input{
    width:16px;
    height:16px;
    margin:0;
}

.aos02_mypage_wish_thumb{
    flex:0 0 140px;
    display:block;
    border:1px solid #ddd;
}

.aos02_mypage_wish_thumb img{
    width:100%;
    height:94px;
    object-fit:cover;
    display:block;
}

.aos02_mypage_wish_info{
    flex:1;
    min-width:0;
}

.aos02_mypage_wish_info .product_badge{
    margin-bottom:6px;
}

.aos02_mypage_wish_info > strong{
    display:block;
    margin-bottom:6px;
    font-size:17px;
    font-weight:700;
    color:#111;
    line-height:1.4;
}

.aos02_mypage_wish_info > p{
    margin:0 0 12px;
    font-size:13px;
    color:#666;
    line-height:1.5;
}

.aos02_mypage_wish_info ul{
    display:flex;
    flex-wrap:wrap;
    gap:8px 20px;
    margin:0;
    padding:0;
    list-style:none;
}

.aos02_mypage_wish_info li{
    font-size:13px;
    color:#333;
}

.aos02_mypage_wish_info li span{
    margin-right:6px;
    color:#888;
}

.aos02_mypage_wish_side{
    flex:0 0 130px;
    text-align:right;
}

.aos02_mypage_wish_side > strong{
    display:block;
    margin-bottom:14px;
    font-size:18px;
    font-weight:800;
    color:#003b7a;
}

.aos02_mypage_wish_btns{
    display:flex;
    flex-direction:column;
    gap:6px;
}

.aos02_mypage_wish_btns a, .aos02_mypage_wish_btns button{
    display:flex;
    align-items:center;
    justify-content:center;
    height:36px;
    padding:0 12px;
    border:1px solid #ccc;
    background:#fff;
    font-size:13px;
    font-weight:600;
    color:#333;
    cursor:pointer;
    font-family:inherit;
}

.aos02_mypage_wish_btns a.is-primary{
    border-color:#003b7a;
    background:#003b7a;
    color:#fff;
}

.aos02_mypage_wish_btns a.is-primary:hover{
    color:#fff;
}

.aos02_mypage_wish_btns button:hover, .aos02_mypage_wish_btns a:not(.is-primary):hover{
    border-color:#003b7a;
    color:#003b7a;
}

@media (max-width:768px){
    .aos02_mypage_reserve_tab{
        flex-wrap:wrap;
    }

    .aos02_mypage_reserve_tab li{
        flex:1 1 33.33%;
        border-bottom:1px solid #e4e7eb;
    }

    .aos02_mypage_reserve_item{
        flex-direction:column;
        padding:20px 16px;
    }

    .aos02_mypage_reserve_thumb{
        width:100%;
        flex:0 0 auto;
    }

    .aos02_mypage_reserve_thumb img{
        height:160px;
    }

    .aos02_mypage_reserve_info ul{
        grid-template-columns:1fr;
    }

    .aos02_mypage_reserve_side{
        width:100%;
        flex:0 0 auto;
        display:flex;
        align-items:center;
        justify-content:space-between;
        text-align:left;
        padding-top:12px;
        border-top:1px solid #e4e7eb;
    }

    .aos02_mypage_reserve_side > strong{
        margin-bottom:0;
    }

    .aos02_mypage_reserve_btns{
        flex-direction:row;
    }

    .aos02_mypage_wish_item{
        flex-wrap:wrap;
        padding:20px 16px;
    }

    .aos02_mypage_wish_check{
        padding-top:0;
        order:1;
    }

    .aos02_mypage_wish_thumb{
        order:2;
        width:calc(100% - 32px);
        flex:1 1 auto;
        margin-left:32px;
    }

    .aos02_mypage_wish_thumb img{
        height:160px;
    }

    .aos02_mypage_wish_info{
        order:3;
        width:100%;
    }

    .aos02_mypage_wish_side{
        order:4;
        width:100%;
        flex:0 0 auto;
        display:flex;
        align-items:center;
        justify-content:space-between;
        text-align:left;
        padding-top:12px;
        border-top:1px solid #e4e7eb;
    }

    .aos02_mypage_wish_side > strong{
        margin-bottom:0;
    }

    .aos02_mypage_wish_btns{
        flex-direction:row;
    }

    .aos02_mypage_wish_toolbar{
        padding:12px 16px;
    }
}

.aos02_mypage_point_summary{
    display:flex;
    align-items:stretch;
    gap:0;
    margin:0 0 16px;
    padding:0;
    list-style:none;
    background:#fff;
    border:1px solid #ccc;
}

.aos02_mypage_point_summary li + li{
    border-left:1px solid #ccc;
}

.aos02_mypage_point_summary li{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:12px 14px;
    text-align:left;
}

.aos02_mypage_point_summary li.is-total{
    background:#003b7a;
    border-color:#003b7a;
    color:#fff;
}

.aos02_mypage_point_summary span{
    flex:0 0 auto;
    font-size:13px;
    color:#666;
    white-space:nowrap;
}

.aos02_mypage_point_summary li.is-total span{
    color:rgba(255,255,255,.85);
}

.aos02_mypage_point_summary strong{
    flex:0 0 auto;
    font-size:16px;
    font-weight:700;
    color:#003b7a;
    white-space:nowrap;
}

.aos02_mypage_point_summary li.is-total strong{
    color:#fff;
}

.aos02_mypage_point_summary em{
    margin-left:1px;
    font-size:13px;
    font-style:normal;
    font-weight:600;
}

.aos02_mypage_point_list{
    padding:0;
}

.aos02_mypage_point_sort{
    height:36px;
    padding:0 12px;
    border:1px solid #ccc;
    font-size:13px;
    color:#333;
    background:#fff;
}

.aos02_mypage_point_table .is-plus{
    color:#003b7a;
    font-weight:700;
}

.aos02_mypage_point_table .is-minus{
    color:#e60012;
    font-weight:700;
}

.aos02_mypage_point_badge{
    display:inline-block;
    padding:3px 8px;
    font-size:11px;
    font-weight:700;
}

.aos02_mypage_point_badge.save{
    background:#f0f4f8;
    border:1px solid #003b7a;
    color:#003b7a;
}

.aos02_mypage_point_badge.use{
    background:#fff;
    border:1px solid #ff6b00;
    color:#ff6b00;
}

.aos02_mypage_point_badge.expire{
    background:#f5f5f5;
    border:1px solid #999;
    color:#999;
}

@media (max-width:768px){
    .aos02_mypage_point_summary li{
        flex-direction:column;
        gap:2px;
        padding:10px 6px;
        text-align:center;
    }

    .aos02_mypage_point_summary strong{
        font-size:14px;
    }

    .aos02_mypage_point_summary span{
        font-size:11px;
    }

    .aos02_mypage_point_table .is-mo-hide{
        display:none;
    }
}

.aos02_mypage_qna_list{
    padding:0;
}

.aos02_mypage_search_row{
    display:flex;
    justify-content:flex-end;
    margin-bottom:16px;
}

.aos02_mypage_qna_list .avn-notice-list-search{
    display:flex;
    gap:8px;
    margin-right: 28px;
}

.aos02_mypage_qna_list .avn-notice-list-search input{
    width:220px;
    height:36px;
    padding:0 12px;
    border:1px solid #dbe2ea;
    border-radius:6px;
    font-size:14px;
    box-sizing:border-box;
}

.aos02_mypage_qna_list .avn-notice-list-search input:focus{
    outline:none;
    border-color:#1f3a5f;
}

.aos02_mypage_qna_list .avn-notice-list-search span{
    display:flex;
    align-items:center;
    justify-content:center;
    height:36px;
    padding:0 16px;
    background:#1f3a5f;
    color:#fff;
    border:none;
    border-radius:6px;
    font-size:13px;
    cursor:pointer;
    white-space:nowrap;
}

.aos02_wrap .aos02_mypage_qna_write, .aos02_mypage_qna_write{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:36px;
    padding:0 14px;
    border:1px solid #003b7a;
    background:#003b7a;
    font-size:13px;
    font-weight:700;
    color:#fff;
}

.aos02_wrap .aos02_mypage_qna_write:hover, .aos02_mypage_qna_write:hover{
    background:#002a57;
    border-color:#002a57;
    color:#fff;
}

.aos02_mypage_qna_table td.is-left a{
    display:block;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    max-width:360px;
    font-weight:600;
    color:#111;
}

.aos02_mypage_qna_table td.is-left a:hover{
    color:#003b7a;
}

@media (max-width:768px){
    .aos02_mypage_qna_table .is-mo-hide{
        display:none;
    }

    .aos02_mypage_qna_table td.is-left a{
        max-width:180px;
    }
}

.aos02_mypage_review_list, .aos02_mypage_review_ready{
    padding:0;
}

.aos02_mypage_review_ready{
    margin-top:16px;
}

.aos02_mypage_review_ready .aos02_mypage_section_head{
    padding:20px 28px 0;
    margin:0;
    border-bottom:none;
}

.aos02_mypage_review_item + .aos02_mypage_review_item{
    border-top:1px solid #e4e7eb;
}

.aos02_mypage_review_item{
    display:flex;
    align-items:flex-start;
    gap:20px;
    padding:24px 28px;
}

.aos02_mypage_review_thumb{
    flex:0 0 140px;
    display:block;
    border:1px solid #ddd;
}

.aos02_mypage_review_thumb img{
    width:100%;
    height:94px;
    object-fit:cover;
    display:block;
}

.aos02_mypage_review_info{
    flex:1;
    min-width:0;
}

.aos02_mypage_review_info > strong{
    display:block;
    margin:8px 0 8px;
    font-size:17px;
    font-weight:700;
    color:#111;
    line-height:1.4;
}

.aos02_mypage_review_star{
    margin-bottom:10px;
    font-size:14px;
    letter-spacing:1px;
    color:#ff6b00;
}

.aos02_mypage_review_star.is-4{
    color:#ff6b00;
}

.aos02_mypage_review_text{
    margin:0 0 12px;
    font-size:14px;
    line-height:1.6;
    color:#555;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.aos02_mypage_review_info ul{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:6px 20px;
    margin:0;
    padding:0;
    list-style:none;
}

.aos02_mypage_review_item.is-ready .aos02_mypage_review_info ul{
    grid-template-columns:1fr;
}

.aos02_mypage_review_info li{
    font-size:13px;
    color:#333;
}

.aos02_mypage_review_info li span{
    display:inline-block;
    width:80x;
    color:#888;
}

.aos02_mypage_review_side{
    flex:0 0 100px;
    text-align:right;
}

.aos02_mypage_review_btns{
    display:flex;
    flex-direction:column;
    gap:6px;
}

.aos02_mypage_review_btns a, .aos02_mypage_review_btns button{
    display:flex;
    align-items:center;
    justify-content:center;
    height:36px;
    padding:0 14px;
    border:1px solid #ccc;
    background:#fff;
    font-size:13px;
    font-weight:600;
    color:#333;
}

.aos02_mypage_review_btns a.is-primary{
    border-color:#003b7a;
    background:#003b7a;
    color:#fff;
}

.aos02_mypage_review_btns a.is-primary:hover{
    color:#fff;
}

.aos02_mypage_review_btns a:hover{
    border-color:#003b7a;
    color:#003b7a;
}

@media (max-width:768px){
    .aos02_mypage_review_item{
        flex-wrap:wrap;
        padding:16px;
        gap:12px;
    }

    .aos02_mypage_review_thumb{
        flex:0 0 100px;
    }

    .aos02_mypage_review_thumb img{
        height:68px;
    }

    .aos02_mypage_review_info{
        flex:1 1 calc(100% - 112px);
        min-width:0;
    }

    .aos02_mypage_review_side{
        flex:0 0 100%;
        text-align:left;
        padding-top:12px;
        border-top:1px solid #e4e7eb;
    }

    .aos02_mypage_review_btns{
        flex-direction:row;
    }

    .aos02_mypage_review_ready .aos02_mypage_section_head{
        padding:16px 16px 0;
    }
}

.aos02_mypage_leave_notice{
    margin-bottom:16px;
    padding:18px 20px;
    background:#fff5f5;
    border:1px solid #f0c0c0;
}

.aos02_mypage_leave_notice strong{
    display:block;
    margin-bottom:6px;
    font-size:15px;
    font-weight:700;
    color:#c00;
}

.aos02_mypage_leave_notice p{
    margin:0;
    font-size:13px;
    line-height:1.6;
    color:#666;
}

.aos02_mypage_leave_list{
    margin:0 0 20px;
    padding:0;
    list-style:none;
}

.aos02_mypage_leave_list li{
    position:relative;
    padding:6px 0 6px 12px;
    font-size:14px;
    line-height:1.6;
    color:#333;
}

.aos02_mypage_leave_list li::before{
    content:"";
    position:absolute;
    left:0;
    top:14px;
    width:4px;
    height:4px;
    border-radius:50%;
    background:#888;
}

.aos02_mypage_leave_list li strong{
    color:#c00;
    font-weight:700;
}

.aos02_mypage_leave_member{
    display:grid;
    grid-template-columns:80px 1fr;
    gap:10px 16px;
    margin:0;
    padding:16px 20px;
    background:#f7f8fa;
    border:1px solid #e4e7eb;
}

.aos02_mypage_leave_member dt{
    font-size:13px;
    color:#888;
}

.aos02_mypage_leave_member dd{
    margin:0;
    font-size:14px;
    font-weight:600;
    color:#111;
}

.aos02_mypage_leave_reason{
    display:flex;
    flex-direction:column;
    gap:4px;
    margin-bottom:16px;
}

.aos02_mypage_leave_reason .aos02_join_check{
    padding:10px 0;
}

.aos02_mypage_leave_agree{
    margin-top:4px;
}

.aos02_mypage_leave_btns .aos02_login_btn.is-danger{
    background:#c00;
    border-color:#c00;
}

.aos02_mypage_leave_btns .aos02_login_btn.is-danger:hover{
    background:#a00;
    border-color:#a00;
}

.aos02_community_notice_list{
    padding:10px;
}

.aos02_community_notice_list .avn-notice-list-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:16px;
    padding-bottom:16px;
    border-bottom:1px solid #dbe2ea;
}

.aos02_community_notice_list .avn-notice-list-header h2{
    margin:0;
    font-weight:800;
    color:#0f172a;
}

.aos02_community_notice_list .avn-notice-list-search{
    display:flex;
    gap:8px;
}

.aos02_community_notice_list .avn-notice-list-search input{
    width:220px;
    height:36px;
    padding:0 12px;
    border:1px solid #dbe2ea;
    border-radius:6px;
    font-size:14px;
    box-sizing:border-box;
}

.aos02_community_notice_list .avn-notice-list-search input:focus{
    outline:none;
    border-color:#1f3a5f;
}

.aos02_community_notice_list .avn-notice-list-search span{
    display:flex;
    align-items:center;
    justify-content:center;
    height:36px;
    padding:0 16px;
    background:#1f3a5f;
    color:#fff;
    border:none;
    border-radius:6px;
    font-size:13px;
    cursor:pointer;
    white-space:nowrap;
}

@media (max-width:768px){
    .aos02_community_notice_list .avn-notice-list-header{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }

    .aos02_community_notice_list .avn-notice-list-search{
        width:100%;
    }

    .aos02_community_notice_list .avn-notice-list-search input{
        flex:1;
        width:auto;
        min-width:0;
    }
}

.aos02_community_notice_table td.is-left a{
    font-weight:600;
    color:#111;
}

.aos02_community_notice_table td.is-left a:hover{
    color:#003b7a;
}

.aos02_community_notice_badge{
    display:inline-block;
    padding:3px 8px;
    background:#003b7a;
    font-size:11px;
    font-weight:700;
    color:#fff;
}

@media (max-width:768px){
    .aos02_community_notice_table .is-mo-hide{
        display:none;
    }
}

.aos02_community_faq_list{
    padding:0;
}

.aos02_community_faq_accordion{
    border-top:1px solid #ccc;
}

.aos02_community_faq_item{
    border-bottom:1px solid #ccc;
    background:#fff;
}

.aos02_community_faq_item summary{
    display:flex;
    align-items:center;
    gap:12px;
    padding:16px 18px;
    list-style:none;
    cursor:pointer;
    font-size:14px;
    color:#111;
}

.aos02_community_faq_item summary::-webkit-details-marker{
    display:none;
}

.aos02_community_faq_item summary::after{
    content:"+";
    flex-shrink:0;
    margin-left:auto;
    width:24px;
    height:24px;
    line-height:24px;
    text-align:center;
    font-size:18px;
    font-weight:400;
    color:#666;
}

.aos02_community_faq_item[open] summary::after{
    content:"−";
    color:#003b7a;
}

.aos02_community_faq_item[open] summary{
    background:#f3f5f8;
    color:#003b7a;
    font-weight:600;
}

.aos02_community_faq_cate{
    flex-shrink:0;
    min-width:72px;
    padding:4px 8px;
    background:#f3f5f8;
    border:1px solid #ccc;
    font-size:12px;
    font-weight:600;
    color:#003b7a;
    text-align:center;
}

.aos02_community_faq_item[open] .aos02_community_faq_cate{
    background:#003b7a;
    border-color:#003b7a;
    color:#fff;
}

.aos02_community_faq_q{
    flex:1;
    line-height:1.5;
}

.aos02_community_faq_a{
    padding:0 18px 18px 102px;
    font-size:14px;
    line-height:1.7;
    color:#444;
    background:#f3f5f8;
}

.aos02_community_faq_a p{
    margin:0;
}

.aos02_community_faq_tab ~ .aos02_login_notice a{
    color:#003b7a;
    font-weight:600;
    text-decoration:underline;
}

@media (max-width:768px){
    .aos02_community_faq_item summary{
        flex-wrap:wrap;
        gap:8px;
        padding:14px 16px;
    }

    .aos02_community_faq_cate{
        min-width:auto;
    }

    .aos02_community_faq_a{
        padding:0 16px 16px;
    }
}

.aos02_community_bbs_cs{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:space-between;
    gap:12px 24px;
    margin-bottom:24px;
    padding:20px 24px;
    border:1px solid #ccc;
    background:#fff;
}

.aos02_community_bbs_cs strong{
    display:block;
    font-size:22px;
    font-weight:700;
    color:#003b7a;
}

.aos02_community_bbs_cs p{
    margin:4px 0 0;
    font-size:13px;
    color:#666;
}

.aos02_community_bbs_cs_link{
    margin:0;
    font-size:13px;
    color:#444;
}

.aos02_community_bbs_cs_link a{
    color:#003b7a;
    font-weight:600;
    text-decoration:underline;
}

.aos02_community_bbs_form select, .aos02_community_bbs_form textarea{
    width:100%;
    padding:0 14px;
    border:1px solid #ccc;
    font-size:14px;
    color:#111;
    background:#fff;
}

.aos02_community_bbs_form select{
    height:48px;
}

.aos02_community_bbs_form textarea{
    min-height:180px;
    padding:14px;
    line-height:1.6;
    resize:vertical;
}

.aos02_community_bbs_form select:focus, .aos02_community_bbs_form textarea:focus{
    outline:none;
    border-color:#003b7a;
}

.aos02_community_bbs_form .avn-event-edit-input-radio,
.aos02_join_field .avn-event-edit-input-radio{
    display:flex;
    align-items:center;
    gap:24px;
    min-height:48px;
}

.aos02_community_bbs_form .avn-event-edit-input-radio label,
.aos02_join_field .avn-event-edit-input-radio label{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin:0;
    font-size:14px;
    font-weight:500;
    color:#333;
    cursor:pointer;
}

.aos02_community_bbs_form .avn-event-edit-input-radio input[type="radio"],
.aos02_join_field .avn-event-edit-input-radio input[type="radio"]{
    width:16px;
    height:16px;
    margin:0;
    accent-color:#003b7a;
    cursor:pointer;
}

.aos02_community_bbs_terms{
    margin-bottom:16px;
}

.aos02_community_bbs_form ~ .aos02_login_notice a{
    color:#003b7a;
    font-weight:600;
    text-decoration:underline;
}

@media (max-width:768px){
    .aos02_community_bbs_cs{
        flex-direction:column;
        align-items:flex-start;
        padding:16px;
    }
}

.aos02_community_review_list{
    padding:0;
}

.aos02_community_review_product{
    display:inline-block;
    font-size:12px;
    font-weight:600;
    color:#003b7a;
}

.aos02_community_review_product:hover{
    text-decoration:underline;
}

.aos02_community_review_item .aos02_mypage_review_info > strong{
    margin-top:4px;
}

.aos02_community_review_item .aos02_mypage_review_info > strong a{
    color:#111;
}

.aos02_community_review_item .aos02_mypage_review_info > strong a:hover{
    color:#003b7a;
}

.aos02_community_review_tab ~ .aos02_login_notice a{
    color:#003b7a;
    font-weight:600;
    text-decoration:underline;
}

.aos02_community_notice_view{
    padding:0;
}

.aos02_community_notice_view_head{
    padding:28px 28px 24px;
    border-bottom:1px solid #e4e7eb;
}

.aos02_community_notice_view_head .aos02_community_notice_badge{
    margin-bottom:12px;
}

.aos02_community_notice_view_head h3{
    margin:0 0 16px;
    font-size:22px;
    font-weight:700;
    color:#111;
    line-height:1.4;
}

.aos02_community_notice_view_meta{
    display:flex;
    flex-wrap:wrap;
    gap:8px 20px;
    margin:0;
    padding:0;
    list-style:none;
}

.aos02_community_notice_view_meta li{
    font-size:13px;
    color:#666;
}

.aos02_community_notice_view_meta li span{
    margin-right:6px;
    color:#999;
}

.aos02_community_notice_view_body{
    padding:20px;
    font-size:15px;
    line-height:1.8;
    color:#333;
}

.aos02_community_notice_view_body p{
    margin:0 0 0px;
}

.aos02_community_notice_view_body ul{
    margin:0 0 16px;
    padding-left:20px;
    list-style:disc;
}

.aos02_community_notice_view_body li{
    margin-bottom:6px;
}

.aos02_community_notice_view_nav{
    display:grid;
    grid-template-columns:1fr 1fr;
    border-top:1px solid #e4e7eb;
}

.aos02_community_notice_view_prev, .aos02_community_notice_view_next{
    display:block;
    padding:18px 28px;
    font-size:13px;
    color:#666;
}

.aos02_community_notice_view_next{
    border-left:1px solid #e4e7eb;
    text-align:right;
}

.aos02_community_notice_view_prev span, .aos02_community_notice_view_next span{
    display:block;
    margin-bottom:6px;
    font-size:12px;
    color:#999;
}

.aos02_community_notice_view_prev strong, .aos02_community_notice_view_next strong{
    display:block;
    font-size:14px;
    font-weight:600;
    color:#111;
    line-height:1.5;
}

.aos02_wrap .aos02_community_notice_view_prev:hover strong, .aos02_wrap .aos02_community_notice_view_next:hover strong{
    color:#003b7a;
}

.aos02_community_notice_view_btns{
    display:flex;
    justify-content:center;
    margin-top:24px;
}

.aos02_wrap .aos02_community_notice_view_btns a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:120px;
    height:44px;
    padding:0 24px;
    border:1px solid #ccc;
    background:#fff;
    font-size:14px;
    font-weight:600;
    color:#333;
}

.aos02_wrap .aos02_community_notice_view_btns a:hover{
    border-color:#003b7a;
    color:#003b7a;
}

@media (max-width:768px){
    .aos02_community_notice_view_head, .aos02_community_notice_view_body{
        padding:20px 16px;
    }

    .aos02_community_notice_view_head h3{
        font-size:18px;
    }

    .aos02_community_notice_view_nav{
        grid-template-columns:1fr;
    }

    .aos02_community_notice_view_next{
        border-left:none;
        text-align:left;
    }

    .aos02_community_notice_view_prev, .aos02_community_notice_view_next{
        padding:16px;
    }
}



.aos02_about_content{
    flex:1;
    min-width:0;
    display:flex;
    flex-direction:column;
    gap:16px;
}

.aos02_about_section p{
    margin:0;
    font-size:14px;
    color:#555;
    line-height:1.8;
}

.aos02_about_section p + p{
    margin-top:10px;
}

.aos02_about_sign{
    margin-top:16px;
    text-align:right;
    font-size:14px;
    color:#333;
}

.aos02_about_info{
    margin:0;
    border-top:1px solid #e4e7eb;
}

.aos02_about_info div{
    display:flex;
    border-bottom:1px solid #e4e7eb;
}

.aos02_about_info dt{
    flex:0 0 140px;
    padding:12px 14px;
    background:#f0f2f5;
    font-size:13px;
    font-weight:700;
    color:#111;
}

.aos02_about_info dd{
    flex:1;
    margin:0;
    padding:12px 14px;
    font-size:14px;
    color:#555;
}

.aos02_about_vision, .aos02_about_service{
    margin:0;
    padding:0;
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.aos02_about_vision li, .aos02_about_service li{
    padding:14px 16px;
    border:1px solid #e4e7eb;
    background:#f7f8fa;
}

.aos02_about_vision strong, .aos02_about_service strong{
    display:block;
    margin-bottom:4px;
    font-size:15px;
    color:#003b7a;
}

.aos02_about_vision span, .aos02_about_service span{
    font-size:13px;
    color:#666;
    line-height:1.6;
}

.aos02_about_history{
    display:flex;
    flex-direction:column;
    gap:28px;
}

.aos02_about_history_group{
    display:flex;
    align-items:flex-start;
    gap:24px;
}

.aos02_about_history_year{
    flex:0 0 72px;
    font-size:22px;
    font-weight:800;
    color:#003b7a;
    line-height:1.3;
}

.aos02_about_history_list{
    flex:1;
    min-width:0;
    margin:0;
    padding:0;
    list-style:none;
    border-top:1px solid #e4e7eb;
}

.aos02_about_history_list li{
    display:flex;
    align-items:flex-start;
    gap:16px;
    padding:12px 0;
    border-bottom:1px solid #e4e7eb;
}

.aos02_about_history_list span{
    flex:0 0 28px;
    font-size:13px;
    font-weight:700;
    color:#888;
    line-height:1.6;
}

.aos02_about_history_list p{
    flex:1;
    margin:0;
    font-size:14px;
    color:#555;
    line-height:1.7;
}

.aos02_about_history_list strong{
    color:#003b7a;
    font-weight:700;
}

@media (max-width:768px){
    .aos02_about_history_group{
        flex-direction:column;
        gap:10px;
    }

    .aos02_about_history_year{
        flex:0 0 auto;
        font-size:20px;
    }
}

.aos02_about_location_map{
    padding:24px 28px;
    overflow:hidden;
}

.aos02_about_map_box{
    position:relative;
    width:100%;
    border:1px solid #ccc;
    background:#f3f5f8;
}

.aos02_about_map_frame{
    display:block;
    width:100%;
    height:420px;
    border:0;
}

.aos02_about_map_canvas{
    background:#e8edf2;
}

.aos02_about_map_label{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    z-index:2;
    padding:12px 16px;
    background:rgba(0,59,122,.92);
    text-align:center;
    pointer-events:none;
}

.aos02_about_map_label strong{
    display:block;
    font-size:14px;
    font-weight:700;
    color:#fff;
}

.aos02_about_map_label span{
    display:block;
    margin-top:2px;
    font-size:12px;
    color:rgba(255,255,255,.9);
}

.aos02_about_location_guide{
    margin:0;
    padding:0;
    list-style:none;
    border-top:1px solid #e4e7eb;
}

.aos02_about_location_guide li{
    display:flex;
    align-items:flex-start;
    gap:16px;
    padding:14px 0;
    border-bottom:1px solid #e4e7eb;
}

.aos02_about_location_guide strong{
    flex:0 0 56px;
    font-size:13px;
    font-weight:700;
    color:#003b7a;
}

.aos02_about_location_guide span{
    flex:1;
    font-size:14px;
    color:#555;
    line-height:1.7;
}

.aos02_about_location_guide b{
    font-weight:700;
    color:#111;
}

@media (max-width:768px){
    .aos02_about_map_frame{
        height:280px;
    }

    .aos02_about_location_map{
        padding:20px 16px;
    }
}

.aos02_about_terms{
    font-size:14px;
    color:#555;
    line-height:1.8;
}

.aos02_about_terms_meta{
    margin:0 0 12px;
    font-size:13px;
    color:#888;
}

.aos02_about_terms_article + .aos02_about_terms_article{
    margin-top:24px;
    padding-top:24px;
    border-top:1px solid #e4e7eb;
}

.aos02_about_terms_article h4{
    margin:0 0 10px;
    font-size:16px;
    font-weight:700;
    color:#111;
}

.aos02_about_terms_article p{
    margin:0 0 8px;
}

.aos02_about_terms_article ol{
    margin:0;
    padding-left:20px;
}

.aos02_about_terms_article li{
    margin-bottom:6px;
}

.aos02_about_terms_article a{
    color:#003b7a;
    font-weight:600;
}

.aos02_about_terms_article a:hover{
    color:#002a57;
}

.avn-loading-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   /* gap: 10px; */
    padding: 20px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
  }
  
  /* 파란색 둥근 원 스피너 */
  .avn-loading-spinner {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 4px solid rgba(37, 99, 235, 0.15);
    border-top-color: #2563eb;
    animation: avn-spin 0.9s linear infinite;
  }
  
  @keyframes avn-spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  /* 로딩 텍스트 */
  .avn-loading-text {
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    padding-top: 5px;
    letter-spacing: -0.2px;
  }

/* reser_view pay */
.aos02_mypage_pay ul{
    display:block;
}

.aos02_mypage_pay li{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px 0;
    border-bottom:1px solid #e4e7eb;
    font-size:14px;
}

.aos02_mypage_pay li span{
    width:auto;
    font-weight:600;
    color:#111;
}

.aos02_mypage_pay strong{
    font-size:16px;
    font-weight:700;
    color:#003b7a;
}

.aos02_mypage_pay strong .aos02_mypage_pay_unit{
    margin-left:4px;
    font-size:13px;
    font-weight:600;
    color:#666;
}

/* top seasonal strip — AOS02 브랜드 톤 */
#topBanner .avn_home_page_wrap_season_wrap{
  position:relative;
  z-index:30;
}

#topBanner .avn_home_page_wrap_season{
  position:relative;
  box-sizing:border-box;
  width:100%;
  overflow:hidden;
  background:#F2EEFF !important;
  color:#5A47A8;
  border-bottom:1px solid #D4CCF0;
}

#topBanner .avn_home_page_wrap_season::before,
#topBanner .avn_home_page_wrap_season::after{
  display:none;
}

#topBanner .avn_home_page_wrap_season_inner{
  max-width:1200px;
  margin:0 auto;
  position:relative;
  z-index:1;
  min-height:100%;
  display:flex;
  align-items:center;
}

#topBanner .avn_home_page_wrap_season_img{
  display:block;
  width:100%;
  height:120px;
  object-fit:cover;
}

#topBanner .avn_home_page_wrap_season_img img{
  display:block;
  width:100%;
  height:120px;
  object-fit:cover;
}

#topBanner .avn_home_page_wrap_season_copy{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  width:100%;
  min-height:56px;
  padding:16px 220px;
  box-sizing:border-box;
  text-align:center;
}

#topBanner .avn_home_page_wrap_season_copy strong,
#topBanner .avn_home_page_wrap_season_copy_title{
  display:block;
  width:100%;
  font-family:"Pretendard", "Noto Sans KR", sans-serif;
  font-size:17px !important;
  font-weight:650;
  letter-spacing:-0.02em;
  color:#5A47A8 !important;
  line-height:1.35;
  word-break:keep-all;
  text-align:center;
  text-shadow:none;
}

#topBanner .avn_home_page_wrap_season_copy span,
#topBanner .avn_home_page_wrap_season_copy_text{
  display:block;
  width:100%;
  margin-top:0 !important;
  font-family:"Pretendard", "Noto Sans KR", sans-serif;
  font-size:13px !important;
  font-weight:400;
  letter-spacing:-0.01em;
  color:#5A47A8 !important;
  line-height:1.45;
  word-break:keep-all;
  text-align:center;
}

#topBanner .avn_home_page_wrap_season_right{
  position:absolute;
  top:50%;
  right:0;
  z-index:10;
  transform:translateY(-50%);
  display:flex;
  align-items:center;
  gap:12px;
}

#topBanner .today-close-check{
  display:flex;
  align-items:center;
  gap:7px;
  font-size:12px;
  font-weight:450;
  color:#5A47A8;
  white-space:nowrap;
  padding:0;
  cursor:pointer;
}

#topBanner .today-close-check .check-text{
  color:#5A47A8;
}

#topBanner .check-input{
  margin:0;
  width:14px;
  height:14px;
  accent-color:#5A47A8;
  cursor:pointer;
}

#topBanner .avn_home_page_wrap_season_btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-sizing:border-box;
  height:30px;
  padding:0 14px;
  background:#fff;
  border:1px solid #D4CCF0;
  border-radius:999px;
  font-family:"Pretendard", "Noto Sans KR", sans-serif;
  font-size:12px;
  font-weight:500;
  letter-spacing:-0.01em;
  color:#5A47A8;
  cursor:pointer;
  transition:background .2s ease, border-color .2s ease, color .2s ease;
  flex-shrink:0;
}

#topBanner .avn_home_page_wrap_season_btn:hover{
  background:#F2EEFF;
  border-color:#5A47A8;
  color:#5A47A8;
  font-weight:500;
}

#topBanner .avn_home_page_wrap_season_menu{
  display:flex;
  justify-content:flex-end;
  gap:0;
  font-size:12px;
  color:#666;
  margin-left:auto;
}

#topBanner .avn_home_page_wrap_season_menu img{
  width:260px;
  height:70px;
  object-fit:cover;
  border-radius:4px;
}

@media (max-width:768px){
  #topBanner .avn_home_page_wrap_season{
    height:auto !important;
    min-height:52px;
  }

  #topBanner .avn_home_page_wrap_season_img,
  #topBanner .avn_home_page_wrap_season_img img{
    height:80px;
  }

  #topBanner .avn_home_page_wrap_season_copy{
    min-height:52px;
    padding:12px 132px;
    gap:4px;
  }

  #topBanner .avn_home_page_wrap_season_copy strong,
  #topBanner .avn_home_page_wrap_season_copy_title{
    font-size:14px !important;
  }

  #topBanner .avn_home_page_wrap_season_copy span,
  #topBanner .avn_home_page_wrap_season_copy_text{
    font-size:12px !important;
  }

  #topBanner .avn_home_page_wrap_season_right{
    right:10px;
    gap:8px;
  }

  #topBanner .today-close-check{
    font-size:11px;
  }

  #topBanner .avn_home_page_wrap_season_btn{
    height:28px;
    padding:0 11px;
    font-size:11px;
  }
}

