@charset "utf-8";

/* CSS Document */

@import 'reset.css';
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&amp;display=swap');



/* -------------------------------- 

global style

-------------------------------- */

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: #FDE9E2;
    font-family: "Noto Sans TC", "Microsoft JhengHei", "微軟正黑體", "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    overflow-x: hidden;
}

a {
    color: #1467A7;
    text-decoration: none;
}

.clear {
    clear: both
}

a,
a:active,
a:visited,
a:hover,
li a:visited {
    text-decoration: none;
}

.img-fluid {
    width: 100%;
}

.eng-num {
    font-family: 'Roboto';
}

/* -------------------------------- 

MENU_選單

-------------------------------- */

.cd-auto-hide-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background-color: #ffffff;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    display: flex;
    justify-content: center;
}

.cd-auto-hide-header::after {
    clear: both;
    content: "";
    display: block;
}

@media screen and (min-width: 1024px) {
    .cd-auto-hide-header {
        height: 65px;
    }
}

@media screen and (max-width: 590px) {
    .cd-auto-hide-header {
        height: 60px;
    }
}

.cd-auto-hide-header .navber_logo_ttl,
.cd-auto-hide-header .nav-trigger {
    position: absolute;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.cd-auto-hide-header ul.navber_logo_ttl {
    display: flex;
    align-items: center;
    padding-right: 5px;
    right: 0;
}

.cd-auto-hide-header ul.navber_logo_ttl .wv_logo a {
    display: block;
    width: 110px;
    height: 48px;
    background: url('../img/wv-logo.svg') no-repeat left center;
    font-size: 0;
    -webkit-background-size: cover;
    background-size: cover;
    margin-right: 5px;
}


.cd-auto-hide-header ul.navber_logo_ttl .pa_logo a {
    display: block;
    width: 100px;
    height: 35px;
    background: url('../img/logo-pa.png') no-repeat left center;
    font-size: 0;
    -webkit-background-size: cover;
    background-size: cover;
    margin-right: 15px;
}


@media (max-width: 990px) {
    .cd-auto-hide-header ul.navber_logo_ttl {
        padding-left: 2%;
    }
}


@media (max-width: 590px) {

    .cd-auto-hide-header ul.navber_logo_ttl .cross {
        display: block;
        width: 10px;
        height: 10px;
    }

    .cd-auto-hide-header ul.navber_logo_ttl .pa_logo a {
        display: block;
        width: 80px;
        height: 28px;
    }

}


.cd-auto-hide-header .nav-trigger {
    /* vertically align its content */
    display: table;
    height: 100%;
    padding: 0 1.5em;
    left: 0;
    background-color: #E76E29;
}


.cd-auto-hide-header .nav-trigger span {
    /* vertically align inside parent element */
    display: table-cell;
    vertical-align: middle;
}

.cd-auto-hide-header .nav-trigger em,
.cd-auto-hide-header .nav-trigger em::after,
.cd-auto-hide-header .nav-trigger em::before {
    /* this is the menu icon */
    display: block;
    position: relative;
    height: 3px;
    width: 24px;
    background-color: #ffffff;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.cd-auto-hide-header .nav-trigger em {
    /* this is the menu central line */
    margin: 8px auto;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
}

.cd-auto-hide-header .nav-trigger em::before,
.cd-auto-hide-header .nav-trigger em::after {
    position: absolute;
    content: '';
    left: 0;
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
}

.cd-auto-hide-header .nav-trigger em::before {
    /* this is the menu icon top line */
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
}

.cd-auto-hide-header .nav-trigger em::after {
    /* this is the menu icon bottom line */
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
}

@media screen and (min-width: 1024px) {
    .cd-auto-hide-header .nav-trigger {
        display: none;
    }
}

.cd-auto-hide-header.nav-open .nav-trigger em {
    /* transform menu icon into a 'X' icon */
    background-color: rgba(255, 255, 255, 0);
}

.cd-auto-hide-header.nav-open .nav-trigger em::before {
    /* rotate top line */
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.cd-auto-hide-header.nav-open .nav-trigger em::after {
    /* rotate bottom line */
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.cd-primary-nav {
    display: inline-block;
    float: right;
    height: 100%;
    padding-right: 1%;
}

.cd-primary-nav>ul {
    position: absolute;
    z-index: 2;
    top: 65px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    display: none;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
}

.cd-primary-nav>ul a {
    display: block;
    height: 65px;
    line-height: 65px;
    color: #000;
    font-size: 19px;
    position: relative;
    text-align: center;
    font-weight: 500;
}

.cd-primary-nav>ul li.social_box {
    background: none;
}

.cd-primary-nav>ul li.social_box a:before {
    display: none;
}

.cd-primary-nav>ul li.social_box a:hover:before {
    display: none;
}

.cd-primary-nav>ul li.social_box .social {
    height: 65px;
    display: flex;
    align-items: center;
}

.cd-primary-nav>ul li.social_box .social a.fb {
    display: block;
    width: 32px;
    height: 32px;
    font-size: 0;
    border-radius: 50%;
    background: url('../img/fb-icon.svg');
    -webkit-background-size: cover;
    background-size: cover;
    background-color: #3B5A9F;
    margin: 0 5px;
    padding: 3px;
}

.cd-primary-nav>ul li.social_box .social a.line {
    display: block;
    width: 32px;
    height: 32px;
    font-size: 0;
    border-radius: 50%;
    background: url('../img/line-icon.svg');
    -webkit-background-size: cover;
    background-size: cover;
    background-color: #53D259;
    margin: 0 5px;
    padding: 3px;
}


@media screen and (max-width: 1024px) {

    .cd-primary-nav>ul li.social_box .social {
        justify-content: center;
    }

    .cd-primary-nav>ul li:first-child {
        border-top: 1px solid #f6f6f6;
    }

    .cd-primary-nav>ul li:nth-child(even) {
        background-color: #f6f6f6;
    }

    .cd-primary-nav>ul li.nav-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 65px;
    }

    .cd-primary-nav>ul a {
        color: #333333;
    }
}

@media screen and (max-width: 590px) {

    .cd-auto-hide-header .nav-trigger {
        /* vertically align its content */
        display: table;
        height: 100%;
        padding: 0 1em;
        right: 0;
        background-color: #E76E29;
    }

    .cd-primary-nav>ul {
        top: 60px;
    }
}


@media screen and (min-width: 1024px) {
    .cd-primary-nav {
        /* vertically align its content */
        display: table;
    }

    .cd-primary-nav>ul {
        /* vertically align inside parent element */
        display: table-cell;
        /* vertical-align: middle; */
        /* reset mobile style */
        position: relative;
        width: auto;
        height: 65px;
        line-height: 65px;
        top: 0;
        padding: 0;
        background-color: transparent;
        box-shadow: none;
    }

    .cd-primary-nav>ul::after {
        clear: both;
        content: "";
        display: block;
    }

    .cd-primary-nav>ul li {
        display: inline-block;
        float: left;
        height: 65px;
        text-align: center;
        text-decoration: none;
    }

    .cd-primary-nav>ul li:last-of-type {
        margin-right: 0;
    }

    .cd-primary-nav>ul a {
        /* reset mobile style */
        height: auto;
        font-size: 18px;
        margin: 0 13px;
        line-height: 65px;
        font-weight: 500;
        padding: 0;
        border: none;
        position: relative;
    }

    .cd-primary-nav>ul a:before {
        content: ' ';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 0;
        background: #ffffff;
        transition: height 0.3s;
    }

    .cd-primary-nav>ul li.nav-btn a:hover:before {
        height: 0px;
    }

    .cd-primary-nav>ul li.nav-btn a:before {
        content: ' ';
        width: 0;
        height: 0;
    }

    .cd-primary-nav>ul a:hover:before {
        height: 3px;
        transition: height 0.3s;
    }

    .cd-primary-nav>ul a:last-child:before:hover {
        width: 100%;
    }

    .cd-primary-nav>ul li:last-child a:after {
        display: none;
    }
}

.nav-open .cd-primary-nav ul,
.cd-primary-nav ul:target {
    display: block;
}

@media screen and (min-width: 1200px) {

    .nav-open .cd-primary-nav ul,
    .cd-primary-nav ul:target {
        display: table-cell;
    }
}

.divide04{
    width: 100%;
    height: 150px;
    background-image: url('../img/bg-divide-04.svg');
    background-position: center;
}


@media (max-width: 540px) {
    .divide04{
        width: 100%;
        height: 60px;
    }
}

a.home{
    position: fixed;
    width: 120px;
    height: 200px;
    background-image: url('../img/home-link.svg');
    background-size: cover; 
    bottom: 20%;
    right: 6%;
    z-index: 10;
    font-size: 0;
    animation:  floating2 1s infinite alternate;
    -webkit-animation:  floating2 1s infinite alternate;
}

a.back{
    position: fixed;
    width: 120px;
    height: 200px;
    background-image: url('../img/back-link.svg');
    background-size: cover; 
    bottom: 20%;
    right: 6%;
    z-index: 10;
    font-size: 0;
    animation:  floating2 1s infinite alternate;
    -webkit-animation:  floating2 1s infinite alternate;
}

.page-header{
    height: 430px;
    background-color: #FDE9E2;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.header-inner{
    position: relative; 
}

.page-header .img-header-mom{
    width: 450px;
    height: 451px;
    background-image: url('../img/img-header-mom.svg');
    background-size: cover;
    position: absolute;
    bottom: -150px;
    left: -150px;
}

.page-header .img-header-mom{
    width: 450px;
    height: 451px;
    background-image: url('../img/img-header-mom.svg');
    background-size: cover;
    position: absolute;
    bottom: -150px;
    right: -150px;
}


.page-header .img-header-girl{
    width: 400px;
    height: 326px;
    background-image: url('../img/img-header-girl.svg');
    background-size: cover;
    position: absolute;
    bottom: -100px;
    right: -50px;
}

.header-text-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-text-box p{
    font-size: 18px;
    line-height: 36px;
    text-align: center;
}

.header-text-box .header-ttl{
    width:400px;
    height: 117px;
    background-image: url('../img/img-kv-ttl.svg');
    background-size: cover; 
    font-size: 0;
    margin: 30px auto 10px auto;
}

@media (max-width: 1200px) {
    a.home{
        width: 100px;
        height: 167px;
        bottom: 20%;
        right: 3%;
    }
    a.back{
        width: 100px;
        height: 167px;
        bottom: 20%;
        right: 3%;
    }
}

@media (max-width: 690px) {
    a.home{
        width: 90px;
        height: 150px;
        bottom: -40px;
        right: 3%;
    }
    a.back{
        width: 90px;
        height: 150px;
        bottom: -40px;
        right: 3%;
    }
}
@media (max-width: 1024px) {
    .page-header{
        display: none;
    }
}

.arti-body{
    overflow: hidden;
}

#ARTI_CONTENT{
    padding-bottom: 80px;
    position: relative;
}

#ARTI_CONTENT .img-arti-bg-left{
    width: 780px;
    height: 1109px;
    background-image: url('../img/img-arti-bg-left.svg');
    background-size: cover; 
    position: absolute;
    left: -420px; 
}

