* {
    font-family: 'Paperlogy', 'Pretendard', sans-serif;
    margin: 0;
    padding: 0;
}

html {
    font-size: 18px;
}

@media (min-width: 1921px) {
    html {
        font-size: 20px;
    }
}

@media (max-width: 1280px) {
    html {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 440px) {
    html {
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    html {
        font-size: 11px;
    }
}


body {
    letter-spacing: -1px;
    color: #2f251d;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
    border: 0;
    vertical-align: bottom;
}

/*자동완성 효과 끄기*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-transition: background-color 9999s ease-out;
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
    /*배경색 지정*/
    -webkit-text-fill-color: #333 !important;
    /*글자색 지정*/
}

/*포커스 아웃라인 끄기*/
input:focus {
    outline: none;
}

/* textarea 아웃라인 끄기 */
textarea:focus {
    outline: none;
}

span {
    font-weight: unset;
}



.red {
    color: red;
}

.point_o {
    color: #ff6f18;
}

.point_y {
    color: #fbba33;
}

.point_b {
    color: #2f251d;
}

.enddot {
    position: relative;
    display: inline-block;
    line-height: 1;
    z-index: 1;
}

.enddot::after {
    content: "";
    position: absolute;

    /* 위치 조정 핵심 */
    top: -0.15em;
    /* 위로 살짝 */
    right: -0.15em;
    /* 글자 끝 바깥으로 */

    width: 0.33em;
    height: 0.33em;
    border-radius: 50%;
    background: #ffd15a;

    z-index: -1;
}

.pt_dot {
    display: inline-block;
    color: #ff6f18;
    font-weight: 800;
}



/* 글자 단위 */
.pt_char {
    position: relative;
    display: inline-block;
}

/* 글자 위 도트 */
.pt_char::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -14px;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #ff6f18;
    border-radius: 50%;

    animation: dotBlink 1.5s step-end infinite;
}

@keyframes dotBlink {
    0% {
        opacity: 1;
    }

    13% {
        opacity: 1;
    }


    14% {
        opacity: 0;
    }

    27% {
        opacity: 0;
    }

    28% {
        opacity: 1;
    }

    41% {
        opacity: 1;
    }

    42% {
        opacity: 0;
    }

    55% {
        opacity: 0;
    }

    56% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    91% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

h1 {
    font-weight: 800;
    font-size: 3.33rem;
    line-height: 1.2;
}

.font24 {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.2;
}

.font34 {
    font-size: 1.89rem;
    font-weight: 500;
    line-height: 1.2;
}

.font44 {
    font-size: 2.44rem;
    font-weight: 500;
    line-height: 1.2;
}

.font60 {
    font-size: 3.33rem;
    font-weight: 800;
    line-height: 1.1;
}

.font60+.font34 {
    padding-top: 20px;
}


.highlightFill {
    display: inline-flex;
    align-items: center;
    /* 글자를 박스 중앙에 */
    line-height: 1;
    padding: .08em .15em;
    position: relative;
    z-index: 1;
    overflow: hidden;
    --d: 0s;
}

.highlightFill::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 0%;
    z-index: -1;
    transition: width 1s ease;
    transition-delay: var(--d);
}

/* 재생 */
.highlightFill.is-active::after {
    width: 100%;
}

/* 리셋(다시 재생 위해 필요) */
.highlightFill.is-reset::after {
    width: 0%;
    transition-delay: 0s;
    /* 리셋은 바로 */
}

.fill-yellow::after {
    background-color: #fbba33;
}

.fill-orange::after {
    background-color: #ff6f18;
}

.fill-brown::after {
    background-color: #2f251d;
}

.fill-white::after {
    background-color: #fff;
}

.container {
    margin: 0 auto;
}

.pd80 {
    padding: 100px 0;
}


@media (max-width: 576px) {
    .pd80 {
        padding: 50px 0;
    }
}

/*스와이프 공통 메인,메뉴,리뷰*/
.flowSwiper {
    width: 100%;
    overflow: hidden;
}

.flowSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.flowSwiper img {
    width: 100%;
    height: auto;
    display: block;
}

.flowSwiper .swiper-slide {
    overflow: hidden;
}

.flowSwiper.size-300 .swiper-slide {
    width: 300px;
    flex: 0 0 300px;
}

.flowSwiper.size-340 .swiper-slide {
    width: 340px;
    flex: 0 0 340px;
}

.flowSwiper.size-440 .swiper-slide {
    width: 440px;
    flex: 0 0 440px;
}

