/* =========================
   Wellness Section
========================= */
/* wellness.css */

/* body scroll lock */
body.is-fixed {
    overflow: hidden;
}


/* Variables */
:root {
    --color-accent: #2995DB;
    /* Accent Color */
    --color-main: #222222;
    /* Main Black */
    --color-text: #444444;
    /* Body Text */
    --color-bg: #FFFFFF;
    /* Base White */
    --color-light-gray: #f5f7fa;
    --font-jp: 'Noto Sans JP', sans-serif;
    --font-en: 'Montserrat', sans-serif;
}



.wellness-scope-list {
    margin: 1rem 0;
}

.wellness-scope-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--color-main);
}

.wellness-scope-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}