/* _____________________ header _____________________ */
.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    border-bottom: 1px solid #ccc;
    padding: 0 20px;
}
.header__nav ul {
    display: flex;
}
.header__nav li a {
    width: 120px;
    height: 40px;
    line-height: 40px;
    display: block;
    text-align: center;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    margin: 0 2px;
    transition: all 0.2s;
}
.header__nav li.active a,
.header__nav li:hover a {
    background-color: #E9E4FF;
    color: #412C86;
}
.header__ham {
    width: 40px;
    height: 40px;
    display: none;
}
.header__ham a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 18px 0 0 8px;
}
.header__ham a span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #412C86;
    border-radius: 3px;
    position: relative;
}
.header__ham a span::before {
    content: '';
    width: 24px;
    height: 3px;
    background-color: #412C86;
    border-radius: 3px;
    position: absolute;
    left: 0;
    bottom: 7px;
}
.header__ham a span::after {
    content: '';
    width: 24px;
    height: 3px;
    background-color: #412C86;
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: 7px;
}
@media (max-width: 1200px){
    .header__nav {
        display: none;
    }
    .header__ham {
        display: block;
    }
}
@media (max-width: 600px){
    .header__inner {
        height: 60px;
        padding: 0 16px;
    }
    .header__logo img {
        width: 120px;
        padding-top: 5px;
    }
}
/* _____________________ slider _____________________ */
/* .slider__inner {
    background-color: #A994FF;
    width: 100%;
    position: relative;
}
.slider__inner > .slider {
    width: 1280px;
    height: 600px;
    margin: 0 auto;
    padding: 100px 0;
    background-image: url(../img/slider01.jpg);
    background-repeat: no-repeat;
    background-position: right center;
}
.slider__text h3 {
    font-size: 66px;
    line-height: 1.3;
    color: #fff;
    font-weight: 300;
    margin-bottom: 120px;
}
.slider__text h3 em {
    font-weight: 800;
}
.slider__text p {
    color: #fff;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 50px;
}
.slider__arrow .left {
    position: absolute;
    left: 30px;
    top: 50%;
    width: 30px;
    height: 56px;
    margin-top: -28px;
    background-image: url(../img/slider_icon.svg);
}
.slider__arrow .right {
    position: absolute;
    right: 30px;
    top: 50%;
    width: 30px;
    height: 56px;
    margin-top: -28px;
    background-image: url(../img/slider_icon.svg);
    background-position: -50px 0;
}
.slider__dot a {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(../img/slider_icon.svg);
    background-position: -20px -70px;
}
.slider__dot a.play {
    background-position: -40px -70px;
}
.slider__dot a.stop {
    background-position: -60px -70px;
}
.slider__dot a.active {
    background-position: 0 -70px;
}
@media (max-width: 1290px){
    .slider__inner > .slider {
        width: 100%;
        padding: 80px 16px;
    }
    .slider__text h3 {
        font-size: 5vw;
        padding: 0 40px;
        word-break: keep-all;
    }
}
@media (max-width: 800px){
    .slider__inner > .slider {
        background-size: 60%;
        background-position: center bottom 80px;
    }
    .slider__text h3 {
        text-align: center;
    }
    .slider__text p {
        display: none;
    }
    .slider__arrow {
        display: none;
    }
    .slider__dot {
        position: absolute;
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%);
    }
}
@media (max-width: 600px){
    .slider__text h3 {
        font-size: 34px;
    }
    .slider__inner > .slider {
        background-size: 340px;
    }
} */

/* _____________________swiper slider _____________________ */
.swiper-slide {
    background-color: #a994ff;
}
.slider__text {
    width: 1280px;
    margin: 0 auto;
    padding: 120px 0;
    background-image: url(../img/slider01.jpg);
    background-repeat: no-repeat;
    background-position: right center;
}

