/*
Theme Name: ライフサポートナビ
Theme URI: https://life-support-navi.jp/
Author: Brachio Design
Author URI: https://brachio-design.jp/
Description: キャッシング・カードローン情報サイト用WordPressテーマ。カスタマイザーで柔軟に設定可能。
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: life-support-navi
Tags: business, finance, responsive, custom-colors, custom-menu, featured-images
*/

/* このファイルはWordPressテーマの情報ファイルです */
/* 実際のスタイルは index.php 内に記述されています */

/* PageTopボタン */
.page-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #003d6b;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.page-top.show {
    opacity: 1;
    visibility: visible;
}

.page-top:hover {
    background: #0066cc;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-top svg {
    color: white;
    width: 24px;
    height: 24px;
}

