/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 22 2026 | 09:41:20 */
/*================================================
 * フッター
 ================================================*/
footer {
    clear: both;
    width: 100%;
    padding: 30px 15px;
    margin-top: 40px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    text-align: center;
}

/* フッター内のリンク */
footer a {
    color: #043771;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* コピーライト表示 */
.copyright {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    text-align: center;
}

.copyright small {
    font-size: 100%;
}

/*================================================
 * トップへ戻るボタン（固定表示）
 ================================================*/
.totop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    left: auto;
    z-index: 100;
    margin: 0;
    text-align: center;
}

.totop a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.totop a:hover {
    background-color: #555;
    text-decoration: none;
}

.totop img {
    display: inline-block;
    width: 50px;
    height: auto;
    max-width: 100%;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.totop img:hover {
    opacity: 1;
}

/*================================================
 * モバイル対応
 ================================================*/
/* タブレット（768px以下） */
@media screen and (max-width: 768px) {
    footer {
        padding: 20px 10px;
        margin-top: 30px;
    }
    
    .copyright {
        font-size: 12px;
    }
    
    .totop a {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .totop {
        bottom: 15px;
        right: 15px;
    }
    
    .totop img {
        width: 40px;
    }
}

/* スマートフォン（480px以下） */
@media screen and (max-width: 480px) {
    footer {
        padding: 15px 8px;
        margin-top: 20px;
    }
    
    .totop a {
        padding: 6px 12px;
    }
    
    .totop {
        bottom: 10px;
        right: 10px;
    }
    
    .totop img {
        width: 35px;
    }
}

/*================================================
 * 印刷用スタイル
 ================================================*/
@media print {
    .totop {
        display: none;
    }
}