﻿@charset "utf-8";

.chabochaboArea {
    position: fixed;
    bottom: 0px;
    right: 0px;
    z-index: 99;
    display: none;
    overflow: hidden;
    animation-name: fadeIn;
    animation-fill-mode: forwards;
    animation-duration: 1s;
}

    .chabochaboArea button {
        position: absolute;
        top: 0;
        right: 0;        
    }

.chabochaboArea img {
    height: 20px;
    width: 20px;
}

.chabochaboButtonArea {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    position: fixed;
    bottom: 5px;
    right: 5px;
    z-index: 99;
}

.chabochaboBalloon {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: self-start;
    border-radius: 10px 10px 0px 10px;    
    background-color: #efe29c !important;
    color: white !important;
}

.chabochaboBalloon button {
    margin-top: 10px;
    margin-left: 5px;
    border: none;
    outline: none;
    background: transparent;
}

.chabochaboBallonContents {
    padding: 15px 10px 15px 10px;
    color: #000000;
}

.chabochaboBalloon a {
    color: gray;
    text-decoration: none;
}

.chabochaboPowerd {
    color: gray;
    margin-top: 5px;
    text-align: right;
    font-size: 10px;
}

.chabochaboBallonOpenDiv {
    display: none;
}

    .chabochaboBallonOpenDiv img {        
        border: none;
        outline: none;
        background: transparent;
    }

    .chabochaboBallonOpenDiv button {
        border-radius: 10px 10px 0px 10px;
    }

    .chabochaboMenu {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-end;
        gap: 5px;
    }
    .chabochaboMenuImg {
        border: none;
        outline: none;
        background: transparent;
        height: 75px;
        width: 85px;
    }
.chabochaboCloseImg {
    border: none;
    outline: none;
    background: transparent;
}

.chabochaboHelpImg {
    height: 100%;
    width: 100%;
    border: none;
}

.chabochaboMenuOpenImg {
    outline: none;
    background: transparent;
}

.chabochaboMenuButton {
    border: none;
    outline: none;
    background: transparent;
}

.chabochaboMouseIconPointer {
    cursor: pointer;
}
        /*
.chabochaboBalloon {
    display: inline-block;
    position: relative;
    margin: 10px;
    padding: 10px;
    background: #00506A;
    border-radius: 30px;
    color: #fff;
}

    .chabochaboBalloon::after {
        content: "";
        position: absolute;
        margin: 0;
        bottom: -30px;
        right: 30px;
        width: 0;
        height: 0;
        border-top: 40px solid #666;
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        transform: rotate(-30deg);
    }

.ballloonAnime {
    animation: fuwafuwa 2s linear infinite;
    scale: 1;
}

@keyframes fuwafuwa {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }

    100% {
        transform: translateY(0)
    }
}
    */
        @keyframes fadeIn {
            from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}