@charset "utf-8";

:root {
    --commonColor: #002928;
    --subColor: #BCE670;
    --bgColor: rgba(221, 255, 162, 0.5);
    --bgGradation: radial-gradient(ellipse at 210% 20%, #A4CE7A 0%, #A4CE7A 21%, #002928 93%);
    --lightColor: #DCFFA2;
    --paleColor: #E9FEE1;
    --accentColor: #7B57D2;
    --white: #ffffff;
    --gray: #F5F5F5;
    --red: #e63232;
    --titleFont: "Plus Jakarta Sans", sans-serif;
}


/*===================================================
  anim
====================================================*/
.anim {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.4s ease-out;
}
.anim.on {
	opacity: 1;
	transform: translateY(0);
}

@media screen and (max-width: 960px){}



/*===================================================
	ALL
====================================================*/
html {
    scroll-behavior: smooth;
}

.mainWrap {}
.mainWrap img {
    display: block;
}

.mainWrap .container {}

section {
    padding: 80px 0;
}
section h3 {}
section h3 span {}
section h4 {
    font-size: 42px;
    margin: 0 auto 40px;
    text-align: center;
}
section .inBox {
    max-width: 1180px;
    width: calc(100% - 80px);
    margin: 0 auto;
    padding: 40px;
}
section .inBox h5 {
    font-size: 26px;
    margin: 0 auto 30px;
    text-align: center;
}

section .red {
    color: var(--red);
}

@media screen and (min-width:961px) {
    
    .sp {
        display: none;
    }

    a {
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

}

@media screen and (max-width:960px) {
    
    .pc {
        display: none;
    }

    html {}

    .mainWrap {}

    .mainWrap .container {}

    section {
        padding: 50px 0;
    }
    section h3 {}
    section h3 span {}
    section h4 {
        font-size: 24px;
        margin: 0 auto 20px;
    }
    section .inBox {
        width: 86%;
    }
    section .inBox h5 {
        font-size: 18px;
        margin: 0 auto 15px;
    }

}



/*===================================================
    heroView
====================================================*/
#heroView {
    padding: 14vw 0 80px;
    background: var(--commonColor);
}
#heroView .heroInner {
    max-width: 1180px;
    width: calc(100% - 80px);
    margin: 0 auto;
}

#heroView h2 {
    font-family: var(--titleFont);
    color: var(--white);
    font-size: 48px;
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    animation: ttl 0.5s ease-out 1s forwards;
    line-height: 1.5em;
    font-weight: 700;
}
@keyframes ttl {
	0% { opacity: 0; transform: translateY(30px);}
	100% { opacity: 1; transform: translateY(0);}
}
#heroView h2 .sml {
    font-size: 0.6em;
}

#heroView .aboutApp {
	display: flex;
	justify-content: space-between;
	list-style: none;
	margin-bottom: 35px;
}
#heroView .aboutApp li {
	width: 32%;
    padding: 0 25px 40px;
	position: relative;
}
#heroView .aboutApp li.about01 {}
#heroView .aboutApp li.about02 {}
#heroView .aboutApp li.about03 {}

#heroView .aboutApp li::before{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
	background-color: var(--gray);
    top: 15%;
    height: 90%;
    border-radius: 10px
}
#heroView .aboutApp li::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--commonColor);
    z-index: 5;
    top: 15%;
    height: 90%;
}
@keyframes mask {
	0% { height: 100%;}
	100% { height: 0%;}
}

#heroView .aboutApp li .pic {
	max-width: 70%;
	margin: 0 auto;
	position: relative;
	z-index: 10;
	opacity: 0;
}
@keyframes pic {
	0% { opacity: 0; transform: translateY(30px);}
	100% { opacity: 1; transform: translateY(0);}
}

#heroView .aboutApp li .aboutTit {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
    margin-top: 15px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#heroView .aboutApp li p {
	font-size: 13px;
	position: relative;
}

@media screen and (min-width: 961px) {

    #heroView .method a:hover {
        background: #000;
        box-shadow: 0 15px 40px rgb(0 0 0 / 30%);
    }
    #heroView .appBtn li a:hover{
        transition: 0.4s;
        opacity: 0.8;
    }
	
	#heroView .aboutApp li::after {
		animation: mask 0.8s ease-out 2s forwards;
	}
	#heroView .aboutApp li .pic {
		animation: pic 1s ease-out 1.6s forwards;
	}

}