@media (max-width: 576px) {
    .flowSwiper.size-300 .swiper-slide {
        width: 200px;
        flex: 0 0 200px;
    }

    .flowSwiper.size-340 .swiper-slide {
        width: 240px;
        flex: 0 0 240px;
    }

    .flowSwiper.size-440 .swiper-slide {
        width: 340px;
        flex: 0 0 340px;
    }

}

header {
    background-color: #fbba33;
    height: 80px;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9;
}

header .logo {
    width: 60px;
}

header .btn {
    background-color: #2f251d;
    color: #fbba33;
    border-radius: 5px;
    padding: 10px;
    font-weight: 600;
}

header .btn.pc {
    display: block;
}

header .btn.mo {
    display: none;
}

header ul.menu {
    display: flex;
    align-items: center;
    width: 95%;
    max-width: 800px;
}

header ul li {
    width: 100%;
    text-align: center;
}

header ul li a {
    color: #fff;
    font-weight: 500;
}

header ul li a.on {
    color: #2f251d;
}

@media screen and (max-width:1280px) {
    header {
        height: 80px;
        padding: 0 10px;
    }
}

@media screen and (max-width:1000px) {
    header ul.menu {
        display: flex;
        align-items: center;
        width: 95%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    header ul.menu {
        display: none;
    }

}

@media (max-width: 576px) {
    header .btn.pc {
        display: none;
    }

    header .btn.mo {
        display: block
    }

}

#main {
    height: 880px;
    margin-top: 80px;
    background-image: url(../images/main_bg.jpg);
    background-position: center top;
    background-size: 100%;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#main h1 {
    margin-bottom: 15px;
}

#main .font34.highlightFill {
    color: #fff;
}


#main .bilge_wrap {
    margin-top: 50px;
}

/* flowSwiper  전용 */
#main .bilge_wrap {
    width: 100%;
    overflow: hidden;
}



#main .bilge_wrap .bilge {
    position: relative;
}

#main .bilge_wrap .bilge .cont {
    position: absolute;
    bottom: 40px;
    width: 100%;
    padding: 0 10px;
}

#main .bilge_wrap .bilge .top {
    border-radius: 50%;
    width: 95px;
    aspect-ratio: 1;
    background-color: #fbba33;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 auto 20px auto;
}

#main .bilge_wrap .bilge .store_name {
    font-size: 20px;
    font-weight: 500;
}

#main .bilge_wrap .bilge .store_name span {
    font-weight: 100;
}

#main .bilge_wrap .bilge .money {
    font-weight: 700;
    font-size: 38px;
    padding-top: 10px;
}

#main .last_date {
    padding-top: 40px
}

@media (max-width: 768px) {
    #main {
        height: 100%;
    }

}

@media (max-width: 576px) {

    #main {
        height: 580px;
    }


    #main .bilge_wrap .bilge .cont {
        bottom: 30px;
    }

    #main .bilge_wrap .bilge .top {
        width: 65px;
        margin: 0 auto 10px auto;
    }

    #main .bilge_wrap .bilge .store_name {
        font-size: 15px;
    }

    #main .bilge_wrap .bilge .money {
        font-size: 24px;
    }


}

#sec1 {
    text-align: center;
}

#sec1 .sectit .highlightFill {
    color: #fff;
}

#sec1 .reason_wrap {
    overflow: hidden;
    position: relative;
    margin-top: 80px;
}

#sec1 .reason_wrap .line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100vw;
    height: 2px;
    background: #ff6f18;
    transform: translateY(-50%);
    z-index: 0;
}

#sec1 .circle_wrap {
    width: 98%;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    gap: 50px;
    z-index: 1;
}

#sec1 .circle {
    width: 220px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 2px solid #ff6f18;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all 0.4s ease;
    font-size: 1.89rem;
}

#sec1 .circle .title {
    color: #ff6f18;
}

#sec1 .circle .desc {
    margin-top: 6px;
}

/* 활성화 상태 */
#sec1 .circle.active {
    background: #ff6f18;
    color: #fff;
}

#sec1 .circle.active .title {
    color: #fff;
}

#sec1 .circle.active .desc {
    color: #2f251d;
}

@media (max-width: 768px) {
    #sec1 .circle_wrap {
        gap: 15px;
    }

    #sec1 .reason_wrap {
        margin-top: 40px;
    }
}

@media (max-width: 440px) {
    #sec1 .circle_wrap {
        gap: 5px;
    }
}


#sec2 {
    background: linear-gradient(90deg,
            #ff7a1a 0% 33.333%,
            #2f251d 33.333% 66.666%,
            #eb300f 66.666% 100%);
}

#sec2.pd80 {
    padding: 60px 0
}


#sec2 .container {
    /*max-width: 800px;*/
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
    gap: 0;
    align-items: center;
}

