@charset "UTF-8";
/* ---------------------------------------------
*   Custom Properties
--------------------------------------------- */
:root {
    --design-width: 1366;
    --contents-width: 1100;
    --contents-side-padding: 10;
    --minwidth: calc(var(--contents-width) + var(--contents-side-padding) * 2);
    --fixed-header-height: 80;
    --root-fz: 16;
    --line-height: 1.5;
    --hover-opacity-ratio: 0.8;
    --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: #382F2D;
    --color-black-2-rgb: 56, 47, 45;
    --color-white-1: #fff;
    --color-white-1-rgb: 255, 255, 255;
    --color-white-2: #F5F7FB;
    --color-white-2-rgb: 245, 247, 251;
    --color-white-3: #FCF6ED;
    --color-white-3-rgb: 252, 246, 237;
    --color-gray-1: #F0EBE6;
    --color-gray-1-rgb: 240, 235, 230;
    --color-kv-1: #EA3C27;
    --color-kv-1-rgb: 234, 60, 39;
    --color-kv-2: #C4102A;
    --color-kv-2-rgb: 196, 16, 42;
    --color-red-1: #C10230;
    --color-red-1-rgb: 193, 2, 48;
    --color-yellow-1: #f2d09f;
    --color-yellow-1-rgb: 242, 208, 159;
    --ff-root: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    --ff-vida: "Vidaloka", serif;
    --ff-lato: "Lato", sans-serif;;
}
@media screen and (max-width: 750px) {
    :root {
        --design-width: 390;
        --contents-width: 330;
        --contents-side-padding: 10;
        --minwidth: 320;
        --fixed-header-height: 60;
        --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 {
    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: 110px 0 0 0;
    border: 0;
    margin: -110px 0 0 0;
    background: 0;
    pointer-events: none;
}
@media screen and (max-width: 750px) {
    hr[id^=anchor-] {
        padding: calc(45 / var(--design-width) * 100vw) 0 0 0;
        margin: calc(-45 / var(--design-width) * 100vw) 0 0 0;
    }
}