@charset "utf-8";

/* webfont */
html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
em,
img,
small,
strong,
b,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tr,
th,
td,
article,
aside,
footer,
header,
nav,
section,
summary,
video,
* {
    padding: 0;
    margin: 0;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

html {
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    -o-text-size-adjust: none;
}


body {
    font-family: 'SUIT Variable', sans-serif;
    font-size: 20px;
    line-height: 34px;
    color: #505050;
    font-weight: 500;
}

#wrap {
    min-width: 320px;
}

/* 반응형 유틸리티 클래스 */
.pc-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* 공통꾸미기 */
.small_title {
    font-size: 22px;
    line-height: 36px;
    color: #70bdfb;
    padding: 100px 0 8px;
    font-weight: 700;
}

.headline {
    font-size: 40px;
    line-height: 60px;
    font-weight: 600;
    padding-bottom: 32px;
}

.font_black {
    color: #111;
}

.font_grey1 {
    color: #333;
}

.font_gery2 {
    color: #505050;
}

.font_gery3 {
    color: #767676;
}

/* 네비게이션 바 */
.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1320px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(35, 48, 59, 0.08);
    transition: all 0.3s ease;
    border-radius: 32px;
    height: 68px;
    padding: 0 16px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    height: 36px;
    padding: 16px 0 16px 24px;
}

.navbar .logo a img {
    display: block;
}

/* 모바일 햄버거 버튼 */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 16px 24px 16px 0;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #70bdfb;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6.5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6.5px, -6px);
}

.gnb {
    display: flex;
}

.gnb-btn {
    background: transparent;
    border-radius: 100px;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    color: #111;
    padding: 10px 20px;
    margin: 12px 4px;
    font-family: 'SUIT Variable', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.gnb-btn:hover {
    color: #70bdfb;
    transform: translateY(-1px);
}

/* GNB 슬라이딩 박스 효과 */
.gnb {
    position: relative;
}

.gnb::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: var(--slide-left, 0);
    height: 70%;
    width: var(--slide-width, 0);
    background: #70bdfb;
    border-radius: 100px;
    z-index: 0;
    box-shadow: 0 2px 8px rgba(112, 189, 251, 0.3);
    opacity: 1;
    transform-origin: center;
    animation-duration: 0.6s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes slideWithSqueeze {
    0% {
        left: var(--start-left);
        width: var(--start-width);
        height: 80%;
        border-radius: 20px;
    }

    25% {
        left: calc(var(--start-left) + var(--start-width) / 2 - 20px);
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }

    75% {
        left: calc(var(--slide-left) + var(--slide-width) / 2 - 20px);
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }

    100% {
        left: var(--slide-left);
        width: var(--slide-width);
        height: 80%;
        border-radius: 20px;
    }
}

.gnb.animating::before {
    animation-name: slideWithSqueeze;
}

.gnb-btn.active {
    color: white;
}

/* 섹션 공통 스타일 */
.section {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background-color 0.6s ease;
}

.section:nth-child(even):not(.active) {
    background-color: #f8f9fa;
}

.section:nth-child(odd):not(.active) {
    background-color: #fff;
}

.section-content {
    max-width: 100%;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
    padding: 0 20px;
}

.section.active .section-content {
    opacity: 1;
    transform: translateY(0);
}

.section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(112, 189, 251, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.section.active::before {
    opacity: 1;
}

/* 섹션 인디케이터 */
.section-indicator {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e5e5ec;
    margin: 8px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.indicator-dot.active {
    background: #70bdfb;
    width: 14px;
    height: 14px;
    box-shadow: 0 0 15px rgba(112, 189, 251, 0.6);
    transform: scale(1.3);
}

.indicator-dot::after {
    content: attr(data-section);
    position: absolute;
    right: 120%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    color: #333;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(35, 48, 59, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
}

.indicator-dot:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-8px);
}

.indicator-dot.active:hover::after {
    background: rgba(112, 189, 251, 0.95);
    color: white;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section.active .section-content {
    animation: fadeInUp 0.8s ease;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #70bdfb;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5aa9e8;
}

/* 섹션1 */
#home {
    background-color: #E6F4FF;
    height: 920px;
    padding-top: 92px;
    box-sizing: border-box;
    position: relative;
}

#section1 {
    width: 100%;
    max-width: 1320px;
    margin: 80px auto;
    color: #767676;
    padding: 0 20px;
}