#sec2 a {
    color: #fff;
}

#sec2 img {
    width: 275px;
    transition: transform 1.2s ease;
    /* 속도/감속은 취향 */
    transform-origin: 50% 50%;
}

#sec2 .tit {
    font-size: 3.33rem;
    font-weight: 700;
    margin-bottom: 20px;
}

#sec2 p {
    font-size: 1.33rem;
    line-height: 1.2;
}

#sec2 .btnbox {
    background-color: #fff;
    border-radius: 5px;
    width: 120px;
    height: 45px;
    line-height: 45px;
    font-weight: 600;
    color: #2f251d;
    margin: 30px auto;
}


#sec2 a.newtab:hover img,
#sec2 a.changetab:hover img,
#sec2 a.transfer:hover img {
    transform: rotate(1080deg);
}


#sec2 a.newtab:hover .btnbox,
#sec2 a.changetab:hover .btnbox,
#sec2 a.transfer:hover .btnbox {
    background-color: #fbba33;
    color: #2f251d;
}

@media (max-width: 1000px) {
    #sec2 p {
        font-size: 1rem;
        line-height: 1.2;
    }

    #sec2 img {
        width: 180px;
    }
}

@media (max-width: 640px) {
    #sec2 {
        background: none;
    }

    #sec2.pd80 {
        padding: 0;
    }

    #sec2 .container {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    #sec2 a {
        display: grid;
        grid-template-columns: 1fr 120px;
        justify-items: start;
        padding: 30px 20px;
        align-items: center;
        text-align: left;
    }

    #sec2 a:nth-child(1) {
        background-color: #ff7a1a;
    }

    #sec2 a:nth-child(2) {
        background-color: #2b2420;
    }

    #sec2 a:nth-child(3) {
        background-color: #eb300f;
    }


    #sec2 .tit {
        margin-bottom: 0;
        grid-column: 1 / span 1;
        grid-row: 1 / span 1;
    }

    #sec2 img {
        width: 120px;
        grid-column: 2 / span 1;
        grid-row: 1 / span 3;
    }

    #sec2 p {
        padding: 10px 0;
        font-size: 1.33rem;
    }

    #sec2 .btnbox {
        height: 40px;
        line-height: 40px;
        margin: 0;
        text-align: center;
    }
}


#sec3 {
    text-align: center;
}

#sec3 .subtit {
    margin-bottom: 40px;
}

#sec3 .season {
    margin: 80px 0;
}

#sec3 .swiper-slide img {
    background-color: #f6f0eb;
    aspect-ratio: 1;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 15px;
}

#sec3 .swiper-slide span {
    font-size: 18px;
}

@media (max-width: 576px) {
    #sec3 .sectit .font60 span {
        display: block
    }
}

#sec4 {
    background: #fff9ee;
    display: flex;
    align-items: center;
    gap: 0;
    /* 원하면 gap 줄 수도 있음 */
    overflow-x: clip;
}

@supports not (overflow: clip) {
    #sec4 {
        overflow-x: hidden;
    }
}

#sec4 .left {
    flex: 0 0 600px;
    padding: 0 0;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
}

#sec4 .left>* {
    width: 100%;
    max-width: 520px;
    /* (예시) 기존 왼쪽 타이포 폭 느낌 유지하고 싶으면 */
}

/* LEFT */
#sec4 .left .font60 {
    margin-top: 10px;
    text-align: left;
}


#sec4 .bullets {
    margin-top: 50px;
}

#sec4 .bullets li {
    display: flex;
    gap: 5px;
}

#sec4 .bullets li i {
    font-size: 1.56rem;
    padding-top: 0px;
}

#sec4 .bullets li p {
    font-size: 1.56rem;
    line-height: 1.2;
}

#sec4 .bullets li b {
    padding-bottom: 2px;
    display: block;
}

#sec4 .bullets li+li {
    padding-top: 20px;
}

#sec4 .right {
    flex: 1 1 auto;
    min-width: 0;
    /* Swiper/overflow 계산 깨짐 방지 필수 */
    padding-right: 40px;
    /* 우측 끝 여백 (원하면) */
}

/* swiper는 right 안에서만 */
#sec4 .sec4Swiper {
    width: 100%;
    padding-bottom: 22px;
}

#sec4 .sec4Swiper .swiper-slide {
    width: auto !important;
}

#sec4 .card {
    width: 340px;
    aspect-ratio: 19 / 25;
    border-radius: 20px;
    overflow: hidden;
    background: #eee;
}

#sec4 .card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 50% 0%;
}

#sec4 .swiper-scrollbar {
    display: block !important;
    z-index: 1;
}

