/* ================================
   COMMON
================================ */
.page-wrap.about-page {
    font-family: inherit;
    line-height: 1.7;
}

.text-center {
    text-align: center;
}

.py-120 {
    padding: 120px 0;
}

.mb-40 {
    margin-bottom: 40px;
}

/* CONTAINER 기본 */
.container {
    margin: 0 auto;
    max-width: 1280px;
}

/* ================================
   ABOUT TAB
================================ */
.about-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.about-tab-btn {
    font-size: var(--title);
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 16px;
    position: relative;
    border: 1px solid;
}

.about-tab-btn:hover,
.about-tab-btn.active {
    color: #000;
    background-color: #f7f7f9;
}

.about-tab-btn.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: #000;
    margin: 0 auto;
    width: 100%;
}


/* ================================
   STORY TEXT
================================ */


.story-text {
    max-width: 780px;
    margin: 0 auto;
    font-size: var(--title);
}

.story-text p {
    margin: 26px 0;
}

.story-quote {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 35px;
}

.sec-title {
    margin-bottom: 24px;
}

.sec-subtitle {
    margin-bottom: 40px;
}


/* ================================
   PEOPLE SECTION
================================ */
.yd-people {
    padding: 120px 0 0 0;
}

.yd-person-row {
    display: flex;
    align-items: center;
    gap: 70px;
    margin-bottom: 120px;
}

.yd-person-row.reverse {
    flex-direction: row-reverse;
}

.yd-person-text {
    flex: 1;
}

.yd-person-title {
    font-size: 32px;
    margin-bottom: 12px;
}

.yd-person-sub {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 600;
}

.yd-person-quote {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
}

.yd-person-img {
    flex: 1;
}

.yd-person-img img {
    width: 100%;
    border-radius: 18px;
    display: block;
}

/* ================================
   CONCEPT
================================ */
.about-concept {
    padding: 120px 0;
}

.concept-desc {
    max-width: 840px;
    margin: 0 auto 80px;
    font-size: var(--title);
}

.main-concept-img {
    width: 100%;
    max-width: 1080px;
    margin: 40px auto 80px;
    display: block;
    border-radius: 12px;
}

/* CONCEPT BOX GRID */
.row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.concept-box {
    border: 1px solid #ddd;
    padding: 32px 26px;
    border-radius: 16px;
    background: #fff;
}

.concept-box h4 {
    font-size: 26px;
    margin-bottom: 8px;
    font-weight: 900;
}

.concept-box h5 {
    font-size: var(--title);
    margin-bottom: 16px;
    font-weight: 600;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
    .yd-person-row {
        flex-direction: column;
    }

    .yd-person-row.reverse {
        flex-direction: column;
    }

    .row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .row {
        grid-template-columns: 1fr;
    }

    .about-tabs {
        gap: 18px;
        flex-wrap: wrap;
    }

    .about-tab-btn {
        font-size: var(--body);
    }

    .story-text {
        font-size: var(--body);
    }
}






.journey-wrap { 
    margin: auto;
    padding: 80px 0;
}

.journey-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.journey-hero-time {
    color: #333;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.journey-hero-title {
    color: #333;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.journey-hero-sub {
    color: #333;
    font-size: var(--title);
}

.journey-section {
    padding: 90px 0;
    border-bottom: 1px solid #eee;
}
.journey-section:last-child {
    border-bottom: 0;
}
.journey-grid {
    display: flex;
    gap: 50px;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    margin:0 auto
}

.journey-text {
    flex: 0 0 45%;
    max-width: 500px;
    color: #333;
}


.journey-image {
    flex: 1;
    width: 100%;
    min-width: 0;
    /* 이것이 핵심 */
    overflow-x: hidden;
}

.img-swiper {
    width: 100%;
    max-width: 100%;
    /* ★ 이미지의 최대 너비 제한 */
    overflow: hidden;
    position: relative;
    border-radius: 1rem;
}

.img-swiper .swiper-slide {
    width: 100%;
    height: 450px;
    /* ★ 이미지 높이 고정 (PC용) */
    overflow: hidden;
}

.img-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ★ 화면이 길어져도 사진 비율 유지 */
    display: block;
}





/* 화살표 위치 이미지 중앙 */
.img-swiper .swiper-button-next,
.img-swiper .swiper-button-prev {
    background: transparent;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    opacity: .5;
}

.img-swiper .swiper-button-next:after,
.img-swiper .swiper-button-prev:after {
    font-size: 12px;
}


.img-swiper .swiper-button-prev {
    left: 1.5rem;
}

.img-swiper .swiper-button-next {
    right: 1.5rem;
}

/* 도트 네비게이션 */
.img-swiper .swiper-pagination {
    bottom: 14px !important;
}

.img-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: transparent;
    border: 1px solid #fff
}

