@charset "UTF-8";
:root {
  --min-device-width: 360px;
  --site-width: 1000px;
  --space-inline-negative: calc(var(--space-inline) * -1);
  --vw100: max(calc(100vw - var(--scrollbar-width, 0)), var(--min-device-width));
  --vw: calc(var(--vw100) / 100);
  --site-outer: max(0px, calc((var(--vw100) - var(--site-width)) / 2));
  --site-gutter: max(var(--site-outer), var(--space-inline));
  --half-leading: calc((1lh - 1em) / 2);
  --half-leading-trim: calc(var(--half-leading) * -1);
  --ascender: 0.15em;
}
@supports not (top: 1lh) {
  :root {
    --half-leading: 0px;
  }
}

:root {
  --letter-spacing: 0;
}

:not(:root) {
  letter-spacing: var(--letter-spacing);
}

:root {
  --color-base: #252525;
  --color-primary: #AF8B46;
  --color-bg-base: #FCFAF3;
  --color-bg-ash: #F6F3E8;
  --color-bg-ash-dark: #EEE9DB;
  --color-border: #B8B8B8;
  --color-light: #ffffff;
  --color-dark: #000000;
}

:root {
  --ff-noto: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
  --ff-zenSerif: "Zen Old Mincho", serif;
  --ff-crimson: "Crimson Text", serif;
  --ff-sans-serif: var(--ff-noto);
  --ff-serif: var(--ff-zenSerif);
  --ff-serif-en: var(--ff-crimson);
}

:root {
  --typography-base-font-family: var(--ff-sans-serif);
  --typography-base-font-weight: 400;
  --typography-base-font-size: 1rem;
  --typography-base-line-height: 1.6875;
  --typography-base-letter-spacing: 0.04em;
  --typography-text_sm_en-font-family: var(--ff-serif-en);
  --typography-text_sm_en-font-weight: 400;
  --typography-text_sm_en-font-size: 1rem;
  --typography-text_sm_en-line-height: 1.6875;
  --typography-text_sm_en-letter-spacing: 0.04em;
  --typography-text_md_en-font-family: var(--ff-serif-en);
  --typography-text_md_en-font-weight: 400;
  --typography-text_md_en-font-size: 1.125rem;
  --typography-text_md_en-line-height: 1.6666666667;
  --typography-text_md_en-letter-spacing: 0.04em;
  --typography-text_lg_en-font-family: var(--ff-serif-en);
  --typography-text_lg_en-font-weight: 400;
  --typography-text_lg_en-font-size: 2.5rem;
  --typography-text_lg_en-line-height: 1.25;
  --typography-text_lg_en-letter-spacing: 0.04em;
  --typography-title_sm-font-family: var(--ff-serif);
  --typography-title_sm-font-weight: 700;
  --typography-title_sm-font-size: 1.25rem;
  --typography-title_sm-line-height: 1.7;
  --typography-title_sm-letter-spacing: 0.06em;
  --typography-title_md-font-family: var(--ff-serif);
  --typography-title_md-font-weight: 700;
  --typography-title_md-font-size: 1.375rem;
  --typography-title_md-line-height: 1.6818181818;
  --typography-title_md-letter-spacing: 0.06em;
  --typography-title_lg-font-family: var(--ff-serif);
  --typography-title_lg-font-weight: 700;
  --typography-title_lg-font-size: 1.625rem;
  --typography-title_lg-line-height: 1.6923076923;
  --typography-title_lg-letter-spacing: 0.06em;
  --typography-text_md_loose-font-family: var(--ff-sans-serif);
  --typography-text_md_loose-font-weight: 400;
  --typography-text_md_loose-font-size: 1rem;
  --typography-text_md_loose-line-height: 2.5;
  --typography-text_md_loose-letter-spacing: 0.04em;
  --typography-text_md_bold-font-family: var(--ff-sans-serif);
  --typography-text_md_bold-font-weight: 700;
  --typography-text_md_bold-font-size: 1rem;
  --typography-text_md_bold-line-height: 1.6875;
  --typography-text_md_bold-letter-spacing: 0.04em;
  --typography-text_lg-font-family: var(--ff-sans-serif);
  --typography-text_lg-font-weight: 400;
  --typography-text_lg-font-size: 1.125rem;
  --typography-text_lg-line-height: 1.6666666667;
  --typography-text_lg-letter-spacing: 0.04em;
}

:root {
  --space-inline: 60px;
}
@media (width <= 1000px) {
  :root {
    --space-inline: 20px;
  }
}

:root {
  --space-block-section: var(--space-block-xxl);
  --space-block-xxl: 120px;
  --space-block-xl: 100px;
  --space-block-lg: 60px;
  --space-block-md: 40px;
  --space-block-sm: 20px;
  --space-block-xs: 10px;
  --space-block-xxs: 4px;
  --space-block-section-trim: calc(var(--space-block-section) - var(--half-leading));
  --space-block-xxl-trim: calc(var(--space-block-xxl) - var(--half-leading));
  --space-block-xl-trim: calc(var(--space-block-xl) - var(--half-leading));
  --space-block-lg-trim: calc(var(--space-block-lg) - var(--half-leading));
  --space-block-md-trim: calc(var(--space-block-md) - var(--half-leading));
  --space-block-sm-trim: calc(var(--space-block-sm) - var(--half-leading));
  --space-block-xs-trim: calc(var(--space-block-xs) - var(--half-leading));
  --space-block-xxs-trim: calc(var(--space-block-xxs) - var(--half-leading));
}
@media (width <= 768px) {
  :root {
    --space-block-xxl: 120px;
    --space-block-xl: 100px;
    --space-block-lg: 60px;
    --space-block-md: 40px;
    --space-block-sm: 20px;
    --space-block-xs: 10px;
    --space-block-xxs: 4px;
  }
}
:root {
  --scroll-adjust: var(--header);
  --sec: 0.5s;
  --sec-fast: 0.2s;
  --sec-slow: 0.8s;
  --opacity: 0.8;
  --zoom: 1.1;
  --radius: 10px;
  --header: 86px;
}
@media (width <= 1200px) {
  :root {
    --header: 60px;
  }
}