/* scrollbar도 right 기준 */
#sec4 .sec4Scrollbar {
    position: relative;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;

    /* 너가 원하는 디자인값 */
    height: 6px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .18);
}

/* 드래그 바 강제 표시 */
#sec4 .sec4Scrollbar .swiper-scrollbar-drag {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;

    height: 100%;
    border-radius: 999px;
    background: #ff7a1a;
}

@media (min-width: 1921px) {
    #sec4 .left {
        flex-basis: 880px;
        /* 또는 900px */
    }
}

/* responsive */
@media (max-width: 1280px) {
    #sec4 .left>* {
        width: 100%;
        max-width: 480px;
    }

    #sec4 .left {
        flex: 0 0 500px;
    }

    #sec4 .card {
        width: 340px;
    }
}

@media (max-width: 980px) {
    #sec4 {
        display: flex;
        gap: 30px;
        overflow-x: clip;
        flex-direction: column;
        align-items: flex-start;
    }

    #sec4 .left>* {
        width: 100%;
        max-width: 100%;
    }

    #sec4 .left {
        flex: none;
        padding: 0 30px;
    }

    #sec4 .bullets {
        margin-top: 20px;
    }

    /* LEFT */
    #sec4 .left .font60 {
        margin-top: 10px;
    }

    #sec4 .bullets li p {
        font-size: 1.56rem;
        line-height: 1.2;
        text-align: left;
    }

    #sec4 .right {
        flex: 1 1 auto;
        min-width: 0;
        max-width: 100%;
        padding: 0 20px;
    }

    #sec4 .card {
        width: 300px;
    }
}

@media (max-width: 576px) {
    #sec4 .card {
        width: 200px;
    }
}

#sec5 {
    background-image: url(../images/sec5_bg.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
}

@supports (-webkit-touch-callout: none) {
    .sec5 {
        background-attachment: scroll;
        background-position: top center;
    }
}

#sec5 .point_wrap+.comparison {
    padding-top: 80px;
}


#sec5 .point4 {
    width: 95%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    gap: 20px;
    margin: 40px auto;
}

#sec5 .sec5_vs {
    width: 95%;
    max-width: 1115px;
    margin: 50px auto 0;
}


@media (max-width: 980px) {
    #sec5 .point4 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
    }

}

#sec6 {
    position: relative;
    color: #fff;
    text-align: center;
    background: #ff7a18;
    overflow: hidden;
}

#sec6.pd80 {
    padding-bottom: 0;
}

#sec6 .cover {
    height: 100%;
    position: relative;
    z-index: 5;

}

/* 가운데 고정 컨텐츠 영역 */
#sec6 .support-inner {
    width: 90%;
    height: 100%;
    max-width: 1800px;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(2, 400px);
    align-items: start;
    gap: 10px;
    justify-items: center;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

/* 타이틀 가운데 정렬 */
#sec6 .sectit {
    text-align: center;
    color: #fff;
}

/* 카드 공통 */
#sec6 .support-card {
    position: relative;
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 70px 20px 20px 20px;
    min-height: 390px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
    z-index: 3;
}

#sec6 .card-pill {
    position: absolute;
    padding: 12px 20px;
    border-radius: 80px;
    font-weight: 700;
    font-size: 1.89rem;
    line-height: 1;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

#sec6 .card-pill.black {
    background: #2b2420;
    color: #ffb221;
}

#sec6 .card-pill.yellow {
    background: #ffbf2f;
    color: #2b2420;
}

#sec6 .card-item {
    font-size: 1.56rem;
    font-weight: 400;
    color: #2b2420;
    text-align: center;
    line-height: 1.2;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#sec6 .card-item.active {
    color: #ff6f18;
    font-weight: 600;
}

#sec6 .card-line {
    height: 1px;
    background: #e9e9e9;
    margin: 26px 0;
}

/* 건물 */
#sec6 .store-bg {
    width: min(650px, 92vw);
    margin: 0 auto;
    padding-top: 50px;

    position: relative;
    z-index: 1;
}

#sec6 .store-bg img {
    z-index: 1;
    display: block;
    width: 100%;
    max-width: 650px;
}

@media (max-width: 1920px) {
    #sec6 .support-inner {
        max-width: 980px;
        grid-template-columns: repeat(2, 320px);
    }

    #sec6 .sectit {
        margin-bottom: 100px;
    }

}

