ons-toolbar.SendYellPageToolbar * {
    font-size: 14px;
}

/* 戻るボタン */
ons-back-button svg {
    width: 10px;
    height: 14px;
    margin-top: 2px;
}

#SendYell .page__content {
    display: grid;
    gap: 10px;
    align-items: start;
    padding-top: 30px;
    /* align-content: center; */
}

#SendYell_Container {
    display: grid;
    gap: 10px;
}

#SendYell section.hideSection {
    display: none;
}

h3.SendYell_Title { 
    text-align: center;
    font-size: 17px;
}

#SendYell_Buttons_Stylist {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(auto-fit, 100px);
    padding: 0px 15px;
    justify-content: center;
}

.StylistList_Item_Box {
    display: grid;
    gap: 5px;
    justify-items: center;
}

.StylistList_AvatarImg {
    width: 60px;
    object-fit: contain;
    margin: auto;
}

.StylistList_AvatarImg_Result {
    width: 110px;
}

.StylistList_Item_Box .Name {
    font-size: 13px;
    color: #555;
}

#SendYell_Selected_Stylist .StylistList_Item_Box .Avatar {
    font-size: 40px;
}

#SendYell_Selected_Stylist .StylistList_Item_Box .Name {
    font-size: 14px;
}

#SendYell_Decoration_Arrow {
    font-size: 20px;
    text-align: center;
    color: #777;
    padding: 15px 0px;
}

#SendYell_Buttons_TipAmount {
    display: grid;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    grid-template-columns: repeat(3, 100px);
    text-align: center;
}

#SendYell_Selected_TipAmount {
    text-align: center;
    font-size: 25px;
    color: #555;
}
#SendYell_Selected_TipAmount .TipAmount{
    /* font-size: 50px;
    font-weight: 900;
    -webkit-text-stroke: 1px #555;
    text-shadow: 1px 1px #555;
    color: #9dcfb3; */

    font-size: 70px;
    /* font-weight: 900; */
    /* -webkit-text-stroke: 1px #999;
    text-shadow: 3px 3px #9dcfb3;
    color: transparent; */
}

#SendYell_Button_Submit {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0px;
}

#SendYell_Animation,
#SendYell_FallingBall_Container,
#SendYell_FallingHeart_Container,
#SendYell_Overlap_Container
{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
}

#SendYell_Overlap_Container {
    background-color: var(--page-background-color);
    opacity: 0;
    transition: all 1s ease-in-out;
    z-index: 10000;
}

.FallingBall {
    position: absolute;
    left: 50%;
    bottom: 130%;
    /* filter: blur(1px); */
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    animation-duration: 1000ms;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.FallingHeart {
    position: absolute;
    left: 50%;
    bottom: 130%;
    /* filter: drop-shadow(1px 2px 20px #fff); */
    transform: rotate(-45deg) translateX(-50%);
    width: 100px;
    height: 100px;
    animation-duration: 1000ms;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.FallingHeart_Before,
.FallingHeart_After {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
}

.FallingHeart_Before {
    top: -50px;
    left: 0;
    border-radius: 50% 50% 0 0;
}

.FallingHeart_After {
    top: 0;
    left: 50px;
    border-radius: 50% 50% 50% 0;
}

@keyframes FallingAnimation_1 {
    0% {
        bottom: 130%;
    }
    100% {
        bottom: calc( 100% / 7 - 15% );
    }
}
@keyframes FallingAnimation_2 {
    0% {
        bottom: 130%;
    }
    100% {
        bottom: calc( 100% / 7 * 2 - 15% );
    }
}
@keyframes FallingAnimation_3 {
    0% {
        bottom: 130%;
    }
    100% {
        bottom: calc( 100% / 7 * 3 - 15% );
    }
}
@keyframes FallingAnimation_4 {
    0% {
        bottom: 130%;
    }
    100% {
        bottom: calc( 100% / 7 * 4 - 15% );
    }
}
@keyframes FallingAnimation_5 {
    0% {
        bottom: 130%;
    }
    100% {
        bottom: calc( 100% / 7 * 5 - 15% );
    }
}
@keyframes FallingAnimation_6 {
    0% {
        bottom: 130%;
    }
    100% {
        bottom: calc( 100% / 7 * 6 - 15% );
    }
}
@keyframes FallingAnimation_7 {
    0% {
        bottom: 130%;
    }
    100% {
        bottom: calc( 100% / 7 * 7 - 15% );
    }
}