@charset "utf-8";
/* ==========================
common
=========================== */
:root{
    --primary-blown: #710C21;
    --primary-green: #9CC4B2;
    --primary-pink: #F8DCDB;
    --primary-white: #fdfdfd;
    --primary-whiteLow: #ecf5f5;
    --primary-black: #333a3a;
    --contentWidth: 91.4%;
    --contentPadding: 4.2%;
}

html{
    font-size: 62.5%;
}

main{
    overflow: hidden;
}

body{
    font-family: "Noto Serif JP",
    "Jacques Francois Shadow",
    "Fleur De Leah",
    sans-serif;
    font-style: normal;
    color: var(--primary-blown);
    background-color: var(--primary-pink);
    line-height: 1.5;
}

img{
    max-width: 100%;
    height: auto;
}
    
    /* ==========================
    header
    =========================== */
    .header{
        padding: 24px 4.2% 16px;
        display: inline-block;
        display: flex;
        width: 100%;
        margin-bottom: -50px;
    }
    
    .logo__img{
        width: 75px;
        transition: 0.4s;
    }

    
    /* .nav初期表示 */
    .nav{
        background-color: rgba(156, 196, 178, 0.95);
        width: 100%;
        height: 100vh;
        padding: 27px 6.4%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 2100;
        display: flex;
        flex-direction: column;
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.4s;
    }
    
    .logo__img{
        width: 75px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 27px;
        animation: fuwafuwa 3s linear infinite;
    }
    .nav__btn{
        position: fixed;
        display: block;
        width: 27px;
        top: 27px;
        right: 4.2%;
        animation: completed-move-1 5s linear infinite;
    }
    
    .nav__list{
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        margin-bottom: 30px;
    }
    
    .nav__item{
        color: rgba(113, 12, 33, 0.70);
        text-align: center;
        -webkit-text-stroke-width: 0.5;
        -webkit-text-stroke-color: rgba(248, 220, 219, 0.50);
        font-family: "Jacques Francois Shadow";
        font-size: 2.6rem;
    }

    .nav__item:hover{
        opacity: 0.5;
        transition: 0.4s;
    }
    
    .nav__icons{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .isg__btn{
        display: flex;
        padding: 10px 20px;
        justify-content: center;
        align-items: center;
        gap: 16px;
        border-radius: 180px;
        border: 1px solid var(--primary-blown);
        background: var(--primary-pink);
        box-shadow: 2px 2px 3px 2px rgba(113, 12, 33, 0.50);
    }
    
    .isg__blownicon{
        width: 27px;
    }
    
    .gm__btn{
        display: flex;
        padding: 7px 20px;
        justify-content: center;
        align-items: center;
        gap: 12px;
        border-radius: 180px;
        border: 1px solid var(--primary-blown);
        background: var(--primary-pink);
        box-shadow: 2px 2px 3px 2px rgba(113, 12, 33, 0.50);
    }
    
    .spot{
        width: 24px;
    }
    
    .icon_txt{
        display: flex;
        justify-content: center;
        color: var(--primary-blown);
        text-align: center;
        font-family: "Jacques Francois Shadow";
        font-size: 1.6rem;
    }
    
    .arrow{
        width: 19px;
        height: 11px;
    }
    
    .logo__txt{
        color:var(--primary-pink);
        display: flex;
        justify-content: center;
        text-align: center;
        -webkit-text-stroke-width: 1;
        -webkit-text-stroke-color: rgba(248, 220, 219, 0.10);
        font-family: "Fleur De Leah";
        font-size: 4rem;
    }
    
    /*  .nav.active表示 */
    .nav.active{
        transform: translateX(0)
    }
    
    .leftfixed{
        z-index: 1000;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        position: fixed;
        margin-top: 30px;
    }

    .leftfixed:hover{
        opacity: 0.5;
        transition: 0.4s;
    }
    
    .fix_h2f2h{
        transform: rotate(90deg);
        color: var(--primary-green);
        text-align: center;
        -webkit-text-stroke-width: 1;
        -webkit-text-stroke-color: rgba(248, 220, 219, 0.10);
        font-family: "Fleur De Leah";
        font-size: 1.4rem;
    }
    
    .header__btn{
        z-index: 1000;
        display: block;
        width: 22px;
        height: 16px;
        position: fixed;
        top: 27px;
        right: 4.2%;
        transition: 0.4s;
        animation: completed-move-1 5s linear infinite;
    }
    
    .fix__isg{
        width: 24px;
        height: 24px;
    }

    .btn:hover {
        opacity: 0.5;
    }

    .logo__img:hover{
    opacity: 0.5;
    }

    .article{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

/* .header pc */
@media screen and (min-width: 769px) {

.header{
    padding: 0px 1.5% 0px;
    margin: 0 auto;
    margin-bottom: -1100px;
    display: flex;
    width: 100%;
}

.nav{
    width: 100%;
    height: auto;
    padding: 37px 120px 42px 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    background: rgba(248, 220, 219, 0.35);
    width: auto;
    height: auto;
    position: static;
    transform: translate(0);
    margin-top: 600px;
    margin-left: 3%;
    margin-right: auto;
    border-radius: 50%;
    border: 1px solid rgba(113, 12, 33, 0.50);
    box-shadow: 2px 2px 3px 2px rgba(113, 12, 33, 0.20);
    animation: fuwafuwa 3s linear infinite;
}

.logo__img{
    width: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: auto;
    margin-top: 0px;
    transition: 0.4s;
}

.nav__list{
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
    margin-left: auto;
    flex-direction: column;
    justify-content: flex-start;
    gap: 25px;
    margin-bottom: 0px;
}

.nav__item{
    color: rgba(113, 12, 33, 0.92);
    text-align: center;
    justify-content: flex-start;
    -webkit-text-stroke-width: 0.7;
    -webkit-text-stroke-color: rgba(248, 220, 219, 1);
    font-family: "Jacques Francois Shadow";
    font-size: 2rem;
}
.nav__btn{
    display: none;
}
.nav__icons{
    display: none
}

.logo__txt{
    display: none;
}

.leftfixed{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    position: fixed;
    margin-top: 5%;
    margin-right: 0%;
}

.fix_h2f2h{
    transform: rotate(90deg);
    color: var(--primary-green);
    text-align: center;
    -webkit-text-stroke-width: 1;
    -webkit-text-stroke-color: rgba(248, 220, 219, 0.10);
    font-family: "Fleur De Leah";
    font-size: 3rem;
}

.header__btn{
    display: none;
}

.fix__isg{
    width: 40px;
    height: 40px;
}

.article{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

}

/* --------------------
Gallery
-------------------- */
.section--gallery{
    z-index: 100;
    display: inline-flex;
    padding: 60px 0px 120px 0px;
    flex-direction: column;
    align-items: center;
}

.gallery__contents{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ribbon{
    width: 60px;
    height: 34.768px;
    transform: rotate(-0.637deg);
    animation: fuwafuwa 3s linear infinite;
}

.gallery__set{
    display: flex;
    margin-bottom: 60px;
    flex-direction: column;
    align-items: flex-start;
}

.ribbon{
    margin-bottom: -10px;
}

.gallery__title{
    padding: 0 20px;
    text-align: center;
    font-family: "Jacques Francois Shadow";
    font-size: 3.2rem;
    animation: fuwafuwa 3s linear infinite;
    text-shadow: 2px 2px 3px 2px rgba(113, 12, 33, 0.50);
}

.isg__imgs{
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.isg__img{
    display: flex;
    justify-content: center;
    align-items: center;
}

.isg_Img{
    display: block;
    width: 170px;
    height: 170px;
}

.isg_Img:hover{
    opacity: 0.5;
}

.isg__news{
    z-index: 10;
    text-align: center;
    font-size: 2rem;
    margin: 30px;
}

.isg__news::before{
    z-index: 10;
    content: '';
    display: block;
    width: 1px;
    height: 50px;
    background: var(--primary-blown);
    margin: 24px auto 0;
}

.gallery__deco{
    z-index: 10;
    width: 43.03px;
    height: 76.951px;
    opacity: 0;
  }
  
.gallery__deco.animated {
    animation: kurukuru 1s ease-out;
    opacity: 1;
}
  
.view__btn{
    margin-top: 40px;
    border-radius: 70px;
    background: var(--primary-blown);
    display: flex;
    padding: 12px 30px;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: -10%;
    z-index: 100;
}

.view__btn:hover{
    margin-top: 40px;
    border-radius: 70px;
    background: var(--primary-green);
    display: flex;
    padding: 12px 30px;
    justify-content: center;
    align-items: center;
    gap: 15px;
    transition: 0.4s;
}

.isg__pinkicon{
    width: 24px;
    height: 24px;
}

.view_txt{
    color: var(--primary-pink);
    text-align: center;
    font-family: "Jacques Francois Shadow";
    font-size: 1.6rem;
}

.arrowpink{
    width: 17px;
    height: 10.462px;
}

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

    .spBr{
        display: none;
    }

    .section--gallery{
        max-width: 1280px;
        background: url(../1x/gapoem.png);
        background-size: 80% ;
        background-repeat: no-repeat;
        background-position: center;
        display: inline-flex;
        padding: 80px 0px 120px 0px;
        flex-direction: column;
        align-items: center;
    }
    
    .gallery__contents{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ribbon{
        display: none;
    }
    
    .gallery__set{
        display: flex;
        margin-bottom: 80px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .gallery__title{
        text-align: center;
        font-family: "Jacques Francois Shadow";
        font-size: 6rem;
        padding: 0 30px;
        text-shadow: 2px 4px 12px 4px rgba(139, 110, 110, 0.9);
    }
    
    .isg__imgs{
        width: 100vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        margin-top: 4%;
        margin-bottom: 20%;
        gap: 3%;
    }
    .isg__img:first-child{
            animation: slide1 30s 0s linear infinite;
        }
    .isg__img:nth-child(2){
        padding-right: 5%;
            animation: slide2 30s 5s linear infinite;
        }
    .isg__img:last-child{
            animation: slide3 30s 10s linear infinite;
        }
    
    
    .isg__img{
        gap: 3%;
        width: 100vw;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
    }
    
    .isg_Img{
        display: block;
        width: 260px;
        height: 260px;
        box-shadow: 2px 2px 3px 2px rgba(113, 12, 33, 0.50);
    }
    
    .isg__news{
        text-align: center;
        font-size: 3rem;
        margin: 60px;
    }
    
    .isg__news::before{
        content: '';
        display: block;
        width: 1px;
        height: 100px;
        background: var(--primary-blown);
        margin: 24px auto 0;
    }
    
    .gallery__deco{
        width: 96px;
        height: 171px;
    }
    
    .view__btn{
        margin-top: 80px;
        border-radius: 70px;
        background: var(--primary-blown);
        display: flex;
        padding: 16px 28px;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    .view__btn:hover{
        margin-top: 80px;
        border-radius: 70px;
        background: var(--primary-green);
        display: flex;
        padding: 16px 28px;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.4s;
    }
    
    .isg__pinkicon{
        width: 32px;
        height: 32px;
    }
    
    .view_txt{
        color: var(--primary-pink);
        text-align: center;
        font-family: "Noto serif JP";
        font-size: 2rem;
    }
    
    .arrowpink{
        width: 31.5px;
        height: 18px;
    }

}

/* --------------------
Access
-------------------- */
.section--access{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.access__contents{
    z-index: 10;
    background-image: url(../1x/access.png);
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: var(--primary-blown);
    box-shadow: 2px 2px 3px 2px rgba(113, 12, 33, 0.50);
    border-radius: 50px;
    width: 328px;
    display: flex;
    padding: 76px 30px 84px 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fuwafuwa 5s linear infinite;
}

.access__head{
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 120px;
}

.access_title{
    color: var(--primary-pink);
    text-align: center;
    font-family: "Jacques Francois Shadow";
    font-size: 4rem;
}

.ac_lead{
    color: var(--primary-pink);
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
}

.address{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.spot_icon{
    width: 20px;
    height: 27.333px;
}

.address__title{
    color: var(--primary-pink);
    text-align: center;
    font-size: 2.4rem;
}

.address__txt{
    color: var(--primary-pink);
    text-align: center;
    font-size: 1.8rem;
}

.googlemap{
    width: 228px;
    height: 221px;
}

.access{
    color: var(--primary-pink);
    text-align: center;
    font-size: 1.6rem;
}

.access_car{
    color: var(--primary-pink);
    text-align: center;
    font-size: 1.2rem;
}
.pcBr{
    display: none;
}

.ribbon__line{
    margin: 40px 0 40px;
}

.OP{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.op__title{
    color: var(--primary-pink);
    text-align: center;
    font-size: 2.4rem;
}

.op__txt{
    color: var(--primary-pink);
    text-align: center;
    font-size: 1.6rem;
}

.op{
    color: var(--primary-pink);
    text-align: center;
    font-size: 1.8rem;
}

.op_close{
    color: var(--primary-pink);
    text-align: center;
    font-size: 1.4rem;
}
.op__cl{
    color: var(--primary-pink);
    text-align: center;
    font-size: 2rem;
}

.Pay{
    margin: 30px 0;
    display: flex;
    padding: 15px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    border: 1px solid var(--primary-pink);
}

.pay{
    color: var(--primary-pink);
    text-align: center;
    font-size: 1.2rem;
}

.pay_txt{
    color: var(--primary-pink);
    line-height: 1.5rem;   
}

.info{
    color: var(--primary-pink);
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.isg__btn.btn2:hover{
    display: flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border-radius: 180px;
    border: 1px solid var(--primary-blown);
    background: var(--primary-pink);
    transition: 0.4s;
}

.contact{
    color: var(--primary-pink);
    text-align: center;
    font-size: 1.2rem;
    margin-top: 15px;
}

.contact::before{
    content: '';
    display: block;
    width: 1px;
    height: 60px;
    background: var(--primary-blown);
    margin: 0px auto 0px;
    opacity: 0.4;
    position: absolute;
    animation: move-1 3s linear infinite;
}

/* access pc */
@media screen and (min-width: 769px) {
    .section--access{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .access__contents{
        background-image: url(../1x/access.png);
        background-repeat: no-repeat;
        background-size: 100% auto;
        background-color: var(--primary-blown);
        border-radius: 140px;
        display: flex;
        padding: 15% 4.2% 14%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 60px;
        max-width: 1620px;
        width: 60%;
    }
    
    .access__head{
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 200px;
    }
    
    .access_title{
        color: var(--primary-pink);
        text-align: center;
        font-family: "Jacques Francois Shadow";
        font-size: 8.6rem;
    }
    
    .ac_lead{
        color: var(--primary-pink);
        text-align: center;
        font-size: 4rem;
        font-weight: 600;
    }
    
    .address{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .spot_icon{
        margin-top: 20%;
        width: 40px;
        height: auto;
    }
    
    .address__title{
        color: var(--primary-pink);
        text-align: center;
        font-size: 4rem;
    }
    
    .address__txt{
        color: var(--primary-pink);
        text-align: center;
        font-size: 3rem;
        margin-bottom: 20px;
    }
    
    .googlemap{
        width: 100%;
        height: 400px;
    }
    
    .access{
        color: var(--primary-pink);
        text-align: center;
        font-size: 3rem;
    }
    
    .access_car{
        color: var(--primary-pink);
        text-align: center;
        font-size: 1.8rem;
    }

    .pcBr{
        display: block;
    }

    .spBr{
        display: none;
    }
    
    .ribbon__line{
        margin: 60px 0;
    }
    
    .OP{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .op__title{
        color: var(--primary-pink);
        text-align: center;
        font-size: 4rem;
    }
    
    .op__txt{
        color: var(--primary-pink);
        text-align: center;
        font-size: 2.4rem;
    }
    
    .op{
        color: var(--primary-pink);
        text-align: center;
        font-size: 3.2rem;
    }
    
    .op_close{
        color: var(--primary-pink);
        text-align: center;
        font-size: 2rem;
    }
    .op__cl{
        color: var(--primary-pink);
        text-align: center;
        font-size: 3.4rem;
    }
    
    .Pay{
        margin: 50px 0;
        display: flex;
        padding: 20px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        border-radius: 10px;
        border: 1px solid var(--primary-pink);
    }
    
    .pay{
        color: var(--primary-pink);
        text-align: center;
        font-size: 2rem;
    }
    
    .pay_txt{
        color: var(--primary-pink);
        font-size: 1.6rem;
        line-height: 3rem;   
    }
    
    .info{
        color: var(--primary-pink);
        text-align: center;
        font-size: 2.8rem;
        margin-bottom: 40px;
    }

    .isg__btn{
        display: flex;
        padding: 14px 25px;
        justify-content: center;
        align-items: center;
        gap: 20px;
        border-radius: 180px;
        border: 1px solid var(--primary-blown);
        background: var(--primary-pink);
    }

    .isg__btn.btn2:hover{
        display: flex;
        padding: 14px 25px;
        justify-content: center;
        align-items: center;
        gap: 15px;
        border-radius: 180px;
        border: 1px solid var(--primary-blown);
        background: var(--primary-pink);
        transition: 0.4s;
    }
    
    .isg__blownicon{
        width: 32px;
    }

    .icon_txt{
        display: flex;
        justify-content: center;
        color: var(--primary-blown);
        text-align: center;
        font-family: "Jacques Francois Shadow";
        font-size: 2rem;
    }

    .arrow{
        width: 31.5px;
        height: 18px;
    }

    .contact{
        color: var(--primary-pink);
        text-align: center;
        font-size: 1.8rem;
        margin-top: -40px;
    }

    .contact::before{
        content: '';
        display: block;
        width: 1px;
        height: 160px;
        background: var(--primary-blown);
        margin: 0px auto 0px;
        opacity: 0.4;
        position: absolute;
        animation: move-1 3s linear infinite;
    }
}

/* --------------------
footer
-------------------- */
.footer{
    width: 100%;
    padding: 0 4.2% 10px;
    background-color: var(--primary-blown);
    display: flex;
    flex-direction: column;
}

.Footer{
    margin-top: 20px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

.footer__left{
    display: flex;
    padding: 25px 0px 0px 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.Logo__img{
    width: 38px;
    height: 24px;
    animation: fuwafuwa 5s linear infinite;
}

.menu__list{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.menu__item{
    color: var(--primary-pink);
    text-align: center;
    font-family: "Jacques Francois Shadow";
    font-size: 1.6rem;
}

.top_btn{
    width: 60px;
    position: fixed;
    bottom: 1.4%;
    right: 1.4%;
    animation: fuwafuwa 3s linear infinite;
    z-index: 2000;
}

.Logo__img:hover, .top_btn:hover, .menu__item:hover, .bm_isg:hover, .bm_X:hover{
    opacity: 0.5;
    transition: 0.4s;
}

.bottom{
    margin-top: 20px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.follow{
    color: var(--primary-pink);
    text-align: center;
    font-size: 1.4rem;
}

.Icons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.bm_isg{
    width: 28px;
    height: 28px;
}

.bm_X{
    width: 25px;
    height: 28.676px;
}

.company{
    color: var(--primary-pink);
    text-align: center;
}

/* .footer pc */
@media screen and (min-width: 769px) {
    .footer{
        width: 100%;
        padding: 0 4.2% 20px;
        background-color: var(--primary-blown);
        display: flex;
        flex-direction: column;
    }
    
    .Footer{
        margin-top: 40px;
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer__left{
        display: flex;
        padding: 25px 0px 0px 30px;
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
    
    .Logo__img{
        width: 71px;
        height: 45px;
    }
    
    .menu__list{
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 40px;
    }
    
    .menu__item{
        color: var(--primary-pink);
        text-align: center;
        font-family: "Noto Serif JP";
        font-size: 2.8rem;
    }
    
    .top_btn{
        text-align: center;
        width: 70px;
        position: fixed;
        bottom: 1.4%;
        right: 1.4%;
        animation: fuwafuwa 3s linear infinite;
    }

    .bottom{
        margin-top: 120px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .follow{
        color: var(--primary-pink);
        text-align: center;
        font-size: 1.6rem;
    }
    
    .Icons{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15spx;
    }
    
    .bm_isg{
        width: 40px;
        height: 40px;
    }
    
    .bm_X{
        width: 35px;
        height: 38px;
    }
    
    .company{
        font-size: 1.8rem;
        color: var(--primary-pink);
        text-align: center;
    }
}

/* loading view */
#loading{
    width: 100%;
    height: 100vh;
    transition: 0.4s;
    background: url(../1x/loading-sp2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media screen and (min-width: 769px) {
    #loading{    
    width: 100%;
    height: 100vh;
    transition: 0.4s;
    background: url(../1x/loading-pc.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    }
}

.dot{
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 24px;

    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.dot__item{
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background-color: var(--primary-pink);
    animation: wave 1.5s infinite ease-in-out;
}

.dot__item:nth-of-type(1){
    animation: wave 1.5s infinite ease-in-out;
}
.dot__item:nth-of-type(2){
    animation: wave 1.5s  0.2s infinite ease-in-out;
}
.dot__item:nth-of-type(3){
    animation: wave 1.5s 0.4s infinite ease-in-out;
}

/* animation */
@keyframes wave {
    0%{
        opacity: 0;
        transform: scale(1, 1);
    }
    50%{
        opacity: 1;
        transform: scale(2, 2);
    }
    100%{
        opacity: 0;
        transform: scale(1, 1);
    }
}

@keyframes completed-move-1 {
    0% { transform: translateY(1px) rotate(0deg) }
    33.33333% { transform: translateY(-3px) rotate(-5deg)}
    66.66667% { transform: translateY(0px) rotate(1deg)}
    100% { transform: translateY(3px) rotate(5deg)}
}

/* fuwafuwa */
@keyframes fuwafuwa {
    0% { transform: translateY(1px) }
    33.33333% { transform: translateY(8px) }
    66.66667% { transform: translateY(3px) }
    100% { transform: translateY(1px) }
  } 

/* kurukuru */
@keyframes kurukuru {
    0%{
      transform: rotateY(0) translateY(40px);
      opacity: 0;
    }
    100%{
      transform: rotateY(360deg) translateY(0);
      opacity: 1;
    }
  }

  @keyframes slide1 {from{
    transform: translateX(0);
}
to {
    transform: translateX(-100%);
} }
@keyframes slide2 {from{
    transform: translateX(0);
}
to {
    transform: translateX(100%);
} }
@keyframes slide3 {from{
    transform: translateX(0);
}
to {
    transform: translateX(-100%);
} }

@keyframes move-1 {
    100% {
        height: 60px;
    }
    0% {
        height: 0px;
    }
}

@media screen and (min-width: 769px) {
    @keyframes move-1 {
        100% {
            height: 160px;
        }
        0% {
            height: 0px;
        }
    }
}

/* end of loading */
.loaded{
    display: none;
}

/* fade in container */
.container{
    display: none;
}

.container.open{
    display: block;
}

/* fadeIn */
.fadeIn{
    transform: translate(0, 50px);
    opacity: 0;
    transition: 0.8s;
}

.fadeIn1{
    transform: translate(0, 50px);
    opacity: 0;
    transition: 0.8s;
}
.fadeIn2{
    transform: translate(-50px, 0);
    opacity: 0;
    transition: 1.2s;
}
.fadeIn3{
    transform: translate(50px, 0);
    opacity: 0;
    transition: 1.2s;
}

.fadeIn.animated, .fadeIn1.animated, .fadeIn2.animated, .fadeIn3.animated{
    transform: translate(0, 0);
    opacity: 1;
}