@media (max-width: 768px) {
    #sec6 .sectit {
        margin-bottom: 70px;
    }

    #sec6 .card-pill {
        font-size: 28px;
    }

    #sec6 .support-inner {
        position: relative;
        top: unset;

        transform: translate(-50%, 0%);
        width: 95%;
        max-width: 980px;
        grid-template-columns: repeat(2, minmax(0, 280px));
        justify-content: center;
    }

    #sec6 .support-card {
        border-radius: 10px;
        padding: 50px 20px 20px 20px;
        min-height: 280px;
    }

    #sec6 .store-bg img {
        width: 90%;
        margin: 0 auto;
        max-width: 650px;
    }

    #sec6 .card-item {
        height: 27px;
    }


}

#sec7 {
    position: relative;
    overflow: hidden;
    background-color: #fff9ee;
    min-height: 780px;

}

#sec7 .sectit {
    text-align: left;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

/* 내부 폭 */
#sec7 .sec7_inner {
    width: 95%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

/* Swiper를 잘라주는 마스크 (작은 2 + 큰 1만 보이게) */
#sec7 .interior_wrap {
    position: absolute;
    top: 80px;
    width: 1436px;
    max-width: 1436px;
    overflow: hidden;

}

#sec7 .interiorSwiper {
    overflow: hidden;
}

/* 아래 기준 정렬 */
#sec7 .interiorSwiper .swiper-wrapper {
    align-items: flex-end;
}

/* 기본: 작은 카드 */
#sec7 .interiorSwiper .swiper-slide {
    width: 320px;
    height: 495px;
    /* 고정 */
    display: flex;
    align-items: flex-end;
    /* 아래로 붙임 */
    /* 이동하면서 커지게 */
    transition: width .7s cubic-bezier(.2, .9, .2, 1), opacity .2s linear;
    will-change: width;
}

/* 메인(큰) 카드 */
#sec7 .interiorSwiper .swiper-slide.is-big {
    width: 760px;
    opacity: 1;

    /* 위로 뜨는 모션은 원치 않으면 제거 */
    transform: none;
}

/* 카드 공통 */
#sec7 .interior_card {
    width: 100%;
    height: 208px;
    border-radius: 22px;
    overflow: hidden;
    background: #eee;
}

#sec7 .interiorSwiper .swiper-slide.is-big .interior_card {
    height: 495px;
    /* 큰 카드일 때만 꽉 */
}

#sec7 .interior_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width:1280px) {
    #sec7 {
        min-height: auto;
    }

    #sec7 .sec7_inner {
        padding-bottom: 40px;
    }

    #sec7 .interior_wrap {
        position: relative;
        /* 흐름으로 복귀 */
        top: auto;
        width: 100%;
        max-width: 100%;
        margin-top: 24px;
        overflow: hidden;
    }

    /* big 모드 제거 + 2개만 보이게 */
    #sec7 .interiorSwiper .swiper-slide {
        width: calc((100% - 14px) / 2);
        /* 2열 */
        height: 340px;
        /* 원하는 높이로 */
        transition: none;
        /* 1280 이하에선 “커짐” 자체를 제거 */
    }

    #sec7 .interiorSwiper .swiper-slide.is-big {
        width: calc((100% - 14px) / 2);
        opacity: 1;
    }

    #sec7 .interior_card {
        height: 100%;
    }
}

@media (max-width:576px) {

    /* big 모드 제거 + 2개만 보이게 */
    #sec7 .interiorSwiper .swiper-slide {
        height: 180px;
    }
}

#sec8 {
    background-color: #fbba33;
    text-align: center;
}

#sec8.pd80 {
    padding-top: 0;
}


#sec8 .titwrap {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

#sec8 .sectit {
    padding-top: 40px;
}

#sec8 .font60 span {
    color: #fbba33;
}

#sec8 .bubble {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

#sec8 .bubble img {
    width: unset;
    position: absolute;
}

/* 좌상단 – “반찬 구성이 너무 좋아요!” */
#sec8 .bubble1 {
    bottom: -20px;
    left: 40px;
}

/* 상단 중앙 – “정갈하고 맛있어요” */
#sec8 .bubble2 {
    bottom: 90px;
    left: 28%;
}

/* 우상단 – “24시간이라 언제든 편해요” */
#sec8 .bubble3 {
    right: 220px;
    bottom: 40px;
}

/* 우측 하단 – “깔끔해서 자주 이용해요” */
#sec8 .bubble4 {
    right: 0;
    bottom: -60px
}

#sec8 .rollimg_wrap {
    position: relative;
    /* absolute X */
    width: min(560px, 80vw);
    aspect-ratio: 1 / 0.5;
    margin: 0 auto;
    overflow: hidden;
}

#sec8 .rolimg {
    position: absolute;
    left: 0;
    bottom: 0;
    /* 윗부분 잘림 */
    width: 100%;
    height: 200%;
    /* 핵심 */
    animation: spinDish 20s linear infinite;
    transform-origin: center;
}

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

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