#ARTI_CONTENT .img-arti-bg-right{
    width: 750px;
    height: 976px;
    background-image: url('../img/img-arti-bg-right.svg');
    background-size: cover; 
    position: absolute;
    bottom: -200px;
    right: -250px; 
}

.article-contet{
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px 1px rgba(64,60,67,.05);
    margin-top: -30px;
    padding:  45px 60px 0px 60px;
    position: relative;
    overflow: hidden;
}

.article-contet .arti-ttl{
    display: flex;
    justify-content: center;
    align-items: center;
}

.article-contet .arti-ttl .tag{
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    padding: 8px 15px 8px 50px;
    background-color: #495C83;
    border-radius: 70px;
    margin-right: 15px;
    position: relative;
}

.article-contet .arti-ttl .tag span.heart{
    display: block;
    width: 32px;
    height: 35px;
    background-image: url('../img/img-heart.svg');
    background-size: cover; 
    position: absolute;
    left: 12px;
    top: -6px;
}

.article-contet .arti-ttl h4{
    font-size: 28px;
    line-height: 42px;
    text-align: justify;
    font-weight: bold;
    color: #3A405D;
}


.article-contet .arti-ttl-sub h4{
    font-size: 20px;
    line-height: 32px;
    text-align: justify;
    font-weight: bold;
    color: #3A405D;
    padding-bottom: 10px;
}

