@charset "UTF-8";
/* ---------------------------------------------
*   Custom Properties
--------------------------------------------- */
:root {
    --design-width: 1440;
    --contents-width: 1240;
    --contents-side-padding: 10;
    --fixed-header-height: 105;
    --root-fz: 16;
    --line-height: 1.5;
    --hover-opacity-ratio: 0.7;
    --hover-duration: .2s;
    --leading-trim: calc((0.8em - 1lh) / 2);
    --color-base-1: #323232;
    --color-base-1-rgb: 50, 50, 50;
    --color-black-1: #000;
    --color-black-1-rgb: 0, 0, 0;
    --color-gray-1: #F2F2F2;
    --color-gray-1-rgb: 242, 242, 242;
    --color-gray-2: #D4D4D4;
    --color-gray-2-rgb: 212, 212, 212;
    --color-gray-3: #B1B1B1;
    --color-gray-3-rgb: 177, 177, 177;
    --color-gray-4: #535353;
    --color-gray-4-rgb: 83, 83, 83;
    --color-gray-5: #323232;
    --color-gray-5-rgb: 50, 50, 50;
    --color-gray-6: #949494;
    --color-gray-6-rgb: 148, 148, 148;
    --color-white-1: #fff;
    --color-white-1-rgb: 255, 255, 255;
    --color-white-2: #F1EEEA;
    --color-white-2-rgb: 241, 238, 234;
    --color-green-1: #21BF61;
    --color-green-1-rgb: 33, 191, 97;
    --color-green-2: #197A56;
    --color-green-2-rgb: 25, 122, 86;
    --color-green-3: #0E3E1B;
    --color-green-3-rgb: 14, 62, 27;
    --color-green-4: #7EF473;
    --color-green-4-rgb: 126, 244, 115;
    --color-red-1: #D82216;
    --color-red-1-rgb: 216, 34, 22;
    --ff-root: "Noto Sans JP", sans-serif;
    --ff-en: "HendersonBCG", sans-serif;
}
@media screen and (max-width: 1170px) {
    :root {
        --fixed-header-height: 70;
    }
}
@media screen and (max-width: 768px) {
    :root {
        --design-width: 390;
        --contents-width: 350;
        --contents-side-padding: 20;
        --minwidth: 320;
        --fixed-header-height: 56;
        --root-fz: 16;
        --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%;
}
html.is-noscroll,
body.is-noscroll {
    min-height: 100%;
    min-height: 100dvh;
}
body {
    line-height: var(--line-height);
}
@media screen and (max-width: 768px) {
    body {
        min-width: calc(var(--minwidth) * 1px);
    }
}
.is-noscroll body {
    position: fixed;
    width: 100%;
    height: 100%;
    height: 100dvh;
    box-sizing: border-box;
}

body .l-contents::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 800;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s, visibility 0.2s;
    pointer-events: none;
}
body:has(.js-menu-scope.is-open) .l-contents::after, body:has(.l-header-search--active) .l-contents::after {
    visibility: visible;
    opacity: 1;
}
body:has(.modal-fade-in) {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    overflow-y: scroll;
}

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

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

/* ---------------------------------------------
*   <sup> tag
--------------------------------------------- */
sup {
    color: var(--color-gray-4);
    font-size: calc(10 / var(--root-fz) * 1rem);
    font-weight: 400;
}

/* ---------------------------------------------
*   インライン強調タグ
*   reset.css で `font: inherit; font-size: 100%;` が当てられデフォルトの
*   太字/斜体/下線が失われるため、ここで再宣言する。
*   (ブロックエディタの段落・リスト等で B/I/U ボタンが効くようにするため)
--------------------------------------------- */
strong, b {
    font-weight: 700;
}

em, i, cite {
    font-style: italic;
}

u {
    text-decoration: underline;
}

small {
    font-size: 0.85em;
}

mark {
    background-color: #ff0;
    color: inherit;
}

s, del, strike {
    text-decoration: line-through;
}

/* ---------------------------------------------
*   font
--------------------------------------------- */
@font-face {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../_fonts/NotoSansJP-Regular.woff") format("woff");
}
@font-face {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../_fonts/NotoSansJP-Medium.woff") format("woff");
}
@font-face {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../_fonts/NotoSansJP-SemiBold.woff") format("woff");
}
@font-face {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../_fonts/NotoSansJP-Bold.woff") format("woff");
}
@font-face {
    font-family: "HendersonBCG";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../_fonts/BCGHenSansLight.woff2") format("woff2"), url("../_fonts/BCGHenSansLight.woff") format("woff");
}
@font-face {
    font-family: "HendersonBCG";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../_fonts/BCGHenSansRegular.woff2") format("woff2"), url("../_fonts/BCGHenSansRegular.woff") format("woff");
}
@font-face {
    font-family: "HendersonBCG";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../_fonts/BCGHenSansBold.woff2") format("woff2"), url("../_fonts/BCGHenSansBold.woff") format("woff");
}