#section1 .text_wrap {
    margin-top: 60px;
}

.content_wrap {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.main_title {
    font-size: 48px;
    line-height: 80px;
    margin-bottom: 16px;
    color: #111;
}

.main_title span {
    font-size: 60px;
    font-weight: 600;
}

.btn_store {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.btn_store .btn_apple a {
    display: inline-block;
    width: 168px;
    height: 52px;
    background-image: url(../images/btn_store/apple/Apple_line_blue.png);
    background-size: cover;
    transition: all 0s ease;
}

.btn_store .btn_apple a:hover {
    background-image: url(../images/btn_store/apple/Apple_filled.png);
}

.btn_store .btn_google a {
    display: inline-block;
    width: 168px;
    height: 52px;
    background-image: url(../images/btn_store/google/Google_line_blue.png);
    background-size: cover;
    transition: all 0s ease;
}

.btn_store .btn_google a:hover {
    background-image: url(../images/btn_store/google/Google_filled.png);
}

.btn_store img {
    display: block;
}

.content_wrap .img_wrap {
    flex-shrink: 0;
}

.content_wrap .img_wrap img {
    max-width: 100%;
    height: auto;
}

/* 흐르는 텍스트 배너 */
.flowing-banner {
    background-color: #C3E4FF;
    padding: 20px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    height: 72px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.banner-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}

.banner-item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-right: 50px;
}

.banner-text {
    font-size: 22px;
    font-weight: 600;
    color: #70bdfb;
    margin-right: 50px;
}

.logo-placeholder {
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 섹션2 */
#section2 {
    background: linear-gradient(180deg, #E6F4FF, #FDFDFC, #ffffff);
    min-height: 948px;
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    position: relative;
    padding: 100px 20px;
    box-sizing: border-box;
}

#section2 .title {
    font-size: 40px;
    line-height: 56px;
    font-weight: 500;
    padding-bottom: 60px;
    color: #767676;
}

#section2 .title span {
    font-size: 56px;
    line-height: 72px;
    font-weight: 600;
    color: #111;
}

#section2 .img_wrap {
    width: 322px;
    max-width: 100%;
    margin: 0 auto;
    z-index: 1;
}

#section2 .img_wrap img {
    display: block;
    width: 100%;
    height: auto;
}

/* 섹션2 애니메이션 효과 */
#skin_trouble .section-content {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#skin_trouble.animate-in .section-content {
    opacity: 1;
    transform: scale(1) translateY(0);
}

#skin_trouble .small_title {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#skin_trouble.animate-in .small_title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

#skin_trouble .title {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#skin_trouble.animate-in .title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

#skin_trouble .img_wrap {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
    transition: all 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#skin_trouble.animate-in .img_wrap {
    opacity: 1;
    transform: scale(1) translateY(0);
    transition-delay: 0.9s;
}

/* 섹션3 */
#section3 {
    width: 100%;
    background-color: #fff;
    min-height: 948px;
    padding: 50px 20px;
    box-sizing: border-box;
}

.inner_section3 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 800px;
    background: url(../images/section3/circle_gradient.png) center no-repeat;
    background-size: contain;
    max-width: 1200px;
    margin: 0 auto;
}

.lotion {
    display: inline;
}

.lotion1 {
    position: absolute;
    top: -100px;
    left: -600px;
    width: 180px;
    max-width: 120px;
}

.lotion2 {
    position: absolute;
    bottom: -500px;
    left: -600px;
    width: 200px;
    max-width: 120px;
}

.lotion3 {
    position: absolute;
    top: -100px;
    right: -400px;
    width: 90px;
    max-width: 120px;
}

.lotion4 {
    position: absolute;
    bottom: -400px;
    right: -600px;
    width: 140px;
    max-width: 120px;
}

.slogan {
    position: relative;
    text-align: center;
}