.article-contet .arti-ttl h4 span{
    color: #C74C2B;
}

.article-contet .article-img {
    padding: 40px 80px;
}

.article-contet .article-img img{
    border-radius: 8px;
}

.article-contet p {
    font-size: 17px;
    line-height: 36px;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

.article-contet a{
    text-decoration: underline;
    color: #E5815C;
    font-weight: 500;
}

.article-contet a:hover{
    text-decoration: none;
}

.article-contet h5 {
    font-size: 20px;
    font-weight: 500;
    line-height: 34px;
    margin-bottom: 20px;
    margin-top: 30px;
    color: #a50034;
}

@media (max-width: 1024px) {
    .article-contet .article-img {
        padding: 40px 40px;
    }

    .article-contet{
        padding:  45px 40px 35px 40px;
    }

    .article-contet .arti-ttl{
        flex-direction: column;
    }

    .article-contet .arti-ttl .tag{
        margin-bottom: 10px;
    }

    .article-contet{
        margin-top: 95px;
    }
}

@media (max-width: 690px) {

    .article-contet .article-img {
        padding: 40px 20px;
    }
    .article-contet p {
        font-size: 18px;
        line-height: 38px;
    }


}

@media (max-width: 540px) {

    .article-contet{
        padding:  45px 20px 0px 20px;
    }

    .article-contet .article-img {
        padding: 40px 0px;
    }

}

@media (max-width: 540px) {
    .article-contet .arti-ttl .tag{
        font-size: 16px;
    }
}

.join-box{
    display: flex;
    flex-direction: row-reverse;
    padding: 0 5%;
    margin-top: 50px;
}

.join-box-left{
    flex: 1;
    animation:  floating2 2s infinite alternate;
    -webkit-animation:  floating2 2s infinite alternate;
}

.join-box-right{
    padding: 0 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.join-box-right h4{
    color: #C74C2B;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.join-box-right p{
    text-align: center;
    font-size: 17px;
    line-height: 36px;
    font-weight: 400;
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .join-box-left{
        margin-bottom: -55px;
    }

}

@media (max-width: 768px) {
    .join-box{
        display: flex;
        flex-direction: column;
        padding: 0 5%;
        margin-top: 50px;
    }

    .join-box-left{
        margin-bottom: -20px;
        margin-top: 40px;
    }
}

a.btn{
  display: inline-block;
  border-radius: 40px;
  font-weight: 500;
  font-size: 22px;
  line-height: 22px;
  padding: 13px 55px 15px 55px;
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: #E5815C; 
  color: #FFFFFF;
  transition: .5s;
  text-decoration: none;
}


a.btn.btn-md{
  font-size: 18px;
  line-height: 20px;
  padding: 8px 42px 10px 42px;
}

a.btn .la-icon{
    font-size: 18px;
    margin-left: 5px;
}

a.btn:hover{
    color: #FFFFFF;
    background-color: #CF572D;
    transition: .5s;
}


.light_bg{
    background-color: #FFF3EE;
}

#KV{
    min-height: 940px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 155px;
    padding-bottom: 140px;
    position: relative;
    overflow: hidden;
}

.divide01{
    width: 100%;
    height: 190px;
    background-image: url('../img/bg-divide-01.svg');
    background-position: center;
    position: absolute;
    bottom: 0px;
    z-index: 15;
}

.wave{
    width: 450px;
    height: 490px;
    background-image: url('../img/img-wave.svg');
    background-size: cover;
    position: absolute;
    top: -150px;
    right: -150px;
}

.wave2{
    width: 450px;
    height: 490px;
    background-image: url('../img/img-wave.svg');
    background-size: cover;
    position: absolute;
    bottom: -150px;
    left: -150px;
    transform:rotate(180deg);
}

.dot{
    width: 98px;
    height: 121px;
    background-image: url('../img/img-dot.svg');
    background-size: cover;
    position: absolute;
    top: 200px;
    left: 5%;
}

.dot2{
    width: 98px;
    height: 121px;
    background-image: url('../img/img-dot.svg');
    background-size: cover;
    position: absolute;
    bottom: 250px;
    right: 5%;
}

.kv-inner{
    position: relative;
}

.img-kv-mom-box{
    position: absolute;
    left: 0;
    min-height: 850px;
}

.img-kv-mom-box .img-kv-mom{
    width: 511px;
    height: 766px;
    background-image: url('../img/img-kv-mom.svg');
    background-size: cover;
    position: absolute;
    bottom: 150px;
    left: -250px;
    z-index: 2;
}

.img-kv-mom-box .img-kv-mom-flower-01{
    width: 180px;
    height: 294px;
    background-image: url('../img/img-mom-flower-01.svg');
    background-size: cover;
    position: absolute;
    bottom: -30px;
    right: 0px;
    z-index: 3;
    animation: swing  1s infinite alternate;
    -webkit-animation: swing 1s infinite alternate;
}

.img-kv-mom-box .img-kv-mom-flower-02{
    width: 180px;
    height: 294px;
    background-image: url('../img/img-mom-flower-02.html');
    background-size: cover;
    position: absolute;
    bottom: -30px;
    right: 0px;
    z-index: 3;
    animation: swing  1s infinite alternate;
    -webkit-animation: swing 1s infinite alternate;
}

.img-kv-mom-box .img-kv-mom-flower-03{
    width: 388px;
    height: 397px;
    background-image: url('../img/img-mom-flower-03.svg');
    background-size: cover;
    position: absolute;
    top: 10px;
    right: -40px;
    z-index: 1;
    animation: swing  1.3s infinite alternate;
    -webkit-animation: swing 1.3s infinite alternate;
}

.img-kv-girl-box{
    position: absolute;
    right: 0;
    min-height: 850px;
}

.img-kv-girl-box .img-kv-girl{
    width: 473px;
    height: 613px;
    background-image: url('../img/img-kv-girl.svg');
    background-size: cover;
    position: absolute;
    bottom: 170px;
    left: -250px;
    z-index: 3;
}
.img-kv-girl-box .img-kv-girl .img-kv-butterfly{
    width: 75px;
    height: 75px;
    background-image: url('../img/img-kv-butterfly.svg');
    background-size: cover;
    position: absolute;
    top: -20px;
    left: -40px;
    z-index: 3;
    animation: pulse  1.2s infinite alternate;
    -webkit-animation: pulse 1.2s infinite alternate;
}

.img-kv-girl-box .img-kv-girl .img-kv-girl-flower-01{
    width: 201px;
    height: 149px;
    background-image: url('../img/img-kv-girl-flower-01.svg');
    background-size: cover;
    position: absolute;
    bottom: 100px;
    right: 110px;
    z-index: 3;
    animation: pulse  1s infinite alternate;
    -webkit-animation: pulse 1s infinite alternate;
}

.img-kv-girl-box .img-kv-girl .img-kv-girl-flower-02{
    width: 114px;
    height: 310px;
    background-image: url('../img/img-kv-girl-flower-02.svg');
    background-size: cover;
    position: absolute;
    bottom: 50px;
    right: 0px;
    z-index: 3;
    animation: swing  1s infinite alternate;
    -webkit-animation: swing 1s infinite alternate;
}


.img-kv-girl-box .img-kv-girl-flower-03{
    width: 149px;
    height: 321px;
    background-image: url('../img/img-kv-girl-flower-03.svg');
    background-size: cover;
    position: absolute;
    top: 50px;
    right: -220px;
    z-index: 1;
    animation: swing  .5s infinite alternate;
    -webkit-animation: swing .5s infinite alternate;
}

.kv-inner .kv-text-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.kv-inner .kv-text-box .kv-ttl{
    width:450px;
    height: 131px;
    background-image: url('../img/img-kv-ttl.svg');
    background-size: cover; 
    font-size: 0;
    margin: 0 auto 20px auto;
}

.kv-inner .kv-text-box p{
    font-size: 18px;
    line-height: 36px;
    text-align: center;
}

.kv-inner .kv-text-box .circle{
    animation: floating 1s infinite alternate;
    -webkit-animation: floating 1s infinite alternate;
}

.kv-inner .kv-text-box .circle a{
    display: block;
    width: 65px;
    height: 65px;
    background-image: url('../img/img-kv-circle.svg');
    background-size: cover;  
    margin-top: 20px;
    font-size: 0;
}

.kv-inner .kv-text-box .img-kv-m{
    display: none;
}

.kv-inner .kv-text-box .text-m{
    display: none;
}


@media (max-width: 1680px) {

    .img-kv-mom-box{
        left: 80px;
    }

    .img-kv-girl-box{
        right: 80px;
    }

}

@media (max-width: 1200px) {

    .img-kv-mom-box{
        left: -80px;
    }

    .img-kv-girl-box{
        right: -80px;
    }

}

@media (max-width: 990px) {
    .wave, .wave2, .dot, .dot2{
        display: none;
    }
    .kv-inner .kv-text-box .kv-ttl{
        width:400px;
        height: 116px;
    }

    .kv-inner .kv-text-box .circle{
        display: none;
    }

    .kv-inner .kv-text-box .img-kv-m{
        display: block;
        margin-top: 30px;
    }

    .kv-inner .kv-text-box .text-pc{
        display: none;
    }

    .kv-inner .kv-text-box .text-m{
        display: block;
    }

    #KV{
        min-height: 880px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 85px;
        padding-bottom: 0px;
    }

    .img-kv-mom-box{
        display: none;
    }

    .img-kv-girl-box{
        display: none;
    }
}


