@font-face {
    font-family: 'GMarketSans';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff') format('woff');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'GMarketSans';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'GMarketSans';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Thin.woff2') format('woff2');
    font-weight: 100;
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Black.woff2') format('woff2');
    font-weight: 900;
    font-display: swap;
}
:root{
    --mainSize: 19;
    --subFont: 'GMarketSans'
}
.pc{
    display: block;
}
.mobile{
    display: none;
}
@media screen and (max-width:1100px){
    :root{
        --mainSize: 11;
    }
    .pc{
        display: none;
    }
    .mobile{
        display: block;
    }
    .mbr{
        display: block;
    }
}
.blind {
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%); 
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
}
/*section1*/
.section1{
    background: url(/theme/landing/img/1_bg.jpg);
    background-size: cover;
    background-position: center center;
    height: 100%;
    text-align: center;
}
.section1 .inner{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
    position: relative;
    padding-top: calc(155vw/var(--mainSize));
    padding-bottom: calc(100vw/var(--mainSize));
}
.visual-img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}
.visual-img img{
    width: calc(925vw/var(--mainSize));
}
.visual-tit{
    z-index: 1;
}
.visual-tit p{
    overflow: hidden;
}
.visual-tit p:first-child span{
    display: inline-block;
    transform: translateY(100%);
    transition: transform 1s ease-in-out;
}
.visual-tit p:last-child span{
    display: inline-block;
    transform: translateY(100%);
    transition: transform 1s ease-in-out 0.2s;
}
.visual-tit p:first-child{
    font-size: clamp(34px, calc(42px + 2.5vw), 72px);
    font-family: var(--subFont);
    font-weight: 500;
    color: #fff;
    text-shadow: -6px 6px 18px rgba(0, 0, 0, 0.11);
}
.visual-tit p:first-child span strong{
    background: linear-gradient(to right,  #dcac57 0%,#f8e491 58%,#cda45f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 500;
}
.visual-tit p:last-child{
    font-size: clamp(18px, calc(8.182px + 1.818vw), 32px);
    font-weight: 300;
    color: #fff;
    font-family: var(--subFont);
    text-shadow: -6px 6px 18px rgba(0, 0, 0, 0.11);
}
.visual-tit2{
    color: #fff;
    font-size: clamp(14px, calc(9.727px + 1.023vw), 22px);
    line-height: clamp(18px, calc(12.182px + 1.818vw), 34px);
    z-index: 1;
    filter: blur(5px);
    opacity: 0;
    transition: filter 1s ease-in-out 1.2s, opacity 1s ease-in-out 0.4s;
}
.scroll-down{
    position: absolute;
    left: 50%;
    bottom: calc(40vw/var(--mainSize));
    width: calc(24vw/var(--mainSize));
    margin-left: calc(-12vw/var(--mainSize));
    animation: bounceDown 2s ease-in-out infinite;
    opacity: 0;
    transition: opacity 1s ease-in-out 0.8s;
}
@keyframes bounceDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
.section1.active .visual-tit p:first-child span,
.section1.active .visual-tit p:last-child span{
    transform: unset;
}
.section1.active .visual-tit2{
    opacity: 1;
    filter: blur(0);
}
.section1.active .scroll-down{
    opacity: 1;
}
@media screen and (max-width:1100px) {
    .section1{
        background: url(/theme/landing/img/1_bg_m.png);
        background-size: cover;
        background-position: center center;
    }
    .section1 .inner{
        padding-top: calc(308vw/var(--mainSize));
        padding-bottom: calc(248vw/var(--mainSize));
    }
    .scroll-down{
        width: calc(50vw/var(--mainSize));
        margin-left: calc(-25vw/var(--mainSize));
        bottom: calc(107vw/var(--mainSize));
    }
    .visual-img img{
        width: calc(1087vw/var(--mainSize));
        background-size: cover;
        background-position: center center;
    }
}
/*section2*/
.section2{
    background: #111;
}
.section2 .inner{
    width: calc(1400vw/var(--mainSize));
    margin: 0 auto;
    padding: calc(230vw/var(--mainSize)) 0;
    position: relative;
}
.section2 .inner::before{
    content: '';
    width: 100%;
    height: 1px;
    background: linear-gradient(to right,  #dcac57 0%,#f8e491 58%,#cda45f 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0.7;
}
.section2 .inner .img-wrap{
    display: grid;
    grid-gap: calc(16vw/var(--mainSize));
    grid-template-columns: calc(486vw/var(--mainSize)) 1fr;
}
.section2 .inner .img-wrap img{
    width: 100%;
    border-radius: calc(200vw/var(--mainSize));
    opacity: 0;
}
.section2 .inner .img-wrap img:first-child{
    transition: opacity 1s ease-in-out, border-radius 1s ease-in-out;
}
.section2 .inner .img-wrap img:nth-child(2){
    transition: opacity 1s ease-in-out 0.2s, border-radius 1s ease-in-out 0.2s;
}
.section2 .inner .img-wrap img:nth-child(3){
    transition: opacity 1s ease-in-out, border-radius 1s ease-in-out;
}
.section2 .inner .img-wrap img:nth-child(4){
    transition: opacity 1s ease-in-out 0.2s, border-radius 1s ease-in-out 0.2s;
}
.section2 .inner .txt-wrap{
    margin-top: calc(50vw/var(--mainSize));
    transform: translateY(100px);
    opacity: 0;
    transition: opacity 1s ease-in-out 0.4s, transform 1s ease-in-out 0.4s;
}
.section2 .inner .txt-wrap h2 span{
    font-weight: 600;
    font-size: calc(22vw/var(--mainSize));
    background: linear-gradient(to right, #dcac57 10%, #f8e491 60%, #cda45f 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: calc(24vw/var(--mainSize));
}
.section2 .inner .txt-wrap h2 p{
    font-family: var(--subFont);
    font-size: calc(28vw/var(--mainSize));
    font-weight: 500;
    color: #fff;
}
.section2 .inner .txt-wrap h3{
    margin-top: calc(40vw/var(--mainSize));
}
.section2 .inner .txt-wrap h3 p{
    font-size: calc(19vw/var(--mainSize));
    color: #fff;
    font-weight: 400;
    margin-bottom: calc(30vw/var(--mainSize));
}
.section2 .inner .txt-wrap h3 p:last-child{
    margin-bottom: 0;
}
.section2.active .inner .img-wrap img{
    border-radius: 0;
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}
.section2.active .inner .txt-wrap{
    opacity: 1;
    transform: translateY(0);
}
@media screen and (max-width:1100px) {
    .section2 {
        padding: 0 calc(100vw/var(--mainSize));
    }
    .section2 .inner{
        width: 100%;
    }
    .section2 .inner .img-wrap{
        grid-template-columns: 1fr;
    }
    .section2 .inner .txt-wrap{
        margin-top: calc(130vw/var(--mainSize));
    }
    .section2 .inner .txt-wrap h2{
        text-align: center;
    }
    .section2 .inner .txt-wrap h3{
        margin-top: calc(90vw/var(--mainSize));
    }
    .section2 .inner .txt-wrap h3 p{
        text-align: center;
        font-size: calc(36vw/var(--mainSize));
        line-height: calc(60vw/var(--mainSize));
    }
    .section2 .inner .txt-wrap h2 span{
        font-size: calc(40vw/var(--mainSize));
    }
    .section2 .inner .txt-wrap h2 p{
        font-size: calc(50vw/var(--mainSize));
        margin-bottom: calc(80vw/var(--mainSize));
    }
}
/*section3*/
.section3{
    background: #111;
}
.section3 .inner{
    width: calc(1400vw/var(--mainSize));
    margin: 0 auto;
    padding: calc(230vw/var(--mainSize)) 0;
    position: relative;
    display: grid;
    grid-gap: calc(63vw/var(--mainSize));
    grid-template-columns: calc(850vw/var(--mainSize)) 1fr;
    align-items: center;
    position: relative;
}
.section3 .inner::before{
    content: '';
    width: 100%;
    height: 1px;
    background: linear-gradient(to right,  #dcac57 0%,#f8e491 58%,#cda45f 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0.7;
}
.section3 .inner .img-wrap img{
    width: 100%;
    margin-bottom: calc(16vw/var(--mainSize));
    border-radius: calc(200vw/var(--mainSize));
    opacity: 0;
}
.section3 .inner .img-wrap img:last-child{
    margin-bottom: 0;
}
.section3 .inner .txt-wrap h2{
    margin-bottom: calc(50vw/var(--mainSize));
}
.section3 .inner .txt-wrap h2 span img{
    width: calc(120vw/var(--mainSize));
}
.section3 .inner .txt-wrap h2 p{
    font-family: var(--subFont);
    font-weight: 500;
    font-size: calc(28vw/var(--mainSize));
    color: #fff;
    margin-top: calc(10vw/var(--mainSize));
}
.section3 .inner .txt-wrap h3 p{
    margin-bottom: calc(30vw/var(--mainSize));
}
.section3 .inner .txt-wrap h3 p span{
    font-size: calc(19vw/var(--mainSize));
    font-weight: 400;
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, #fff 50%, #898989 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.section3.active .inner .img-wrap img:first-child{
    border-radius: 0;
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
    transition: opacity 1s ease-in-out, border-radius 1s ease-in-out;
}
.section3.active .inner .img-wrap img:nth-child(2){
    border-radius: 0;
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
    transition: opacity 1s ease-in-out 0.2s, border-radius 1s ease-in-out 0.2s;
}
.section3.active .inner .txt-wrap h3 p span {background-position: 0%; transition: background-position 1s ease-in-out 0.4s ;}
.section3.active .inner .txt-wrap h3 p:nth-child(2) span {background-position: 0%; transition: background-position 1s ease-in-out 0.6s;}
.section3.active .inner .txt-wrap h3 p:nth-child(3) span {background-position: 0%; transition: background-position 1s ease-in-out 0.8s;}
.section3 .inner .txt-wrap h3 p span.mobile{
    display: none;
}
@media screen and (max-width: 1100px) {
    .section3{
        padding: 0 calc(100vw/var(--mainSize));
    }
    .section3 .inner {
        width: 100%;
        grid-template-columns: 1fr;
    }
    .section3 .inner .txt-wrap h2 span img{
        width: calc(211vw/var(--mainSize));
    }
    .section3 .inner .txt-wrap{
        text-align: center;
    }
    .section3 .inner .txt-wrap h3 p span.pc {
        display: none;
    }
    .section3 .inner .txt-wrap h3 p span.mobile {
        display: block;
    }
    .section3.active .inner .txt-wrap h3 p span{
        font-size: calc(35vw/var(--mainSize));
        line-height: calc(60vw/var(--mainSize));
    }
    .section3 .inner .txt-wrap h3 p{
        margin-bottom: calc(70vw/var(--mainSize));
    }
    .section3 .inner .txt-wrap h2 p{
        font-size: calc(50vw/var(--mainSize));
    }
}
/*section4*/
.section4{
    background: #111;
}
.section4 .inner.pc{
    width: calc(1400vw/var(--mainSize));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: calc(20vw/var(--mainSize));
    padding: calc(230vw/var(--mainSize)) 0;  
}
.section4 .inner.pc img{
    width: 100%;
    border-radius: calc(200vw/var(--mainSize));
    opacity: 0;
}
.section4.active .inner.pc img{
    border-radius: 0;
    opacity: 1;
    transition: opacity 1s ease-in-out, border-radius 1s ease-in-out;
}
.section4.active .inner.pc img:nth-child(1) { transition-delay: 0.1s; }
.section4.active .inner.pc img:nth-child(2) { transition-delay: 0.3s; }
.section4.active .inner.pc img:nth-child(3) { transition-delay: 0.5s; }
.section4.active .inner.pc img:nth-child(4) { transition-delay: 0.7s; }
.section4.active .inner.pc img:nth-child(5) { transition-delay: 0.9s; }
.section4.active .inner.pc img:nth-child(6) { transition-delay: 1.1s; }
.section4 .inner.mobile{
    padding: calc(230vw/var(--mainSize)) calc(100vw/var(--mainSize));
}
.img-comp-container {
    position: relative;
    width: 100%;
    height: calc(480vw/var(--mainSize));
    margin-bottom: calc(50vw/var(--mainSize));
}
.img-comp-container:last-child{
    margin-bottom: 0;
}
.img-comp-img {
    position: absolute;
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.img-comp-container:first-child .img-comp-img-before {
    background-image: url('/theme/landing/img/4_img01.png');
    clip-path: inset(0 50% 0 0);
}
.img-comp-container:first-child .img-comp-img-after {
    background-image: url('/theme/landing/img/4_img02.png'); 
}
.img-comp-container:nth-child(2) .img-comp-img-before {
    background-image: url('/theme/landing/img/4_img03.png');
    clip-path: inset(0 50% 0 0);
}
.img-comp-container:nth-child(2) .img-comp-img-after {
    background-image: url('/theme/landing/img/4_img04.png'); 
}
.img-comp-container:last-child .img-comp-img-before {
    background-image: url('/theme/landing/img/4_img05.png');
    clip-path: inset(0 50% 0 0);
}
.img-comp-container:last-child .img-comp-img-after {
    background-image: url('/theme/landing/img/4_img06.png'); 
}
.img-comp-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: #ffffff;
    cursor: ew-resize;
    z-index: 1;
}
.img-comp-overlay::after{
    content: '';
    width: calc(66vw/var(--mainSize)); height: calc(66vw/var(--mainSize));
    background: url('/theme/landing/img/4_btn.png');
    background-size: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
@media screen and (max-width:1100px) {
    .section4 .inner.pc{
        display: none;
    }
}
/*section5*/
.section5{
    background: url(/theme/landing/img/5_bg.png)no-repeat;
    background-size: cover;
    background-position: center center;
    padding: calc(230vw/var(--mainSize)) 0;
}
.section5 .inner{
    width: calc(1400vw/var(--mainSize));
    margin: 0 auto;
    background: url(/theme/landing/img/5_box.png)no-repeat;
    background-size: cover;
    background-position: center center;
    padding: calc(50vw/var(--mainSize));
}
.section5 .inner h2{
    text-align: center;
}
.section5 .inner h2 p:first-child{
    font-family: var(--subFont);
    font-weight: 300;
    color: #fff;
    font-size: calc(32vw/var(--mainSize));
}
.section5 .inner h2:first-child span{
    color: #fff6a6;
}
.section5 .inner h2 p:last-child{
    font-family: var(--subFont);
    font-weight: 400;
    color: #fff;
    font-size: calc(54vw/var(--mainSize));
}
.section5 .inner h3{
    text-align: center;
    margin-top: calc(10vw/var(--mainSize));
}
.section5 .inner h3 p{
    font-size: calc(22vw/var(--mainSize));
    color: #fff;
    font-weight: 400;
}
.sec5-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: calc(50vw/var(--mainSize));
}
.sec5-list li{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
/* .sec5-list li:first-child,
.sec5-list li:last-child{
    transform: translateY(-20%);
}
.sec5-list li:nth-child(2){
    transform: translateY(20%);
} */
.sec5-list li::after{
    content: '';
    width: calc(17vw/var(--mainSize));
    height: calc(30vw/var(--mainSize));
    background: url(/theme/landing/img/5_arrow.png)no-repeat;
    background-size: cover;
    position: absolute;
    bottom: 50%;
    margin-bottom: calc(-15vw/var(--mainSize));
    right: 0;
}
.sec5-list li:last-child::after{
    display: none;
}
.sec5-list li img{
    display: block;
    margin: 0 auto;
}
.sec5-list li:first-child .dgt-img{
    width: calc(329vw/var(--mainSize));
}
.sec5-list li:nth-child(2) .dgt-img{
    width: calc(226vw/var(--mainSize));
}
.sec5-list li:last-child .dgt-img{
    width: calc(220vw/var(--mainSize));
}
.sec5-list li .dgt-icon{
    width: calc(57vw/var(--mainSize));
    margin-top: calc(26vw/var(--mainSize));
}
.sec5-list li .ttl{
    font-size: calc(24vw/var(--mainSize));
    color: #fff6a6;
    font-weight: 600;
    margin-top: calc(20vw/var(--mainSize));
}
.sec5-list li .desc{
    font-weight: 400;
    font-size: calc(22vw/var(--mainSize));
    color: #fff;
    text-align: center;
    margin-top: calc(15vw/var(--mainSize));
}
@media screen and (max-width:1100px){
    .section5 {
        padding: calc(230vw / var(--mainSize)) calc(100vw/var(--mainSize));
    }
    .section5 .inner{
        width: 100%;
        padding: calc(130vw/var(--mainSize)) calc(50vw/var(--mainSize));
    }
    .section5 .inner h2 p:first-child{
        font-size: calc(39vw/var(--mainSize));
    }
    .section5 .inner h2 p:last-child{
        font-size: calc(72vw/var(--mainSize));
    }
    .section5 .inner h3 p{
        font-size: calc(36vw/var(--mainSize));
        line-height: calc(60vw/var(--mainSize));
    }
    .section5 .inner h3 p:last-child{
        margin-top: calc(80vw/var(--mainSize));
    }
    .section5 .inner h3{
        margin-top: calc(80vw/var(--mainSize));
    }
    .sec5-list{
        grid-template-columns: repeat(1, 1fr);
    }
    .sec5-list li{
        margin-bottom: calc(150vw/var(--mainSize));
    }
    .sec5-list li:first-child .dgt-img{
        width: calc(494vw/var(--mainSize));
    }
    .sec5-list li:nth-child(2) .dgt-img{
        width: calc(355vw/var(--mainSize));
    }
    .sec5-list li:last-child .dgt-img{
        width: calc(368vw/var(--mainSize));
    }
    .sec5-list li .dgt-icon{
        width: calc(87vw/var(--mainSize));
        margin-top: calc(40vw/var(--mainSize));
    }
    .sec5-list li .desc{
        font-size: calc(32vw/var(--mainSize));
    }
    .sec5-list li::after{
        left: 50%;
        bottom: calc(-70vw/var(--mainSize));
        transform: rotate(90deg);
    }
    .sec5-list li .ttl{
        font-size: calc(36vw/var(--mainSize));
    }
}
/*section6*/
.section6{
    background: #111;
}
.section6 .inner{
    width: calc(1400vw/var(--mainSize));
    margin: 0 auto;
    position: relative;
    padding: calc(230vw/var(--mainSize)) 0;
}
.section6 .inner::before{
    content: '';
    width: 100%;
    height: 1px;
    background: linear-gradient(to right,  #dcac57 0%,#f8e491 58%,#cda45f 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0.7;
}
.section6 .inner h2 p:first-child img{
    width: calc(290vw/var(--mainSize));
}
.section6 .inner h2 p:last-child{
    font-family: var(--subFont);
    font-weight: 500;
    font-size: calc(54vw/var(--mainSize));
    color: #fff;
}
.section6 .inner h3{
    font-size: calc(24vw/var(--mainSize));
    font-weight: 400;
    color: #fff;
    margin: calc(30vw/var(--mainSize)) 0 calc(50vw/var(--mainSize)) 0;
}
.flx-wrap{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}
.flx-wrap .left{
    text-align: center;
}
.flx-wrap .left img{
    width: calc(430vw/var(--mainSize));
    max-width: 100%;
}
.flx-wrap .right li{
    margin-bottom: calc(100vw/var(--mainSize));
    padding-left: calc(30vw/var(--mainSize));
    position: relative;
}
.flx-wrap .right li::before{
    content: '';
    width: calc(5vw/var(--mainSize));
    height: 100%;
    background: #d79b41;
    position: absolute;
    left: 0;
    top: 0;
}
.flx-wrap .right li:last-child{
    margin-bottom: 0;
}
.flx-wrap .right li .title{
    background: linear-gradient(to right,  #dcac57 0%,#f8e491 58%,#cda45f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: var(--subFont);
    font-weight: 500;
    font-size: calc(28vw/var(--mainSize));
    line-height: calc(35vw/var(--mainSize));
    display: inline-block;
    margin-bottom: calc(12vw/var(--mainSize));
}
.flx-wrap .right li .detail{
    font-size: calc(19vw/var(--mainSize));
    color: #fff;
    font-weight: 400;
    line-height: calc(25vw/var(--mainSize));
}
@media screen and (max-width:1100px){
    .section6{
        padding: 0 calc(100vw/var(--mainSize));
    }
    .section6 .inner{
        width: 100%;
    }
    .section6 .inner h2 p:first-child{
        text-align: center;
        margin-bottom: calc(20vw/var(--mainSize));
    }
    .section6 .inner h2 p:first-child img{
        width: calc(471vw/var(--mainSize));
    }
    .section6 .inner h2 p:last-child{
        text-align: center;
    }
    .section6 .inner h3{
        text-align: center;
        font-size: calc(36vw/var(--mainSize));
        line-height: calc(60vw/var(--mainSize));
    }
    .flx-wrap{
        grid-template-columns: repeat(1, 1fr);
        grid-gap: calc(130vw/var(--mainSize));
    }
    .flx-wrap .right li .title{
        font-size: calc(42vw/var(--mainSize));
        line-height: calc(50vw/var(--mainSize));
    }
    .flx-wrap .right li .detail{
        font-size: calc(30vw/var(--mainSize));
        line-height: unset;
    }
}
/*section7*/
.section7{
    background: #111;
}
.section7 .inner{
    width: calc(1400vw/var(--mainSize));
    padding: calc(230vw/var(--mainSize)) 0;
    margin: 0 auto;
    position: relative;
}
.section7 .inner::before{
    content: '';
    width: 100%;
    height: 1px;
    background: linear-gradient(to right,  #dcac57 0%,#f8e491 58%,#cda45f 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0.7;
}
.section7 .inner .row1{
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-in-out 0s, transform 1s ease-in-out 0s;
}
.section7 .inner .row1 .txt-wrap h2{
    display: flex;
    align-items: center;
    gap: calc(10vw/var(--mainSize));
    padding-bottom: calc(28vw/var(--mainSize));
    margin-bottom: calc(30vw/var(--mainSize));
    position: relative;
}
.section7 .inner .row1 .txt-wrap h2::before{
    content: '';
    width: calc(30vw/var(--mainSize));
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
}
.section7 .inner .row1 .txt-wrap h2 span:first-child img{
    width: calc(140vw/var(--mainSize));
}
.section7 .inner .row1 .txt-wrap h2 span:last-child{
    font-family: var(--subFont);
    font-weight: 300;
    color: #fff;
    font-size: calc(30vw/var(--mainSize));
}
.section7 .inner .row1 .txt-wrap h3 p{
    font-size: calc(19vw/var(--mainSize));
    font-weight: 400;
    color: #fff;
    margin-bottom: calc(28vw/var(--mainSize));
}
.section7 .inner .row1 .txt-wrap h3 span{
    display: inline-block;
    font-size: calc(19vw/var(--mainSize));
    font-weight: 800;
    padding: calc(5vw/var(--mainSize)) calc(10vw/var(--mainSize));
    background: linear-gradient(to right,  #cf9b3b 0%,#d6b55f 61%,#c3913a 100%);
}
.section7 .inner .row1 .map-wrap{
    width: calc(940vw/var(--mainSize));
    position: relative;
}
.section7 .inner .row1 .map-wrap img{
    width: 100%;
}
.section7 .inner .row1 .map-wrap a{
    display: block;
    position: absolute;
    background: transparent;
    width: calc(138vw/var(--mainSize));
    height: calc(73vw/var(--mainSize));
}
.map-link1{
    left: calc(80vw/var(--mainSize));
    top: calc(80vw/var(--mainSize));
}
.map-link2{
    left: calc(80vw/var(--mainSize));
    top: calc(170vw/var(--mainSize));
}
.map-link3{
    left: calc(80vw/var(--mainSize));
    top: calc(260vw/var(--mainSize));
}
.map-link4{
    left: calc(80vw/var(--mainSize));
    top: calc(350vw/var(--mainSize));
}
.map-link5{
    left: calc(80vw/var(--mainSize));
    top: calc(436vw/var(--mainSize));
}
.map-link6{
    right: calc(95vw/var(--mainSize));
    top: calc(25vw/var(--mainSize));
}
.map-link7{
    right: calc(95vw/var(--mainSize));
    top: calc(115vw/var(--mainSize));
}
.map-link8{
    right: calc(95vw/var(--mainSize));
    top: calc(204vw/var(--mainSize));
}
.map-link9{
    right: calc(95vw/var(--mainSize));
    top: calc(293vw/var(--mainSize));
}
.map-link10{
    right: calc(95vw/var(--mainSize));
    top: calc(380vw/var(--mainSize));
}
.map-link11{
    right: calc(95vw/var(--mainSize));
    top: calc(467vw/var(--mainSize));
}
.wave{
    width: calc(24vw/var(--mainSize));
    height: calc(24vw/var(--mainSize));
    border-radius: 50%;
    border: 1px solid #7fd0ffa8;
    position: absolute;
    animation: wave-pulse 1.5s ease-in-out infinite;
}
.wave._1{
    top: calc(104vw / var(--mainSize));
    left: calc(362vw / var(--mainSize));
}
.wave._2{
    top: calc(132vw / var(--mainSize));
    left: calc(356vw / var(--mainSize));
}
.wave._3{
    bottom: calc(124vw / var(--mainSize));
    right: calc(438vw / var(--mainSize));
}
.wave._4{
    bottom: calc(226vw / var(--mainSize));
    right: calc(391vw / var(--mainSize));
}
@keyframes wave-pulse{
    0%{
        opacity: 0.2;
        transform: scale(1);
    }
    50%{
        opacity: 1;
        transform: scale(1.2);
    }
    100%{
        opacity: 0.2;
        transform: scale(1);
    }
}
.section7 .inner .row2{
    margin-top: calc(30vw/var(--mainSize));
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-in-out 0.45s, transform 1s ease-in-out 0.45s;
}
.item-wrap{
    width: 100%;
    height: calc(604vw/var(--mainSize));
    border: 1px solid #fff;
    background: #242424;
    padding-left: calc(780vw/var(--mainSize));
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sec7Swiper .swiper-slide:first-child .item-wrap{
    background: #242424 url(/theme/landing/img/7_img01.png)no-repeat left 0 top 0;
    background-size: calc(710vw/var(--mainSize)) 100%;
}
.sec7Swiper .swiper-slide:nth-child(2) .item-wrap{
    background: #242424 url(/theme/landing/img/7_img02.png)no-repeat left 0 top 0;
    background-size: calc(710vw/var(--mainSize)) 100%;
}
.sec7Swiper .swiper-slide:last-child .item-wrap{
    background: #242424 url(/theme/landing/img/7_img03.png)no-repeat left 0 top 0;
    background-size: calc(710vw/var(--mainSize)) 100%;
}
.item-wrap p:first-child{
    font-family: var(--subFont);
    font-weight: 500;
    color: #fff;
    font-size: calc(28vw/var(--mainSize));
    margin-bottom: calc(46vw/var(--mainSize));
}
.item-wrap p:nth-child(2){
    font-weight: 600;
    font-size: calc(22vw/var(--mainSize));
    color: #fff6a6;
    margin-bottom: calc(18vw/var(--mainSize));
}
.txtblue{
    color: #cadaf4 !important;
}
.item-wrap p:last-child{
    font-size: calc(19vw/var(--mainSize));
    font-weight: 400;
    color: #fff;
}
.sec7Swiper .swiper-pagination-bullet{
    background: #fff;
    border: 1px solid #b89157;
    opacity: 1;
}
.sec7Swiper .swiper-pagination-bullet-active{
    background: #b89157;
}
.section7.active .inner .row1,
.section7.active .inner .row2 {
    opacity: 1;
    transform: unset;
}
@media screen and (max-width:1100px){
    .section7{
        padding: 0 calc(100vw/var(--mainSize));
    }
    .section7 .inner{
        width: 100%;
    }
    .section7 .inner .row1{
        flex-direction: column;
        gap: calc(110vw/var(--mainSize));
    }
    .section7 .inner .row1 .txt-wrap h2{
        justify-content: center;
    }
    .section7 .inner .row1 .txt-wrap h2::before{
        display: none;
    }
    .section7 .inner .row1 .txt-wrap h3{
        text-align: center;
    }
    .section7 .inner .row1 .txt-wrap h2 span:first-child img{
        width: calc(250vw/var(--mainSize));
    }
    .section7 .inner .row1 .txt-wrap h2 span:last-child{
        font-size: calc(50vw/var(--mainSize));
    }
    .section7 .inner .row1 .txt-wrap h3 p{
        font-size: calc(30vw/var(--mainSize));
        line-height: calc(44vw/var(--mainSize));
        margin-bottom: calc(58vw/var(--mainSize));
    }
    .section7 .inner .row1 .txt-wrap h3 span{
        font-size: calc(30vw/var(--mainSize));
    }
    .section7 .inner .row1 .map-wrap{
        width: 100%;
    }
    .section7 .inner .row1 .map-wrap a{
        width: calc(202vw / var(--mainSize));
        height: calc(105vw / var(--mainSize));
    }
    .map-link1{
        left: calc(30vw/var(--mainSize));
        top: calc(192vw/var(--mainSize));
    }
    .map-link2{
        left: calc(30vw/var(--mainSize));
        top: calc(324vw/var(--mainSize));
    }
    .map-link3{
        left: calc(30vw/var(--mainSize));
        top: calc(455vw/var(--mainSize));
    }
    .map-link4{
        left: calc(30vw/var(--mainSize));
        top: calc(587vw/var(--mainSize));
    }
    .map-link5{
        left: calc(30vw/var(--mainSize));
        top: calc(716vw/var(--mainSize));
    }
    .map-link6{
        right: calc(30vw/var(--mainSize));
        top: calc(109vw/var(--mainSize));
    }
    .map-link7{
        right: calc(30vw/var(--mainSize));
        top: calc(241vw/var(--mainSize));
    }
    .map-link8{
        right: calc(30vw/var(--mainSize));
        top: calc(372vw/var(--mainSize));
    }
    .map-link9{
        right: calc(30vw/var(--mainSize));
        top: calc(504vw/var(--mainSize));
    }
    .map-link10{
        right: calc(30vw/var(--mainSize));
        top: calc(633vw/var(--mainSize));
    }
    .map-link11{
        right: calc(30vw/var(--mainSize));
        top: calc(761vw/var(--mainSize));
    }
    .wave._1{
        top: calc(231vw / var(--mainSize));
        left: calc(297vw / var(--mainSize));
    }
    .wave._2{
        top: calc(272vw / var(--mainSize));
        left: calc(289vw / var(--mainSize));
    }
    .wave._3{
        bottom: calc(255vw / var(--mainSize));
        right: calc(405vw / var(--mainSize));    
    }
    .wave._4{
        bottom: calc(406vw / var(--mainSize));
        right: calc(334vw / var(--mainSize));
    }
    .section7 .inner .row2{
        margin-top: calc(50vw/var(--mainSize));
    }
    .item-wrap{
        padding-left: calc(60vw/var(--mainSize));
        padding-right: calc(60vw/var(--mainSize));
        padding-top: calc(1015vw/var(--mainSize));
        padding-bottom: calc(217vw/var(--mainSize));
        height: auto;
    }
    .sec7Swiper .swiper-slide:first-child .item-wrap{
        background: #242424 url(/theme/landing/img/7_img01.png)no-repeat left 0 top 0;
        background-size: 100% calc(877vw/var(--mainSize));
    }
    .sec7Swiper .swiper-slide:nth-child(2) .item-wrap{
        background: #242424 url(/theme/landing/img/7_img02.png)no-repeat left 0 top 0;
        background-size: 100% calc(877vw/var(--mainSize));
    }
    .sec7Swiper .swiper-slide:last-child .item-wrap{
        background: #242424 url(/theme/landing/img/7_img03.png)no-repeat left 0 top 0;
        background-size: 100% calc(877vw/var(--mainSize));
    }
    .item-wrap p:first-child{
        font-size: calc(42vw/var(--mainSize));
    }
    .item-wrap p:nth-child(2){
        font-size: calc(36vw/var(--mainSize));
    }
    .item-wrap p:last-child{
        font-size: calc(30vw/var(--mainSize));
    }
}
/*section8*/
.section8{
    background: #111;
    padding: calc(230vw/var(--mainSize)) 0;
}
.section8 .inner{
    width: calc(1400vw/var(--mainSize));
    margin: 0 auto;
}
.comparison-container {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    gap: 0;
}
.comparison-title {
    grid-column: 1 / -1;
    font-family: var(--subFont);
    font-weight: 500;
    color: #fff;
    font-size: calc(28vw/var(--mainSize));
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}
.section8.active .comparison-title{
    opacity: 1;
    transform: unset;
}
.comparison-header {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: 1 / -1;
    border-bottom: 1px solid #fff;
    padding: calc(50vw/var(--mainSize)) 0 calc(30vw/var(--mainSize));
    align-items: center;
}
.comparison-row {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: 1 / -1;
    padding: calc(40vw/var(--mainSize)) 0;
    border-bottom: 1px solid #fff;
    align-items: center;
}
.row-label {
    grid-column: 1;
    font-size: calc(22vw/var(--mainSize));
    font-weight: 400;
    color: #fff;
}
.row-content:first-of-type {
    grid-column: 2;
}
.row-content:last-of-type {
    grid-column: 3;
}
.header-item.header-other{
    font-weight: 600;
    font-size: calc(22vw/var(--mainSize));
    color: #fff;
    text-align: center;
}
.header-item.header-smilefit{
    text-align: center;
}
.header-item.header-smilefit img{
    width: calc(109vw/var(--mainSize));
}
.content-text{
    font-size: calc(19vw/var(--mainSize));
    color: #fff;
    font-weight: 400;
    text-align: center;
}
.row-content.with-img{
    display: flex;
    align-items: center;
    justify-content: center;
}
.tooth-image img{
    width: calc(100vw/var(--mainSize));
}
@media screen and (max-width:1100px){
    .section8{
        padding: calc(230vw/var(--mainSize)) calc(100vw/var(--mainSize));
    }
    .section8 .inner{
        width: 100%;
    }
    .comparison-title{
        text-align: center;
        font-size: calc(50vw/var(--mainSize));
    }
    .header-item.header-smilefit img{
        width: calc(142vw/var(--mainSize));
    }
    .header-item.header-other{
        font-size: calc(30vw/var(--mainSize));
        font-weight: 600;
    }
    .row-label{
        font-size: calc(30vw/var(--mainSize));
    }
    .content-text{
        font-size: calc(22vw/var(--mainSize));
    }
}
/*section9*/
.section9{
    background: url(/theme/landing/img/9_bg.png)no-repeat;
    background-size: cover;
    background-position: center center;
    padding: calc(230vw/var(--mainSize)) 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: calc(50vw/var(--mainSize));
}
.section9 h2{
    text-align: center;
    font-size: calc(28vw/var(--mainSize));
    font-weight: 400;
    color: #fff;
}
.section9 h2 p span.txt-yellow{
    color: #fff6a6;
}
.sec9-logo{
    width: calc(229vw/var(--mainSize));
}
.sec9-logo img{
    width: 100%;
}
.section9 h3{
    font-family: var(--subFont);
    font-size: calc(40vw/var(--mainSize));
    font-weight: 500;
    color: #fff;
    text-align: center;
    line-height: calc(52vw / var(--mainSize));
}
.txt-grd{
    background: linear-gradient(to right,  #dcac57 0%,#f8e491 58%,#cda45f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.section9 h4{
    text-align: center;
    font-size: calc(22vw/var(--mainSize));
    font-weight: 400;
    color: #fff;
}
.section9 a img{
    width: calc(763vw/var(--mainSize));
}
@media screen and (max-width:1100px){
    .section9{
        background: url(/theme/landing/img/9_bg_m.png)no-repeat;
        background-size: cover;
        background-position: center center;
        gap: calc(100vw/var(--mainSize));
    }
    .section9 h2{
        font-size: calc(42vw/var(--mainSize));
    }
    .sec9-logo{
        width: calc(438vw/var(--mainSize));
    }
    .section9 h3{
        font-size: calc(60vw/var(--mainSize));
        line-height: calc(76vw/var(--mainSize));
    }
    .section9 a img{
        width: calc(948vw/var(--mainSize));
    }
    .section9 h4{
        font-size: calc(36vw/var(--mainSize));
    }
}