#sec8 .naver_review,
#sec8 .baedal_review {
    margin-top: 50px;
}

#sec8 .swiper-slide {
    border-radius: 20px;
    background-color: #fff;
}

#sec8 .flowSwiper.size-340 .swiper-slide {
    aspect-ratio: 340 / 480;

}

#sec8 .flowSwiper.size-440 .swiper-slide {
    aspect-ratio: 440 / 340;
}



@media (max-width: 1280px) {
    #sec8 .rollimg_wrap {
        width: min(400px, 80vw);
    }

    #sec8 .bubble img {
        scale: 0.8;
        position: absolute;
    }

    #sec8 .bubble1 {
        bottom: -20px;
        left: 10px;
    }

    #sec8 .bubble2 {
        bottom: 90px;
        left: 110px;
    }

    #sec8 .bubble3 {
        right: 150px;
        bottom: 40px;
    }

    #sec8 .bubble4 {
        right: 0;
        bottom: -26px;
    }
}

@media (max-width: 768px) {
    #sec8 .bubble img {
        scale: 0.7;
        position: absolute;
    }

    #sec8 .bubble1 {
        bottom: -20px;
        left: 0px;
    }

    #sec8 .bubble2 {
        bottom: 90px;
        left: 60px;
    }

    #sec8 .bubble3 {
        right: 90px;
        bottom: 40px;
    }
}

@media (max-width: 520px) {
    #sec8 .bubble img {
        scale: 0.6;
    }

    #sec8 .bubble1 {
        bottom: -20px;
        left: -50px;
    }

    #sec8 .bubble2 {
        bottom: 70px;
        left: 80px;
    }

    #sec8 .bubble3 {
        right: -50px;
        bottom: 40px;
    }
}

@media (max-width: 420px) {
    #sec8 .bubble img {
        scale: 0.5
    }

    #sec8 .bubble2 {
        bottom: 68px;
        left: -30px;
    }

    #sec8 .bubble4 {
        right: -50px;
        bottom: -26px;
    }
}

#sec9 {
    text-align: center;
    background-image: url(../images/sec9_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#sec9 .container {
    max-width: 1200px;
    width: 97%;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 270px));
    justify-content: center;
    gap: 25px 15px
        /* 세로 / 가로 간격 */
}

.flowCard {
    width: 100%;
    aspect-ratio: 270 / 170;
    border: 1.5px solid #ffb54a;
    border-radius: 22px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
}

.flowCard::after {
    content: "▶";
    position: absolute;
    right: -25px;
    /* 카드 밖으로 살짝 */
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: #2f2a25;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 2;
}

.flowCard:nth-child(4)::after,
.flowCard:nth-child(8)::after {
    display: none;
}

.flowCard .step {
    font-size: 1.22rem;
    margin-bottom: 10px;
}

.flowCard .tit {
    font-size: 1.67rem;
    font-weight: 600;
}

.flowCard.isActive {
    overflow: visible;
    background: #f6b73b;
    border-color: #f6b73b;
}

.flowCard.isActive .step,
.flowCard.isActive .tit {
    color: #fff;
}

.flowCard .openLogo {
    position: absolute;

    /* 박스 기준 위치 */
    right: 10px;
    /* 바깥으로 튀어나오게 */
    bottom: -20px;

    width: 70px;
    height: auto;

    /* 기울기 + 살짝 띄우는 느낌 */
    transform: rotate(18deg);
    transform-origin: center;

    z-index: 5;
    /* 카드보다 위 */
}

@media (max-width: 920px) {
    #sec9 .container {

        margin: 30px auto 0;
        gap: 15px 10px;
    }

    .flowCard::after {
        right: -15px;
        width: 20px;
        aspect-ratio: 1/1
    }

    .flowCard .openLogo {
        width: 60px;
    }
}

@media (max-width: 768px) {
    #sec9 .container {
        grid-template-columns: repeat(2, minmax(0, 270px));
    }

    .flowCard:nth-child(2)::after,
    .flowCard:nth-child(6)::after {
        display: none;
    }

}

#sec10 {
    background-color: #f6f0eb;
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
}

#sec10 .imgbox {
    max-width: 500px;
    position: relative;
}

#sec10 .imgbox .font44 {
    position: absolute;
    color: #fff;
    text-align: center;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 920px) {
    #sec10 {
        background-color: #f6f0eb;
        display: flex;
        align-items: center;
        gap: 40px;
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
}

#sec11 {
    background-color: #ff7a18;
    color: #fff;
    text-align: center;
}

