/* ---------------------------------------------
*   Custom Properties
--------------------------------------------- */
:root {
    --design-width: 1440;
    --contents-width: 900;
    --contents-side-padding: 20;
    --minwidth: calc(var(--contents-width) + var(--contents-side-padding) * 2);
    --fixed-header-height: 78;
    --root-fz: 16;
    --line-height: 1.5;
    --hover-opacity-ratio: 0.8;
    --hover-duration: .3s;
    --color-base-1: #333333;
    --color-base-1-rgb: 51, 51, 51;
    --color-black-1: #333333;
    --color-black-1-rgb: 51, 51, 51;
    --color-white-1: #fff;
    --color-white-1-rgb: 255, 255, 255;
    --color-orange-1: #F77911;
    --color-orange-1-rgb: 247, 121, 17;
    --color-blue-1: #343369;
    --color-blue-1-rgb: 52, 51, 105;
    --color-blue-2: #E3EEEB;
    --color-blue-2-rgb: 227, 238, 235;
    --color-blue-3: #00003E;
    --color-blue-3-rgb: 0, 0, 62;
    --color-blue-4: #003E9A;
    --color-blue-4-rgb: 0, 62, 154;
    --color-green-1: #1DCC64;
    --color-green-1-rgb: 29, 204, 100;
    --color-green-2: #E6FCE8;
    --color-green-2-rgb: 230, 252, 232;
    --color-green-3: #03C755;
    --color-green-3-rgb: 3, 199, 85;
    --color-green-4: #E3EFEB;
    --color-green-4-rgb: 227, 239, 235;
    --ff-root: "LINESeedJPStd Regular", sans-serif;
    --ff-ls-b: "LINESeedJPStd Bold", sans-serif;
    --ff-ls-eb: "LINESeedJPStd ExtraBold", sans-serif;
    --ff-ls-r: "LINESeedJPStd Regular", sans-serif;
    --ff-ls-t: "LINESeedJPStd Thin", sans-serif;
}
@media screen and (max-width: 1024px) {
    :root {
        --design-width: 375;
        --contents-width: 353;
        --contents-side-padding: 11;
        --minwidth: 320;
        --fixed-header-height: 54;
        --root-fz: 32;
        --line-height: 1.5;
    }
}

/* ---------------------------------------------
*   Universal selector
--------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
}

/* ---------------------------------------------
*   html, body
--------------------------------------------- */
.l-wrapper {
    color: var(--color-base-1);
    font-family: var(--ff-root);
    font-size: calc(var(--root-fz) * 1px);
    -webkit-text-size-adjust: 100%;
    line-height: var(--line-height);
}
@media screen and (max-width: 1024px) {
    .l-wrapper {
        font-size: calc(var(--root-fz) / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   <a> tag
--------------------------------------------- */
.l-wrapper a {
    cursor: pointer;
}

/* ---------------------------------------------
*   <hr> tag as anchor target
--------------------------------------------- */
.l-wrapper hr[id^=anchor-] {
    display: block;
    width: auto;
    height: 0;
    padding: calc(var(--fixed-header-height) * 1px) 0 0 0;
    border: 0;
    margin: calc(var(--fixed-header-height) * -1px) 0 0 0;
    background: 0;
    pointer-events: none;
}