.img-swiper .swiper-pagination-bullet-active {
    background: #fff;
}



.j-time {
    font-size: var(--sub);
    margin-bottom: 1rem;
    font-weight: 600;
}

.j-sub {
    font-size: var(--body);
    margin-bottom: 6px;
    color: var(--dd-main);
}

.j-sub-list {
    margin: 0;
    padding: 0;
    list-style: disc;
    margin-left: 18px;
    line-height: 1.6;
    font-weight: 500;
  }


.j-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 14px;
}

.j-body {
    line-height: 1.7;
    font-size: var(--body);
}

@media (max-width: 768px) {

    .journey-grid {
        flex-direction: column;
        gap: 30px;
    }

    .journey-image {
        order: -1;
        /* 이미지 먼저 */
        width: 100%;
    }

    .journey-text {
        width: 100%;
    }

    .j-title {
        font-size: 22px;
    }

    .img-swiper {
        max-width: 100%;
    }

    .img-swiper .swiper-slide {
        height: 250px;
        /* 모바일 최적 높이 */
    }


}

[data-animate="body"] {
    opacity: 0;
    transform: translateY(40px);
    transition: all .9s cubic-bezier(.25, .1, .25, 1);
}

[data-animate="body"].active {
    opacity: 1;
    transform: translateY(0);
}


.section-title {
    text-align: left;
    width: 100%;
    padding-bottom: 1rem;
    border-bottom: 1px solid;
    margin-bottom: 4rem;
}

.hero-section {
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-attachment: fixed;
    font-size: 18px;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.50);
}

.hero-inner {
    position: relative;
    text-align: center;
    color: #fff;
}
.hero-inner p { 
    line-height: 1.6;
}
.hero-top {
    font-size: .85rem;
    letter-spacing: .12em;
    margin-bottom: 12px;
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: 1.35rem;
}

 

.bf-section {
    margin: 140px 0;
}

.bf-section hr {
    margin:4rem 0
}

.bf-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.bf-section .bf-grid + .bf-grid {
    margin-top: 4rem;
}



.bf-section.alt .bf-grid {
    flex-direction: row-reverse;
}

.bf-text {
    flex: 1; 
    line-height: 1.7;
}

.bf-heading {
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 20px;
}

.bf-heading span {
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    margin-top: 4px;
    color:var(--dd-main)
}
.bf-body {
    margin-bottom: 2rem;
}
.bf-body p {
    margin-bottom: 1rem;
    color: var(--dd-body);
}

.bf-feature-title {
    font-size: var(--title);
    font-weight: 700;
    margin-bottom: 8px;
    color:var(--dd-main)
}

.bf-feature {
    font-size: var(--body);
    line-height: 2;
    padding-left: 1.5rem;
}

.bf-feature li {
    list-style: disc;
    color: var(--dd-body);
}

.bf-slide .swiper {
    width: 100% !important;
}

/* ====== FIX: 슬라이드 높이/레이아웃 보장 (Journey 페이지 동일 패치) ====== */
.bf-slide {
    flex: 1; 
    position: relative; 
    overflow: hidden;
    min-width: 0;
}

.bf-slide .swiper-wrapper,
.bf-slide .swiper-slide {
    height: 450px;
}

.bf-slide .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}


.reserve-sec {
    padding: 60px 0;
    text-align: center;
    background: #f7f7f9;

}

.reserve-title {
    font-weight: 600;
    font-size: 26px;
    line-height: 1.4;
}

.reserve-desc {
    text-align: left;
    width: max-content;
    margin: 2rem auto 0 auto;
    line-height: 2;
}

.reserve-sec a {
    margin-top: 2rem;
}


/* 반응형 */
@media(max-width:1023px) {
    .bf-grid {
        flex-direction: column;
    }

    .bf-section.alt .bf-grid {
        flex-direction: column;
    }
}

@media(max-width:767px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .bf-heading {
        font-size: 1.85rem;
    }

    .bf-section {
        padding: 85px 0;
    }
}



.aroma-wrap { 
    margin: auto;
    padding: 80px 0;
}

.aroma-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.aroma-hero-time {
    color: #333;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.aroma-hero-title {
    color: #333;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.aroma-hero-sub {
    color: #333;
    font-size: var(--title);
}

.aroma-section {
    padding: 90px 0;
    border-bottom: 1px solid #eee;
}
.aroma-section:last-child {
    border-bottom: 0;
}
.aroma-grid {
    display: flex;
    gap: 50px;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    margin:0 auto
}

.aroma-text {
    flex: 0 0 45%;
    max-width: 500px;
    color: #333;
}


.aroma-image {
    flex: 1;
    width: 100%;
    min-width: 0;
    /* 이것이 핵심 */
    overflow-x: hidden;
}