@media screen and (max-width: 960px) {

    #heroView {
        padding: 110px 0 50px;
    }
    #heroView .heroInner {
        max-width: initial;
        width: 100%;
        margin: 0 auto;
    }

    #heroView h2 {
        font-size: 6vw;
        margin-bottom: 8vw;
    }
    #heroView h2 .sml {
        font-size: 0.7em;
    }

    #heroView .aboutApp.slider {
		display: block;
		margin-bottom: 0;
        width: 100%;
	}

	#heroView .aboutApp.slider li {
        width: 100%;
        padding: 0 6vw 0vw;
        margin-bottom: 7vw;
        transition: transform 0.3s ease;
	}
    #heroView .aboutApp.slider .slick-slide {
        transform: scale(0.85);
        margin: 0 3px;
        transition: transform 0.3s ease;
    }
    #heroView .aboutApp.slider .slick-center {
        transform: scale(1);
        transition: transform 0.3s ease;
    }
    #heroView .aboutApp.slider .slick-list {
        margin: 0 -3px;
    }

    #heroView .aboutApp li::after {
        content: "";
        display: block;
        position: absolute;
        left: -5%;
        width: 110%;
        height: 110%;
        background-color: var(--commonColor);
        z-index: 5;
        top: 12.5%;
    }

	#heroView .aboutApp li.about01::after {
		animation: mask 0.8s ease-out 2s forwards;
	}
	#heroView .aboutApp li.about01 .pic {
		animation: pic 1s ease-out 1.6s forwards;
	}
	#heroView .aboutApp li.about02::after {
		animation: mask 0.8s ease-out 2s forwards;
	}
	#heroView .aboutApp li.about02 .pic {
		animation: pic 1s ease-out 1.6s forwards;
	}
	#heroView .aboutApp li.about03::after {
		animation: mask 0.8s ease-out 2s forwards;
	}
	#heroView .aboutApp li.about03 .pic {
		animation: pic 1s ease-out 1.6s forwards;
	}
	
	#heroView .aboutApp li .pic {}
    #heroView .aboutApp li .aboutTit {
        height: initial;
    }

}



/*===================================================
    intro
====================================================*/
#intro {
    padding: 80px 0 0;
}
#intro .inBox {
    padding: 0;
}
#intro .inBox h3 {
	text-align: center;
	font-size: 26px;
	margin-bottom: 50px;
}
#intro .inBox h3 span {
    border-bottom: solid 2px;
    padding-bottom: 10px;
}

#intro .inBox .appBtn {
	display: flex;
	justify-content: center;
	list-style: none;
	margin-bottom: 60px;
}
#intro .inBox .appBtn li {
	margin: 0 20px;
	height: 70px;
}
#intro .inBox .appBtn li:last-child {}
#intro .inBox .appBtn li a {}
#intro .inBox .appBtn li a img {
	height: 100%;
	width: auto;
}

#intro .inBox .btnBox {
    display: flex;
    justify-content: center;
    align-items: center;
}
#intro .inBox .btnBox p {
    max-width: 300px;
    width: 100%;
    margin: 0 40px 0 0;
}
#intro .inBox .btnBox p:last-child {}
#intro .inBox .btnBox p a {
    display: block;
    padding: 20px;
    border-radius: 100px;
    margin: 0 auto;
    font-weight: bold;
    text-align: center;
}
#intro .inBox .btnBox p:nth-child(1) a {
    background: var(--commonColor);
    color: var(--white);
}
#intro .inBox .btnBox p:nth-child(2) a {
    background: var(--lightColor);
    color: var(--commonColor);
}

@media screen and (min-width: 961px) {

    #intro .inBox .appBtn li a img {}
    #intro .inBox .appBtn li a img:hover {}

    #intro .inBox .btnBox p:nth-child(1) a:hover {
        background: var(--white);
        color: var(--commonColor);
    }
    #intro .inBox .btnBox p:nth-child(2) a:hover {
        background: var(--commonColor);
        color: var(--lightColor);
    }

}

@media screen and (max-width: 960px) {

    #intro {
        padding: 50px 0 0;
    }
    #intro .inBox {}
    #intro .inBox h3 {
        font-size: 4vw;
        margin-bottom: 8vw;
        line-height: 1.8;
    }
    #intro .inBox h3 span {
        padding: 0;
    }

    #intro .inBox .appBt {
        margin-bottom: 10vw;
    }
    #intro .inBox .appBtn li {
        margin: 0 2vw;
        height: 13vw;
    }
    #intro .inBox .appBtn li:last-child {}
    #intro .inBox .appBtn li a {}
    #intro .inBox .appBtn li a img {}

    #intro .inBox .btnBox {
        flex-direction: column;
    }
    #intro .inBox .btnBox p {
        margin: 0 auto 20px;
    }
    #intro .inBox .btnBox p:last-child {
        margin: 0 auto;
    }
    #intro .inBox .btnBox p a {}
    #intro .inBox .btnBox p:nth-child(1) a {}
    #intro .inBox .btnBox p:nth-child(2) a {}

}



