/* footer Start */
    .footer {
        font-size: 15px;
    }

    .footer .securityNotice {       
        color: var(--text-gray-2);
        text-align: center;
        padding: 10px;
    }

    .footer .serviceItems {
        color: var(--text-gray-dark);
        text-align: center;
        background-color: var(--bg-footer-mid);
        padding: 10px;
    }

    .footer .serviceItems .links ul {
        display: flex;
        justify-content: center;
        list-style-type: none;
        margin-bottom: 0;
    }

    .footer .links a:after {
        content: "｜";
    }

    .footer .links a:last-child:after {
        content: "";
    }

    .footer .serviceItems a {
        color: var(--text-gray-dark);
    }
    
   .footer .information {
        color: var(--text-white);
        background-color: var(--bg-footer-dark);
        padding: 10px;
    }
    .footer .copyright {
        text-align: center;
    }
    .footer .securityNoticeHR {
        margin-top: 8px;
        height: 1px;
        background-color: #999;
    }
    .footer .securityNotice .links a {
        font-size: 13px;
        color: #dddcdc;
    }
    /**********************Scroll To Top Button**********************/
    .smarttalk {
        position: fixed;
        /* top: 50%;
        transform: translateY(-50%); */
        bottom: 160px;
        right: 0px;
        z-index: 20;
        /* display: flex; */
        align-items: center;        
        font-size: 1rem;
        background-color: rgba(255, 255, 255, 0.8);
        box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 10px 5px;
        border-radius: 12px 0px 0px 12px;
        padding: 20px 5px 20px 10px;
    }
    .smarttalk .online {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* padding-bottom: 10px;
        border-bottom: 1px solid rgb(183, 183, 183); */
    }
    .smarttalk .online .item_icon {
        background-color: var(--color-primary);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 0;
    }
    .item_icon {
        flex-shrink: 0; 
        width: 50px;
        height: 50px;
        margin-right: 15px; 
    }
    .smarttalk_img {
        width: 30px;
    }
    .smarttalk .aitalk {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 10px;
    }
    .smarttalk .aitalk .item_icon {
        background-color: var(--color-smart-talk);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 0;
    }
    .smarttalk .online a , .smarttalk .aitalk a {
        color: #000;
        display: flex;
        font-weight: 600;
        flex-direction: column;
        justify-content: center;
        align-items: center;  
        transition: transform .2s ease;      
    }
     .smarttalk .online a:hover , .smarttalk .aitalk a:hover {
        transform: translateY(-3px) scale(1.03);
     }
    #myBtn {
        display: none;
        position: fixed;
        bottom: 100px;
        right: 13px;
        z-index: 99;
        font-size: 15px;
        border: none;
        outline: none;
        background-color: var(--color-accent);
        color: white;
        cursor: pointer;
        padding: 10px;
        border-radius: 100%;
        text-transform: uppercase;
    }

    #myBtn:hover {
        background-color: var(--color-accent-hover);
        
    }
    @media screen and (max-width:768px){
        #myBtn{
            right: 6px;
        }
        
    }