@media (max-width: 990px) {
    #KV{
        min-height: 960px;
    }
}

@media (max-width: 768px) {
    #KV{
        min-height: 900px;
    }
}

@media (max-width: 540px) {
    #KV{
        min-height: 880px;
    }
}

@media (max-width: 440px) {
    #KV{
        min-height: 840px;
    }
    .kv-inner .kv-text-box .kv-ttl{
        width:350px;
        height: 102px;
    }

}

@media (max-width: 375px) {

    .kv-inner .kv-text-box .kv-ttl{
        width:320px;
        height: 93px;
    }

}

#CHARTCARD{
    padding: 50px 0 200px 0;
    overflow: hidden;
    position: relative;
}


#CHARTCARD .img-chratcard-bg-left{
    width: 750px;
    height: 1140px;
    background-image: url('../img/img-chratcard-bg-left.svg');
    background-size: cover; 
    position: absolute;
    left: -390px; 
}

#CHARTCARD .img-chratcard-bg-right{
    width: 650px;
    height: 1064px;
    background-image: url('../img/img-chratcard-bg-right.svg');
    background-size: cover; 
    position: absolute;
    right: -250px; 
    bottom: -300px;
}


@media (max-width: 990px) {

    #CHARTCARD .img-chratcard-bg-left{
        display: none;
    }

    #CHARTCARD .img-chratcard-bg-right{
        display: none;
    }
}