/*===================================================
    app
====================================================*/
#app {}
#app h4 {}
#app .inBox {
    border-radius: 10px;
    background: var(--bgColor);
    border: 1px solid var(--subColor);
    margin: 0 auto 40px;
}
#app .inBox:nth-child(odd) {}
#app .inBox:last-child {
    margin: 0 auto;
}
#app .inBox h5 {
    margin: 0 auto 10px;
}

#app .inBox .flexBox {
    display: flex;
    width: 100%;
    align-items: center;
}
#app .inBox:nth-child(odd) .flexBox {
    flex-direction: row-reverse;
}

#app .inBox .imgList {
    width: 470px;
    display: flex;
    margin: 0 0 0 40px;
}
#app .inBox:nth-child(odd) .imgList {
    margin: 0 40px 0 0;
}
#app .inBox .imgList li {
    margin: 0 10px 0 0;
}
#app .inBox .imgList li:last-child {
    margin: 0;
}
#app .inBox .imgList.one {
    width: 150px;
}
#app .inBox .imgList.one li {}

#app .inBox .detailBox {
    width: calc(100% - 470px);
    text-align: center;
}
#app .inBox:nth-child(odd) .detailBox {
    width: calc(100% - 150px);
}
#app .inBox .detailBox .txtBox {
    margin-bottom: 20px;
    padding: 0 0 20px;
    border-bottom: 1px dashed;
}
#app .inBox .detailBox .txtBox:last-of-type {
    margin-bottom: 0;
    padding: 0;
    border: none;
}
#app .inBox .detailBox .txtBox p {
    margin-bottom: 5px;
}
#app .inBox .detailBox .txtBox p:last-child {
    margin-bottom: 0;
}
#app .inBox .detailBox .txtBox p.note {
    font-size: 13px;
}

#app .inBox .detailBox .btn.liveBtn {}
#app .inBox .detailBox .btn.liveBtn a {
    display: block;
    max-width: 300px;
    width: 90%;
    padding: 20px;
    border-radius: 100px;
    background: var(--commonColor);
    color: var(--white);
    margin: 020px auto 0;
    font-weight: bold;
}

@media screen and (min-width: 961px) {

    #app .inBox .detailBox .btn.liveBtn a:hover {
        color: var(--commonColor);
        background: var(--white);
    }

}

@media screen and (max-width: 960px) {

    #app {}
    #app h4 {}
    #app .inBox {
        padding: 20px;
        margin: 0 auto 20px;
    }
    #app .inBox:nth-child(odd) {}
    #app .inBox:last-child {}
    #app .inBox h5 {}

    #app .inBox .flexBox {
        display: flex;
        flex-direction: column;
    }
    #app .inBox:nth-child(odd) .flexBox {
        flex-direction: column;
    }

    #app .inBox .imgList {
        max-width: 470px;
        width: 100%;
        margin: 0 auto 0;
    }
    #app .inBox:nth-child(odd) .imgList {
        margin: 0 auto;
    }
    #app .inBox .imgList li {}
    #app .inBox .imgList li:last-child {}
    #app .inBox .imgList.one {}
    #app .inBox .imgList.one li {}

    #app .inBox .detailBox {
        width: 100%;
        margin: 0 auto 20px;
    }
    #app .inBox:nth-child(odd) .detailBox {
        width: 100%;
    }
    #app .inBox .detailBox .txtBox {
        text-align: left;
        margin-bottom: 15px;
    }
    #app .inBox .detailBox .txtBox:last-child {}
    #app .inBox .detailBox .txtBox p {}
    #app .inBox .detailBox .txtBox p:last-child {}
    #app .inBox .detailBox .txtBox p.note {
        font-size: 11px;
    }

    #app .inBox .detailBox .btn.liveBtn {}
    #app .inBox .detailBox .btn.liveBtn a {}

}



/*===================================================
   login
====================================================*/
#login {
    background: var(--bgGradation);
    color: var(--paleColor);
}
#login h4 {
    color: var(--lightColor);
}
#login .inBox {
    padding: 0;
}

