/* ===================================
   固定フッターバナー (Footer CTA)
   Version: 1.1.0
   Dependencies: None
   =================================== */

#footer_fixarea {
    display: block;
    width: 280px;
    position: fixed;
    right: 20px;
    bottom: -300px;
    background: rgba(20, 20, 20, 0.9);
    color: #fff;
    z-index: 9999;
    transition: bottom 0.5s ease;
    box-sizing: border-box;
    padding: 15px 20px 20px;
    border-radius: 10px 10px 0 0;
    font-family: sans-serif;
}

#footer_fixarea.show {
    bottom: 0;
}

/* タイトル */
.footer_fixarea_title {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* リスト */
.footer_fixarea_list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer_fixarea_list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer_fixarea_list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* 営業所名 */
.office_name {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

/* 電話番号 */
.phone_number {
    font-size: 18px;
    font-weight: bold;
    color: #fff !important;
    text-decoration: none;
    letter-spacing: 0.5px;
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
    #footer_fixarea {
        display: none;
    }
}
