

body{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;  
    font-weight: 300;
    font-style: normal;
}


body.translatepress-ja{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}


/* ----------------- FONT WEIGHTS ----------------- */

.font-weight-300{
    font-weight: 300;
}
.font-weight-400{
    font-weight: 400;
}
.font-weight-700{
    font-weight: 700;
}




/* ----------------- HEADINGS ----------------- */


h1, h2, h3, h4, h5, h6,
.musubi-heading-xl,
.musubi-heading-l,
.musubi-heading-m,
.musubi-heading-s,
.musubi-heading-xs,
.musubi-heading-xxs{
    font-weight: 700;
    line-height: 1.5;
}

h1,
.musubi-heading-xl{
    font-size: 2rem;
    margin-block: 2rem;
}
h2,
.musubi-heading-l{
    font-size: 1.8rem;
    margin-block: 1.8rem;
}
h3,
.musubi-heading-m{
    font-size: 1.5rem;
    margin-block: 1.5rem;
}
h4,
.musubi-heading-s{
    font-size: 1.33rem;
    margin-block: 1.5rem;
}
h5,
.musubi-heading-xs{
    font-size: 1.2rem;
    margin-block: 1.5rem;
}
h6,
.musubi-heading-xxs{
    font-size: 1.125rem;
    margin-block: 1.5rem;
}


/* ----------------- CENTRALISED ----------------- */


.musubi-heading-central{
    text-align: center;
}




/* ----------------- PARAGRAPHS ----------------- */

p,
.musubi-body{
    line-height: 1.5;
    font-size: 1rem;
    margin-block: 1rem;
}


.musubi-body-l{
    line-height: 1.5;
    font-size: 1.25rem;
    margin-block: 1.25rem;
}






/* ----------------- LISTS ----------------- */

ul, ol{
    line-height: 1.5;
    font-size: 1rem;
}





/* ----------------- LEADING STATEMENT ----------------- */



.musubi-statement{
    margin-block: 4rem;
    padding-inline: 10ch;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--musubi-grey-core);
    text-align: center;
    position: relative;
    line-height: 1.5;

    --dash-width: 50px;
    --dash-height: 10px;

}

.musubi-statement::before,
.musubi-statement::after{
    content: '';
    position: absolute;
    display: block;
    width: var(--dash-width);
    height: var(--dash-height);
}
.musubi-statement::before{
    background-color: var(--musubi-red-core);
}
.musubi-statement::after{
    background-color: var(--musubi-navy-core);
}
@media (min-width: 640px) {
    .musubi-statement::before,
    .musubi-statement::after{
        top: calc(50% - var(--dash-height) / 2);
    }
    .musubi-statement::before{
        left: calc(10ch - var(--dash-width) - 2rem);
    }
    .musubi-statement::after{
        right: calc(10ch - var(--dash-width) - 2rem);
    }
}

@media (max-width: 640px) {
    .musubi-statement{
        padding-inline: 1rem;
        padding-block: 3rem;
    }
    .musubi-statement::before,
    .musubi-statement::after{
        left: calc(50% - var(--dash-width) / 2);
    }
    .musubi-statement::before{
        top: 1rem;
        right: unset;
    }
    .musubi-statement::after{
        bottom: 1rem;
    }    
}

@media (max-width: 4800px) {
    .musubi-statement{
        margin-block: 1.5rem;
        font-size: 1.25rem;
    }
}