




/* #modal02 .bottom-sheet__contents.-type1 {
    padding-top: 150px;
    background: #f3f4f8 url(/pages/header/images/flowair-favicon.png) no-repeat center 50px;
    background-size: 63px auto;
} */
@keyframes active-ani {
    0% {
        transform: translateY(100%);
    }
    
    100% {
        transform: translateY(0);
    }
}








/* modal-default */
[__modal-default] .bottom-sheet {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000000;
    background: rgba(0, 0, 0, .5);
}
@media (min-width:1060px) {
    [__modal-default] .bottom-sheet.-main-active {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
@media (max-width:1060px) {
    [__modal-default] .bottom-sheet.-main-active {
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }
}
[__modal-default] .bottom-sheet__contents {
    display: inline-block;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 400px;
    max-width: 400px;
    position: relative;
    z-index: 1;
    padding: 50px 0px 50px;
    outline: 0;
    background-color: rgb(var(--color-color0));
    box-shadow: 0 0 1rem rgb(var(--color-color) / .3);
    border-radius: 20px;
    will-change: transform;
    transform: translateY(100%);
    animation: cubic-bezier(.05,.7,.1,1).8s active-ani forwards;
    will-change: transform;
}
@media (max-width:1060px) {
    [__modal-default] .bottom-sheet__contents {
        width: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0px 0px;
    }
}
[__modal-default] .bottom-sheet__contents img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
}
[__modal-default] .bottom-sheet__box {
    width: 100%;
    margin-top: 20px;
    padding: 0 20px;
    /* padding-bottom: 4.8rem; */
}
[__modal-default] .bottom-sheet__text {
    color: rgb(var(--color-color00));
    font-size: 13px;
    text-align: center;
}
[__modal-default] .bottom-sheet__text + .bottom-sheet__text {
    margin-top: 10px;
}
[__modal-default] .bottom-sheet__text.-point {
    font-size: 15px;
    font-weight: 700;
}
[__modal-default] .bottom-sheet__buttons {
    margin-top: 20px;
    text-align: center;
}
[__modal-default] .bottom-sheet__confirm {
    display: block;
    width: 100%;
    margin: 0;
    padding: 18px;
    border: 1px solid rgb(var(--color-color00));
    background-color: rgb(var(--color-color00));
    border-radius: 8px;
    color: rgb(var(--color-white));
    font-weight: 700;
    font-size: 15px;
    line-height: 1.5;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}
[__modal-default] .bottom-sheet__link {
    display: inline-block;
    text-align: center;
    background: none;
    border: 0;
    text-decoration: underline;
    margin-top: 20px;
    color: #555;
    font-size: 13px;
    cursor: pointer;
}
[__modal-default] .bottom-sheet__close {
    overflow: hidden;
    white-space: nowrap;
    display: block;
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 10px;
    background: url(/pages/header/images/bottom-sheet__close.svg) no-repeat 50% 50%;
    background-size: 24px auto;
    text-indent: 100%;
    cursor: pointer;
    font-size: 0;
}
/* // modal-default */