.chart-inner .chart-ttl{
    width: 435px;
    height: 35px;
    background-image: url('../img/chart-ttl.svg');
    background-size: cover;
    font-size: 0;
    margin: 0px auto;
}

.girl-chart-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0 80px 0;
}

.girl-chart-info{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.girl-chart-img {
  padding: 20px;
}

/* .girl-chart-img img {
  width: 200px;
} */

.girl-chart-percent ul li {
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  margin-left: 3px;
}

.girl-chart-percent ul li span.small {
  font-size: 12px;
}

.girl-chart-percent ul li span.color {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-right: 5px;
}

.girl-chart-percent ul li span.color.yellow {
   background-color: #FFE480;
}

.girl-chart-percent ul li span.color.orange {
  background-color: #EF936E;
}

.girl-chart-percent ul li span.color.brown {
  background-color: #E1BF6D;
}

.girl-chart-percent ul li span.color.brown2 {
  background-color: #C59B37;
}

.girl-chart-percent ul li span.color.red {
  background-color: #D26D47;
}

.girl-chart-percent p{
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 6px;
  margin-top: 6px;
}

.girl-chart-point {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  margin-top: 30px;
}

.girl-chart-point .eng-num {
  font-size: 30px;
  color: #E35D4F;
  margin: 0 3px 0 2px;
}

.girl-chart-point .eng-num .small {
  font-size: 15px;
}

.card-inner{
    min-height: 500px;
}

.card-inner .card-ttl{
    width: 435px;
    height: 35px;
    background-image: url('../img/card-ttl.svg');
    background-size: cover;
    font-size: 0;
    margin: 0px auto;
}

.card-wrap{
    display: flex;
    margin-top: 70px;
}

.card-left-box{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 70px;
    position: relative;
    min-height: 410px;
}

.card-right-box{
    flex: 1;
    padding-top: 100px;
    position: relative;
    min-height: 450px;
}

.img-card-flower-01{
    width: 153px;
    height: 162px;
    background-image: url('../img/img-card-flower-01.svg');
    background-size: cover;
    position: absolute;
    top: 200px;
    right: 380px;
    z-index: 48;
    animation: swing  .7s infinite alternate;
    -webkit-animation: swing .7s infinite alternate;
}

.img-card-flower-02{
    width: 231px;
    height: 360px;
    background-image: url('../img/img-card-flower-02.svg');
    background-size: cover;
    position: absolute;
    top: 110px;
    left: -150px;
    z-index: 49;
    animation: swing  .7s infinite alternate;
    -webkit-animation: swing .7s infinite alternate;
}

.img-card-flower-03{
    width: 180px;
    height: 202px;
    background-image: url('../img/img-card-flower-03.svg');
    background-size: cover;
    position: absolute;
    bottom: 0px;
    right: -20px;
    z-index: 49;
    animation: swing 1s infinite alternate;
    -webkit-animation: swing 1s infinite alternate;
}

.card-left-box .img-butterfly{
    width: 55px;
    height: 53px;
    background-image: url('../img/img_butterfly.svg');
    background-size: cover;
    position: absolute;
    top: 50px;
    left: 0;
    animation:  pulse .5s infinite alternate;
    -webkit-animation:  pulse .5s infinite alternate;
}

.card-left-box .card-box{
    position: absolute;
    z-index: 49;
}

.card-right-box .card-box{
    position: absolute;
    z-index: 50;
}

.card-img img{
    border-radius: 5px;
}

.card-box{
    width: 340px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0px 6px 0px #FCE9D8;
    padding: 15px 15px 15px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-left-box .img-card-girl-01{
    width: 120px;
    height: 198px;
    background-image: url('../img/img-card-girl-01.svg');
    background-size: cover;
    position: absolute;
    left: -60px;
    bottom: -150px;
    animation: floating 2s infinite alternate;
    -webkit-animation: floating 2s infinite alternate;
}


.card-right-box .img-card-girl-02{
    width: 139px;
    height: 213px;
    background-image: url('../img/img-card-girl-02.svg');
    background-size: cover;
    position: absolute;
    right: 50px;
    top: -150px;
    animation: floating 1.5s infinite alternate;
    -webkit-animation: floating 1.5s infinite alternate;
}

.card-box h4{
    text-align: center;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    margin-top: 15px;
}

a.btn.btn-md{
    text-align: center;
}



@media (max-width: 1200px) {

    .img-card-flower-03{
        right: -100px;
        z-index: 49;
    }

    .card-left-box .img-butterfly{
        top: 50px;
        left: -50px;
    }


}

@media (max-width: 1024px) {

    .card-wrap{
        display: block;
        margin-top: 70px;
    }


    .img-card-flower-02{
        display: none;
    }

    .img-card-flower-01{
        display: none;
    }


    .img-card-flower-03{
        display: none;
    }

    .card-left-box .img-butterfly{
        display: none;
    }

    .card-left-box .img-card-girl-01{
        left: 0px;
        bottom: 0px;
    }

    .card-right-box .img-card-girl-02{
       right: 50px;
       top: 70%;
    }
}


@media (max-width: 960px) {

    .girl-chart-box {
      padding: 20px 0 20px 0;
    }

    .girl-chart-info{
      flex-direction: row;
    }

    .chart-inner {
        padding-bottom: 80px;
    }
}


@media (max-width: 768px) {

    .card-left-box .img-card-girl-01{
        left: -50px;
        bottom: 0px;
    }

    .card-right-box .img-card-girl-02{
       right: 0px;
       top: 70%;
    }
}


@media (max-width: 540px) {

    .card-inner .card-ttl, .chart-inner .chart-ttl{
        width: 400px;
        height: 32px;
    }

    .girl-chart-info{
      flex-direction: column;
    }

    .card-left-box .img-card-girl-01{
        display: none;
    }

    .card-right-box .img-card-girl-02{
        display: none;
    }

    .card-left-box{

    }

    .card-left-box {
        align-items: center;
        padding-right: 0px;
        position: relative;
        min-height: auto;
    }

    .card-right-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        position: relative;
        min-height: auto;
    }

    .card-left-box .card-box{
        position: static;
    }

    .card-right-box .card-box{
        position: static;
    }

    #CHARTCARD {
        padding: 50px 0 80px 0;
    }
}

