@charset "utf-8";

@font-face {
    font-family : "PretendardB";
    src :url(../../inc/fonts/Pretendard-Bold.woff) format('woff');
}
@font-face {
    font-family : "PretendardL";
    src :url(../../inc/fonts/Pretendard-Light.woff) format('woff');
}
@font-face {
    font-family : "Pretendard";
    src :url(../../inc/fonts/Pretendard-Regular.woff) format('woff');
}
@font-face {
    font-family: "PretendardB";
    src: url(../../inc/fonts/Pretendard-Bold.woff2) format('woff2');
}

@font-face {
    font-family: "PretendardL";
    src: url(../../inc/fonts/Pretendard-Light.woff2) format('woff2');
}

@font-face {
    font-family: "Pretendard";
    src: url(../../inc/fonts/Pretendard-Regular.woff2) format('woff2');
}
/* Reset */
html, body {
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: #1a1a1a;
    line-height: 1;
    -webkit-text-size-adjust: none;
}

body, div, form, p, h1, h2, h3, h4, h5, h6, dl, dt, dd, ul, ol, li, em, p, span, textarea, pre, label, fieldset, th, td, button, a, input, select, hr, figure {
    margin: 0;
    padding: 0;
    font-family: "Pretendard", sans-serif;
    word-break: keep-all;
    vertical-align: top;
}

ul, li {
    list-style: none;
}

/*common*/
#wrap {
    width: 100%;
}

img {
    max-width: 100%;
}

:root {
    --main-color: #ffffff; /* 흰색 */
    --main-color2: #168347; /* 초록색 */
    --main-color3: #5cc359; /* 연두색 */
    --area-con-width: 1770px;
    --area-box-width: 1590px;
    --area-width: 1450px;
    --area-sub-width: 1400px;
    --area-min-width: 1200px;
    --area-padding: 30px;
    --header-height: 100px;
    --sub-visual-height: 66rem;
    --sub-menu-height: 8rem;
    --full-height: 100vh;
    --transition-custom: all 0.3s ease-in-out;
    --transition-custom2: all 0.8s ease-in-out; /* data-scroll */
}

:root {
    --board-main-color: var(--main-color);
    --board-list-height: 64px; /* 리스트 높이*/
    --board-list-font-size: 16px;
    --board-list-font-color: #333;
    --board-list-icon-width: 60px; /* 댓글이 있을때 100px */
    --board-view-font-size: 14px;
}

@media all and (max-width: 800px) {
    :root {
        --board-list-height: auto;
        --board-list-font-size: 13px;
        --board-list-font-color: #aaa;
        --board-list-item-padding: 20px;
        --board-view-font-size: 13px;
    }
}

/* ******************  메인 비주얼 ********************** */
.scene1 {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
}

section {
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.main-visual-con,
.main-visual-item {
    height: 100vh;
}

.main-visual-con {
    z-index: 1;
}

/* 메인 비주얼 :: 이미지 */
.main-visual-item {
    position: relative;
}

.main-visual-item .main-visual-img {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    transform: scale(1.08, 1.08);
}

.main-visual-item .main-visual-m-img {
    display: none;
}

.main-visual-item .main-visual-img {
    animation: image-zoom-out 3s 0s forwards;
}

.main-visual-item .main-visual-img .pc {
    position: relative;
}

.main-visual-item .main-visual-img .pc img {
    position: relative;
    top: 50%;
    left: 10%;
    transform: translate(-50%, 30%);
}

.main-visual-item .main-visual-img .mo {
    position: relative;
}

.main-visual-item .main-visual-img .mo img {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 100%);
    width: 80px;
    height: 80px;
}

