@charset "UTF-8";
/* ---------------------------------------------
*   Custom Properties
--------------------------------------------- */
:root {
    --design-width: 1440;
    --contents-width: 1200;
    --contents-inner-width: 1000;
    --contents-side-padding: 110;
    --contents-inner-side-padding: 20;
    --minwidth: calc(var(--contents-width) + var(--contents-side-padding) * 2);
    --fixed-header-height: 120;
    --root-fz: 16;
    --line-height: 1.5;
    --sns-facebook-icon-size: 76;
    --sns-x-icon-size: 64;
    --sns-youtube-icon-size: 77;
    --sns-instagram-icon-size: 70;
    --sns-linkedin-icon-size: 76;
    --detail-animation-delay-1: -3.3s;
    --detail-animation-delay-2: -6.6s;
    --detail-animation-delay-3: -5s;
    --anchor-padding: 20;
    --hover-opacity-ratio: 0.8;
    --hover-duration: .3s;
    --color-base-1: #3D260F;
    --color-base-1-rgb: 61, 38, 15;
    --color-black-1: #333333;
    --color-black-1-rgb: 51, 51, 51;
    --color-white-1: #fff;
    --color-white-1-rgb: 255, 255, 255;
    --color-bg-1: #ECE6DB;
    --color-bg-1-rgb: 236, 230, 219;
    --color-bg-2: #80B447;
    --color-bg-2-rgb: 128, 180, 71;
    --color-bg-3: #F8F6F2;
    --color-bg-3-rgb: 248, 246, 242;
    --color-bg-4: #E7B132;
    --color-bg-4-rgb: 231, 177, 50;
    --color-cat-1: #80B447;
    --color-cat-1-rgb: 128, 180, 71;
    --color-cat-2: #F7931E;
    --color-cat-2-rgb: 247, 147, 30;
    --color-cat-3: #3FA9F5;
    --color-cat-3-rgb: 63, 169, 245;
    --color-cat-4: #FF7BAC;
    --color-cat-4-rgb: 255, 123, 172;
    --color-cat-5: #754C24;
    --color-cat-5-rgb: 117, 76, 36;
    --color-cat-6: #C1AC93;
    --color-cat-6-rgb: 193, 172, 147;
    --color-cat-7: #A07C52;
    --color-cat-7-rgb: 160, 124, 82;
    --color-cat-8: #C0966D;
    --color-cat-8-rgb: 192, 150, 109;
    --color-cat-9: #7D519E;
    --color-cat-9-rgb: 125, 81, 158;
    --ff-root: "游ゴシック体", YuGothic,  游ゴシック Medium ,  Yu Gothic Medium ,  游ゴシック , "Yu Gothic", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
    :root {
        --design-width: 750;
        --contents-width: 690;
        --contents-side-padding: 30;
        --minwidth: 320;
        --fixed-header-height: 150;
        --root-fz: 32;
        --line-height: 1.5;
        --anchor-padding: 40;
    }
}

/* ---------------------------------------------
*   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%;
    font-feature-settings: "palt" 1;
}
@media screen and (max-width: 768px) {
    html,
    body {
        font-size: calc(var(--root-fz) / var(--design-width) * 100vw);
    }
}

body {
    line-height: var(--line-height);
}
@media screen and (max-width: 768px) {
    body {
        min-width: calc(var(--minwidth) * 1px);
    }
}
body.is-menu-opened {
    overflow: hidden;
}
body.is-fixed {
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
}

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

/* ---------------------------------------------
*   <img> tag
--------------------------------------------- */
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
@media screen and (max-width: 768px) {
    img {
        width: 100%;
    }
}

/* ---------------------------------------------
*   <hr> tag as anchor target
--------------------------------------------- */
hr[id^=anchor-] {
    display: block;
    width: auto;
    height: 0;
    border: 0;
    background: 0;
    pointer-events: none;
    padding: calc(var(--fixed-header-height) / 2 * 1px) 0 0 0;
    margin: calc(var(--fixed-header-height) / -2 * 1px) 0 0 0;
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
    hr[id^=anchor-] {
        padding: calc(var(--fixed-header-height) * 1px) 0 0 0;
        margin: calc(var(--fixed-header-height) * -1px) 0 0 0;
    }
}
@media screen and (max-width: 768px) {
    hr[id^=anchor-] {
        padding: calc(var(--fixed-header-height) / var(--design-width) * 100vw) 0 0 0;
        margin: calc(-1 * var(--fixed-header-height) / var(--design-width) * 100vw) 0 0 0;
    }
}