.slider__text h3 {
    font-size: 60px;
    line-height: 1.3;
    color: #fff;
    font-weight: 300;
    margin-bottom: 120px;
}
.slider__text h3 em {
    font-weight: 800;
}
.slider__text p {
    color: #fff;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 50px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
}
.swiper-pagination-bullet {
    width: 15px !important;
    height: 15px !important;
    background-color: transparent !important;
    border: 4px solid #fff !important;
    opacity: 1 !important;
}
.swiper-pagination-bullet-active {
    background-color: #fff !important;
}
.swiper-button {
    position: absolute;
    left: 50%;
    bottom: 15px;
    z-index: 1000;
    display: flex;
    margin-left: 40px;
}
.swiper-button-play {
    width: 16px;
    height: 16px;
    background-image: url(../img/slider_icon.svg);
    background-position: -40px -70px;
    display: block;
}
.swiper-button-stop {
    width: 16px;
    height: 16px;
    background-image: url(../img/slider_icon.svg);
    background-position: -60px -70px;
    display: block;
    margin-left: 5px;
}

@media (max-width: 1300px){
    .slider__text {
        width: 90%;
        
    }
}
@media (max-width: 1200px){
    .slider__text {
        background-position: center bottom;
        background-size: 600px;
        padding: 100px 0 420px 0;
    }
    .slider__text h3 {
        text-align: center;
        font-size: 50px;
        margin-bottom: 50px;
    }
    .slider__text p {
        text-align: center;
    }
}
@media (max-width: 800px){
    .slider__text {
        padding: 80px 0 320px 0;
        background-size: 400px;
    }
    .slider__text h3 {
        font-size: 40px;
    }
    .slider__text p {
        font-size: 16px;
    }
}

/* _____________________ intro _____________________ */
.intro__inner {
    padding: 100px 0;
    overflow: hidden;
}
.intro__inner .container {
    display: flex;
    justify-content: space-between;
}
.intro__img {
    width: 60%;
    position: relative;
}
.intro__img .img1 {
    position: absolute;
    left: 20%;
    top: 10%;
}
.intro__img .img1 img {
    width: 700px
}
.intro__img .img2 {
    position: absolute;
    left: -25%;
    top: -20%;
}
.intro__img .img2 img {
    width: 600px;
}
.intro__img .img3 {
    position: absolute;
    left: 50%;
    top: -20%;
    transform: translateX(-50%);
}
.intro__img .img3 img {
    width: 600px;
}
.intro__text {
    width: 33%;
    width: 415px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    padding: 60px 0;
    z-index: 100;
}
.intro__text h3 {
    font-size: 53px;
    line-height: 1.3;
    margin-bottom: 50px;
    font-weight: 300;
}
.intro__text h3 em {
    font-weight: 800;
}
.intro__text p {
    font-size: 18px;
    line-height: 1.5;
}

@media (max-width: 1200px){
    .intro__inner .container  {
        flex-direction: column-reverse;
    }
    .intro__inner {
        padding-bottom: 0;
    }
    .intro__img {
        width: 100%;
    }
    .intro__img .img3 {
        position: relative;
        text-align: center;
        bottom: -10px;
    }
    .intro__text {
        width: 100%;
        flex-direction: column;
        text-align: center;
        padding-bottom: 0;
    }
}
@media (max-width: 800px){ 
    .intro__inner {
        padding-top: 80px;
    }
    .intro__text {
        padding-top: 0;
    }
    .intro__text h3 {
        font-size: 40px;
        margin-bottom: 20px;
    }
    .intro__text p {
        font-size: 16px;
    }
}

@media (max-width: 600px){ 
    .intro__text h3 {
        font-size: 34px;
    }   
    .intro__text p {
        font-size: 14px;
    }
    .intro__img .img1 img {
        display: none;
    }
    .intro__img .img2 img {
        width: 100%;
    }
    .intro__img .img3 img {
        width: 100%;
    }
}

/* _____________________ point use _____________________ */

