/* 서브 비주얼 */
.sub-visual {
    height: 300px;
    background: url('../images/main.jpg') no-repeat center;
    background-size: cover;
    position: relative;
    margin-top: 80px;
}

.sub-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.sub-visual-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.sub-visual-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.sub-visual-content p {
    font-size: 18px;
}

/* 서브 컨텐츠 */
.sub-content {
    padding: 100px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 브랜드 소개 */
.brand-intro {
    display: flex;
    gap: 50px;
    margin-bottom: 100px;
}

.brand-text {
    flex: 1;
}

.brand-text h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.brand-text .sub-title {
    font-size: 24px;
    color: #666;
    margin-bottom: 30px;
}

.brand-text .desc {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.brand-image {
    flex: 1;
}

.brand-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* 브랜드 가치 */
.brand-values {
    text-align: center;
}

.brand-values h3 {
    font-size: 36px;
    margin-bottom: 50px;
}

.value-list {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.value-list li {
    flex: 1;
    max-width: 300px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.3s;
}

.value-list li:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.value-list h4 {
    font-size: 24px;
    margin-bottom: 15px;
}

.value-list p {
    color: #666;
    line-height: 1.6;
}

/* 서브 탭 메뉴 */
.sub-tab {
    background: #f9f9f9;
    border-bottom: 1px solid #ddd;
}

.sub-tab .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sub-tab ul {
    display: flex;
    justify-content: center;
}

.sub-tab li {
    flex: 1;
    max-width: 200px;
}

.sub-tab a {
    display: block;
    padding: 20px 0;
    text-align: center;
    color: #666;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
}

.sub-tab li.active a {
    color: #000;
    font-weight: 700;
    border-bottom: 3px solid #000;
}

.sub-tab a:hover {
    color: #000;
}
.xi-new{width: 100%;padding: 100px 0;background: #eff0f3;text-align: center;}
.xi-new-tit{}
.xi-new-tit h3{margin-bottom: 30px;font-size: 32px;line-height: 1.2;letter-spacing: -0.03em;}
.xi-new-tit p{margin-bottom: 20px;font-size: 18px;letter-spacing: -0.02em;}

/* 오시는길 */
.location-box{
    display: flex;
    justify-content: space-around;
    border: 1px solid #e9e9e9;
    background: #f5f5f5;
}
.location-info{
    padding-top: 50px;
    width: 50%;
}
.location-tit{margin-bottom: 20px;}
.location-tit h3{font-size: 22px;color: #122d43;margin-bottom: 20px;}
.location-tit h5{font-size: 16px;}
.location-img{max-width: 50%;}
.location-btn{background: #122d43;padding: 6px 24px;color: #fff;display: inline-block;font-size: 15px;}
.location-btn i{color: #ffffffdc;margin-right: 4px;}


/* 반응형 */
@media (max-width: 1024px) {
    .brand-intro {
        flex-direction: column;
    }
    
    .value-list {
        flex-direction: column;
        align-items: center;
    }
    
    .value-list li {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .brand-xi .brand-value__img img{height: 200px !important;}
    
    .sub-visual {
        height: 200px;
    }
    
    .sub-visual-content h2 {
        font-size: 32px;
    }
    
    .sub-content {
        padding: 50px 0;
    }
    
    .brand-text h3,
    .brand-values h3 {
        font-size: 28px;
    }

    .sub-tab a {
        padding: 15px 0;
        font-size: 16px;
    }
    .identity-text h3{font-size: 28px !important;}
    .brand-title h3{font-size: 28px !important;}
    .xi-new{padding: 50px 18px;}
    .xi-new-tit h3{font-size: 24px;}
    
}

/* 방문예약 신청 폼 */
.visit-form {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 40px 30px 30px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.visit-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    color: #333;
}
.visit-desc {
    text-align: center;
    color: #888;
    margin-bottom: 30px;
}
.privacy-box {
    margin-bottom: 25px;
}
.privacy-title {
    color: #122d43;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}
.privacy-textarea textarea {
    width: 100%;
    height: 120px;
    resize: none;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 12px;
    font-size: 15px;
    color: #444;
    background: #fafafa;
    margin-bottom: 10px;
}
.privacy-agree {
    text-align: right;
    margin-bottom: 5px;
}
.privacy-agree label {
    margin-left: 10px;
    font-size: 16px;
    color: #122d43;
    font-weight: 500;
}
.privacy-agree input[type="radio"] {
    margin-right: 3px;
}
.privacy-required {
    color: #122d43;
    font-size: 15px;
    margin-bottom: 10px;
    text-align: left;
}
.visit-inputs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.input-group label {
    font-size: 16px;
    margin-bottom: 6px;
    color: #333;
}
.input-group input {
    padding: 12px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}
.visit-notice {
    margin-bottom: 25px;
    color: #888;
    font-size: 14px;
    line-height: 1.7;
}
.visit-btn {
    width: 100%;
    background: #122d43;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 18px 0;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
}
.visit-btn span {
    font-size: 22px;
    vertical-align: middle;
    margin-left: 8px;
}
.visit-btn:hover {
    background: #1c405e;
}
@media (max-width: 768px) {
    .visit-form {
        padding: 20px 8px 18px 8px;
    }
    .visit-title {
        font-size: 26px;
    }
    .visit-inputs {
        flex-direction: column;
        gap: 10px;
    }
    .visit-btn {
        font-size: 16px;
        padding: 13px 0;
    }
}

/* 브랜드 리뉴얼 콘텐츠 */
.brand-renewal .brand-section {
    margin-bottom: 100px;
}
.brand-renewal .identity {
    display: flex;
    align-items: center;
    gap: 60px;
}
.identity-text {
    flex: 1;
    margin-bottom: 20px;
}
.identity-text h3 {
    font-size: 42px;
    color: #122d43;
    margin-bottom: 18px;
}
.identity-text p{font-size: 20px;}
.brand-renewal .identity-desc {
    font-size: 20px;
    color: #222;
    line-height: 1.7;
}
.brand-renewal .identity-img {
    flex: 1;
    text-align: right;
}
.brand-renewal .identity-img img {
    width: 320px;
    border-radius: 8px;
}

.brand-renewal .exp-insp {
    text-align: left;
    position: relative;
    margin-bottom: 80px;
}
.brand-renewal .exp-title {
    font-size: 54px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -2px;
}
.brand-renewal .exp-title .blue {
    color: #009fe3;
}
.brand-renewal .exp-desc {
    font-size: 18px;
    color: #222;
    margin-bottom: 30px;
}
.brand-renewal .exp-illust {
    position: absolute;
    right: 0;
    bottom: -30px;
    width: 220px;
    opacity: 0.15;
}
.brand-renewal .exp-illust img {
    width: 100%;
}

.brand-renewal .core-visual {
    position: relative;
    margin-bottom: 80px;
}
.brand-renewal .core-img {
    width: 100%;
    border-radius: 10px;
    filter: grayscale(1);
}
.brand-renewal .core-title {
    position: absolute;
    left: 40px;
    bottom: 40px;
    font-size: 60px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 4px 24px rgba(0,0,0,0.4);
    line-height: 1.1;
}

.brand-renewal .core-value {
    display: flex;
    align-items: center;
    gap: 60px;
}
.brand-renewal .core-text {
    flex: 1;
}
.brand-renewal .core-text h3 {
    font-size: 32px;
    color: #122d43;
    margin-bottom: 18px;
}
.brand-renewal .core-desc {
    font-size: 18px;
    color: #222;
    line-height: 1.7;
}
.brand-renewal .core-img2 {
    flex: 1;
    text-align: right;
}
.brand-renewal .core-img2 img {
    width: 320px;
    border-radius: 8px;
}

.brand-renewal .exp-insp-detail {
    margin-top: 100px;
    position: relative;
}
.brand-renewal .exp-insp-detail .exp-title {
    font-size: 44px;
    margin-bottom: 40px;
}
.brand-renewal .exp-detail-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 30px;
    margin-bottom: 40px;
}
.brand-renewal .exp-detail-item {
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 260px;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 30px 20px 20px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.brand-renewal .exp-detail-item h4 {
    font-size: 20px;
    color: #122d43;
    margin-bottom: 10px;
}
.brand-renewal .exp-detail-item p {
    font-size: 15px;
    color: #222;
    margin-bottom: 18px;
}
.brand-renewal .exp-detail-item img {
    width: 100%;
    border-radius: 6px;
}
.brand-renewal .exp-illust.right {
    position: absolute;
    right: 0;
    bottom: -30px;
    width: 180px;
    opacity: 0.12;
}

.brand-renewal .symbol {
    text-align: center;
    margin: 120px 0 80px 0;
}
.brand-renewal .symbol-title {
    font-size: 20px;
    color: #122d43;
    margin-bottom: 20px;
}
.brand-renewal .symbol-imgs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}
.brand-renewal .symbol-imgs img {
    width: 120px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 18px 0;
}

.brand-renewal .film {
    text-align: center;
    margin-bottom: 60px;
}
.brand-renewal .film-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}
.brand-renewal .film-thumb img {
    width: 220px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}
.brand-renewal .film-thumb img:hover {
    transform: scale(1.04);
}

@media (max-width: 1024px) {
    .brand-renewal .identity,
    .brand-renewal .core-value {
        flex-direction: column;
        gap: 30px;
    }
    .brand-renewal .identity-img img,
    .brand-renewal .core-img2 img {
        width: 100%;
        max-width: 320px;
    }
    .brand-renewal .exp-detail-list {
        flex-direction: column;
        align-items: center;
    }
    .brand-renewal .exp-detail-item {
        max-width: 100%;
        width: 100%;
    }
    .brand-renewal .symbol-imgs {
        flex-direction: column;
        gap: 20px;
    }
    .brand-renewal .film-list {
        flex-direction: column;
        gap: 20px;
    }
    .brand-renewal .film-thumb img {
        width: 100%;
        max-width: 320px;
    }
}
@media (max-width: 768px) {
    .brand-renewal .brand-section {
        margin-bottom: 50px;
    }
    .brand-renewal .exp-title {
        font-size: 28px;
    }
    .brand-renewal .core-title {
        font-size: 32px;
        left: 16px;
        bottom: 16px;
    }
    .brand-renewal .exp-illust,
    .brand-renewal .exp-illust.right {
        display: none;
    }
    
}

/* 브랜드 필름(섹션_05) */
.section_05 {
    margin: 100px 0 0 0;
    background: #fff;
}
.section_05 .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
}
.sec_05_tit {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #122d43;
}
.sec_05_tit a {
    color: #122d43;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.sec_05_tit .icon_arrow_right_top {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url('/Content/static/images/icon_arrow_right_top.svg') no-repeat center/contain;
    vertical-align: middle;
}
.section_05 .desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}
.mobile_show {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
    justify-content: center;
}
.mobile_show li {
    flex: 1 1 0;
    max-width: 180px;
}
.mobile_show img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}
.mobile_show img:hover {
    transform: scale(1.04);
}
.slide_wrap {
    position: relative;
    margin-top: 20px;
}
.video_slide {
    width: 100%;
    padding-bottom: 40px;
}
.video_slide .swiper-wrapper {
    display: flex;
    align-items: stretch;
}
.video_slide .swiper-slide {
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
    position: relative;
    width: 340px;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.video_slide .swiper-slide:last-child {
    margin-right: 0;
}
.video_slide .bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 18px;
    z-index: 2;
}
.video_slide .txt {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}
.video_slide img {
    width: 100%;
    display: block;
    border-radius: 0 0 10px 10px;
}
.swiper-button-prev, .swiper-button-next {
    position: absolute;
    top: 50%;
    width: 36px;
    height: 36px;
    margin-top: -18px;
    z-index: 10;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    border: none;
}
.swiper-button-prev {
    left: -50px;
}
.swiper-button-next {
    right: -50px;
}
.swiper-pagination {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    text-align: center;
    z-index: 10;
}
.swiper-pagination-bullet {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 4px;
    cursor: pointer;
}
.swiper-pagination-bullet-active {
    background: #122d43;
}
@media (max-width: 1024px) {
    .section_05 .inner {
        padding: 0 10px 40px 10px;
    }
    .video_slide .swiper-slide {
        width: 240px;
    }
    .swiper-button-prev {
        left: -30px;
    }
    .swiper-button-next {
        right: -30px;
    }
}
@media (max-width: 768px) {
    .section_05 {
        margin: 60px 0 0 0;
    }
    .sec_05_tit {
        font-size: 22px;
    }
    .mobile_show {
        gap: 8px;
    }
    .video_slide .swiper-slide {
        width: 160px;
    }
    .swiper-button-prev, .swiper-button-next {
        display: none;
    }
}

/* 브랜드 소개 리뉴얼 (brand-xi) */
.brand-xi .brand-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 80px;
}
.brand-xi .brand-block.center {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 80px;
}

.brand-title h3{
    font-size: 42px;
    color: #122d43;
    margin-bottom: 18px;
    font-weight: 700;
}
.brand-xi .brand-title p{font-size: 22px;}
.brand-xi .brand-desc {
    font-size: 18px;
    color: #222;
    line-height: 1.7;
}
.brand-xi .brand-block__left,
.brand-xi .brand-block__right {
    flex: 1;
}
.brand-xi .brand-block__right img,
.brand-xi .brand-block__left img {
    width: 100%;
    max-width: 340px;
}
.brand-xi .brand-main-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -2px;
}
.brand-xi .brand-main-title .blue {
    color: #122d43;
}
.brand-xi .brand-main-desc {
    font-size: 20px;
    color: #222;
    margin-bottom: 10px;
}
.brand-xi .brand-block__img-full {
    position: relative;
    width: 100%;
}
.brand-xi .brand-block__img-full img {
    width: 100%;
}
.brand-xi .brand-block__img-text {
    position: absolute;
    left: 40px;
    bottom: 40px;
    font-size: 54px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 4px 24px rgba(0,0,0,0.4);
    line-height: 1.1;
}

/* 4가지 핵심가치 */
.brand-xi .brand-values-wrap {
    margin: 100px 0 80px 0;
}
.brand-xi .brand-values-title {
    font-size: 42px;
    font-weight: 900;
    color: #292b2e;
    margin-bottom: 40px;
    text-align: center;
}
.brand-xi .brand-values-title .blue {
    color: #122d43;
}
.brand-xi .brand-values-list {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}
.brand-xi .brand-value {
    width: 48%;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 30px 20px 20px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    margin-bottom: 20px;
}
.brand-xi .brand-value__img img {
    width: 100%;
    height: 300px;
    object-fit: cover !important;
    margin-bottom: 16px;
}
.brand-xi .brand-value__title {
    font-size: 28px;
    line-height: 1;
    color: #232425;
    margin-bottom: 10px;
    font-weight: 700;
}
.brand-xi .brand-value__desc {
    font-size: 18px;
    color: #222;
    line-height: 1.6;
}

/* 심볼 */
.brand-xi .symbol {
    align-items: center;
}
.brand-xi .brand-symbol-wrap {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 30px;
}
.brand-xi .brand-symbol {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.brand-xi .brand-symbol img {
    max-width: 500px;
    width: 100%;
    background: #fff;
    padding: 18px 0;
    margin-bottom: 10px;
}
.brand-xi .brand-symbol__label {
    font-size: 18px;
    color: #122d43;
    font-weight: 700;
}

/* 브랜드 필름 */
.brand-xi .film {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}
.brand-xi .brand-film-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #122d43;
}
.brand-xi .brand-film-title a {
    color: #122d43;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.brand-xi .brand-film-title .icon_arrow_right_top {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url('/Content/static/images/icon_arrow_right_top.svg') no-repeat center/contain;
    vertical-align: middle;
}
.brand-xi .brand-film-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}
.brand-xi .brand-film-list {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.brand-xi .brand-film-thumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 20px;
    text-decoration: none;
    color: #222;
    transition: box-shadow 0.2s;
    overflow: hidden;
}
.brand-xi .brand-film-thumb img {
    width: 100%;
    border-radius: 10px 10px 0 0;
    display: block;
}
.brand-xi .brand-film-thumb span {
    display: block;
    padding: 12px 8px;
    font-size: 15px;
    color: #122d43;
    font-weight: 600;
    background: #f9f9f9;
    width: 100%;
    text-align: center;
}
.brand-xi .brand-film-thumb:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

@media (max-width: 1024px) {
    .brand-xi .brand-block {
        flex-direction: column;
        gap: 30px;
    }
    .brand-xi .brand-block__right img,
    .brand-xi .brand-block__left img {
        max-width: 100%;
    }
    .brand-xi .brand-values-list {
        flex-direction: column;
        align-items: center;
    }
    .brand-xi .brand-value {
        max-width: 100%;
        width: 100%;
    }
    .brand-xi .brand-symbol-wrap {
        flex-direction: column;
        gap: 20px;
    }
    .brand-xi .brand-film-list {
        flex-direction: column;
        gap: 20px;
    }
    .brand-xi .brand-film-thumb {
        width: 100%;
        max-width: 320px;
    }
}
@media (max-width: 768px) {
    .brand-xi .brand-block {
        margin-bottom: 40px;
    }
    .brand-xi .brand-main-title {
        font-size: 28px;
    }
    .brand-xi .brand-block__img-text {
        font-size: 28px;
        left: 16px;
        bottom: 16px;
    }
    .brand-xi .brand-values-title {
        font-size: 22px;
    }
    .brand-xi .brand-film-title {
        font-size: 18px;
    }
} 