.slogan ul li:nth-child(1) {
    text-align: left;
    align-items: left;
}

.slogan span {
    font-size: 200px;
    line-height: 200px;
    color: #70bdfb;
    letter-spacing: -6px;
    padding-right: 8px;
}

.right_slogan {
    text-align: right;
    align-items: right;
}

/* 섹션3 애니메이션 */
#with_dayskin .section-content {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#with_dayskin.animate-in .section-content {
    opacity: 1;
    transform: scale(1) translateY(0);
}

#with_dayskin .section-content .headline li {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#with_dayskin.animate-in .section-content .headline li:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

#with_dayskin.animate-in .section-content .headline li:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

#with_dayskin.animate-in .section-content .headline li:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

#with_dayskin .lotion {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#with_dayskin.animate-in .lotion {
    opacity: 1;
    transform: scale(1);
}

#with_dayskin.animate-in .lotion:nth-child(1) {
    transition-delay: 0.8s;
}

#with_dayskin.animate-in .lotion:nth-child(2) {
    transition-delay: 1s;
}

#with_dayskin.animate-in .lotion:nth-child(3) {
    transition-delay: 1.2s;
}

#with_dayskin.animate-in .lotion:nth-child(4) {
    transition-delay: 1.4s;
}

/* 섹션4-7 공통 스타일 */
.inner_section4,
.inner_section5,
.inner_section6 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 100px;
    min-height: 1080px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    box-sizing: border-box;
}

.inner_section4 .text_wrap,
.inner_section5 .text_wrap,
.inner_section6 .text_wrap {
    flex: 1;
    padding-top: 40px;
}

.inner_section4 .img_wrap,
.inner_section5 .img_wrap,
.inner_section6 .img_wrap {
    flex: 1;
}

.inner_section4 .text_wrap .headline,
.inner_section5 .text_wrap .headline,
.inner_section6 .text_wrap .headline {
    color: #111;
}

.inner_section4 .img_wrap img,
.inner_section5 .img_wrap img,
.inner_section6 .img_wrap img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 400px;
    padding-top: 50px;
}

/* 섹션4 --------------------------------------------- */

#section4 {
    width: 100%;
    background: url(../images/section4/gradient.png) no-repeat right 100px bottom -150px;
}

.inner_section4 {
    display: flex;
    justify-content: center;
    align-items: top;
    gap: 200px;
    height: 1080px;
}

.inner_section4 .text_wrap {
    padding-top: 40px;
}

.inner_section4 .text_wrap .headline {
    color: #111;
}

.inner_section4 .img_wrap img {
    display: block;
    padding-top: 100px;
}

/* 섹션4 애니메이션 효과 */
#skin_diagnosis .section-content {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#skin_diagnosis.animate-in .section-content {
    opacity: 1;
    transform: scale(1) translateY(0);
}

#skin_diagnosis .small_title {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#skin_diagnosis.animate-in .small_title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

#skin_diagnosis .headline {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#skin_diagnosis.animate-in .headline {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

#skin_diagnosis .text_wrap p:last-child {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#skin_diagnosis.animate-in .text_wrap p:last-child {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

#skin_diagnosis .img_wrap {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#skin_diagnosis.animate-in .img_wrap {
    opacity: 1;
    transform: scale(1) translateY(0);
    transition-delay: 0.8s;
}

/* 섹션4 --------------------------------------------- */


/* 섹션5 --------------------------------------------- */

#section5 {
    width: 100%;
    background: url(../images/section5/gradient.png) no-repeat left 100px bottom -150px;
}

.inner_section5 {
    display: flex;
    justify-content: center;
    align-items: top;
    gap: 200px;
    height: 1080px;
}

.inner_section5 .text_wrap {
    padding-top: 40px;
}

.inner_section5 .text_wrap .headline {
    color: #111;
}

.inner_section5 .img_wrap img {
    display: block;
    padding-top: 100px;
}

/* 섹션5 애니메이션 효과 */
#diary .section-content {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#diary.animate-in .section-content {
    opacity: 1;
    transform: scale(1) translateY(0);
}

