@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* ページ内アンカー時のスクロール位置補正（sticky な l-header の下に見出しが隠れないように）。
   実測: ヘッダー高 PC=106px / SP=61px。少し余白を加えた値で固定。
   ヘッダーが変更された場合はここを調整する。 */
html {
    scroll-padding-top: 120px;
}
@media screen and (max-width: 959px) {
    html {
        scroll-padding-top: 75px;
    }
}

/* セクション末尾「▲ 一番上に戻る」リンク（カスタムHTMLブロックで設置） */
.qa-back-to-top {
    text-align: right;
    margin: 30px 0;
}
.qa-back-to-top a {
    display: inline-block;
    padding: 8px 16px;
    background: #f0f5f7;
    border: 1px solid #b8d4dc;
    border-radius: 6px;
    color: #2c4a5a !important;
    text-decoration: none !important;
    font-size: 13px;
    transition: background 0.2s;
}
.qa-back-to-top a:hover {
    background: #d9e9ee;
}