#pointUse {
    background-color: #f8f8f8;
}
.use_inner {
    padding: 100px 0;
}
.use_title {
    margin-bottom: 40px;
}
.use_title h3 {
    font-size: 45px;
    font-weight: 800;

}
.use_title h3 em {
    font-weight: 300;
}
.use_title h3 span {
    font-size: 18px;
    font-weight: 400;
    color: #333;
}
.use_img {
    display: flex;
    justify-content: space-between;
}

.use_img > div {
    width: 32%;
    text-align: center;
    position: relative;
}
.use_img > div figure {
    width: 100%;
    border-radius: 20px;
    position: relative;

}
.use_img > div figure img {
    border-radius: 20px;
}
.use_img > div figure::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #dfdfdf4f;
    backdrop-filter: blur(10px);
    z-index: 10;
    border-radius: 20px;
    opacity: 0;
    transition: all 0.3s;
    cursor: pointer;
}

.use_img > div figcaption {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: #fff;
    z-index: 100;
    font-weight: 800;
    opacity: 0;
    transition: opacity 0.5s;
}
.use_img > div figure:hover::after {
    opacity: 1;
}
.use_img > div figure:hover figcaption {
    opacity: 1;
    
}
.use_img > div p {
    padding: 10px;
    color: #6d6d6d;
    font-size: 16px;
    text-align: center;
}
@media (max-width: 800px){
    .use_inner {
        padding: 80px 0;
    }

    .use_title h3 {
        font-size: 34px;
        text-align: center;
    }
    .use_title h3 span {
        display: block;
        font-size: 16px;
        margin-bottom: 6px;
        margin-top: 15px;
    }

    .use_img {
        flex-direction: column;
    }
    .use_img > div {
        width: 60%;
        margin: 0 auto 40px auto;
    }
    .use_img > div:last-child {
        margin-bottom: 0;
    }
    .use_img > div figure:hover::after  {
        opacity: 0;
    }
    .use_img > div figcaption {
        position: relative;
        color: #000;
        opacity: 1;
        margin-top: 25px;
        font-size: 18px;
        font-weight: 500;
    }
    .use_img > div p {
        padding: 0;
        margin-top: -10px;
    }
}

@media (max-width: 600px){
    .use_img > div {
        width: 100%;
    }
}