#diary .small_title {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#diary.animate-in .small_title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

#diary .headline {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#diary.animate-in .headline {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

#diary .text_wrap p:last-child {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#diary.animate-in .text_wrap p:last-child {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

#diary .img_wrap {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#diary.animate-in .img_wrap {
    opacity: 1;
    transform: scale(1) translateY(0);
    transition-delay: 0.8s;
}

/* 섹션5 --------------------------------------------- */




/* 섹션6 --------------------------------------------- */

#section6 {
    width: 100%;
    background: url(../images/section6/gradient.png) no-repeat right 100px bottom -150px;
}

.inner_section6 {
    display: flex;
    justify-content: center;
    align-items: top;
    gap: 200px;
    height: 1080px;
    position: relative;
}

.inner_section6 .text_wrap {
    padding-top: 40px;
}

.inner_section6 .text_wrap .headline {
    color: #111;
}

.inner_section6 .text_wrap .small_title {
    color: #1A9532;
}

.inner_section6 .img_wrap img {
    display: block;
    padding-top: 100px;
}

.watering {
    position: absolute;
    top: 300px;
    right: 700px;
}

/* 섹션6 애니메이션 효과 */
#subun_tree .section-content {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#subun_tree.animate-in .section-content {
    opacity: 1;
    transform: scale(1) translateY(0);
}

#subun_tree .small_title {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#subun_tree.animate-in .small_title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

#subun_tree .headline {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#subun_tree.animate-in .headline {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

#subun_tree .text_wrap p:last-child {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#subun_tree.animate-in .text_wrap p:last-child {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

#subun_tree .img_wrap {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#subun_tree.animate-in .img_wrap {
    opacity: 1;
    transform: scale(1) translateY(0);
    transition-delay: 0.8s;
}

/* 섹션6 --------------------------------------------- */




/* 섹션7 --------------------------------------------- */

#section7 {
    width: 100%;
    background: url(../images/section7/gradient.png) no-repeat left 100px bottom -150px;
}

.inner_section7 {
    display: flex;
    justify-content: center;
    align-items: top;
    gap: 200px;
    height: 1080px;
}

.inner_section7 .text_wrap {
    padding-top: 40px;
}

.inner_section7 .text_wrap .headline {
    color: #111;
}

.inner_section7 .img_wrap img {
    display: block;
    padding-top: 100px;
}

/* 섹션7 애니메이션 효과 */
#conmmunity .section-content {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#conmmunity.animate-in .section-content {
    opacity: 1;
    transform: scale(1) translateY(0);
}

#conmmunity .small_title {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#conmmunity.animate-in .small_title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

#conmmunity .headline {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#conmmunity.animate-in .headline {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

#conmmunity .text_wrap p:last-child {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#conmmunity.animate-in .text_wrap p:last-child {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

#conmmunity .img_wrap {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#conmmunity.animate-in .img_wrap {
    opacity: 1;
    transform: scale(1) translateY(0);
    transition-delay: 0.8s;
}

/* 섹션7 --------------------------------------------- */




/* 섹션8 --------------------------------------------- */

#section8 {
    width: 100%;
    height: 1320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: url(../images/section8/bottom_gradient.png) bottom center no-repeat #fff;
    border-radius: 72px;
}

.inner_section8 .logo {
    padding-top: 140px;
    margin-bottom: 16px;
    text-align: center;

}

.inner_section8 .logo img {
    display: inline-block;
    width: 140px;
}

.inner_section8 .main_title {
    line-height: 62px;
}

#section8 .btn_store {
    display: flex;
    justify-content: center;
}

/* 섹션8 애니메이션 효과 */
#download .section-content {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#download.animate-in .section-content {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* 섹션8 로고 애니메이션 */
#download .logo {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#download.animate-in .logo {
    opacity: 1;
    transform: scale(1) translateY(0);
    transition-delay: 0.2s;
}

/* 섹션8 메인 타이틀 애니메이션 */
#download .main_title {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#download.animate-in .main_title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

