@charset "UTF-8";
/* ---------------------------------------------
*   Custom Properties
--------------------------------------------- */
:root {
    --design-width: 375;
    --contents-width: 375;
    --contents-side-padding: 10;
    --minwidth: 320;
    --root-fz: 32;
    --line-height: 1.5;
    --hover-opacity-ratio: 0.8;
    --hover-duration: .3s;
    --color-base-1: #FFFFFF;
    --color-base-1-rgb: 255, 255, 255;
    --color-black-1: #000;
    --color-black-1-rgb: 0, 0, 0;
    --color-white-1: #fff;
    --color-white-1-rgb: 255, 255, 255;
    --color-white-2: #F6E9DE;
    --color-white-2-rgb: 246, 233, 222;
    --color-white-3: #F5E5D7;
    --color-white-3-rgb: 245, 229, 215;
    --color-red-1: #C11531;
    --color-red-1-rgb: 193, 21, 49;
    --color-orange-1: #FFB922;
    --color-orange-1-rgb: 255, 185, 34;
    --ff-root: "Zen Kaku Gothic New", sans-serif;
    --ff-noto: "Noto Sans JP", sans-serif;
    --ff-noto-serif: "Noto Serif JP", sans-serif;
    --ff-mincho: "Zen Old Mincho", serif;
    --ff-bodoni: "Bodoni Moda", serif;
    --ff-lato: "Lato",serif;
    --ff-montserrat: "Montserrat", sans-serif;
    --ff-yu-gothic: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    --ff-WorkSans: "Work Sans", sans-serif;
}
@media print, screen and (min-width: 751px) {
    :root {
        --contents-width-pc: 430;
        --root-fz: 16;
    }
}

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

::-moz-selection {
    background-color: var(--color-white-2);
    color: var(--color-red-1);
}

::selection {
    background-color: var(--color-white-2);
    color: var(--color-red-1);
}

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

body {
    min-width: calc(var(--minwidth) * 1px);
    line-height: var(--line-height);
    font-feature-settings: "palt";
}
@media print, screen and (min-width: 751px) {
    body {
        min-width: initial;
    }
}

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

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