#login .inBox .lead {
    margin-bottom: 40px;
    background: var(--commonColor);
    padding: 40px;
    border-radius: 10px;
}
#login .inBox .lead p {
    margin-bottom: 10px;
}
#login .inBox .lead p:last-child {
    margin-bottom: 0;
}
#login .inBox .lead p.note {
    font-size: 13px;
    text-indent: -1em;
    padding: 0 0 0 1em;
}

#login .inBox .detailBox {
    margin-bottom: 40px;
    background: var(--commonColor);
    padding: 40px;
    border-radius: 10px;
}
#login .inBox .detailBox:last-child {
    margin-bottom: 0;
}

#login .inBox .detailBox h5 {}

#login .inBox .detailBox .detailTxt {
    text-align: center;
    margin: 0 0 40px;
}

#login .inBox .detailBox .methodList {
    display: flex;
    margin: 0 auto;
    justify-content: center;
}
#login .inBox .detailBox .methodList .listItem {
    width: 21.25%;
    margin-right: 5%;
    position: relative;
}
#login .inBox .detailBox .methodList .listItem:last-child {
    margin-right: 0;
}
#login .inBox .detailBox .methodList .listItem img {
    display: block;
    border: none;
}
#login .inBox .detailBox .methodList .listItem .triangle {
    position: absolute;
    top: 41%;
    right: -17%;
    font-size: 24px;
}
#login .inBox .detailBox .methodList .listItem .itemTxt {
    padding: 20px 0 0;
}

#login .inBox .detailBox .methodList .listItem .ank {
    position: relative;
}
#login .inBox .detailBox .methodList .listItem .ank span {
    position: absolute;
}
#login .inBox .detailBox .methodList .listItem .ank .ios {
    width: 66%;
    height: 11.75%;
    left: 17%;
    bottom: 36%;
}
#login .inBox .detailBox .methodList .listItem .ank .and {
    width: 66%;
    height: 9.75%;
    left: 17%;
    bottom: 24.75%;
}
#login .inBox .detailBox .methodList .listItem .ank span a {
    display: block;
    width: 100%;
    height: 100%;
}

#login .inBox .detailBox .txtList {}
#login .inBox .detailBox .txtList li {
    margin-bottom: 10px;
    text-indent: -0.5em;
    padding: 0 0 0 0.5em;
}
#login .inBox .detailBox .txtList li:last-child {
    margin-bottom: 0;
}
#login .inBox .detailBox .txtList li.note {
    font-size: 13px;
    text-indent: -1em;
    padding: 0 0 0 1em;
    margin-bottom: 5px;
}

#login .inBox .attBox {
    background: var(--commonColor);
    padding: 40px;
    border-radius: 10px;
}
#login .inBox .attBox .attTit {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 18px;
}
#login .inBox .attBox .attTXt {
    margin-bottom: 10px;
}
#login .inBox .attBox .noteList {}
#login .inBox .attBox .noteList li {
    font-size: 13px;
    text-indent: -1em;
    padding: 0 0 0 1em;
    margin-bottom: 5px;
}
#login .inBox .attBox .noteList li:last-child {
    margin-bottom: 0;
}


@media screen and (min-width: 961px) {}