.aroma-time {
    font-size: var(--sub);
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--dd-sub);
}

.aroma-sub {
    font-size: var(--body); 
    margin-bottom: 1rem;
}

.aroma-sub-list {
    margin: 0;
    padding: 0;
    list-style: disc;
    margin-left: 18px;
    line-height: 1.6;
    font-weight: 500;
  }
  

.aroma-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 14px;
}

.aroma-body {
    line-height: 1.7;
    font-size: var(--title);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {

    .aroma-grid {
        flex-direction: column;
        gap: 30px;
    }

    .aroma-image {
        order: -1;
        /* 이미지 먼저 */
        width: 100%;
    }

    .aroma-text {
        width: 100%;
    }

    .aroma-title {
        font-size: 22px;
    } 


}


.clean {
 max-height: 550px;
 display: flex;
 margin:120px auto;
}

.clean .title {
    margin-bottom: 1.5rem;

}

.clean .body {

}
.clean .body p {
margin-bottom: 1rem;
}
.clean .left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.clean .right {
    flex:1;
}

.clean .right img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: 1rem;
}



.marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #222;
    color: #fff;
    padding: 4rem 0;
    margin-bottom: 80px;
}
  
  .marquee-inner {
    display: inline-flex;
    white-space: nowrap;
    animation: marquee 50s linear infinite;
  }

  .marquee:hover .marquee-inner {
    animation-play-state: paused;
  }
  

  .crop-box {
    width: 424px;
    padding-right: 2rem;
    max-height: 700px;
    overflow: hidden;
    height: 700px;
}
  
  .crop-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 30%; /* x축%, y축% → 원하는 부분 보이도록 */
  }

 
  
  /* 왼쪽 → 오른쪽으로 흐르게 하고 싶으면 translateX(100%) ~ -100% 로 반대로 */
  @keyframes marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);  /* 복사한 양에 맞게 조절 */
    }
  }

  



.review-sec {
    padding: 80px 0;
    text-align: center;
}
.review-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 1rem;
}
.review-rate {
    font-size: 18px; 
    margin-bottom: 3rem;
}
.review-sec a {
    margin-top: 2.5rem;
}
.blog-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}
.blog-card {
    width: 420px;
    border-radius: 1rem;
    overflow: hidden;
    background: #fafafa;
    border: 1px solid #ddd;
}
.blog-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.blog-body {
    padding: 24px;
    text-align: left;
}
.blog-body h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.blog-body p {
    font-size: 15px;
    line-height: 1.65;
    color: #444;
    margin-bottom: 14px;
}
.blog-more {
    font-weight: 500;
    color: var(--dd-gold);
    font-size: 1rem;
    text-decoration: underline;
}

.review-swiper {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
}
/* 슬라이드 이미지 크기 */
.review-swiper .swiper-slide img {
    width: 100%;
    height: 650px;            /* 섹션 전체 톤이 맞도록 고정 높이 */
    object-fit: cover;        /* 이미지를 꽉 채우면서 자연스럽게 */
    border-radius: 1rem;      /* 부드러운 고급감 */
}

/* 페이지네이션 (도트) */
.review-swiper .swiper-pagination {
    bottom: 16px !important;
}
.review-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #fff;
    opacity: 0.45;
    transition: all .3s ease;
    margin: 0 5px !important;
}
.review-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
    transform: scale(1.25);
}

/* 화살표 버튼 */
.review-swiper .swiper-button-next,
.review-swiper .swiper-button-prev {
    color: #fff;
    font-size: 32px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0,0,0,0.38);        /* 반투명 오버레이 */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .25s ease;
}
.review-swiper .swiper-button-next:hover,
.review-swiper .swiper-button-prev:hover {
    background: rgba(0,0,0,0.65);
}

/* 화살표 아이콘 살짝 미묘하게 줄이기 */
.review-swiper .ri-arrow-right-s-line,
.review-swiper .ri-arrow-left-s-line {
    font-size: 22px;
}

/* 위치 조절 */
.review-swiper .swiper-button-next {
    right: 16px;
}
.review-swiper .swiper-button-prev {
    left: 16px;
}

 

/* 모바일 반응형 */
@media (max-width: 768px) {
    .img-swiper .swiper-slide img {
        height: 340px;  /* 모바일 화면에서 높이 축소 */
        border-radius: 12px;
    }
    .img-swiper .swiper-button-next,
    .img-swiper .swiper-button-prev {
        width: 36px;
        height: 36px;
    }
    .img-swiper .swiper-button-next {
        right: 10px;
    }
    .img-swiper .swiper-button-prev {
        left: 10px;
    }
}



.tour-grid-sec {
    margin: 80px 0;
}

.tour-sec {
    margin: 80px 0;
}
.tour-map img {
    width: 100%; 
}