#sec11 .fill-white {
    color: #ff7a18;
}

#sec11 video {
    width: 95%;
    max-width: 1000px;
    border-radius: 20px;
    overflow: hidden;
    margin: 40px auto 0 auto;
    vertical-align: bottom;

}

#sec11 br {
    display: none;
}

@media (max-width: 920px) {
    #sec11 br {
        display: block;
    }
}

/*form*/
#dbform {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

#dbform form {
    width: 95%;
    max-width: 540px;
    margin: 50px auto 0;
    box-sizing: border-box;
}

#dbform .db_cont {}

#dbform .input-wrap ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
}

#dbform .input-wrap ul li {
    display: flex;
    width: 100%;
    align-items: center;
    text-align: left;
    height: 70px;
    border-bottom: 1px solid #ededed;
}

#dbform .input-wrap ul li>label {
    max-width: 90px;
    width: 100%;
    font-weight: 600;
    font-size: 20px;
}

#dbform .input-wrap ul li input[type="text"],
#dbform .input-wrap ul li input[type="tel"],
#dbform .input-wrap ul li select {
    padding: 0 8px;
    height: 48px;
    line-height: 48px;
    background: #fff;
    border-radius: 5px;
    width: 100%;
    font-size: 16px;
    letter-spacing: -1px;
    border: none;
}

#dbform .input-wrap ul li textarea {
    font-size: 16px;
    letter-spacing: -1px;
    width: 100%;
    border-radius: 5px;
    height: 60px;
    resize: none;
    background: #fff;
    padding: 10px;
}

.tel_span {
    display: flex;
    gap: 10px;
    width: 100%;
    align-items: center;
}

.tel_span span {
    flex-basis: 32%;
    flex-grow: 1;
}

#dbform .st-btn {
    display: flex;
    gap: 5px;
    align-items: center;
    width: 100%;
    height: 54px;
}

#dbform .st-btn span.w30 {
    width: 100%;
    display: flex;
    align-items: center;
}

#dbform .st-btn span.w30 label {
    font-size: 18px;
    padding: 0.2em 0.4em;
    cursor: pointer;
}

/* 라디오 기본 커스텀 */
#dbform .st-btn span.w30 [type="radio"] {
    appearance: none;
    border: max(2px, 0.1em) solid gray;
    border-radius: 50%;
    width: 1.6em;
    height: 1.6em;
    vertical-align: middle;
    transition: border 0.3s ease;
    cursor: pointer;
}

/* 체크 상태 */
#dbform .st-btn span.w30 [type="radio"]:checked {
    border: 0.4em solid #fbba33;
}

/* 포커스 */
#dbform .st-btn span.w30 [type="radio"]:focus-visible {
    outline: max(2px, 0.1em) dotted #fbba33;
    outline-offset: 2px;
}

/* hover */
#dbform .st-btn span.w30 [type="radio"]:hover {
    box-shadow: 0 0 0 max(4px, 0.2em) lightgray;
}

/* disabled */
#dbform .st-btn span.w30 [type="radio"]:disabled {
    background-color: lightgray;
    box-shadow: none;
    opacity: 0.7;
    cursor: not-allowed;
}

#dbform .st-btn span.w30 [type="radio"]:disabled+label {
    opacity: 0.7;
    cursor: not-allowed;
}



#dbform .agree-wrap {
    margin: 15px 0;
    width: 100%;
}

#dbform .agree-wrap li {
    margin-bottom: 5px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 2px;
    position: relative;
}

#dbform .agree-wrap li:last-child {
    margin-bottom: 0px;
}

#dbform .agree-wrap p {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 22px;
    letter-spacing: -0.5px;
    text-align: center;
}

#dbform .agree-wrap span {
    font-weight: 700;
}

#dbform .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

#dbform .agree-wrap input[type="checkbox"]+label {
    position: relative;
    cursor: pointer;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px 0 20px;
    font-size: 14px;
    line-height: 1;
}

/*체크박스 svg*/
#dbform .agree-wrap input[type="checkbox"]+label:before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    background: url(https://land.gonplan.co.kr/resources/rent/dgwccw/input_ag.svg) no-repeat;
    background-size: cover;
}

#dbform .agree-wrap input[type="checkbox"]:checked+label:before {
    background: url(https://land.gonplan.co.kr/resources/rent/dgwccw/input_ag_check.svg) no-repeat;
    background-size: cover;
}

#dbform .agree-wrap a {
    display: block;
    padding: 2px 8px;
    line-height: 1.3;
    border-radius: 3px;
    background: #444;
    font-size: 10px;
    color: #fff;
}

#dbform .agree-wrap p input {
    margin-right: 3px;
}