@media screen and (max-width: 960px) {

    #login {}
    #login h4 {}
    #login .inBox {}

    #login .inBox .lead {
        padding: 20px;
        margin: 0 auto 20px;
        max-width: 500px;
    }
    #login .inBox .lead p {}
    #login .inBox .lead p:last-child {}
    #login .inBox .lead p.note {
        font-size: 11px;
    }

    #login .inBox .detailBox {
        padding: 20px;
        margin: 0 auto 20px;
        max-width: 500px;
    }
    #login .inBox .detailBox:last-child {}

    #login .inBox .detailBox h5 {}

    #login .inBox .detailBox .detailTxt {
        text-align: left;
        margin-bottom: 0;
    }

    #login .inBox .detailBox .methodList {}
    #login .inBox .detailBox .methodList .listItem {}
    #login .inBox .detailBox .methodList .listItem:last-child {}
    #login .inBox .detailBox .methodList .listItem img {}
    #login .inBox .detailBox .methodList .listItem .triangle {}

    #login .inBox .detailBox .methodList .listItem .ank {}
    #login .inBox .detailBox .methodList .listItem .ank span {}
    #login .inBox .detailBox .methodList .listItem .ank .ios {}
    #login .inBox .detailBox .methodList .listItem .ank .and {}

    .page--stream #login .sp.swiper-box {
        border: none;
        margin: 0 auto;
        padding-bottom: 30px;
    }
    .page--stream #login .methodList li img {
        border: none;
        margin: 0 0 10px;
    }
    .page--stream #login .swiper-pagination-bullet {
        background: var(--paleColor);
    }

    .page--stream #login .swiper-button-prev {
        left: 0px;
        background: var(--lightColor);
        width: 30px;
        height: 30px;
        border-radius: 100px;
    }
    .page--stream #login .swiper-button-next {
        right: 0px;
        background: var(--lightColor);
        width: 30px;
        height: 30px;
        border-radius: 100px;
    }
    .page--stream #login .swiper-button-prev::after, 
    .page--stream #login .swiper-button-next::after {
        background-color: var(--commonColor);
        width: 10px;
        height: 16px;
    }

    #login .inBox .swiper-slide .ank {
        position: relative;
    }
    #login .inBox .swiper-slide .ank span {
        position: absolute;
    }
    #login .inBox .swiper-slide .ank .ios {
        width: 66%;
        height: 11.75%;
        left: 17%;
        bottom: 36%;
    }
    #login .inBox .swiper-slide .ank .and {
        width: 66%;
        height: 9.75%;
        left: 17%;
        bottom: 24.75%;
    }
    #login .inBox .swiper-slide .ank span a {
        display: block;
        width: 100%;
        height: 100%;
    }

    #login .inBox .detailBox .itemTxt {}

    #login .inBox .detailBox .txtList {}
    #login .inBox .detailBox .txtList li {}
    #login .inBox .detailBox .txtList li:last-child {}
    #login .inBox .detailBox .txtList li.note {
        font-size: 11px;
    }

    #login .inBox .attBox {
        padding: 20px;
        margin: 0 auto;
        max-width: 500px;
    }
    #login .inBox .attBox .attTit {}
    #login .inBox .attBox .attTXt {}
    #login .inBox .attBox .noteList {}
    #login .inBox .attBox .noteList li {
        font-size: 11px;
    }
    #login .inBox .attBox .noteList li:last-child {}

}



/*===================================================
    qa
====================================================*/
#qa {}
#qa .inBox {
    padding: 0;
}
#qa .inBox h5 {}

#qa .faqList {
	border-bottom: var(--commonColor) solid 1px;
    margin: 0 0 60px;
}
#qa .faqList dt {
	border-top: var(--commonColor) solid 1px;
	padding: min(4vw, 20px) 60px min(4vw, 20px) 0;
	font-size: min(3.4vw, 16px);
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 0 min(2vw, 10px);
	position: relative;
	cursor: pointer;
}
#qa .faqList dt::before {
	content: "Q.";
    font-size: min(5.4vw, 28px);
}
#qa .faqList dt span {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
}
#qa .faqList dt span::before,
#qa .faqList dt span::after {
	content: "";
	display: block;
	background-color: var(--commonColor);
	position: absolute;
}
#qa .faqList dt span::before {
	width: 100%;
	height: 1px;
	top: 50%;
	left: 0;
}
#qa .faqList dt span::after {
	width: 1px;
	height: 100%;
	left: 50%;
	top: 0;
	transition: all 0.3s ease-out;
}
#qa .faqList dt.on span::after {
	transform: rotate(90deg);
}
#qa .faqList dd {
	display: none;
	padding-bottom: min(6vw, 40px);
	position: relative;
    padding-left: min(8vw, 40px);
}
#qa .faqList dd::before {
	content: "A.";
    font-size: min(5.4vw, 28px);
	position: absolute;
	top: min(4vw, 17px);
	left: 0;
	line-height: 1;
}
#qa .faqList dd p {
	line-height: 1.6;
	font-size: min(3.2vw, 14px);
}
#qa .faqList dd a {
    border-bottom: var(--commonColor) solid 1px;
}

#qa .btn.faq a {
    display: block;
    max-width: 300px;
    width: 90%;
    padding: 20px;
    border-radius: 100px;
    background: var(--commonColor);
    color: var(--white);
    margin: 0 auto;
    font-weight: bold;
}

@media screen and (min-width: 961px) {

    #qa .btn.faq a:hover {
        background: var(--white);
        color: var(--commonColor);
    }

}

@media screen and (max-width: 960px) {

    #qa {}
    #qa .inBox {}
    #qa .inBox h5 {}

    #qa .faqList {
        margin: 0 0 30px;
    }
    #qa .faqList dt {
		padding: min(4vw, 20px) 30px min(4vw, 20px) 0;
	}
	#qa .faqList dt span {
		width: 20px;
		height: 20px;
	}

}