@media (max-width: 440px) {

    .card-inner .card-ttl, .chart-inner .chart-ttl{
        width: 330px;
        height: 27px;
    }
}


@media (max-width: 375px) {

    .card-inner .card-ttl, .chart-inner .chart-ttl{
        width: 310px;
        height: 25px;
    }

}

#ARTICLE{
    padding: 50px 0 200px 0;
    overflow: hidden;
    position: relative;
}




.divide03{
    width: 100%;
    height: 190px;
    background-image: url('../img/bg-divide-03.svg');
    background-position: center;
    position: absolute;
    bottom: 0px;
    z-index: 15;
}


.article-inner{
    display: flex;
}

.arti-list-wrap{
    flex:8;
}
.img-arti-right{
    flex:4;
    position: relative;
}

.img-arti-flower{
    width: 300px;
    height: 322px;
    background-image: url('../img/img_arti_flower.svg');
    background-size: cover;
    position: absolute;
    bottom: 0px;
    left: 6%;
    z-index: 12;
    animation: swing  .7s infinite alternate;
    -webkit-animation: swing .7s infinite alternate;
}

.img-arti-left{
    width: 231px;
    height: 346px;
    background-image: url('../img/img_arti_left.svg');
    background-size: cover;
    position: absolute;
    bottom: 120px;
    left: 15%;
    z-index: 11;
}


.img-arti-right .img-arti-girl{
    width: 1029px;
    height: 797px;
    background-image: url('../img/img_arti_girl.svg');
    background-size: cover;
    position: absolute;
    left: -20%;
    bottom: -150px;
    animation:  floating2 3s infinite alternate;
    -webkit-animation:  floating2 3s infinite alternate;
}

.img-arti-right .img-butterfly{
    width: 65px;
    height: 63px;
    background-image: url('../img/img_butterfly.svg');
    background-size: cover;
    position: absolute;
    top: 180px;
    right: 25%;
    animation:  pulse .5s infinite alternate;
    -webkit-animation:  pulse .5s infinite alternate;
}

.video-container {
    overflow: hidden;
    position: relative;
    width:100%;
}

.video-container::after {
    padding-top: 56.25%;
    display: block;
    content: '';
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 2200px) {

    .img-arti-flower{
        bottom: 80px;
        left: 0;
    }

    .img-arti-left{
        bottom: 100px;
        left: 9%;
    }
}

@media (max-width: 1920px) {

    .img-arti-right .img-arti-girl{
        left: -35%;
    }

    .img-arti-flower{
        left: -4%;
    }

    .img-arti-left{
        left: 6%;
    }
}


@media (max-width: 1680px) {

    .img-arti-right .img-arti-girl{
        width: 900px;
        height: 697px;
        left: -35%;
    }

    .img-arti-left{
        display: none;
    }

    .img-arti-right .img-butterfly{
        top: 180px;
        left: 25%;
    }
}

@media (max-width: 1500px) {

    .img-arti-right .img-arti-girl{
        width: 900px;
        height: 697px;
        left: -45%;
    }

}
@media (max-width: 1430px) {

    .img-arti-right .img-arti-girl{
        width: 800px;
        height: 619px;
        bottom: -150px;
    }

    .img-arti-flower{
        display: none;
    }

    .img-arti-right .img-butterfly{
        right: 75%;
    }


}

@media (max-width: 1300px) {
    .img-arti-right .img-arti-girl{
        width: 550px;
        height: 426px;
        left: -40%;
    }
}

@media (max-width: 1024px) {
    #ARTICLE{
        padding: 50px 0 0px 0;
    }
    .article-inner{
        display: flex;
        flex-direction: column;
    }
    .img-arti-right .img-arti-girl{
        position: static;
    }
    .img-arti-right .img-butterfly{
        width: 45px;
        height: 43px;
        top: 100px;
        left: 35%;
    }
}

@media (max-width: 768px) {
    .img-arti-right .img-arti-girl{
        width: 600px;
        height: 465px;
    }

}

@media (max-width: 540px) {
    .img-arti-right .img-arti-girl{
        margin-left:-100px;
    }

}


.article-inner .article-ttl{
    width: 435px;
    height: 35px;
    background-image: url('../img/article-ttl.svg');
    background-size: cover;
    font-size: 0;
    margin: 0px auto 30px 50px;
}

.article-list-box{
    z-index: 10;
    padding: 20px 0;
}

.article-list-box i.circle{
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #FCE9D8;
    margin-right: 15px; 
}

.article-list-box a{
    display: flex;
    max-width: 700px;
    padding: 20px 20px;
    background-color: #ffffff;
    border-radius:5px;
    box-shadow: 0px 6px 0px #FCE9D8;
    margin: 15px 0 25px 0;
    justify-content: space-between;
    align-items: center;
    transition: .3s;
    transform: translateY(0px);
    text-decoration: none;
} 