/* _____________________ point up _____________________ */
#point_up {}
.up_inner {
    padding: 100px 0;
}
.up_title h3 {
    font-size: 45px;
    font-weight: 800;

}
.up_title h3 em {
    font-weight: 300;
}
.up_title h3 span {
    font-size: 18px;
    font-weight: 400;
    color: #333;
}
.up_slider {
    position: relative;
}
.up_slider .img {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.up_slider .img > div {
    width: 15%;
    text-align: center;
}
.up_slider .img > div.active {
    width: 30%;
    padding: 3%;
    position: relative;
}
.up_slider .img > div.active::before {
    content: '';
    background-image: url(../img/up_bg.png);
    background-size: 100%;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.up_slider .img > div span {
    display: block;
    visibility: hidden;
    font-size: 24px;
    font-weight: 800;
    margin-top: 20px;
}
.up_slider .img > div em {
    visibility: hidden;
    font-size: 16px;
    color: #6d6d6d;
}
.up_slider .img > div.active span,
.up_slider .img > div.active em {
    visibility: visible;
}
.up_slider .img > div.active img {
    box-shadow: 5px 5px 5px rgba(0, 0, 0, .1);
    border-radius: 50%;
}
.up_slider .btn a {
    position: absolute;
    top: 50%;
    width: 30px;
    height: 26px;
    background-image: url(../img/slider_icon.svg);
}
.up_slider .btn a.left {
    left: 0;
    background-position: 0 -93px;
    margin: -50px 0 0 -50px;
}
.up_slider .btn a.right {
    right: 0;
    background-position: -36px -93px ;
    margin: -50px -50px 0 0;
}

@media (max-width: 800px){
    .up_inner {
        padding: 80px 0;
    }
    .up_title h3 {
        font-size: 34px;
        text-align: center;
    }
    .up_title h3 span {
        display: block;
        font-size: 16px;
        margin-bottom: 6px;
        margin-top: 15px;
    }
}

/* _____________________ swiper2 :  POINT UP _____________________ */
.swiper2 {
    position: relative;
}
.swiper2 .swiper-slide {
    text-align: center;
    background-color: #fff;
}
.swiper2 .swiper-slide img {
    padding: 30px;
}
.swiper2 .swiper-slide span {
    display: block;
    /* visibility: hidden; */
    font-size: 24px;
    font-weight: 800;
    margin-top: 20px;
}
.swiper2 .swiper-slide em {
    /* visibility: hidden; */
    font-size: 16px;
    color: #6d6d6d;
}


/* ______________________download______________________ */
.download_inner {
    background-color: #3a35e8;
    padding: 100px 0;
    text-align: center;
    position: relative;
}
.download_title h3 {
    font-size: 45px;
    line-height: 1;
    color: #fff;
    font-weight: 300;
}
.download_title p {
    font-size: 45px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 60px;
}
.download_img {

}
.download_img .img {
    width: 470px;
    margin: 0 auto 60px auto;
    position: relative;
}
.download_img .img img {
    position: relative;
    z-index: 10;
}
.download_img .img::before {
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #5d4cf38e;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.download_img .img::after {
    content: '';
    width: 92%;
    height: 92%;
    border-radius: 50%;
    background-color: #ffffff8e;
    position: absolute;
    left: 4%;
    top: 4%;
    z-index: 2;
}
.download_img .btn a{
    border: 1PX solid #fff;
    display: inline-block;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    padding: 15px 60px;
    border-radius: 10px;
}

.download_bg {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

@media (max-width: 800px) {
    .download_inner {
        padding: 80px 0;
    }
    .download_title {
        padding: 0 20px;
    }
    .download_title h3 {
        font-size: 34px;
        line-height: 1.4;
        margin-bottom: 5px;
        word-break: keep-all;
    }
    .download_title p {
        font-size: 16px;
        font-weight: 300;
    }
    .download_img .img {
        width: 80%;
    }
    .download_img .btn a {
        font-size: 18px;
        padding: 10px 40px;
    }
}

/* _____________________footer_____________________ */
.footer_inner {
    padding: 100px 0;
}
.footer_inner .container {
    display: flex;
    justify-content: space-between;
}
.footer_logo {
    width: 20%;
}
.footer_logo img {
    width: 160px;
}
.footer_info {
    width: 60%;
}
.footer_info ul:first-child {
    margin-bottom: 50px;
}
.footer_info li{
    display: inline-block;
    line-height: 2;
}
.footer_info li a {
    margin-right: 45px;
}
.footer_info li a:hover {
    text-decoration: underline;
    text-underline-position: under;
}
.footer_info ul:last-child li {
    color: #6f6f6f;
}
.footer_sns {
    width: 20%;
    text-align: right;
}
.footer_sns ul {
    display: flex;
    justify-content: right;
}
.footer_sns li {
    display: inline-block;
    width: 26px;
    height: 26px;
    margin-left: 5px;
    background-image: url(../img/slider_icon.svg);
}
.footer_sns li:nth-child(1){
    background-position: 0 -130px;
}
.footer_sns li:nth-child(2){
    background-position: -30px -130px;
}
.footer_sns li:nth-child(3){
    background-position: -60px -130px;
}


@media (max-width: 960px) {
    .footer_inner .container {
        flex-direction: column;
    }
    .footer_logo {
        margin-bottom: 10px;
    }
    .footer_info {
        width: 100%;
    }
    .footer_info li {
        display: block;
        line-height: 1.7;
    }
    .footer_info ul:first-child {
        margin-bottom: 20px;
    }
    .footer_sns ul {
        justify-content: left;
    }
    .footer_sns li {
        margin-left: 0;
        margin-right: 5px;
        margin-top: 10px 5px 0 0;
    }
}

@media (max-width: 600px) {
    .footer_inner {
        padding: 80px 0;
    }
}