/* 메인 비주얼 :: 텍스트 */
.main-visual-txt-con {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.main-visual-txt-box {
    position: relative;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.main-visual-txt-box .main-visual-txt-inner {
    position: relative;
    width: 300px;
    height: 618px;
    border-radius: 25px;
    box-shadow: 50px 50px 120px rgba(0, 0, 0, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: phone 0.75s ease-in forwards 0.5s;
    border: 5px solid var(--main-color);
    opacity: 0;
}


/* 메인 비주얼 :: 텍스트 :: active효과 */
.main-visual-item .main-visual-txt1 {
    animation: fadeIn 2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.main-visual-item .main-visual-txt1 {
    animation-delay: 1s;
}

/* ******************  메인 컨텐츠 ********************** */
/* -------- 메인 컨텐츠 :: 공통 -------- */
/* 공통 :: 타이틀 */

.area {
    max-width: var(--area-width);
    margin: 0 auto;
}

.area-con {
    max-width: var(--area-con-width);
    margin: 0 auto;
}

.area-box {
    max-width: var(--area-box-width);
    margin: 0 auto;
}

.area-sub {
    max-width: var(--area-sub-width);
    margin: 0 auto;
}

.area-min {
    max-width: var(--area-min-width);
    margin: 0 auto;
}

.area-box {
    max-width: 1680px;
}

.area {
    max-width: 1410px;
}

.mo {
    display: none;
}

.pc {
    display: block;
}

/* overview */
.scene1 {
    height: 100vh;
    overflow: hidden;
}
.overview {
    position: relative;
    max-width: 1440px;
    width: 83%;
    padding: 15rem 0 10rem;
    margin: auto;
}

.overview .title_wrap {
    position: relative;
    margin-bottom: 12px;
    opacity: 0;
}

.overview .overview_title {
    font-size: 24px;
    font-weight: lighter;
    letter-spacing: -0.02em;
    line-height: 100%;
    color: #A28E80;
}

.overview .overview_wrap {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.overview .mo {
    display: none;
}

.overview .overview_subtitle {
    font-size: 40px;
    font-weight: bold;
    line-height: 140%;
    letter-spacing: -0.02em;
    color: #574538;
    max-width: 485px;
    position: relative;
    opacity: 0;
}

.overview .overview_content {
    font-size: 22px;
    line-height: 140%;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    max-width: 720px;
    position: relative;
    opacity: 0;
}

.overview_img {
    position: relative;
    width: calc(100% - 10%);
    height: 320px;
    margin-right: 0;
    opacity: 0;
    overflow: hidden;
    border-radius: 50px 0 0 50px;
}

.overview_img img {
    position: relative;
    right: 10%;
    top: -306px;
    width: auto;
    max-width: 1907px;
    animation: move_pc 10s linear;
    transition: 5s linear;
}

.overview_img:hover img {
    transform: scale(0.95);
}

/* //overview */

/* process */
.scene2 .innerWrap {
    overflow: hidden;
}
.process {
    position: relative;
    max-width: 1440px;
    width: 83%;
    padding: 10rem 0 15rem;
    margin: auto;
}

.process .title_wrap {
    position: relative;
    margin-bottom: 80px;
}

.process .process_title {
    font-size: 24px;
    font-weight: lighter;
    letter-spacing: -0.02em;
    color: #A28E80;
    margin-bottom: 32px;
}

.process .title_wrap .subtitle {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.process .title_wrap .process_subtitle {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: -0.02em;
    line-height: 140%;
    color: #574538;
    position: relative;
}

.process .title_wrap .process_content {
    font-size: 22px;
    line-height: 140%;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    max-width: 720px;
    position: relative;
}

.process .process_content {
    position: relative;
    display: flex;
    justify-content: center;
}

.scene3 .process .process_content .pc,
.scene3 .process .process_content .mo {
    position: relative;
}

.scene3 .process .process_content .pc {
    display: flex;
    justify-content: center;
    align-items: center;
}

.scene3 .process .process_content .pc div:nth-child(3) {
    position: relative;
    width: 440px;
    height: 440px;
    color: #574538;
    font-size: 40px;
    font-weight: bold;
}

.scene3 .process .process_content .pc div:nth-child(3) p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: normal;
}

.circle {
    position: relative;
    overflow: hidden;
    height: 50%;
}

.circle:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 440px;
    height: 440px;
    box-sizing: border-box;
    border-radius: 50%;
    border: 4px solid transparent;
}

.scene3.move .circle:nth-child(1):after {
    border-top-color: #574538;
    border-left-color: #574538;
    animation: spin-top 1s 1s 1 linear both;
}

.scene3.move .circle:nth-child(2):after {
    border-top-color: #574538;
    border-left-color: #574538;
    top: -220px;
    animation: spin-bottom 1s 2s 1 linear both;
}

.scene3 .process .process_content .mo div:nth-child(3) {
    position: relative;
    width: 230px;
    height: 230px;
    color: #574538;
    font-weight: bold;
}

.scene3.move .mo .circle_box {
    display: flex;
}

.mo .circle {
    width: 50%;
    height: 100%;
}

.mo .circle:after {
    content: "";
    width: 230px;
    height: 230px;
    border: 3px solid transparent;
}

.scene3.move .mo .circle:nth-child(2):after {
    top: 0;
    right: 0;
    left: auto;
}

.scene3.move .mo .circle:nth-child(1):after {
    border-top-color: #574538;
    border-left-color: #574538;
    animation: left-circle 1s 2s 1 linear both;
}

.scene3.move .mo .circle:nth-child(2):after {
    border-top-color: #574538;
    border-left-color: #574538;
    animation: right-circle 1s 1s 1 linear both;
}

@keyframes spin-top {
    from {
        transform: rotate(-135deg);
    }
    to {
        transform: rotate(45deg);
    }
}

@keyframes spin-bottom {
    from {
        transform: rotate(45deg);
    }
    to {
        transform: rotate(225deg);
    }
}

@keyframes right-circle {
    from {
        transform: rotate(-45deg);
    }
    to {
        transform: rotate(135deg);
    }
}

@keyframes left-circle {
    from {
        transform: rotate(135deg);
    }
    to {
        transform: rotate(315deg);
    }
}

.scene3 .process .process_content .mo {
    display: none;
}

.scene3 .process .process_content .pc img:nth-child(2) {
    margin-left: -6.5%;
}

/* //process */

/* scene4 */
.scene4 {
    position: relative;
    background-color: #574538;
}

.scene4::before {
    content: 'PC';
    display: inline-block;
    position: absolute;
    top: 385px;
    left: -20px;
    color: var(--main-color);
    opacity: 5%;
    font-size: 300px;
    font-weight: bold;
    letter-spacing: -0.02em;
    transition: opacity 2s ease-in;
}

.scene4.mobile::before {
    content: 'MOBILE';
}

.scene4 .page {
    position: relative;
    margin: auto;
}

.scene4 .page .title_wrap {
    color: var(--main-color);
    position: relative;
    max-width: 1440px;
    width: 83%;
    padding: 12.5rem 0 18.625rem;
    margin: 0 auto;
}

.scene4 .page .title_wrap .page_title {
    position: relative;
    font-size: 24px;
    font-weight: lighter;
    letter-spacing: -0.02em;
    line-height: 100%;
    color: #A28E80;
    margin-bottom: 32px;
}

.scene4 .page .title_wrap .subtitle {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.scene4 .page .title_wrap .page_subtitle {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: -0.02em;
    line-height: 140%;
    color: #FFFFFF;
    position: relative;
}

.scene4 .page .title_wrap .page_content {
    font-size: 22px;
    line-height: 140%;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    max-width: 720px;
    position: relative;
}

.scene4 .page .page_slide {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 200px;

}

:root {
    --img-length: 18;
}

.scene4 .page .page_slide .slide_track {
    display: flex;
    width: calc(var(--img-length, 9) * (24.25vw + clamp(16px, 1.5rem, 28px)));;
    animation: marquee-top 50s linear infinite;
    overflow: visible;
}

@keyframes marquee-top {
    0% {
        transform: translate3d(0, 0, 0);
    }

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

.scene4 .page .page_slide .slide_track .slide-item {
    height: 100%;
    margin-right: 60px;
}

/* //scene4 */

/* scene5 */
.scene5 .title_wrap {
    position: relative;
    max-width: 1440px;
    width: 83%;
    padding: 12.5rem 0 7.5rem;
    margin: auto;
}

.scene5 .title_wrap .scene5_title {
    position: relative;
    font-size: 24px;
    font-weight: lighter;
    letter-spacing: -0.02em;
    line-height: 100%;
    color: #A28E80;
    margin-bottom: 32px;
}

.scene5 .title_wrap .subtitle {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.scene5 .title_wrap .scene5_subtitle {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: -0.02em;
    line-height: 140%;
    color: #574538;
    position: relative;
}

.scene5 .title_wrap .scene5_content {
    max-width: 720px;
    font-size: 22px;
    line-height: 140%;
    letter-spacing: -0.02em;
    position: relative;
}

.scene5 .content {
    position: relative;
    display: flex;
    gap: 0;
}

.scene5 .content .content_box {
    flex: 1 1 0;
    display: flex;
    will-change: flex;
    align-items: center;
    justify-content: center;
    height: 1000px;
    overflow: hidden;
    transition: all 0.7s ease-in;
}

.scene5 .content .content_box:nth-child(1) {
    background-color: #E8D8C9;
}

.scene5 .content .content_box:nth-child(2) {
    background-color: #574538;
}

.scene5 .content .content_box:nth-child(3) {
    background-color: #A28779;
}

.scene5 .content .content_box .small_box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 84px;
    transition: transform 1s ease;
}

.scene5 .content .content_box:nth-child(2) .small_box,
.scene5 .content .content_box:nth-child(3) .small_box {
    max-width: 260px;
    width: 78%;
    transition: width 2s ease-in;
}

.scene5 .content .content_box .small_box p {
    font-size: 140px;
    font-weight: bold;
    color: #6D594A;
    letter-spacing: -0.02em;
}

.scene5 .content .content_box .big_box {
    display: none;
}

.scene5 .content .content_box .big_box img {
    opacity: 0;
}

.scene5 .content .content_box .mo_big_box {
    display: none;
}

.scene5 .content .content_box:nth-child(3) .pc {
    display: none;
}

.scene5 .content .content_box:nth-child(3) .pc img {
    opacity: 0;
}

.scene5 .content .content_box:hover {
    flex: 3.3 1 0;
}

.scene5 .content .content_box:not(:hover) {
    flex: 0.7 1 0;
}

.scene5 .content .content_box:not(:hover) .small_box p {
    font-size: 120px;
}

.scene5 .content .content_box .desktop {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 95px 0;
}

.scene5 .content .content_box .desktop img {
    position: relative;
    opacity: 0;
}

.scene5 .content .content_box:not(:hover) .desktop {
    display: none;
}

.scene5 .content .content_box:hover .small_box ~ .scene5 .content .content_box:nth-child(2):not(:hover) .small_box {
    transform: scale(0.8);
}

.scene5 .content .content_box:hover .small_box {
    display: none;
}

.scene5 .content .content_box:hover .big_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.scene5 .content .content_box:nth-child(3):hover .pc {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 102px;
    position: relative;
}

.scene5 .content .content_box:nth-child(3):hover .pc img {
    position: relative;
}

.scene5 .content .content_box:nth-child(1):hover .desktop img:nth-child(1) {
    animation: bottomGo 1s ease-in forwards 0.25s;
}

.scene5 .content .content_box:nth-child(1):hover .desktop img:nth-child(2) {
    animation: bottomGo 1s ease-in forwards 0.5s;
}

.scene5 .content .content_box:nth-child(1):hover .desktop img:nth-child(3) {
    animation: bottomGo 1s ease-in forwards 0.75s;
}

.scene5 .content .content_box:nth-child(2):hover .big_box img {
    position: relative;
}

.scene5 .content .content_box:nth-child(2):hover .big_box img:nth-child(1) {
    animation: bottomGo 1s ease-in forwards 0.25s;
}

.scene5 .content .content_box:nth-child(2):hover .big_box img:nth-child(2) {
    animation: bottomGo 1s ease-in forwards 0.5s;
}

.scene5 .content .content_box:nth-child(3):hover .pc img:nth-child(1) {
    animation: bottomGo 1s ease-in forwards 0.25s;
}

.scene5 .content .content_box:nth-child(3):hover .pc img:nth-child(2) {
    animation: bottomGo 1s ease-in forwards 0.5s;
}

.scene5 .content .content_box:nth-child(1):hover .mobile img:nth-child(1) {
    animation: bottomGo 0.75s ease forwards 0.5s;
}

.scene5 .content .content_box:nth-child(1):hover .mobile img:nth-child(2) {
    animation: bottomGo 0.75s ease forwards 0.75s;
}

.scene5 .content .content_box:nth-child(1):hover .mobile img:nth-child(3) {
    animation: bottomGo 0.75s ease forwards 1s;
}

/* //scene5 */

/* scene6 */
.scene6 {
    overflow-x: clip;
}

.scene6 .innerWrap {
    position: relative;
}

.scene6 .ui {
    position: relative;
    max-width: 1440px;
    width: 83%;
    margin: auto;
    padding: 12.5rem 0 7.5rem;
}

.scene6 .ui .title_wrap {
    width: 100%;
    margin: 0 auto 120px;
}

.scene6 .ui .title_wrap .ui_title {
    position: relative;
    font-size: 24px;
    font-weight: lighter;
    letter-spacing: -0.02em;
    line-height: 100%;
    color: #A28E80;
    margin-bottom: 32px;
}

.scene6 .ui .title_wrap .subtitle {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.scene6 .ui .title_wrap .ui_subtitle {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: -0.02em;
    line-height: 140%;
    color: #574538;
    position: relative;
}

.scene6 .ui .title_wrap .ui_content {
    font-size: 22px;
    line-height: 140%;
    letter-spacing: -0.02em;
    color: #1A1A1A;
    max-width: 720px;
    position: relative;
}

.scene6 .ui .ui_image {
    position: relative;
    border-radius: 15px;
}

.scene6 .ui .ui_image .image_title {
    position: relative;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: -0.02em;
    line-height: 140%;
    color: #574538;
    margin-bottom: 40px;
}

.scene6 .ui .ui_image img:nth-child(3),
.scene6 .ui .ui_image img:nth-child(4) {
    position: absolute;
    z-index: 99;
}

.scene6 .ui .ui_image img:nth-child(3) {
    top: 30%;
    right: -11%;
}

.scene6 .ui .ui_image img:nth-child(4) {
    top: 51%;
    left: -12%;
}

.scene6 .ui .ui_image .web {
    position: relative;
    box-shadow: 50px 50px 120px 0 rgba(0, 0, 0, 0.16);
    border-radius: 10px;
    z-index: 99;
}

.scene6 .ui .ui_image .operate_image {
    top: 34.3%;
    left: 90%;
    transform: translate(-50%, -50%);
    z-index: 99;
}

.scene6 .y_box {
    position: absolute;
    top: 50.8%;
    width: 100%;
    height: 510px;
    background: #F0E8D2;
}

/* //scene6 */

/* scene7 */
.scene7 .innerWrap {
    position: relative;
    max-width: 1440px;
    width: 100%;
    margin: auto;
}

.scene7 .reservation_image {
    position: relative;
    top: 55.3%;
    left: 13.5%;
    transform: translate(-50%, -50%);
    z-index: 999;
}

/* //scene7 */

/* scene8 */
.scene8 {
    height: 100%;
}

.scene8 .innerWrap {
    position: relative;
    max-width: 1440px;
    width: 100%;
    margin: auto;
}

/* //scene8 */

/* scene9 */
.scene9 .mobile {
    position: relative;
    max-width: 1440px;
    width: 83%;
    margin: auto;
    padding: 0;
}

.scene9 .mobile .title_wrap {
    position: relative;
    margin-bottom: 40px;
}

.scene9 .mobile .title_wrap .mobile_title {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: -0.02em;
    line-height: 140%;
    color: #574538;
}

.scene9 .mobile .image_box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 157px;
}

.scene9 .mobile .image_box p {
    position: relative;
}

.scene9 .mobile .image_box img {
    position: relative;
    top: 0;
    transition: all 0.3s ease-in;
    box-shadow: 50px 50px 120px 0 rgba(0, 0, 0, 0.16);
    border-radius: 30px;
}

.scene9 .mobile .image_box p:hover img {
    top: -20px;
}

/* //scene9 */

/* scene10 */
.scene10 .reservation {
    position: relative;
    max-width: 1440px;
    width: 83%;
    margin: auto;
    padding: 12.5rem 0 7.5rem;
}

.scene10 .reservation .title_wrap {
    margin-bottom: 120px;
}

.scene10 .reservation .title_wrap .reservation_title {
    position: relative;
    font-size: 24px;
    font-weight: lighter;
    letter-spacing: -0.02em;
    color: #A28E80;
    margin-bottom: 32px;
}

.scene10 .reservation .title_wrap .subtitle {
    display: flex;
    justify-content: space-between;
}

.scene10 .reservation .title_wrap .reservation_subtitle {
    position: relative;
    font-size: 40px;
    font-weight: bold;
    line-height: 140%;
    letter-spacing: -0.02em;
    color: #574538;
}

.scene10 .reservation .title_wrap .reservation_content {
    position: relative;
    font-size: 22px;
    line-height: 140%;
    letter-spacing: -0.02em;
    color: #1A1A1A;
    max-width: 719px;
    word-break: break-all;
}

.scene10 .reservation .image_title {
    position: relative;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: -0.02em;
    color: #574538;
    margin-bottom: 40px;
}

.scene10 .reservation > img {
    position: relative;
    box-shadow: 50px 50px 120px rgba(0, 0, 0, 0.12);
    border-radius: 20px;
}

.scene10 .reservation > img:last-child {
    margin-top: 120px;
}

/* //scene10 */

/* scene11 */
.scene11 .innerWrap {
    position: relative;
    max-width: 1440px;
    width: 83%;
    margin: auto;
    padding: 0 0 15rem;
}

.scene11 .image_title {
    position: relative;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: -0.02em;
    line-height: 140%;
    color: #574538;
    margin-bottom: 40px;
}

.scene11 .reservation_main_image {
    position: relative;
    box-shadow: 50px 50px 120px 0 rgba(0, 0, 0, 0.16);
    margin-bottom: 160px;
    border-radius: 15px;
}

.scene11 .image_box {
    display: flex;
    /*flex-wrap: wrap;*/
    justify-content: space-between;
    gap: 157px;
}

.scene11 .image_box p {
    position: relative;
}

.scene11 .image_box p img {
    position: relative;
    top: 0;
    transition: all 0.3s ease-in;
    box-shadow: 50px 50px 120px 0 rgba(0, 0, 0, 0.16);
    border-radius: 20px;
}

.scene11 .image_box p img:hover {
    top: -20px;
}

/* //scene11 */

/* scene12 */
.scene12 {
    background-color: #574538;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scene12 .footer_logo {
    position: relative;
}

/* //scene12 */

/* 애니메이션 */
@keyframes phone {
    0% {
        bottom: -80px;
        opacity: 0;
    }
    100% {
        bottom: 0;
        opacity: 1;
    }
}

@keyframes image-zoom-out {
    from {
        transform: scale(1.08, 1.08)
    }
    to {
        transform: scale(1.0, 1.0)
    }
}

@keyframes text-active-animation {
    from {
        opacity: 0;
        filter: Alpha(opacity=0);
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }
    to {
        opacity: 1.0;
        filter: Alpha(opacity=100);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes text-fade-out {
    from {
        opacity: 1.0;
        filter: Alpha(opacity=100);
    }
    to {
        opacity: 0;
        filter: Alpha(opacity=0);
    }
}

@keyframes move_pc {
    0% {
        right: 0%;
    }
    100% {
        right: 10%;
    }
}

@keyframes move_mo {
    0% {
        right: 25%;
    }
    100% {
        right: 35%;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes sizeUp {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1.0);
        opacity: 1;
    }
}

@keyframes bottomGo {
    0% {
        bottom: -80px;
        opacity: 0;
    }
    100% {
        bottom: 0;
        opacity: 1;
    }
}

@keyframes topGo {
    0% {
        top: 80px;
        opacity: 0;
    }
    100% {
        top: 0;
        opacity: 1;
    }
}

@keyframes motopGo {
    0% {
        top: 0;
        opacity: 0;
    }
    100% {
        top: -40px;
        opacity: 1;
    }
}

@keyframes rightGo {
    0% {
        right: 10%;
    }
    100% {
        right: 5%;
    }
}

@keyframes sizeGo {
    0% {
        transform: scale(0.5);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes before_fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 5%;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 100%;
    }
}

/* //애니메이션 */

/* 반응형 */
@media all and (max-width: 1800px) {
    .scene6 .ui .ui_image .operate_image {
        display: none;
    }

    .scene7 .reservation_image {
        display: none;
    }
}

@media all and (max-width: 1670px) {
    .area-box {
        padding: 0 var(--area-padding);
        max-width: none;
    }
}

@media all and (max-width: 1470px) {
    .area {
        padding: 0 var(--area-padding);
        max-width: none;
    }
}

@media all and (max-width: 1200px) {
    .pc {
        display: none;
    }

    .mo {
        display: block;
    }

    .title_wrap .subtitle {
        flex-direction: column;
        gap: 30px;
    }

    .overview {
        padding: 5rem 0 2rem;
    }

    .overview_img img.pc {
        display: block;
    }

    .overview_img img.mo {
        display: none;
    }

    .scene2 .overview_content.mo {
        position: relative;
        width: 83%;
        opacity: 0;
        margin: 0 auto;
        padding-bottom: 96px;
        font-size: 22px;
        line-height: 140%;
    }

    .overview_img {
        width: 90%;
        display: block;
        padding: 0;
        margin-bottom: 32px;
        border-radius: 15px 0 0 15px;
    }

    .scene3 .process .process_content .mo {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .scene3 .process .process_content .pc {
        display: none;
    }

    .scene3 .process .process_content .mo img:nth-child(2) {
        margin-top: -14.5%;
    }

    .scene3 .process .process_content .mo div:nth-child(3) {
        position: relative;
        width: 230px;
        height: 230px;
    }

    .scene3 .process .process_content .mo div:nth-child(3) p {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 22px;
        font-weight: bold;
        line-height: 140%;
        text-align: center;
    }

    .scene6 .y_box {
        display: none;
    }

    .scene7 {
        height: 200px;
    }

    .scene8 {
        height: 715px;
    }
}

@media all and (max-width: 1000px) {
    .scene8 {
        height: 400px;
    }
}

@media all and (max-width: 768px) {

    .main-visual-txt-box .main-visual-txt-inner {
        width: 208px;
        height: 432px;
        border: 3px solid #fff;
        border-radius: 20px;
    }

    .overview {
        padding: 5rem 0 2rem;
    }

    .overview .overview_wrap {
        flex-direction: column;
    }

    .overview .overview_title {
        font-size: 20px;
    }

    .overview .overview_subtitle {
        font-size: 26px;
    }

    .overview .mo {
        position: relative;
        right: -10%;
        display: block;
        margin: 24px 0 32px;
        opacity: 0;
    }
    .overview_img {
        height: 160px;
        display: block;
        padding: 0;
        margin-bottom: 32px;
        border-radius: 15px 0 0 15px;
    }

    .overview_img img {
        top: -500px;
        right: 10%;
        animation: move_mo 10s linear;
    }

    .overview_img:hover img {
        transform: scale(0.95);
    }

    .overview .overview_content {
        font-size: 14px;
    }

    .scene2 .overview_content.mo {
        position: relative;
        width: 83%;
        opacity: 0;
        margin: 0 auto;
        padding-bottom: 96px;
        font-size: 14px;
        line-height: 140%;
        letter-spacing: -0.02em;
    }

    .process {
        padding: 0 0 5rem;
    }

    .process .title_wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 40px;
    }

    .process .process_title {
        font-size: 20px;
    }

    .process .title_wrap .subtitle {
        flex-direction: column;
        gap: 20px;
    }

    .process .title_wrap .process_subtitle {
        font-size: 26px;
    }

    .process .title_wrap .process_content {
        font-size: 14px;
    }

    .scene4:before {
        font-size: 88px;
        top: 29%;
        left: -3px;
    }

    .scene4 .page .title_wrap {
        flex-direction: column;
        gap: 24px;
        padding: 6rem 0 0;
        margin-bottom: 100px;
    }

    .scene4 .page .title_wrap .page_title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .scene4 .page .title_wrap .subtitle {
        flex-direction: column;
        gap: 20px;
    }

    .scene4 .page .title_wrap .page_subtitle {
        font-size: 26px;
    }

    .scene4 .page .title_wrap .page_content {
        font-size: 14px;
    }

    .scene4 .page .page_slide {
        padding-bottom: 6rem;
    }

    .scene4 .page .page_slide .slide_track {
        animation: scroll 80s linear infinite;
        display: flex;
        width: calc(250px * 23);
    }

    .scene4 .page .page_slide .slide_track .slide-item {
        margin-right: 20px;
    }

    .scene5 .title_wrap {
        padding: 6rem 0 4rem;
    }

    .scene5 .title_wrap .scene5_title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .scene5 .title_wrap .subtitle {
        flex-direction: column;
        gap: 20px;
    }

    .scene5 .title_wrap .scene5_subtitle {
        font-size: 26px;
    }

    .scene5 .title_wrap .scene5_content {
        font-size: 14px;
    }

    .scene5 .content {
        height: 840px;
        flex-direction: column;
    }

    .scene5 .content .content_box {
        height: 280px;
    }

    .scene5 .content .content_box .desktop {
        display: none;
    }

    .scene5 .content .content_box:nth-child(1) .mobile img {
        position: relative;
        opacity: 0;
    }

    .scene5 .content .content_box:not(:hover) {
        flex: 0.5 1 auto;
        height: 140px;
        font-size: 50px;
    }

    .scene5 .content .content_box:nth-child(3) .pc {
        display: none;
    }

    .scene5 .content .content_box:hover .big_box {
        display: flex;
        gap: 29px;
    }

    .scene5 .content .content_box:hover {
        flex: 3 1 auto;
        height: 560px;
    }

    .scene5 .content .content_box:nth-child(1):hover .mobile {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 32px;
    }

    .scene5 .content .content_box:nth-child(2) .small_box {
        max-width: 140px;
        transition: 0.5s linear;
    }

    .scene5 .content .content_box:nth-child(3) .small_box {
        max-width: 160px;
        transition: 0.5s linear;
    }

    .scene5 .content .content_box:nth-child(1):not(:hover) .small_box {
        flex-direction: row;
    }

    .scene5 .content .content_box:hover ~ .content_box:not(:hover) .small_box {
        max-width: 100px;
    }

    .scene5 .content .content_box:nth-child(1):not(:hover) .small_box p {
        font-size: 72px;
    }

    .scene5 .content .content_box:nth-child(1) .big_box {
        display: none;
    }

    .scene5 .content .content_box:nth-child(2):hover .big_box {
        width: 255px;
    }

    .scene5 .content .content_box:nth-child(3):hover .big_box {
        display: none;
    }

    .scene5 .content .content_box:hover .mo_big_box {
        display: block;
    }

    .scene5 .content .content_box:nth-child(3):hover .pc img {
        display: none;
    }

    .scene5 .content .content_box:nth-child(2):hover .pc {
        display: block;
    }

    .scene5 .content .content_box:nth-child(2):hover .pc .big_box {
        display: block;
    }

    .scene5 .content .content_box:nth-child(3):hover .mo {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    .scene5 .content .content_box:hover .mo {
        display: block;
    }

    .scene5 .content .content_box:nth-child(3) .mo img {
        position: relative;
        opacity: 0;
    }

    .scene5 .content .content_box:nth-child(3) .mo img:nth-child(1) {
        animation: bottomGo 0.75s ease forwards 0.5s;
    }

    .scene5 .content .content_box:nth-child(3) .mo img:nth-child(2) {
        animation: bottomGo 0.75s ease forwards 0.75s;
    }

    .scene5 .content .content_box:nth-child(3) .mo img:nth-child(3) {
        animation: bottomGo 0.75s ease forwards 1s;
    }

    .scene5 .content .content_box .mo {
        display: none;
    }

    .scene5 .content .content_box .small_box {
        gap: 40px;
    }

    .scene5 .content .content_box:nth-child(2):hover .big_box img:nth-child(1) {
        width: 142px;
    }

    .scene5 .content .content_box:nth-child(2):hover .big_box img:nth-child(2) {
        width: 256px;
    }

    .scene6 .ui {
        padding: 5rem 0 4rem;
    }

    .scene6 .ui .title_wrap {
        margin-bottom: 46px;
        flex-direction: column;
        gap: 24px;
    }

    .scene6 .ui .title_wrap .subtitle {
        flex-direction: column;
        gap: 32px;
    }

    .scene6 .ui .title_wrap .ui_title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .scene6 .ui .title_wrap .ui_subtitle {
        width: auto;
        font-size: 26px;
    }

    .scene6 .ui .title_wrap .ui_content {
        font-size: 14px;
        word-break: break-all;
    }

    .scene6 .ui .ui_image .image_title {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .scene6 .ui .ui_image img:nth-child(2) {
        box-shadow: 20px 20px 40px 0 rgba(0, 0, 0, 0.12);
    }

    .scene7 {
        height: 105px;
    }

    .scene8 {
        height: 218px;
    }

    .scene9 .mobile .title_wrap .mobile_title {
        font-size: 12px;
        line-height: 100%;
    }

    .scene9 .mobile .image_box {
        flex-wrap: wrap;
        gap: 35px;
    }

    .scene9 .mobile .image_box p {
        width: 44%;
    }

    .scene9 .mobile .image_box img {
        flex: 0;
        box-shadow: 20px 20px 40px 0 rgba(0, 0, 0, 0.12);
        border-radius: 10px;
    }

    .scene9 .mobile .image_box p:nth-child(2) {
        top: -30px;
    }

    .scene10 .reservation {
        padding: 6rem 0 4rem;
    }

    .scene10 .reservation .title_wrap {
        margin-bottom: 64px;
        flex-direction: column;
        gap: 24px;
    }

    .scene10 .reservation .title_wrap .subtitle {
        flex-direction: column;
        gap: 32px;
    }

    .scene10 .reservation .title_wrap .reservation_title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .scene10 .reservation .title_wrap .reservation_subtitle {
        font-size: 26px;
    }

    .scene10 .reservation .image_title {
        font-size: 12px;
        line-height: 100%;
        margin-bottom: 16px;
    }

    .scene10 .reservation .title_wrap .reservation_content {
        font-size: 14px;
    }

    .scene10 .reservation .reservation_main_image {
        box-shadow: 20px 20px 40px 0 rgba(0, 0, 0, 0.12);
        border-radius: 10px;
    }

    .scene10 .reservation .reservation_main_image:nth-child(2) {
        margin-bottom: 64px;
    }

    .scene10 .reservation .image_box {
        justify-content: flex-start;
        gap: 35px;
    }

    .scene10 .reservation > img:last-child {
        margin-top: 40px;
    }

    .scene10 .reservation .image_box p img {
        box-shadow: 20px 20px 40px 0 rgba(0, 0, 0, 0.12);
        border-radius: 10px;
    }

    .scene10 .reservation .image_box p img:nth-child(1) {
        margin-bottom: 20px;
    }

    .scene11 .innerWrap {
        padding: 0 0 7.5rem;
    }

    .scene11 .image_title {
        font-size: 12px;
        line-height: 100%;
    }

    .scene11 .image_box {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 40px;
    }

    .scene11 .image_box p img {
        box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.12);
    }

    .scene12 {
        height: 240px;
    }

}

@media all and (max-width: 375px) {
    .overview_img {
        min-width: 334.5px;
    }

    .overview_img img {
        top: -280px;
        right: 35%;
        animation: move_mo 5s linear;
    }
    .overview_img img.pc {
        display: none;
    }

    .overview_img img.mo {
        display: block;
    }

    .scene4:before {
        top: 30%;
    }
}