.article-list-box a:hover{
   transform: translateY(-3px);
   transition: .3s;
}

.article-list-box a .list-right{
  border-radius: 40px;
  font-weight: 500;
  font-size: 14px;
  line-height:22px;
  padding: 5px 12px 5px 12px;
  background-color: #E5815C; 
  color: #FFFFFF;
  flex-basis: 85px;
}

.article-list-box a.two{
    margin-left: 40px;
}

.article-list-box a.three{
    margin-left: 20px;
}

.article-list-box a .article-list{
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #333333;
}


.article-list-box a .article-list span{
    color: #C74C2B;
}
@media (max-width: 1680px) {

    .article-list-box a{
        max-width: 660px;
    }

}

@media (max-width: 1430px) {

    .article-list-box a{
        max-width: 550px;
    }

    .article-list-box a.two{
        margin-left: 0px;
    }

    .article-list-box a.three{
        margin-left: 0px;
    }  
}


@media (max-width: 1024px) {

    .article-inner .article-ttl{
        margin: 0px auto 30px auto;
    }

    .article-list-box a{
        max-width: 800px;
        margin: 15px auto;
    }

    .article-list-box a.two{
        margin-left: auto;
    }

    .article-list-box a.three{
        margin-left: auto;
    }  

}


@media (max-width: 768px) {

    .article-list-box i.circle{
        display: none; 
    }
    .article-list-box a .list-left{
        flex-basis: 360px;
    }
}



@media (max-width: 548px) {

    .article-list-box i.circle{
        display: none; 
    }
    .article-list-box a .list-left{
        flex-basis: 280px;
    }
}


@media (max-width: 540px) {
    .article-inner .article-ttl{
        width: 400px;
        height: 32px;
    }
}

@media (max-width: 440px) {
    .article-inner .article-ttl{
        width: 330px;
        height: 27px;
    }
}

@media (max-width: 413px) {
    .article-inner .article-ttl{
        width: 310px;
        height: 25px;
    }

    .article-list-box a .list-left{
        flex-basis: 230px;
        margin-right: 5px;
    }
}

#VIDEO{
    padding: 80px 0 120px 0;
    overflow: hidden;
    position: relative;
}

#VIDEO .img-video-bg-left{
    width: 700px;
    height: 882px;
    background-image: url('../img/img-video-bg-left.svg');
    background-size: cover; 
    position: absolute;
    left: -250px; 
}

#VIDEO .img-video-bg-right{
    width: 700px;
    height: 766px;
    background-image: url('../img/img-video-bg-right.svg');
    background-size: cover; 
    position: absolute;
    right: -350px; 
}

.video-inner .video-ttl{
    width: 435px;
    height: 80px;
    background-image: url('../img/video-ttl.svg');
    background-size: cover;
    font-size: 0;
    margin: 0px auto 30px auto;
}

.video-box{
    padding: 18px;
    background-color: #ffffff;
    border-radius:10px;
    box-shadow: 0px 6px 0px #FCE9D8;
    position: relative;
}

.video-box-out .img-video-girl-01{
    width: 120px;
    height: 215px;
    background-image: url('../img/img-video-girl-01.svg');
    background-size: cover;   
    position: absolute;
    top: 30%;
    left: -200px;
    animation:  floating 2s infinite alternate;
    -webkit-animation:  floating 2s infinite alternate;
}


.video-box-out .img-video-girl-02{
    width: 120px;
    height: 202px;
    background-image: url('../img/img-video-girl-02.svg');
    background-size: cover;   
    position: absolute;
    bottom: 10%;
    right: -180px;
    animation:  floating 1.5s infinite alternate;
    -webkit-animation:  floating 1.5s infinite alternate;
}


.video-box .la-icon{
    font-size: 80px;
    color: #ffffff;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -40px;
    margin-left: -40px;
}

.video-inner p{
    text-align: center;
    font-size: 17px;
    line-height: 36px;
    margin-bottom: 20px; 
}

@media (max-width: 1920px) {
    .video-box-out .img-video-girl-01{
        width: 100px;
        height: 179px; 
        top: 30%;
        left: -200px;
    }


    .video-box-out .img-video-girl-02{
        width: 110px;
        height: 185px;
        bottom: 10%;
        right: -150px;
    }

}

@media (max-width: 1024px) {
    .video-box-out .img-video-girl-01{
        top: 30%;
        left: -130px;
    }

    .video-box-out .img-video-girl-02{
        bottom: 10%;
        right: -130px;
    }

    #VIDEO .img-video-bg-left{
        display: none;
    }

    #VIDEO .img-video-bg-right{
        display: none;
    }
}


@media (max-width: 768px) {
    .video-inner p{
        text-align: center;
        font-size: 19px;
        line-height: 40px;
    }
    .video-box{
        padding: 12px;
    } 

    .video-box-out .img-video-girl-01{
        top: 100%;
        left: 50px;
    }

    .video-box-out .img-video-girl-02{
        top: 95%;
        right: 80px;
    }

    #VIDEO{
     overflow: visible;
    }
}


@media (max-width: 540px) {
    .video-inner .video-ttl{
        width: 400px;
        height: 74px;
    }
    .video-box .la-icon{
        font-size: 60px;
        margin-top: -30px;
        margin-left: -30px;
    }
}


@media (max-width: 440px) {
    .video-inner .video-ttl{
        width: 330px;
        height: 61px;
    }
}

@media (max-width: 375px) {
    .video-inner .video-ttl{
        width: 310px;
        height: 57px;
    }
}


#GIRLS{
    padding: 50px 0 0 0;
    overflow: hidden;
}

.girls-inner{
    display: flex;
    flex-direction: row-reverse;
}