/* 섹션8 버튼 스토어 애니메이션 */
#download .btn_store {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#download.animate-in .btn_store {
    opacity: 1;
    transform: scale(1) translateY(0);
    transition-delay: 0.6s;
}

/* 섹션8 이미지 애니메이션 */
#download .img_wrap {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
    transition: all 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#download.animate-in .img_wrap {
    opacity: 1;
    transform: scale(1) translateY(0);
    transition-delay: 0.8s;
}

/* 섹션8 --------------------------------------------- */


/* 푸터 */
footer {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 60px 20px 0;
    position: relative;
    min-height: 800px;
    overflow: hidden;
    box-sizing: border-box;
}

footer .coperate {
    font-size: 20px;
    line-height: 28px;
    font-weight: 800;
    color: #111;
    padding: 52px 0 24px;
}

footer .infor {
    font-size: 18px;
    line-height: 28px;
    color: #767676;
    display: flex;
    padding: 10px 0;
    flex-wrap: wrap;
}

footer .infor li {
    margin-right: 20px;
    margin-bottom: 10px;
}

footer .infor_wrap {
    margin-bottom: 88px;
}

.footer_logo {
    position: absolute;
    bottom: -150px;
    left: 0;
    right: 0;
    font-size: 442px;
    line-height: 442px;
    letter-spacing: -36px;
    color: #70bdfb;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.footer_logo .letter {
    display: inline-block;
    opacity: 1;
    transform: translateY(0);
}

@keyframes letterWave {

    0%,
    20%,
    100% {
        transform: translateY(0);
    }

    10% {
        transform: translateY(-80px);
    }
}

@keyframes letterWaveY {

    0%,
    20%,
    100% {
        transform: translateY(0);
    }

    10% {
        transform: translateY(-100px);
    }
}

.footer_logo.wave-animate .letter:nth-child(1) {
    animation: letterWave 6s ease-in-out infinite;
    animation-delay: 2s;
}

.footer_logo.wave-animate .letter:nth-child(2) {
    animation: letterWave 6s ease-in-out infinite;
    animation-delay: 2.05s;
}

.footer_logo.wave-animate .letter:nth-child(3) {
    animation: letterWaveY 6s ease-in-out infinite;
    animation-delay: 2.1s;
}

.footer_logo.wave-animate .letter:nth-child(4) {
    animation: letterWave 6s ease-in-out infinite;
    animation-delay: 2.15s;
}

.footer_logo.wave-animate .letter:nth-child(5) {
    animation: letterWave 6s ease-in-out infinite;
    animation-delay: 2.2s;
}

.footer_logo.wave-animate .letter:nth-child(6) {
    animation: letterWave 6s ease-in-out infinite;
    animation-delay: 2.25s;
}

.footer_logo.wave-animate .letter:nth-child(7) {
    animation: letterWave 6s ease-in-out infinite;
    animation-delay: 2.3s;
}

