@charset "UTF-8";
/* ---------------------------------------------
*   Custom Properties
--------------------------------------------- */
:root {
    --design-width: 1920;
    --contents-width: 1440;
    --contents-width-small: 1280;
    --contents-side-padding: 20;
    --minwidth: 320;
    --fixed-header-height: 80;
    --root-fz: 16;
    --line-height: 1.5;
    --hover-opacity-ratio: 0.7;
    --hover-duration: .3s;
    --color-base-1: #000;
    --color-base-1-rgb: 0, 0, 0;
    --color-black-1: #000;
    --color-black-1-rgb: 0, 0, 0;
    --color-black-2: #111;
    --color-black-2-rgb: 17, 17, 17;
    --color-black-3: #2D2D2D;
    --color-black-3-rgb: 45, 45, 45;
    --color-white-1: #fff;
    --color-white-1-rgb: 255, 255, 255;
    --color-white-2: #fefefe;
    --color-white-2-rgb: 254, 254, 254;
    --color-gray-1: #E8E8E8;
    --color-gray-1-rgb: 232, 232, 232;
    --color-gray-2: #F9F9F9;
    --color-gray-2-rgb: 249, 249, 249;
    --color-gray-3: #4D4D4D;
    --color-gray-3-rgb: 77, 77, 77;
    --color-gray-4: #9B9B9B;
    --color-gray-4-rgb: 155, 155, 155;
    --color-yellow-1: #FFCF10;
    --color-yellow-1-rgb: 255, 207, 16;
    --color-yellow-2: #F5C61D;
    --color-yellow-2-rgb: 245, 198, 29;
    --color-blue-1: #0A74C2;
    --color-blue-1-rgb: 10, 116, 194;
    --ff-root: "Yu Gothic UI", "游ゴシック", "Yu Gothic", sans-serif;
    --ff-roboto: "Roboto", sans-serif;
}
@media screen and (max-width: 750px) {
    :root {
        --design-width: 750;
        --contents-width: 730;
        --contents-side-padding: 16;
        --minwidth: 320;
        --fixed-header-height: 50;
        --root-fz: 32;
        --line-height: 1.5;
    }
}

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

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

body {
    min-width: calc(var(--minwidth) * 1px);
    line-height: var(--line-height);
}

/* ---------------------------------------------
*   <a> tag
--------------------------------------------- */
a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

/* ---------------------------------------------
*   <img> tag
--------------------------------------------- */
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* ---------------------------------------------
*   <hr> tag as anchor target
--------------------------------------------- */
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;
}