/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 25 2026 | 09:11:38 */
.fixed-button {
    /* 配置の設定 */
    position: fixed;
    bottom: 40px; /* 下からの距離 */
    right: 40px;  /* 右からの距離 */
    z-index: 9999; /* 他の要素より上に表示 */

    /* 見た目の設定 */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 140px;
    background-color: #c41515;
    color: #ffffff;
    border-radius: 50%; /* 正円にする */
    text-decoration: none;
    transition: all 0.3s ease;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}
/* ホバー（マウスを乗せた時）の動き */
.fixed-button:hover {
    background-color: #A7090E;
    transform: translateY(-4px); /* 少し上に浮く */
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

/* アイコン（文字）の大きさ */
.fixed-button span {
    font-size: 20px;
	font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
	text-align: center;
}

@media (max-width: 768px) {
    .fixed-button {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }
	.fixed-button span {
        font-size: 17px;
}
}