/* 카드 형태 */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
    margin-top: 40px;
}

.tour-card {
    border: 1px solid #ddd;
    padding: 26px 24px;
    border-radius: 14px;
    background: #fafafa;
    transition: all .25s ease;
}
.tour-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}
.tour-card p {
    font-size: 15px;
    line-height: 1.65;
    color: #555;
}

/* hover 효과 */
.tour-card:hover {
    background: #fff;
    border-color: #111;
    transform: translateY(-4px);
}

/* 제목 */
.tour-grid-sec .section-title {
    text-align: center;
    margin-bottom: 20px;
}
.tour-grid-sec .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 6px;
}
.tour-grid-sec .section-title p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.mt40 { margin-top: 40px; }

/* 모바일 */
@media (max-width: 768px) {
    .tour-card { padding: 20px; }
    .tour-card h3 { font-size: 18px; }
    .section-title h2 { font-size: 26px; }
}



.near-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 26px;
    margin-top: 40px;
}

.near-card {
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    transition: all .25s ease;
}

.near-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.near-card p {
    font-size: 15px;
    line-height: 1.65;
    color: #555;
    margin-bottom: 18px;
}

.near-card:hover {
    transform: translateY(-5px);
    border-color: #222;
}

.btn-view {
    display: inline-block;
    border: 1px solid #222;
    padding: 10px 22px;
    font-size: 14px;
    border-radius: 8px;
    transition: .25s;
}

.near-card:hover .btn-view {
    background:#222;
    color:#fff;
}


.guide-sec {
    margin:80px auto
}

.guide-item { border-bottom: 1px solid #e5e5e5; }

.guide-title {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 22px;
    font-weight: 700;
    padding: 22px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guide-title .icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-right: 2px solid #111;
    border-bottom: 2px solid #111;
    transform: rotate(45deg); /* 기본 ↓ */
    transition: 0.3s ease;
}

/* 닫히는 상태일 때 아이콘 뒤집기 */
.guide-title.active .icon {
    transform: rotate(-135deg); /* ↑ */
}

.guide-content {
    max-height: none; /* 기본 열림 */
    overflow: hidden;
    transition: max-height .35s ease;
    padding-bottom: 25px;
}
.guide-content.closed {
    max-height: 0;
    padding-bottom: 0;
}

.guide-content ul { margin: 0; padding: 0; }
.guide-content li {
    list-style: none;
    position: relative;
    padding-left: 14px;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.7;
}
.guide-content li::before {
    content: "•";
    position: absolute;
    left: 0;
}



.refund-sec {
    padding: 90px 0;
    font-family: inherit;
}

.refund-title {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.refund-desc {
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 50px;
}

.refund-table-wrap {
    overflow-x: auto;
}

.refund-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 17px;
    min-width: 700px;
}

.refund-table thead th {
    border-bottom: 2px solid #111;
    font-weight: 700;
    padding: 18px 0;
    text-align: center;
}

.refund-table tbody .bg td {
    background-color: #f7f7f9;
}

.refund-table tbody td {
    border-bottom: 1px solid #e7e7e7;
    padding: 18px 0;
    text-align: center;
}

.refund-table tbody tr:last-child td {
    border-bottom: 0;
}



/* ==============================
   공통 모바일 반응형
============================== */
@media (max-width: 768px) {

    /* 섹션 기본 패딩 축소 */
    .info-sec,
    .refund-sec {
        padding: 60px 0;
    }

    /* 제목 크기 조정 */
    .info-title,
    .refund-title {
        font-size: 26px;
        margin-bottom: 18px;
    }

    /* 설명 문단 정렬 수정 */
    .info-desc,
    .refund-desc {
        font-size: 15px;
        line-height: 1.6;
        padding: 0 10px;
    }

    /* ------------------------------
       아코디언 스타일 (이용안내)
    --------------------------------*/
    .info-accordion {
        border-radius: 0;
        margin: 0 10px;
    }

    .info-accordion-item {
        padding: 15px 12px;
    }

    .info-accordion-header {
        font-size: 17px;
    }

    .info-accordion-icon {
        font-size: 18px;
    }

    .info-accordion-body {
        font-size: 15px;
        padding: 10px 4px 18px;
    }

    .info-accordion-body ul li {
        margin-bottom: 6px;
        line-height: 1.55;
    }

    /* 리스트 좌우 여백 */
    .info-accordion-body ul {
        padding-left: 16px;
    }

    /* ------------------------------
       환불 규정 테이블
    --------------------------------*/
    .refund-table {
        font-size: 15px;
        min-width: 600px;
    }

    .refund-table-wrap {
        overflow-x: auto;
        padding: 0 10px;
    }

    .refund-table thead th,
    .refund-table tbody td {
        padding: 12px 6px;
    }
}