/* 태블릿 반응형 (1140px 이하) */
@media (max-width: 1140px) {
    #wrap {
        min-width: 768px;
    }

    body {
        font-size: 18px;
        line-height: 30px;
        overflow-y: visible;
        overflow-x: hidden;
    }

    .navbar {
        width: calc(100% - 20px);
        top: 10px;
        height: 56px;
        border-radius: 20px;
        padding: 0 10px;
    }

    .navbar .logo {
        height: 28px;
        padding: 14px 0 14px 16px;
    }

    .navbar .logo img {
        height: 32px;
    }

    .mobile-menu-toggle {
        display: flex;
        padding: 14px 16px 14px 0;
    }

    .gnb {
        position: fixed;
        top: 76px;
        left: 10px;
        right: 10px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        flex-direction: column;
        padding: 20px;
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        z-index: 999;
    }

    .gnb-btn:hover,
    .gnb-btn.active {
        background: #70bdfb;
        color: white;
        transform: none;
    }

    .gnb.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .gnb::before {
        display: none;
    }

    .gnb-btn {
        width: 100%;
        text-align: left;
        padding: 12px 20px;
        margin: 4px 0;
        border-radius: 12px;
        font-size: 16px;
        background: transparent;
        transition: all 0.3s ease;
    }


    .small_title {
        font-size: 20px;
        line-height: 32px;
        padding: 150px 0 8px;
    }

    .headline {
        font-size: 32px;
        line-height: 48px;
        padding-bottom: 24px;
    }

    /* 섹션1 태블릿 */
    #home {
        height: auto;
        padding-top: 0px;
    }

    #section1 {
        margin: 60px auto;
        padding: 0 30px;
    }

    .content_wrap {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .main_title {
        font-size: 36px;
        line-height: 56px;
    }

    .main_title span {
        font-size: 44px;
    }

    .btn_store {
        justify-content: center;
    }

    .btn_store .btn_apple a,
    .btn_store .btn_google a {
        width: 142px;
        height: 44px;
    }

    /* 섹션2 태블릿 */

    #section2 .small_title {
        padding: 60px 0 0;
    }

    #section2 .title {
        font-size: 32px;
        line-height: 44px;
        padding-bottom: 40px;
    }

    #section2 .title span {
        font-size: 40px;
        line-height: 56px;
    }

    /* 섹션3 태블릿 */

    .lotion1 {
        position: absolute;
        top: -50px;
        left: -380px;
        width: 180px;
        max-width: 80px;
    }

    .lotion2 {
        position: absolute;
        bottom: -380px;
        left: -380px;
        width: 200px;
        max-width: 80px;
    }

    .lotion3 {
        position: absolute;
        top: -50px;
        right: -350px;
        width: 90px;
        max-width: 80px;
    }

    .lotion4 {
        position: absolute;
        bottom: -380px;
        right: -350px;
        width: 140px;
        max-width: 80px;
    }

    .slogan span {
        font-size: 140px;
        line-height: 120px;
        color: #70bdfb;
        letter-spacing: -6px;
        padding-right: 8px;
        font-weight: 600;
    }

    .right_slogan {
        text-align: right;
        align-items: right;
    }

    /* 섹션4,6 태블릿 */
    #section4 {
        background: url(../images/section4/gradient.png) no-repeat center bottom -100px;
    }

    #section6 {
        background: url(../images/section6/gradient.png) no-repeat center bottom -100px;
    }

    #section4 .small_title,
    #section6 .small_title {
        padding: 60px 0 0;
    }

    .inner_section4,
    .inner_section6 {
        flex-direction: column;
        gap: 10px;
        min-height: auto;
        text-align: center;
        align-items: center;
        height: 900px;
    }


    .inner_section4 .img_wrap img,
    .inner_section6 .img_wrap img {
        max-width: 300px;
        padding-top: 0;
    }

    /* 섹션5,7 태블릿 */
    #section5 {
        background: url(../images/section5/gradient.png) no-repeat center bottom -100px;
    }

    #section7 {
        background: url(../images/section7/gradient.png) no-repeat center bottom -100px;
    }

    #section5 .small_title,
    #section7 .small_title {
        padding: 60px 0 0;
    }

    .inner_section5,
    .inner_section7 {
        flex-direction: column-reverse;
        gap: 10px;
        min-height: auto;
        text-align: center;
        align-items: center;
        height: 900px;
    }


    .inner_section5 .img_wrap img,
    .inner_section7 .img_wrap img {
        max-width: 300px;
        padding-top: 0;
    }

    /* 섹션8 태블릿 */
    .inner_section8 .logo {
        padding-top: 80px;
    }

    .inner_section8 .logo img {
        width: 100px;
    }

    #section8 {
        width: 100%;
        height: 1000px;
        background: url(../images/section8/bottom_gradient.png) bottom center no-repeat #fff;
        border-radius: 60px;
    }

    .inner_section8 .main_title {
        line-height: 52px;
        font-weight: 700;
    }

    #section8 .btn_store {
        display: flex;
        justify-content: center;
    }

    #section8 .img_wrap img {
        width: 80%;
    }

    /* 푸터 태블릿 */
    footer {
        min-height: 700px;
    }

    footer .symbol {
        width: 36px;
    }

    footer .coperate {

        padding: 32px 0 12px;
    }

    footer .infor {
        font-size: 14px;
        line-height: 24px;
    }

    footer .infor li {
        margin-right: 20px;
        margin-bottom: 0px;
    }

    .footer_logo {
        font-size: 300px;
        gap: 4px;
    }
}