#dbform .db-btn-wrap {
    margin-top: 30px;
}

#dbform .db-btn-wrap button {
    display: block;
    width: 100%;
    border-radius: 10px;
    border: 0;
    background-color: #ff6f18;
    color: #fff;
    height: 80px;
    line-height: 80px;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    animation: motion-effect 1.5s step-end infinite;
}

@keyframes motion-effect {
    50% {
        color: yellow;
        border-bottom: 10px solid #b14707;
        box-sizing: content-box;
        margin-top: -10px;
    }
}

@media (max-width: 440px) {
    #dbform form {
        margin: 30px auto 0;
    }

    #dbform .input-wrap ul li>label {
        max-width: 70px;
        font-size: 18px;
    }

    #dbform .st-btn span.w30 label {
        font-size: 17px;
    }

}

.fulldb {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #2f251d;
    z-index: 9;
}

.fulldb .cont_wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.fulldb .tit {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
}

.fulldb form,
.fulldb ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fulldb li {
    width: 130px;
}

.fulldb li.tel_box {
    width: 200px;
    background: #fff;
    border-radius: 5px;
}

.fulldb input[type="text"],
.fulldb input[type="tel"],
.fulldb select {
    padding: 0 8px;
    height: 48px;
    line-height: 48px;
    background: #fff;
    border-radius: 5px;
    width: 100%;
    font-size: 16px;
    letter-spacing: -1px;
    border: none;
}

.fulldb .tel_span {
    gap: 5px;
    display: flex;
    color: #999999;
    align-items: center;
}

.fulldb .agree-btn {
    display: flex;
    align-items: center;
}

.fulldb .agree-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    gap: 2px;
    padding-left: 10px;
    width: 80px;
}

.fulldb .agree-wrap p {
    font-size: 12px;
    color: #fff;
    line-height: 1.2;
    text-align: left;
}

.fulldb .agree-wrap p input {
    margin-right: 3px;
    width: 10px;
    height: 10px;
}

.fulldb .targetbtn {
    display: block;
}

.fulldb .movebtn {
    display: none;
}

.fulldb .targetbtn {
    width: 120px;
    border-radius: 5px;
    border: 0;
    background-color: #fbba33;
    color: #2f251d;
    padding: 15px 5px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
}


#slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    background-color: #ff6f18;
    padding: 5px 0;
}

.image-box {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    width: max-content;
    /* 핵심 */
    animation: bannermove 60s linear infinite;
}

.image-box div {
    color: #fff;
}

@keyframes bannermove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-50%, 0);
    }
}

@media screen and (max-width:1280px) {
    .fulldb .cont_wrap {
        padding: 10px;
    }

    .fulldb .tit {
        font-size: 20px;
    }

    .fulldb form,
    .fulldb ul {
        gap: 5px;
    }

    .fulldb input[type="text"],
    .fulldb input[type="tel"],
    .fulldb select {
        font-size: 14px;
    }

    .fulldb li {
        width: 100px;
    }

    .fulldb li.tel_box {
        width: 160px;
    }

    .fulldb button {
        padding: 15px;
        font-size: 20px;
    }

}

@media screen and (max-width:900px) {
    .fulldb form {
        display: none;
    }

    .fulldb .movebtn {
        display: block;
    }

    .fulldb .tit {
        font-size: 24px;
    }
}

#wing_db {
    background-color: #dbdbdb;
    border-radius: 20px;
    width: 180px;
    position: fixed;
    right: 50px;
    top: 50%;
    transform: translate(0, -50%);
    padding: 20px 15px;
    text-align: center;
    z-index: 9;
}

#wing_db img {
    width: 100%;
}

#wing_db p {
    font-size: 18px;
    padding: 5px 5px 15px 5px;
}

#wing_db form ul {
    display: flex;
    gap: 8px;
    flex-direction: column;
}

#wing_db form ul li {
    display: flex;
}

#wing_db form ul li input,
#wing_db form ul li select {
    background-color: #fff;
    width: 100%;
    height: 40px;
    border-radius: 10px;
    padding: 0 5px;
    font-size: 12px;
}

#wing_db form ul li.tel_box {
    display: flex;
    gap: 3px
}

#wing_db form .agree-wrap p {
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#wing_db form .db-btn-wrap input {
    background-color: #ff5206;
    color: #fff;
    width: 100%;
    height: 40px;
    line-height: 40px;
    border-radius: 10px;
    font-size: 18px;
}

@media screen and (max-width:1920px) {
    #wing_db {
        display: none;
    }
}


footer {
    background-color: #333;
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    padding: 30px;
    box-sizing: border-box;
}