.girls-inner .right-content{
    flex: 7;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 80px;
}

.girls-inner .right-content p{
    text-align: center;
    font-size: 17px;
    line-height: 36px;
    margin-bottom: 20px;
}

.girls-inner .right-content .girls-ttl{
    width: 435px;
    height: 80px;
    background-image: url('../img/girl-ttl.svg');
    background-size: cover;
    font-size: 0;
    margin: 0px 0 30px 0;
}

.girls-inner .left-img{
    flex: 5;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.girls-inner .left-img .left-img-box{
    width: 520px;
    height: 422px;
    background-image: url('../img/girls_img.png');
    background-size: cover;
}

.girls-inner .left-img .img-butterfly{
    width: 55px;
    height: 53px;
    background-image: url('../img/img_butterfly.svg');
    background-size: cover;
    position: absolute;
    top: -30px;
    left: 40%;
    animation:  pulse .5s infinite alternate;
    -webkit-animation:  pulse .5s infinite alternate;
}

.girls-inner .left-img .img-girls-flower{
    position: absolute;
    bottom: -100px;
    left: 130px;
    width: 160px;
    height: 223px;
    background-image: url('../img/img-girls-flower.svg');
    background-size: cover;
    animation: swing  .8s infinite alternate;
    -webkit-animation: swing .8s infinite alternate;
}


@media (max-width: 1200px) {

    .girls-inner .right-content{
        flex: 7;
    } 

    .girls-inner .left-img{
        flex: 5;
    }  

    .girls-inner .left-img .left-img-box{
        width: 389px;
        height: 298px;
    } 

    .girls-inner .left-img .img-girls-flower{
        position: absolute;
        bottom: -50px;
        left: 120px;
        width: 100px;
        height: 123px;
    }
    .girls-inner .left-img .img-butterfly{
        width: 45px;
        height: 43px;
        position: absolute;
        top: 15%;
        left: 40%;
    }
}

@media (max-width: 1024px) {
    .girls-inner{
        display: flex;
        flex-direction: column;
    }

    .girls-inner .left-img .left-img-box{
        width: 520px;
        height: 422px;
    }

    .girls-inner .left-img .img-butterfly{
        width: 55px;
        height: 53px;
        top: -30px;
        left: 40%;
    }

    .girls-inner .left-img .img-girls-flower{
        position: absolute;
        bottom: -100px;
        left: 30%;
        width: 160px;
        height: 223px;
    }
}

@media (max-width: 768px) {
    .girls-inner .right-content p{
        font-size: 19px;
        line-height: 40px;
    }
}


@media (max-width: 540px) {
    .girls-inner .left-img .left-img-box{
        width: 389px;
        height: 298px;
    } 

    .girls-inner .left-img .img-girls-flower{
        position: absolute;
        bottom: -50px;
        left: 120px;
        width: 100px;
        height: 123px;
    }
    .girls-inner .left-img .img-butterfly{
        width: 45px;
        height: 43px;
        position: absolute;
        top: -50px;
        left: 40%;
    }

    .girls-inner .right-content .girls-ttl{
        width: 400px;
        height: 74px;
    }
}

@media (max-width: 440px) {
    .girls-inner .right-content .girls-ttl{
        width: 330px;
        height: 61px;
    }
}

@media (max-width: 375px) {
    .girls-inner .right-content .girls-ttl{
        width: 310px;
        height: 57px;
    }
}


footer {
    color: #D2D2D2;
    background-color: #333333;
    font-size: 12px;
    line-height: 16px;
    padding: 15px 0;
    text-align: center;
}

footer p {
    color: #008747;
}

@media screen and (max-width: 590px) {

    footer {
        font-size: 11px;
        line-height: 18px;
        padding: 20px 0px;
    }
}




.floating {
    animation-name: swing;
    -webkit-animation-name: swing;

    animation-duration: .5s;
    -webkit-animation-duration: .5s;

    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@keyframes swing {
    0% { transform: rotate(1deg); }
    100% { transform: rotate(-2deg); }
}


@-webkit-keyframes swing {
    0% {  -webkit-transform: rotate(1deg); }
    100% {  -webkit-transform: rotate(-2deg); }
}

.floating {
    animation-name: floating;
    -webkit-animation-name: floating;

    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;

    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0%);
    }

    50% {
        transform: translateY(8%);
    }

    100% {
        transform: translateY(0%);
    }
}

@-webkit-keyframes floating {
    0% {
        -webkit-transform: translateY(0%);
    }

    50% {
        -webkit-transform: translateY(8%);
    }

    100% {
        -webkit-transform: translateY(0%);
    }
}

.floating2{
    animation-name: floating2;
    -webkit-animation-name: floating2;

    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;

    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@keyframes floating2 {
    0% {
        transform: translateY(0%);
    }

    50% {
        transform: translateY(1.5%);
    }

    100% {
        transform: translateY(0%);
    }
}

@-webkit-keyframes floating2 {
    0% {
        -webkit-transform: translateY(0%);
    }

    50% {
        -webkit-transform: translateY(1.5%);
    }

    100% {
        -webkit-transform: translateY(0%);
    }
}



@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.pulse2 {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(0.98, 0.98, 0.98);
        transform: scale3d(0.98, 0.98, 0.98);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse2 {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(0.98, 0.98, 0.98);
        transform: scale3d(0.98, 0.98, 0.98);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.pulse2 {
    -webkit-animation-name: pulse2;
    animation-name: pulse2;
}


@-webkit-keyframes flash {

    from,
    50%,
    to {
        opacity: 1;
    }

    25%,
    75% {
        opacity: .5;
    }
}

@keyframes flash {

    from,
    50%,
    to {
        opacity: 1;
    }

    25%,
    75% {
        opacity: .2;
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name.: flash;
}