/*==================================================
02 Base
==================================================*/

*,
*::before,
*::after{

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    margin:0;

    color:var(--text);

    background:var(--white);

    font-family:
        "Yu Gothic",
        "Hiragino Kaku Gothic ProN",
        sans-serif;

    line-height:1.8;

    -webkit-font-smoothing:antialiased;

}

img{

    display:block;

    max-width:100%;

    height:auto;

}

a{

    color:var(--primary);

    text-decoration:none;

    transition:var(--transition);

}

a:hover{

    color:var(--primary-dark);

}

ul,
ol{

    margin:0;

    padding-left:1.5em;

}

table{

    border-collapse:collapse;

}

/*======== WordPress Blocks ========*/

.wp-block-group{

    margin-top:0;

    margin-bottom:0;

}

.wp-block-columns{

    margin-bottom:0;

}

.wp-block-image{

    margin-bottom:0;

}

.wp-block-buttons{

    margin-top:0;

    margin-bottom:0;

}

figure{

    margin:0;

}