/* 모바일 반응형 (768px 이하) */
@media (max-width: 768px) {
    #wrap {
        min-width: 480px;
    }

    body {
        font-size: 16px;
        line-height: 26px;
    }

    .pc-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    /* 네비게이션 모바일 */
    .navbar {
        width: calc(100% - 32px);
        top: 12px;
        height: 56px;
        border-radius: 99px;
        padding: 0 10px;
    }

    .navbar .logo img {
        height: 32px;
    }

    .mobile-menu-toggle {
        display: flex;
        padding: 14px 16px 14px 0;
    }

    .gnb {
        position: fixed;
        top: 76px;
        left: 10px;
        right: 10px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 20px;
        transform: translateY(-20px);
        opacity: 0;

    }

    /* 섹션 인디케이터 모바일 */
    .section-indicator {
        display: none;
    }

    .small_title {
        font-size: 18px;
        line-height: 28px;
        padding: 100px 0 8px;
    }

    .headline {
        font-size: 24px;
        line-height: 34px;
        padding-bottom: 20px;
    }

    /* 섹션1 모바일 */
    #home {
        padding-top: 50px;
    }

    #section1 {
        margin: 0 auto;
        padding: 0 20px;
    }

    #section1 .img_wrap img {
        width: 90%;
    }

    .main_title {
        font-size: 28px;
        line-height: 40px;
        margin-bottom: 12px;
    }

    .main_title span {
        font-size: 32px;
    }

    .btn_store {
        gap: 8px;
    }

    .btn_store .btn_apple a,
    .btn_store .btn_google a {
        width: 142px;
        height: 44px;
    }

    .flowing-banner {
        height: 60px;
        padding: 15px 0;
    }

    .banner-text {
        font-size: 18px;
        margin-right: 30px;
    }

    .banner-item {
        padding-right: 30px;
    }

    .logo-placeholder {
        width: 100px;
    }

    /* 섹션2 모바일 */
    #section2 {
        min-height: 100vh;
        padding: 80px 20px;
    }

    #section2 .title {
        font-size: 24px;
        line-height: 36px;
        padding-bottom: 30px;
    }

    #section2 .title span {
        font-size: 28px;
        line-height: 40px;
    }

    #section2 .img_wrap {
        width: 250px;
    }

    /* 섹션3 모바일 */
    .lotion1 {
        position: absolute;
        top: -120px;
        left: -200px;
        width: 180px;
        max-width: 60px;
    }

    .lotion2 {
        position: absolute;
        bottom: -320px;
        left: -200px;
        width: 200px;
        max-width: 60px;
    }

    .lotion3 {
        position: absolute;
        top: -60px;
        right: -200px;
        width: 90px;
        max-width: 60px;
    }

    .lotion4 {
        position: absolute;
        bottom: -300px;
        right: -200px;
        width: 140px;
        max-width: 60px;
    }

    .slogan span {
        font-size: 100px;
        line-height: 100px;
    }


    /* 섹션4,6 모바일 */

    #section4 .small_title,
    #section6 .small_title {
        padding: 20px 0 0;
    }

    /* 섹션5,7 모바일 */

    #section5 .small_title,
    #section7 .small_title {
        padding: 20px 0 0;
    }


    /* 섹션8 모바일 */
    .inner_section8 .logo {
        padding-top: 100px;
        margin-bottom: 8px;
    }

    .inner_section8 .logo img {
        width: 100px;
    }

    #section8 {
        width: 100%;
        height: 800px;
        background: url(../images/section8/bottom_gradient.png) bottom center no-repeat #fff;
        border-radius: 32px;
    }

    .inner_section8 .main_title {
        font-size: 28px;
        line-height: 38px;
        font-weight: 700;
    }

    #section8 .btn_store {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    #section8 .img_wrap img {
        width: 100%;
    }

    /* 푸터 모바일 */
    footer {
        padding: 40px 20px 0;
        min-height: 540px;
    }

    footer .coperate {
        font-size: 18px;
        padding: 30px 0 20px;
    }

    footer .infor {
        font-size: 14px;
        line-height: 24px;
    }

    footer .infor_wrap {
        margin-bottom: 60px;
    }

    .footer_logo {
        font-size: 160px;
        line-height: 160px;
        letter-spacing: -12px;
        bottom: -60px;
    }

    /* 모든 animate-in 애니메이션 비활성화 */
    #skin_trouble.animate-in .section-content,
    #with_dayskin.animate-in .section-content,
    #skin_diagnosis.animate-in .section-content,
    #diary.animate-in .section-content,
    #subun_tree.animate-in .section-content,
    #conmmunity.animate-in .section-content,
    #download.animate-in .section-content {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}



/* 480 모바일 (480px 이하) */
@media (max-width: 480px) {

    /* 네비게이션 */
    .navbar {
        position: fixed;
        top: 12px;
        height: 56px;
        padding: 0px;
        border-radius: 32px;
        width: calc(100% - 32px);
    }

    .navbar .logo img {
        height: 28px;
        padding: 0;
    }

    .gnb {
        top: 68px;
        border-radius: 32px;
        padding: 12px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        width: calc(100% - 54px);
    }

    .gnb-btn {
        padding: 8px 16px;
        border-radius: 24px;
        font-size: 14px;
    }

    #wrap {
        min-width: 320px;
    }

    body {
        font-size: 14px;
        line-height: 20px;
    }

    /* 섹션1 모바일 */
    #home {
        min-height: 812px;
        padding-top: 0px;
    }

    .main_title {
        font-size: 28px;
        line-height: 40px;
        margin-bottom: 12px;
    }

    .main_title span {
        font-size: 32px;
    }

    .banner-text {
        font-size: 14px;
    }

    /* 섹션2 모바일 */
    #section2 {
        padding: 100px 0px;
        min-height: 600px;
    }

    #section2 .img_wrap {
        width: 220px;
    }

    /* 섹션3 모바일 */
    .inner_section3 {
        min-height: 700px;
    }

    .lotion1 {
        position: absolute;
        top: -150px;
        left: -110px;
        width: 180px;
        max-width: 48px;
    }

    .lotion2 {
        position: absolute;
        bottom: -280px;
        left: -120px;
        width: 200px;
        max-width: 48px;
    }

    .lotion3 {
        position: absolute;
        top: -80px;
        right: -160px;
        width: 90px;
        max-width: 48px;
    }

    .lotion4 {
        position: absolute;
        bottom: -360px;
        right: -100px;
        width: 140px;
        max-width: 48px;
    }

    .slogan .headline {
        font-size: 20px;
    }

    .slogan span {
        font-size: 80px;
        line-height: 80px;
    }

    /* 섹션8 모바일 */
    .inner_section8 .logo {
        padding-top: 100px;
        margin-bottom: 8px;
    }

    .inner_section8 .logo img {
        width: 100px;
    }

    #section8 {
        width: 100%;
        height: 620px;
        background: url(../images/section8/bottom_gradient.png) bottom center no-repeat #fff;
        border-radius: 32px;
    }

    #section8 .img_wrap img {
        width: 100%;
    }

    /* 푸터 모바일 */
    footer {
        padding: 40px 20px 0;
        min-height: 500px;
    }

    footer .coperate {
        font-size: 18px;
        padding: 30px 0 20px;
    }

    footer .infor {
        font-size: 13px;
        line-height: 20px;
    }

    footer .infor_wrap {
        margin-bottom: 60px;
    }

    .footer_logo {
        font-size: 104px;
        line-height: 104px;
        letter-spacing: -12px;
        bottom: -40px;
    }

    @keyframes letterWave {

        0%,
        20%,
        100% {
            transform: translateY(0);
        }

        10% {
            transform: translateY(-40px);
        }
    }

    @keyframes letterWaveY {

        0%,
        20%,
        100% {
            transform: translateY(0);
        }

        10% {
            transform: translateY(-44px);
        }
    }
}