@charset "UTF-8";
/*! kiso.css v1.2.1 | MIT License | https://github.com/tak-dcxi/kiso.css */
/* ======================================================
//  MARK: Universal
// ====================================================== */
*,
::before,
::after {
  /*
  * Includes `padding` and `border` in the element's specified dimensions.
  * It is highly recommended to set `box-sizing: border-box;` by default, as it makes styling much easier, especially when specifying `width: 100%;`.
  */
  box-sizing: border-box;
}

/* ======================================================
//  MARK: Document and Body Elements
// ====================================================== */
:where(:root) {
  /* In Safari, if `font-family` is not specified, a serif font is applied by default, so `sans-serif` is set as the default here. */
  font-family: sans-serif;
  /*
  * For accessibility, it is recommended to set the `line-height` to at least 1.5 times the text size within paragraphs.
  * @see https://waic.jp/translations/WCAG21/#visual-presentation
  */
  line-height: 1.5;
  /* Remove space when punctuation marks are adjacent, and also remove leading spaces in a line. */
  text-spacing-trim: trim-start;
  /* Improves readability by inserting a small space between Japanese and alphanumeric characters. */
  text-autospace: normal;
  /* Prevents misreading by applying strict line-breaking rules. */
  line-break: strict;
  /* Wraps English words mid-word. Specifying `anywhere` also prevents content from overflowing in layouts like `flex` or `grid`. */
  overflow-wrap: anywhere;
  /*
  * Mobile browsers have an algorithm that automatically adjusts font sizes to prevent text from becoming too small.
  * This controls the auto-adjustment feature to prevent unwanted resizing.
  */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* Prevents layout shift caused by the appearance or disappearance of the scrollbar. */
  scrollbar-gutter: stable;
  /* Suppresses the tap highlight on iOS. */
  -webkit-tap-highlight-color: transparent;
}

:where(body) {
  /*
  * When creating a sticky footer, a minimum height is often required.
  * Setting the `min-block-size` to the dynamic viewport height ensures enough space for the footer.
  */
  min-block-size: 100dvb;
  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}

/* ======================================================
// MARK: Sections
// ------------------------------------------------------ */
:where(h1, h2, h3, h4, h5, h6) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}

:where(h1) {
  /*
  * Adjusts user agent (UA) styles for `h1` elements within sectioning content.
  * This addresses DevTools warnings that appear when `h1` elements nested within sectioning content lack `font-size` and `margin` properties.
  * @see https://html.spec.whatwg.org/#sections-and-headings
  */
  margin-block: 0.67em;
  font-size: 2em;
}

:where(h2, h3, h4, h5, h6) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}

:where(search) {
  /*
  * The `<search>` element is supported from Safari 17.
  * This prevents it from being displayed as an inline element in unsupported environments.
  */
  display: block flow;
}

/* ======================================================
//  MARK: Grouping content
// ====================================================== */
:where(p, blockquote, figure, pre, address, ul, ol, dl, menu) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}

:where(blockquote, figure) {
  /* The `margin-inline` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline: unset;
}

:where(p:lang(en)) {
  /*
  * In English, a single word on the last line is called a "widow" or "orphan" and is considered something to avoid as it makes the text harder to read.
  * Therefore, when lang="en", this prevents the last line from ending with a single word.
  */
  text-wrap: pretty;
}

:where(address:lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

:where(ul, ol, menu) {
  /* The `padding-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  padding-inline-start: unset;
  /*
  * In Safari, using `list-style: none` prevents screen readers from announcing lists.
  * `list-style-type: ""` is used to hide markers without affecting accessibility.
  * @see https://matuzo.at/blog/2023/removing-list-styles-without-affecting-semantics
  */
  list-style-type: "";
}

:where(dt) {
  /* It is common to display `<dt>` elements in bold, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

:where(dd) {
  /* The `margin-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline-start: unset;
}

:where(pre) {
  /*
  * Since `text-spacing-trim` can affect spacing in `<pre>` elements even with its initial value, the final rendering may depend on the user's font settings.
  * To ensure consistent alignment, `space-all` is explicitly specified and inheritance is prevented.
  */
  text-spacing-trim: space-all;
  /* Set to `no-autospace` as it can cause misalignment with monospaced fonts. */
  text-autospace: no-autospace;
}

/* ======================================================
//  MARK: Text-level semantics
// ====================================================== */
:where(em:lang(ja)) {
  /* In Japanese, emphasis is commonly represented by bold text, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

:where(:is(i, cite, em, dfn, var):lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

:where(code, kbd, samp) {
  /*
  * Set a monospace font family referencing Tailwind.
  * @see https://tailwindcss.com/docs/font-family
  */
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* Font feature settings can have adverse effects on monospaced fonts, so their values are explicitly set to `initial` to prevent inheritance. */
  font-feature-settings: initial;
  font-variation-settings: initial;
  /* Resets the `font-size` specified in the UA stylesheet to allow inheritance. */
  font-size: unset;
  /*
  * Disables font ligatures for programming fonts (like Fira Code)
  * to prevent character combinations like `=>` from being rendered as a single symbol (e.g., `⇒`).
  */
  font-variant-ligatures: none;
}

:where(abbr[title]) {
  /*
  * The `<abbr>` element with the `title` attribute isn't helpful regarding accessibility because support is inconsistent, and it's only accessible to some users.
  * This rule shows a dotted underline on abbreviations in all browsers (there's a bug in Safari) and changes the cursor.
  * @see https://adrianroselli.com/2024/01/using-abbr-element-with-title-attribute.html
  */
  text-decoration-line: underline;
  text-decoration-style: dotted;
  cursor: help;
}

:where(time) {
  /* Set to `no-autospace` because date notations in typography do not include spaces. */
  text-autospace: no-autospace;
}

@media (forced-colors: active) {
  :where(mark) {
    /*
    * In forced-colors mode, the color of the mark element may not change, which can be problematic. Use system colors in forced-colors mode.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkWHCM
    */
    background-color: Highlight;
    color: HighlightText;
  }
}

@media print {
  :where(mark) {
    /*
    * Not all printers support color, and users might print in grayscale.
    * It's worth adding a non-disruptive style that scales with the text, as an alternative to relying only on background color.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkPrint
    */
    border-width: 1px;
    border-style: dotted;
  }
}

/* ======================================================
//  MARK: Links
// ====================================================== */
:where(a:any-link) {
  /* The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: unset;
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
}

/* ======================================================
//  MARK: Embedded content
// ====================================================== */
:where(img, svg, picture, video, canvas, model, audio, iframe, embed, object) {
  /* Automatically adjust block size based on content. */
  block-size: auto;
  /* Prevents overflow by setting the maximum width to `100%`. */
  max-inline-size: 100%;
  /* Prevents extra space from appearing at the bottom of the element. */
  vertical-align: bottom;
}

:where(iframe) {
  /* The `border` specified in the UA stylesheet is often unnecessary, so it is reset. */
  border: unset;
}

/* ======================================================
//  MARK: Tabular data
// ====================================================== */
:where(table) {
  /* Collapse borders for a more refined table design. */
  border-collapse: collapse;
}

:where(caption, th) {
  /* The `text-align` specified in the UA stylesheet is often unnecessary, so it is reset. */
  text-align: unset;
}

:where(caption) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}

/* ======================================================
//  MARK: Forms
// ====================================================== */
:where(button, input, select, textarea),
::file-selector-button {
  /*
  * These elements are often styled with a border, so a `1px` border is applied by default for consistency.
  * This ensures readability even for unstyled elements.
  * When resetting, it's recommended to use `border-color: transparent` instead of `border: none` to account for forced color modes.
  */
  border-width: 1px;
  border-style: solid;
  /* These styles specified in the UA stylesheet are often unnecessary, so they are reset to allow for inheritance. */
  border-color: unset;
  border-radius: unset;
  color: unset;
  font: unset;
  letter-spacing: unset;
  text-align: unset;
}

:where(input:is([type="radio" i], [type="checkbox" i])) {
  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}

:where(input[type="file" i]) {
  /* The `border` is often unnecessary, so it is reset here. */
  border: unset;
}

:where(input[type="search" i]) {
  /* Remove the rounded corners of search inputs on macOS and normalize the background color. */
  -webkit-appearance: textfield;
}

@supports (-webkit-touch-callout: none) {
  :where(input[type="search" i]) {
    /* normalize the background color on iOS. */
    background-color: Canvas;
  }
}

:where(
input:is(
[type="tel" i],
[type="url" i],
[type="email" i],
[type="number" i]):not(:placeholder-shown)) {
  /*
  * Certain input types need to maintain left alignment even in right-to-left (RTL) languages.
  * However, this only applies when the value is not empty, as the placeholder should be right-aligned.
  * @see https://rtlstyling.com/posts/rtl-styling#form-inputs
  */
  direction: ltr;
}

:where(textarea) {
  /* The `margin-block` specified in Firefox's UA stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
  /* Allows vertical resizing for `<textarea>` elements. */
  resize: block;
}

:where(
input:not([type="button" i]):not([type="submit" i]):not([type="reset" i]),
textarea,
[contenteditable]) {
  /* Set to `no-autospace` because `text-autospace` can insert spaces during input, potentially causing erratic behavior. */
  text-autospace: no-autospace;
}

:where(
button,
input:is([type="button" i], [type="submit" i], [type="reset" i])),
::file-selector-button {
  /* The `background-color` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  background-color: unset;
}

:where(
button,
input:is([type="button" i], [type="submit" i], [type="reset" i]),
[role="tab" i],
[role="button" i],
[role="option" i]),
::file-selector-button {
  /*
  * On iOS, double-tapping a button can cause zooming, which harms usability.
  * `touch-action: manipulation` is specified to disable zooming on double-tap.
  * Third-party plugins such as Swiper sometimes use div elements with these roles as buttons, since double-tapping a div can still trigger zooming, it's advisable to specify this property.
  */
  touch-action: manipulation;
}

:where(
button:enabled,
label[for],
select:enabled,
input:is(
[type="button" i],
[type="submit" i],
[type="reset" i],
[type="radio" i],
[type="checkbox" i]):enabled,
[role="tab" i],
[role="button" i],
[role="option" i]),
:where(:enabled)::file-selector-button {
  /* Indicate clickable elements with a pointer cursor. */
  cursor: pointer;
}

:where(fieldset) {
  /*
  * Prevent fieldset from causing overflow.
  * Reset the default `min-inline-size: min-content` to prevent children from stretching fieldset.
  * @see https://github.com/twbs/bootstrap/issues/12359
  */
  min-inline-size: 0;
  /* The following default styles are often unnecessary, so they are reset. */
  margin-inline: unset;
  padding: unset;
  border: unset;
}

:where(legend) {
  /* The default `padding-inline` is often unnecessary, so it is reset. */
  padding-inline: unset;
}

:where(progress) {
  /* Resets the vertical alignment of the `<progress>` element to its initial value. */
  vertical-align: unset;
}

::placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}

/* ======================================================
//  MARK: Interactive elements
// ====================================================== */
:where(summary) {
  /* The default triangle marker is often unnecessary, so it is disabled. */
  list-style-type: "";
  /* Changing the cursor to a pointer clarifies the clickability of the element. */
  cursor: pointer;
}

:where(summary)::-webkit-details-marker {
  /* In Safari versions earlier than 18.4 (released in April 2025), a triangle icon is displayed using the -webkit-details-marker CSS pseudo-element, so it should be removed. */
  display: none;
}

:where(dialog, [popover]) {
  /*
  * When these fixed-position elements are scrolled, preventing scroll chaining on the underlying page and bounce effects on mobile improves usability.
  * Disabling block-direction scroll chaining is recommended.
  */
  overscroll-behavior-block: contain;
  /* The following default styles are often unnecessary, so they are reset. */
  padding: unset;
  border: unset;
}

:where(dialog:not([open]):not([popover]), [popover]:not(:popover-open)) {
  /*
  * These elements can be easily displayed by explicitly setting their `display` property.
  * To prevent them from appearing when not in an open state, they are forcibly hidden.
  */
  display: none !important;
}

:where(dialog) {
  /*
  * The max width and height of a `<dialog>` element are typically determined by the design.
  * These UA stylesheet properties are reset as they can be obstructive, especially when trying to make the dialog full-screen.
  */
  max-inline-size: unset;
  max-block-size: unset;
}

:where(dialog)::backdrop {
  /* Normalize the background color of the `::backdrop` element. */
  background-color: oklch(0% 0 0deg/30%);
}

:where([popover]) {
  /*
  * While the UA stylesheet's `margin` for `<dialog>` elements is useful for centering with `inset: 0`,
  * but `margin` for `popover` elements is often obstructive as they frequently use Anchor Positioning.
  */
  margin: unset;
}

/* ======================================================
//  MARK: Focus Styles
// ====================================================== */
:where(:focus-visible) {
  /* Add space between the content and the focus outline. */
  outline-offset: 3px;
}

[tabindex="-1"]:focus {
  /* Prevent programmatically focused elements from displaying an outline unless they are naturally focusable. */
  outline: none !important;
}

/* ======================================================
//  MARK: Misc
// ====================================================== */
:where(:disabled, [aria-disabled="true" i]) {
  /* Display the default cursor on disabled elements to reflect their non-interactive state. */
  cursor: default;
}

[hidden]:not([hidden="until-found" i]) {
  /* Ensure that elements intended to be hidden are not displayed, improving clarity and layout control. */
  display: none !important;
}

:root {
  --white: #fff;
  --deep-gray: #9b9b9b;
  --gray-black: #333;
  --black: #000;
  --light-beige: #f2efe9;
  --beige: #e7e3dc;
  --gold: #aaa292;
  --primary-color: var(--black);
  --base-gray-color: var(--deep-gray);
  --base-text-color: var(--black);
  --sub-text-color: var(--deep-gray);
  --base-border-color: var(--deep-gray);
}

/*------------------------------------------------------------
  setting
------------------------------------------------------------*/
html {
  font-size: 2.56410256vw;
}

@media screen and (min-width: 600px) {
  html {
    font-size: 1.30208333vw;
  }
}

@media screen and (min-width: 1024px) {
  html {
    font-size: 0.9765625vw;
  }
}

@media screen and (min-width: 1200px) {
  html {
    font-size: 0.78125vw;
  }
}

@media screen and (min-width: 1366px) {
  html {
    font-size: 0.73206442vw;
  }
}

@media screen and (min-width: 1440px) {
  html {
    font-size: 0.69444444vw;
  }
}

@media screen and (min-width: 1536px) {
  html {
    font-size: 0.65104166vw;
  }
}

@media screen and (min-width: 1664px) {
  html {
    font-size: 0.60096153vw;
  }
}

@media screen and (min-width: 1792px) {
  html {
    font-size: 0.55803571vw;
  }
}

@media screen and (min-width: 1920px) {
  html {
    font-size: 0.52083333vw;
  }
}

@media screen and (min-width: 2560px) {
  html {
    font-size: 0.390625vw;
  }
}

body {
  position: relative;
  background: #f1f1ee;
  color: var(--base-text-color);
  font-size: 1.4rem;
  font-weight: 400;
}

@media screen and (min-width: 1024px) {
  body {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 1200px) {
  body {
    display: grid;
    grid-template-columns: calc(100vw - 27rem) 27rem;
  }
}

html[lang="ja"] body {
  font-family: "Zen Old Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 2;
  letter-spacing: 0;
}

html[lang="en"] body {
  font-family: "Zen Old Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 2;
  letter-spacing: 0;
}

body.is-fixed {
  overflow: hidden;
}

p {
  line-break: strict;
}

a, button, ::file-selector-button {
  touch-action: manipulation;
  -weblit-user-select: none;
  user-select: none;
}

a {
  color: var(--base-text-color);
}

p a {
  text-decoration: underline;
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

p a:active:not(:disabled), p a:hover:not(:disabled) {
  opacity: .5;
  transition-duration: 0.25s;
}

button, select {
  cursor: pointer;
}

picture, video, iframe {
  display: block;
}

.wp-post-image {
  height: auto;
}

figcaption {
  margin-top: 1rem !important;
  font-size: 1.2rem;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  figcaption {
    margin-top: 1.4rem !important;
    font-size: 1.2rem;
  }
}

th {
  text-align: left;
}

caption {
  caption-side: bottom;
  margin-top: 1.6rem;
  font-size: 1.2rem;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  caption {
    margin-top: 2.6rem;
    font-size: 1.2rem;
  }
}

caption p + p {
  margin-top: 1rem;
}

caption li {
  padding-left: 1.7rem;
  text-indent: -1.7rem;
}

ul {
  list-style-type: '';
}

ol {
  margin-left: 1.8em;
}

@media screen and (max-width: 599px) {
  .md, .lg, .lg--small, .lg--medium, .lg--large {
    display: none !important;
  }
  .sm {
    display: revert !important;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .sm, .lg, .lg--small, .lg--medium, .lg--large {
    display: none !important;
  }
  .md {
    display: revert !important;
  }
}

@media screen and (min-width: 1024px) {
  .sm, .md, .lg--medium, .lg--large {
    display: none !important;
  }
  .lg, .lg--small {
    display: revert !important;
  }
}

@media screen and (min-width: 1280px) {
  .lg--small {
    display: none !important;
  }
  .lg--medium {
    display: revert !important;
  }
}

@media screen and (min-width: 1536px) {
  .lg--small, .lg--medium {
    display: none !important;
  }
  .lg--large {
    display: revert !important;
  }
}

.bg-lazy {
  background-image: none !important;
}

.se {
  pointer-events: none;
}

.se a {
  pointer-events: none;
}

.is-in {
  pointer-events: visible;
}

.is-in a {
  pointer-events: visible;
}

.fade, .fade--medium {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 350ms;
  transition-timing-function: ease-in;
}

.fade--medium {
  transition-duration: 700ms;
}

.is-in .fade, .is-in .fade--medium, .is-in.fade, .is-in.fade--medium {
  opacity: 1;
}

.delay--100 {
  transition-delay: 100ms;
  animation-delay: 100ms;
}

@media screen and (max-width: 599px) {
  .sm-delay--100 {
    transition-delay: 100ms;
    animation-delay: 100ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .md-delay--100 {
    transition-delay: 100ms;
    animation-delay: 100ms;
  }
}

@media screen and (min-width: 1024px) {
  .lg-delay--100 {
    transition-delay: 100ms;
    animation-delay: 100ms;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .lg--small-delay--100 {
    transition-delay: 100ms;
    animation-delay: 100ms;
  }
}

.delay--200 {
  transition-delay: 200ms;
  animation-delay: 200ms;
}

@media screen and (max-width: 599px) {
  .sm-delay--200 {
    transition-delay: 200ms;
    animation-delay: 200ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .md-delay--200 {
    transition-delay: 200ms;
    animation-delay: 200ms;
  }
}

@media screen and (min-width: 1024px) {
  .lg-delay--200 {
    transition-delay: 200ms;
    animation-delay: 200ms;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .lg--small-delay--200 {
    transition-delay: 200ms;
    animation-delay: 200ms;
  }
}

.delay--300 {
  transition-delay: 300ms;
  animation-delay: 300ms;
}

@media screen and (max-width: 599px) {
  .sm-delay--300 {
    transition-delay: 300ms;
    animation-delay: 300ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .md-delay--300 {
    transition-delay: 300ms;
    animation-delay: 300ms;
  }
}

@media screen and (min-width: 1024px) {
  .lg-delay--300 {
    transition-delay: 300ms;
    animation-delay: 300ms;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .lg--small-delay--300 {
    transition-delay: 300ms;
    animation-delay: 300ms;
  }
}

.delay--400 {
  transition-delay: 400ms;
  animation-delay: 400ms;
}

@media screen and (max-width: 599px) {
  .sm-delay--400 {
    transition-delay: 400ms;
    animation-delay: 400ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .md-delay--400 {
    transition-delay: 400ms;
    animation-delay: 400ms;
  }
}

@media screen and (min-width: 1024px) {
  .lg-delay--400 {
    transition-delay: 400ms;
    animation-delay: 400ms;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .lg--small-delay--400 {
    transition-delay: 400ms;
    animation-delay: 400ms;
  }
}

.delay--500 {
  transition-delay: 500ms;
  animation-delay: 500ms;
}

@media screen and (max-width: 599px) {
  .sm-delay--500 {
    transition-delay: 500ms;
    animation-delay: 500ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .md-delay--500 {
    transition-delay: 500ms;
    animation-delay: 500ms;
  }
}

@media screen and (min-width: 1024px) {
  .lg-delay--500 {
    transition-delay: 500ms;
    animation-delay: 500ms;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .lg--small-delay--500 {
    transition-delay: 500ms;
    animation-delay: 500ms;
  }
}

.delay--600 {
  transition-delay: 600ms;
  animation-delay: 600ms;
}

@media screen and (max-width: 599px) {
  .sm-delay--600 {
    transition-delay: 600ms;
    animation-delay: 600ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .md-delay--600 {
    transition-delay: 600ms;
    animation-delay: 600ms;
  }
}

@media screen and (min-width: 1024px) {
  .lg-delay--600 {
    transition-delay: 600ms;
    animation-delay: 600ms;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .lg--small-delay--600 {
    transition-delay: 600ms;
    animation-delay: 600ms;
  }
}

.delay--700 {
  transition-delay: 700ms;
  animation-delay: 700ms;
}

@media screen and (max-width: 599px) {
  .sm-delay--700 {
    transition-delay: 700ms;
    animation-delay: 700ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .md-delay--700 {
    transition-delay: 700ms;
    animation-delay: 700ms;
  }
}

@media screen and (min-width: 1024px) {
  .lg-delay--700 {
    transition-delay: 700ms;
    animation-delay: 700ms;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .lg--small-delay--700 {
    transition-delay: 700ms;
    animation-delay: 700ms;
  }
}

.delay--800 {
  transition-delay: 800ms;
  animation-delay: 800ms;
}

@media screen and (max-width: 599px) {
  .sm-delay--800 {
    transition-delay: 800ms;
    animation-delay: 800ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .md-delay--800 {
    transition-delay: 800ms;
    animation-delay: 800ms;
  }
}

@media screen and (min-width: 1024px) {
  .lg-delay--800 {
    transition-delay: 800ms;
    animation-delay: 800ms;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .lg--small-delay--800 {
    transition-delay: 800ms;
    animation-delay: 800ms;
  }
}

.delay--900 {
  transition-delay: 900ms;
  animation-delay: 900ms;
}

@media screen and (max-width: 599px) {
  .sm-delay--900 {
    transition-delay: 900ms;
    animation-delay: 900ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .md-delay--900 {
    transition-delay: 900ms;
    animation-delay: 900ms;
  }
}

@media screen and (min-width: 1024px) {
  .lg-delay--900 {
    transition-delay: 900ms;
    animation-delay: 900ms;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .lg--small-delay--900 {
    transition-delay: 900ms;
    animation-delay: 900ms;
  }
}

.delay--1000 {
  transition-delay: 1000ms;
  animation-delay: 1000ms;
}

@media screen and (max-width: 599px) {
  .sm-delay--1000 {
    transition-delay: 1000ms;
    animation-delay: 1000ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .md-delay--1000 {
    transition-delay: 1000ms;
    animation-delay: 1000ms;
  }
}

@media screen and (min-width: 1024px) {
  .lg-delay--1000 {
    transition-delay: 1000ms;
    animation-delay: 1000ms;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .lg--small-delay--1000 {
    transition-delay: 1000ms;
    animation-delay: 1000ms;
  }
}

/*------------------------------------------------------------
  plugins
------------------------------------------------------------*/
/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */
/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Slide styles end */
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}

/* Navigation font end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Zoom container styles end */
.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

/* Cube slide shadows start */
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Cube slide shadows end */
.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

/* Flip slide shadows start */
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Flip slide shadows end */
.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

/* customize */
.swiper {
  width: 100%;
}

.swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
  border: 0.1rem solid var(--black);
  background: transparent;
}

.swiper-pagination-bullet-active {
  background: var(--black);
}

.swiper-horizontal > .swiper-scrollbar {
  top: auto;
  bottom: 0;
  left: auto;
  width: 100%;
  height: .1rem;
  border-radius: 0;
  background: var(--beige);
}

.swiper-scrollbar-drag {
  border-radius: 0;
  background: var(--black);
}

.swiper-button-prev,
.swiper-button-next {
  width: 4rem;
  height: 4rem;
  transform: translate(0, -50%);
  margin-top: 0;
  background: var(--black);
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1200px) {
  .swiper-button-prev:active:not(:disabled), .swiper-button-prev:hover:not(:disabled),
  .swiper-button-next:active:not(:disabled),
  .swiper-button-next:hover:not(:disabled) {
    opacity: .7;
    transition-duration: 0.4s;
  }
}

.swiper-button-prev:after,
.swiper-button-next:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1rem;
  height: 1rem;
  background: url(../images/common/icon-arrow--white.svg) center/100% no-repeat;
}

.swiper-button-prev {
  left: -2rem;
}

.swiper-button-prev:after {
  transform: translate(-56%, -50%) scale(-1, 1);
}

.swiper-button-next {
  right: -2rem;
}

.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: none;
}

.glightbox-container.inactive {
  display: none;
}

.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}

.glightbox-container .gslider {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
}

.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}

.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}

.glightbox-container .gslide-inner-content {
  width: 100%;
}

.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh;
}

.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}

.glightbox-container .ginner-container.desc-bottom,
.glightbox-container .ginner-container.desc-top {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.glightbox-container .ginner-container.desc-left,
.glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}

.gslide iframe,
.gslide video {
  outline: none !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  -ms-touch-action: auto;
  touch-action: auto;
}

.gslide:not(.current) {
  pointer-events: none;
}

.gslide-image {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.gslide-image img {
  max-height: 100vh;
  display: block;
  padding: 0;
  float: none;
  outline: none;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -ms-touch-action: none;
  touch-action: none;
  margin: auto;
  min-width: 200px;
}

.desc-top .gslide-image img,
.desc-bottom .gslide-image img {
  width: auto;
}

.desc-left .gslide-image img,
.desc-right .gslide-image img {
  width: auto;
  max-width: 100%;
}

.gslide-image img.zoomable {
  position: relative;
}

.gslide-image img.dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none;
}

.gslide-video {
  position: relative;
  max-width: 100vh;
  width: 100% !important;
}

.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster {
  display: none;
}

.gslide-video .gvideo-wrapper {
  width: 100%;
  /* max-width: 160vmin; */
  margin: auto;
}

.gslide-video::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}

.gslide-video.playing::before {
  display: none;
}

.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
  height: 75vh;
}

.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}

.gslide-inline {
  background: #fff;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
  max-width: 100%;
  margin: auto;
}

.gslide-inline .ginlined-content {
  padding: 20px;
  width: 100%;
}

.gslide-inline .dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none;
}

.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1;
}

.gslide-external {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 75vh;
  height: 100%;
}

.gslide-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
}

.zoomed .gslide-media {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.desc-top .gslide-media,
.desc-bottom .gslide-media {
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.gslide-description {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
}

.gslide-description.description-left,
.gslide-description.description-right {
  max-width: 100%;
}

.gslide-description.description-bottom,
.gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}

.gslide-description p {
  margin-bottom: 12px;
}

.gslide-description p:last-child {
  margin-bottom: 0;
}

.zoomed .gslide-description {
  display: none;
}

.glightbox-button-hidden {
  display: none;
}

/*
 * Description for mobiles
 * something like facebook does the description
 * for the photos
*/
.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 19px 11px;
  max-width: 100vw !important;
  -webkit-box-ordinal-group: 3 !important;
  -ms-flex-order: 2 !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
  padding-bottom: 50px;
}

.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em;
}

.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}

.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: bold;
}

.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: 0.4;
}

.gdesc-open .gslide-media {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0.4;
}

.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}

.gdesc-closed .gslide-media {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 1;
}

.greset {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.gabsolute {
  position: absolute;
}

.grelative {
  position: relative;
}

.glightbox-desc {
  display: none !important;
}

.glightbox-open {
  overflow: hidden;
}

.gloader {
  height: 25px;
  width: 25px;
  -webkit-animation: lightboxLoader 0.8s infinite linear;
  animation: lightboxLoader 0.8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%;
}

.goverlay {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  background: #000;
  will-change: opacity;
}

.glightbox-mobile .goverlay {
  background: #000;
}

.gprev,
.gnext,
.gclose {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.gprev svg,
.gnext svg,
.gclose svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
}

.gprev.disabled,
.gnext.disabled,
.gclose.disabled {
  opacity: 0.1;
}

.gprev .garrow,
.gnext .garrow,
.gclose .garrow {
  stroke: #fff;
}

.gbtn.focused {
  outline: 2px solid #0f3d81;
}

iframe.wait-autoplay {
  opacity: 0;
}

.glightbox-closing .gnext,
.glightbox-closing .gprev,
.glightbox-closing .gclose {
  opacity: 0 !important;
}

/*Skin */
.glightbox-clean .gslide-description {
  background: #fff;
}

.glightbox-clean .gdesc-inner {
  padding: 22px 20px;
}

.glightbox-clean .gslide-title {
  font-size: 1em;
  font-weight: normal;
  font-family: arial;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}

.glightbox-clean .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  font-family: arial;
  line-height: 1.4em;
}

.glightbox-clean .gslide-video {
  background: #000;
}

.glightbox-clean .gprev,
.glightbox-clean .gnext,
.glightbox-clean .gclose {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
}

.glightbox-clean .gprev path,
.glightbox-clean .gnext path,
.glightbox-clean .gclose path {
  fill: #fff;
}

.glightbox-clean .gprev {
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gnext {
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
}

.glightbox-clean .gclose svg {
  width: 18px;
  height: auto;
}

.glightbox-clean .gclose:hover {
  opacity: 1;
}

/*CSS Animations*/
.gfadeIn {
  -webkit-animation: gfadeIn 0.5s ease;
  animation: gfadeIn 0.5s ease;
}

.gfadeOut {
  -webkit-animation: gfadeOut 0.5s ease;
  animation: gfadeOut 0.5s ease;
}

.gslideOutLeft {
  -webkit-animation: gslideOutLeft 0.3s ease;
  animation: gslideOutLeft 0.3s ease;
}

.gslideInLeft {
  -webkit-animation: gslideInLeft 0.3s ease;
  animation: gslideInLeft 0.3s ease;
}

.gslideOutRight {
  -webkit-animation: gslideOutRight 0.3s ease;
  animation: gslideOutRight 0.3s ease;
}

.gslideInRight {
  -webkit-animation: gslideInRight 0.3s ease;
  animation: gslideInRight 0.3s ease;
}

.gzoomIn {
  -webkit-animation: gzoomIn 0.5s ease;
  animation: gzoomIn 0.5s ease;
}

.gzoomOut {
  -webkit-animation: gzoomOut 0.5s ease;
  animation: gzoomOut 0.5s ease;
}

@-webkit-keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}

@-webkit-keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}

@keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}

@-webkit-keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}

@keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

@keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

@media (min-width: 769px) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .glightbox-container .ginner-container.desc-top .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .glightbox-container .ginner-container.desc-top .gslide-image,
  .glightbox-container .ginner-container.desc-top .gslide-image img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .glightbox-container .ginner-container.desc-left .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .glightbox-container .ginner-container.desc-left .gslide-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .gslide-image img {
    max-height: 97vh;
    max-width: 100%;
  }
  .gslide-image img.zoomable {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
  }
  .zoomed .gslide-image img.zoomable {
    cursor: -webkit-grab;
    cursor: grab;
  }
  .gslide-inline {
    max-height: 95vh;
  }
  .gslide-external {
    max-height: 100vh;
  }
  .gslide-description.description-left,
  .gslide-description.description-right {
    max-width: 275px;
  }
  .glightbox-open {
    height: auto;
  }
  .goverlay {
    background: rgba(0, 0, 0, 0.92);
  }
  .glightbox-clean .gslide-media {
    -webkit-box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
    box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
  }
  .glightbox-clean .description-left .gdesc-inner,
  .glightbox-clean .description-right .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto;
  }
  .glightbox-clean .gprev,
  .glightbox-clean .gnext,
  .glightbox-clean .gclose {
    background-color: rgba(0, 0, 0, 0.32);
  }
  .glightbox-clean .gprev:hover,
  .glightbox-clean .gnext:hover,
  .glightbox-clean .gclose:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .glightbox-clean .gprev {
    top: 45%;
  }
  .glightbox-clean .gnext {
    top: 45%;
  }
}

@media (min-width: 992px) {
  .glightbox-clean .gclose {
    opacity: 0.7;
    right: 20px;
  }
}

@media screen and (max-height: 420px) {
  .goverlay {
    background: #000;
  }
}

/* customize */
.goverlay {
  background: rgba(33, 33, 33, 0.8) !important;
}

.gslide {
  height: 100%;
}

.gslide-inner-content {
  height: 100%;
}

.ginner-container {
  height: 100% !important;
}

.gslide-inline {
  display: grid;
  place-items: center;
  overflow: auto;
  width: 100% !important;
  height: 100% !important;
  max-height: none;
  margin: 0;
  padding: 2rem 2rem;
  background: none;
  box-shadow: none !important;
}

@media screen and (min-width: 600px) {
  .gslide-inline {
    padding: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .gslide-inline {
    padding: 5rem;
  }
}

.ginlined-content {
  overflow: visible;
  height: fit-content !important;
}

.glightbox-clean .gprev,
.glightbox-clean .gnext {
  display: none;
}

.glightbox-clean .gclose {
  opacity: 1;
  top: 3rem;
  right: 3rem;
  width: 5rem;
  height: 5rem;
  background: none;
}

@media screen and (min-width: 1024px) {
  .glightbox-clean .gclose {
    top: 5rem;
    right: 5rem;
  }
}

.glightbox-clean .gclose:active:not(:disabled), .glightbox-clean .gclose:hover:not(:disabled) {
  background: none;
}

.glightbox-clean .gclose svg {
  width: 2.6rem;
}

@media screen and (min-width: 1024px) {
  .glightbox-clean .gclose svg {
    width: 3.6rem;
  }
}

.glightbox-clean .gclose path {
  fill: #ccc;
}

/*! 
 * OverlayScrollbars
 * Version: 2.12.0
 * 
 * Copyright (c) Rene Haas | KingSora.
 * https://github.com/KingSora
 * 
 * Released under the MIT license.
 */
.os-size-observer,
.os-size-observer-listener {
  scroll-behavior: auto !important;
  direction: inherit;
  pointer-events: none;
  overflow: hidden;
  visibility: hidden;
  box-sizing: border-box;
}

.os-size-observer,
.os-size-observer-listener,
.os-size-observer-listener-item,
.os-size-observer-listener-item-final {
  writing-mode: horizontal-tb;
  position: absolute;
  left: 0;
  top: 0;
}

.os-size-observer {
  z-index: -1;
  contain: strict;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: inherit;
  border: inherit;
  box-sizing: inherit;
  margin: -133px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: scale(0.1);
}

.os-size-observer::before {
  content: "";
  flex: none;
  box-sizing: inherit;
  padding: 10px;
  width: 10px;
  height: 10px;
}

.os-size-observer-appear {
  animation: os-size-observer-appear-animation 1ms forwards;
}

.os-size-observer-listener {
  box-sizing: border-box;
  position: relative;
  flex: auto;
  padding: inherit;
  border: inherit;
  margin: -133px;
  transform: scale(calc(1 / 0.1));
}

.os-size-observer-listener.ltr {
  margin-right: -266px;
  margin-left: 0;
}

.os-size-observer-listener.rtl {
  margin-left: -266px;
  margin-right: 0;
}

.os-size-observer-listener:empty::before {
  content: "";
  width: 100%;
  height: 100%;
}

.os-size-observer-listener:empty::before, .os-size-observer-listener > .os-size-observer-listener-item {
  display: block;
  position: relative;
  padding: inherit;
  border: inherit;
  box-sizing: content-box;
  flex: auto;
}

.os-size-observer-listener-scroll {
  box-sizing: border-box;
  display: flex;
}

.os-size-observer-listener-item {
  right: 0;
  bottom: 0;
  overflow: hidden;
  direction: ltr;
  flex: none;
}

.os-size-observer-listener-item-final {
  transition: none;
}

@keyframes os-size-observer-appear-animation {
  from {
    cursor: auto;
  }
  to {
    cursor: none;
  }
}

.os-trinsic-observer {
  flex: none;
  box-sizing: border-box;
  position: relative;
  max-width: 0px;
  max-height: 1px;
  padding: 0;
  margin: 0;
  border: none;
  overflow: hidden;
  z-index: -1;
  height: 0;
  top: calc(100% + 1px);
  contain: strict;
}

.os-trinsic-observer:not(:empty) {
  height: calc(100% + 1px);
  top: -1px;
}

.os-trinsic-observer:not(:empty) > .os-size-observer {
  width: 1000%;
  height: 1000%;
  min-height: 1px;
  min-width: 1px;
}

/**
 * hide native scrollbars
 * changes to this styles need to be reflected in the environment styles to correctly detect scrollbar hiding
 */
[data-overlayscrollbars-initialize]:not([data-overlayscrollbars-viewport]),
[data-overlayscrollbars-viewport~=scrollbarHidden],
html[data-overlayscrollbars-viewport~=scrollbarHidden] > body {
  scrollbar-width: none !important;
}

[data-overlayscrollbars-initialize]:not([data-overlayscrollbars-viewport])::-webkit-scrollbar,
[data-overlayscrollbars-initialize]:not([data-overlayscrollbars-viewport])::-webkit-scrollbar-corner,
[data-overlayscrollbars-viewport~=scrollbarHidden]::-webkit-scrollbar,
[data-overlayscrollbars-viewport~=scrollbarHidden]::-webkit-scrollbar-corner,
html[data-overlayscrollbars-viewport~=scrollbarHidden] > body::-webkit-scrollbar,
html[data-overlayscrollbars-viewport~=scrollbarHidden] > body::-webkit-scrollbar-corner {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

[data-overlayscrollbars-initialize]:not([data-overlayscrollbars]):not(html):not(body) {
  overflow: auto;
}

/**
 * body element
 */
html[data-overlayscrollbars-body] {
  overflow: hidden;
}

html[data-overlayscrollbars-body],
html[data-overlayscrollbars-body] > body {
  width: 100%;
  height: 100%;
  margin: 0;
}

html[data-overlayscrollbars-body] > body {
  overflow: visible;
  margin: 0;
}

/**
 * structure setup 
 */
[data-overlayscrollbars] {
  position: relative;
}

[data-overlayscrollbars~=host],
[data-overlayscrollbars-padding] {
  display: flex;
  align-items: stretch !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  scroll-behavior: auto !important;
}

[data-overlayscrollbars-padding],
[data-overlayscrollbars-viewport]:not([data-overlayscrollbars]) {
  box-sizing: inherit;
  position: relative;
  flex: auto;
  height: auto;
  width: 100%;
  min-width: 0;
  padding: 0;
  margin: 0;
  border: none;
  z-index: 0;
}

[data-overlayscrollbars-viewport]:not([data-overlayscrollbars]) {
  --os-vaw: 0;
  --os-vah: 0;
  outline: none;
}

[data-overlayscrollbars-viewport]:not([data-overlayscrollbars]):focus {
  outline: none;
}

[data-overlayscrollbars-viewport][data-overlayscrollbars-viewport~=arrange]::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  min-width: 1px;
  min-height: 1px;
  width: var(--os-vaw);
  height: var(--os-vah);
}

/**
 * wrapper elements overflow:
 */
[data-overlayscrollbars~=host],
[data-overlayscrollbars-padding] {
  overflow: hidden !important;
}

[data-overlayscrollbars~=host][data-overlayscrollbars~=noClipping],
[data-overlayscrollbars-padding~=noClipping] {
  overflow: visible !important;
}

/**
 * viewport overflow:
 */
[data-overlayscrollbars-viewport] {
  --os-viewport-overflow-x: hidden;
  --os-viewport-overflow-y: hidden;
  overflow-x: var(--os-viewport-overflow-x);
  overflow-y: var(--os-viewport-overflow-y);
}

[data-overlayscrollbars-viewport~=overflowXVisible] {
  --os-viewport-overflow-x: visible;
}

[data-overlayscrollbars-viewport~=overflowXHidden] {
  --os-viewport-overflow-x: hidden;
}

[data-overlayscrollbars-viewport~=overflowXScroll] {
  --os-viewport-overflow-x: scroll;
}

[data-overlayscrollbars-viewport~=overflowYVisible] {
  --os-viewport-overflow-y: visible;
}

[data-overlayscrollbars-viewport~=overflowYHidden] {
  --os-viewport-overflow-y: hidden;
}

[data-overlayscrollbars-viewport~=overflowYScroll] {
  --os-viewport-overflow-y: scroll;
}

[data-overlayscrollbars-viewport~=overflowImportant] {
  overflow-x: var(--os-viewport-overflow-x) !important;
  overflow-y: var(--os-viewport-overflow-y) !important;
}

/**
 * viewport state modifiers:
 */
[data-overlayscrollbars-viewport~=noContent]:not(#osFakeId) {
  font-size: 0 !important;
  line-height: 0 !important;
}

[data-overlayscrollbars-viewport~=noContent]:not(#osFakeId)::before,
[data-overlayscrollbars-viewport~=noContent]:not(#osFakeId)::after,
[data-overlayscrollbars-viewport~=noContent]:not(#osFakeId) > * {
  display: none !important;
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border-width: 0 !important;
}

[data-overlayscrollbars-viewport~=measuring],
[data-overlayscrollbars-viewport~=scrolling] {
  scroll-behavior: auto !important;
  scroll-snap-type: none !important;
}

[data-overlayscrollbars-viewport~=measuring][data-overlayscrollbars-viewport~=overflowXVisible] {
  overflow-x: hidden !important;
}

[data-overlayscrollbars-viewport~=measuring][data-overlayscrollbars-viewport~=overflowYVisible] {
  overflow-y: hidden !important;
}

/**
 * content element:
 */
[data-overlayscrollbars-content] {
  box-sizing: inherit;
}

/**
 * Display contents to bridge any flickering during deferred initialization.
 */
[data-overlayscrollbars-contents]:not(#osFakeId):not([data-overlayscrollbars-padding]):not([data-overlayscrollbars-viewport]):not([data-overlayscrollbars-content]) {
  display: contents;
}

/**
 * optional & experimental grid mode
 */
[data-overlayscrollbars-grid],
[data-overlayscrollbars-grid] [data-overlayscrollbars-padding] {
  display: grid;
  grid-template: 1fr/1fr;
}

[data-overlayscrollbars-grid] > [data-overlayscrollbars-padding],
[data-overlayscrollbars-grid] > [data-overlayscrollbars-viewport],
[data-overlayscrollbars-grid] > [data-overlayscrollbars-padding] > [data-overlayscrollbars-viewport] {
  height: auto !important;
  width: auto !important;
}

@property --os-scroll-percent {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}

@property --os-viewport-percent {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}

.os-scrollbar {
  --os-viewport-percent: 0;
  --os-scroll-percent: 0;
  --os-scroll-direction: 0;
  --os-scroll-percent-directional: calc(
    var(--os-scroll-percent) - (var(--os-scroll-percent) + (1 - var(--os-scroll-percent)) * -1) *
      var(--os-scroll-direction)
  );
}

.os-scrollbar {
  contain: size layout;
  contain: size layout style;
  transition: opacity 0.15s, visibility 0.15s, top 0.15s, right 0.15s, bottom 0.15s, left 0.15s;
  pointer-events: none;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

body > .os-scrollbar {
  position: fixed;
  z-index: 99999;
}

.os-scrollbar-transitionless {
  transition: none !important;
}

.os-scrollbar-track {
  position: relative;
  padding: 0 !important;
  border: none !important;
}

.os-scrollbar-handle {
  position: absolute;
}

.os-scrollbar-track,
.os-scrollbar-handle {
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.os-scrollbar.os-scrollbar-track-interactive .os-scrollbar-track,
.os-scrollbar.os-scrollbar-handle-interactive .os-scrollbar-handle {
  pointer-events: auto;
  touch-action: none;
}

.os-scrollbar-horizontal {
  bottom: 0;
  left: 0;
}

.os-scrollbar-vertical {
  top: 0;
  right: 0;
}

.os-scrollbar-rtl.os-scrollbar-horizontal {
  right: 0;
}

.os-scrollbar-rtl.os-scrollbar-vertical {
  right: auto;
  left: 0;
}

.os-scrollbar-visible {
  opacity: 1;
  visibility: visible;
}

.os-scrollbar-auto-hide.os-scrollbar-auto-hide-hidden {
  opacity: 0;
  visibility: hidden;
}

.os-scrollbar-interaction.os-scrollbar-visible {
  opacity: 1;
  visibility: visible;
}

.os-scrollbar-unusable,
.os-scrollbar-unusable *,
.os-scrollbar-wheel,
.os-scrollbar-wheel * {
  pointer-events: none !important;
}

.os-scrollbar-unusable .os-scrollbar-handle {
  opacity: 0 !important;
  transition: none !important;
}

.os-scrollbar-horizontal .os-scrollbar-handle {
  bottom: 0;
  left: calc(var(--os-scroll-percent-directional) * 100%);
  transform: translateX(calc(var(--os-scroll-percent-directional) * -100%));
  width: calc(var(--os-viewport-percent) * 100%);
}

.os-scrollbar-vertical .os-scrollbar-handle {
  right: 0;
  top: calc(var(--os-scroll-percent-directional) * 100%);
  transform: translateY(calc(var(--os-scroll-percent-directional) * -100%));
  height: calc(var(--os-viewport-percent) * 100%);
}

@supports (container-type: size) {
  .os-scrollbar-track {
    container-type: size;
  }
  .os-scrollbar-horizontal .os-scrollbar-handle {
    left: auto;
    transform: translateX(calc(var(--os-scroll-percent-directional) * 100cqw + var(--os-scroll-percent-directional) * -100%));
  }
  .os-scrollbar-vertical .os-scrollbar-handle {
    top: auto;
    transform: translateY(calc(var(--os-scroll-percent-directional) * 100cqh + var(--os-scroll-percent-directional) * -100%));
  }
  .os-scrollbar-rtl.os-scrollbar-horizontal .os-scrollbar-handle {
    right: auto;
    left: 0;
  }
}

.os-scrollbar-rtl.os-scrollbar-vertical .os-scrollbar-handle {
  right: auto;
  left: 0;
}

.os-scrollbar.os-scrollbar-horizontal.os-scrollbar-cornerless,
.os-scrollbar.os-scrollbar-horizontal.os-scrollbar-cornerless.os-scrollbar-rtl {
  left: 0;
  right: 0;
}

.os-scrollbar.os-scrollbar-vertical.os-scrollbar-cornerless,
.os-scrollbar.os-scrollbar-vertical.os-scrollbar-cornerless.os-scrollbar-rtl {
  top: 0;
  bottom: 0;
}

@media print {
  .os-scrollbar {
    display: none;
  }
}

.os-scrollbar {
  --os-size: 0;
  --os-padding-perpendicular: 0;
  --os-padding-axis: 0;
  --os-track-border-radius: 0;
  --os-track-bg: none;
  --os-track-bg-hover: none;
  --os-track-bg-active: none;
  --os-track-border: none;
  --os-track-border-hover: none;
  --os-track-border-active: none;
  --os-handle-border-radius: 0;
  --os-handle-bg: none;
  --os-handle-bg-hover: none;
  --os-handle-bg-active: none;
  --os-handle-border: none;
  --os-handle-border-hover: none;
  --os-handle-border-active: none;
  --os-handle-min-size: 33px;
  --os-handle-max-size: none;
  --os-handle-perpendicular-size: 100%;
  --os-handle-perpendicular-size-hover: 100%;
  --os-handle-perpendicular-size-active: 100%;
  --os-handle-interactive-area-offset: 0;
}

.os-scrollbar-track {
  border: var(--os-track-border);
  border-radius: var(--os-track-border-radius);
  background: var(--os-track-bg);
  transition: opacity 0.15s, background-color 0.15s, border-color 0.15s;
}

.os-scrollbar-track:hover {
  border: var(--os-track-border-hover);
  background: var(--os-track-bg-hover);
}

.os-scrollbar-track:active {
  border: var(--os-track-border-active);
  background: var(--os-track-bg-active);
}

.os-scrollbar-handle {
  border: var(--os-handle-border);
  border-radius: var(--os-handle-border-radius);
  background: var(--os-handle-bg);
}

.os-scrollbar-handle:hover {
  border: var(--os-handle-border-hover);
  background: var(--os-handle-bg-hover);
}

.os-scrollbar-handle:active {
  border: var(--os-handle-border-active);
  background: var(--os-handle-bg-active);
}

.os-scrollbar-track:before,
.os-scrollbar-handle:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
}

.os-scrollbar-horizontal {
  padding: var(--os-padding-perpendicular) var(--os-padding-axis);
  right: var(--os-size);
  height: var(--os-size);
}

.os-scrollbar-horizontal.os-scrollbar-rtl {
  left: var(--os-size);
  right: 0;
}

.os-scrollbar-horizontal .os-scrollbar-track:before {
  top: calc(var(--os-padding-perpendicular) * -1);
  bottom: calc(var(--os-padding-perpendicular) * -1);
}

.os-scrollbar-horizontal .os-scrollbar-handle {
  min-width: var(--os-handle-min-size);
  max-width: var(--os-handle-max-size);
  height: var(--os-handle-perpendicular-size);
  transition: opacity 0.15s, background-color 0.15s, border-color 0.15s, height 0.15s;
}

.os-scrollbar-horizontal .os-scrollbar-handle:before {
  top: calc((var(--os-padding-perpendicular) + var(--os-handle-interactive-area-offset)) * -1);
  bottom: calc(var(--os-padding-perpendicular) * -1);
}

.os-scrollbar-horizontal:hover .os-scrollbar-handle {
  height: var(--os-handle-perpendicular-size-hover);
}

.os-scrollbar-horizontal:active .os-scrollbar-handle {
  height: var(--os-handle-perpendicular-size-active);
}

.os-scrollbar-vertical {
  padding: var(--os-padding-axis) var(--os-padding-perpendicular);
  bottom: var(--os-size);
  width: var(--os-size);
}

.os-scrollbar-vertical .os-scrollbar-track:before {
  left: calc(var(--os-padding-perpendicular) * -1);
  right: calc(var(--os-padding-perpendicular) * -1);
}

.os-scrollbar-vertical .os-scrollbar-handle {
  min-height: var(--os-handle-min-size);
  max-height: var(--os-handle-max-size);
  width: var(--os-handle-perpendicular-size);
  transition: opacity 0.15s, background-color 0.15s, border-color 0.15s, width 0.15s;
}

.os-scrollbar-vertical .os-scrollbar-handle:before {
  left: calc((var(--os-padding-perpendicular) + var(--os-handle-interactive-area-offset)) * -1);
  right: calc(var(--os-padding-perpendicular) * -1);
}

.os-scrollbar-vertical.os-scrollbar-rtl .os-scrollbar-handle:before {
  right: calc((var(--os-padding-perpendicular) + var(--os-handle-interactive-area-offset)) * -1);
  left: calc(var(--os-padding-perpendicular) * -1);
}

.os-scrollbar-vertical:hover .os-scrollbar-handle {
  width: var(--os-handle-perpendicular-size-hover);
}

.os-scrollbar-vertical:active .os-scrollbar-handle {
  width: var(--os-handle-perpendicular-size-active);
}

/* NONE THEME: */
[data-overlayscrollbars-viewport~=measuring] > .os-scrollbar,
.os-theme-none.os-scrollbar {
  display: none !important;
}

/* DARK & LIGHT THEME: */
.os-theme-dark,
.os-theme-light {
  box-sizing: border-box;
  --os-size: 10px;
  --os-padding-perpendicular: 2px;
  --os-padding-axis: 2px;
  --os-track-border-radius: 10px;
  --os-handle-interactive-area-offset: 4px;
  --os-handle-border-radius: 10px;
}

.os-theme-dark {
  --os-handle-bg: rgba(0, 0, 0, 0.44);
  --os-handle-bg-hover: rgba(0, 0, 0, 0.55);
  --os-handle-bg-active: rgba(0, 0, 0, 0.66);
}

.os-theme-light {
  --os-handle-bg: rgba(255, 255, 255, 0.44);
  --os-handle-bg-hover: rgba(255, 255, 255, 0.55);
  --os-handle-bg-active: rgba(255, 255, 255, 0.66);
}

/* custominze */
.os-scrollbar {
  --os-size: .1rem;
  --os-padding-perpendicular: 0;
  --os-padding-axis: 0;
  --os-track-bg: var(--beige);
  --os-handle-bg: var(--black);
}

/*------------------------------------------------------------
  layout
------------------------------------------------------------*/
.l-container, .l-container--pt-0, .l-container--pb-0, .l-container--xs, .l-container--xs--pt-0, .l-container--xs--pb-0, .l-container--small, .l-container--small--pt-0, .l-container--small--pb-0, .l-container--medium, .l-container--medium--pt-0, .l-container--medium--pb-0 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

@media screen and (min-width: 600px) {
  .l-container, .l-container--pt-0, .l-container--pb-0, .l-container--xs, .l-container--xs--pt-0, .l-container--xs--pb-0, .l-container--small, .l-container--small--pt-0, .l-container--small--pb-0, .l-container--medium, .l-container--medium--pt-0, .l-container--medium--pb-0 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-container, .l-container--pt-0, .l-container--pb-0, .l-container--xs, .l-container--xs--pt-0, .l-container--xs--pb-0, .l-container--small, .l-container--small--pt-0, .l-container--small--pb-0, .l-container--medium, .l-container--medium--pt-0, .l-container--medium--pb-0 {
    padding-top: 16rem;
    padding-bottom: 16rem;
  }
}

.l-container--pt-0 {
  padding-top: 0;
}

.l-container--pb-0 {
  padding-bottom: 0;
}

.l-container--xs, .l-container--xs--pt-0, .l-container--xs--pb-0 {
  padding-top: 2.66667rem;
  padding-bottom: 2.66667rem;
}

@media screen and (min-width: 1024px) {
  .l-container--xs, .l-container--xs--pt-0, .l-container--xs--pb-0 {
    padding-top: 5.33333rem;
    padding-bottom: 5.33333rem;
  }
}

.l-container--xs--pt-0 {
  padding-top: 0;
}

.l-container--xs--pb-0 {
  padding-bottom: 0;
}

.l-container--small, .l-container--small--pt-0, .l-container--small--pb-0 {
  padding-top: 5.33333rem;
  padding-bottom: 5.33333rem;
}

@media screen and (min-width: 1024px) {
  .l-container--small, .l-container--small--pt-0, .l-container--small--pb-0 {
    padding-top: 10.66667rem;
    padding-bottom: 10.66667rem;
  }
}

.l-container--small--pt-0 {
  padding-top: 0;
}

.l-container--small--pb-0 {
  padding-bottom: 0;
}

.l-container--medium, .l-container--medium--pt-0, .l-container--medium--pb-0 {
  padding-top: 12rem;
  padding-bottom: 12rem;
}

@media screen and (min-width: 1024px) {
  .l-container--medium, .l-container--medium--pt-0, .l-container--medium--pb-0 {
    padding-top: 24rem;
    padding-bottom: 24rem;
  }
}

.l-container--medium--pt-0 {
  padding-top: 0;
}

.l-container--medium--pb-0 {
  padding-bottom: 0;
}

.l-center, .l-center--xs, .l-center--small, .l-center--medium {
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

@media screen and (min-width: 600px) {
  .l-center, .l-center--xs, .l-center--small, .l-center--medium {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-center, .l-center--xs, .l-center--small, .l-center--medium {
    max-width: 110rem;
    padding-right: 5rem;
    padding-left: 5rem;
  }
}

@media screen and (min-width: 1920px) {
  .l-center, .l-center--xs, .l-center--small, .l-center--medium {
    max-width: calc(120rem + 10rem);
  }
}

@media screen and (min-width: 600px) {
  .l-center--xs {
    max-width: 56rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-center--xs {
    max-width: calc(70rem + 10rem);
  }
}

@media screen and (min-width: 600px) {
  .l-center--small {
    max-width: 66rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-center--small {
    max-width: calc(90rem + 10rem);
  }
}

@media screen and (min-width: 1024px) {
  .l-center--medium {
    max-width: calc(140rem + 10rem);
  }
}

@media screen and (min-width: 600px) {
  .l-md-center, .l-md-center--small {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-md-center, .l-md-center--small {
    margin-right: auto;
    margin-left: auto;
    padding-right: 5rem;
    padding-left: 5rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-md-center--small {
    max-width: calc(90rem + 10rem);
  }
}

@media screen and (min-width: 1024px) {
  .l-lg-center {
    max-width: 110rem;
    margin-right: auto;
    margin-left: auto;
    padding-right: 5rem;
    padding-left: 5rem;
  }
}

@media screen and (min-width: 1920px) {
  .l-lg-center {
    max-width: calc(120rem + 10rem);
  }
}

/* ---------------------------
  header
--------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  width: 100%;
}

@media screen and (min-width: 1200px) {
  .l-header {
    right: 0;
    left: auto;
    width: 27rem;
  }
}

@media screen and (min-width: 1200px) {
  .is-change .l-header .logo {
    margin-top: 3.2rem;
    margin-bottom: 3.2rem;
  }
}

.l-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 300;
  width: 100%;
  height: 5rem;
  background: var(--light-beige);
}

@media screen and (min-width: 1200px) {
  .l-header .inner {
    display: grid;
    place-content: normal;
    height: auto;
  }
}

.l-header .logo {
  display: block;
  position: relative;
  z-index: 300;
  transform-origin: left center;
  width: 13.6rem;
  margin-left: 1.4rem;
  line-height: 1;
  transition: margin 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (min-width: 1200px) {
  .l-header .logo {
    width: 15.4rem;
    margin: 6.6rem auto 6.8rem;
  }
}

.l-header .logo img, .l-header .logo svg {
  width: 100%;
  height: auto;
}

.l-header .shop {
  display: grid;
  place-items: center;
  width: 6.4rem;
  height: 100%;
  margin-right: 12rem;
  border-left: 0.2rem solid var(--beige);
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.l-header .shop:active:not(:disabled), .l-header .shop:hover:not(:disabled) {
  opacity: .5;
  transition-duration: 0.25s;
}

@media screen and (min-width: 1200px) {
  .l-header .shop {
    display: none;
  }
}

.l-header .shop img {
  width: 2.2rem;
}

.l-menu-button-wrap {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 400;
  line-height: 0;
}

@media screen and (min-width: 1200px) {
  .l-menu-button-wrap {
    display: none;
  }
}

.l-menu-button {
  position: relative;
  transform-origin: right top;
  width: 12rem;
  height: 5rem;
  padding: 0;
  border: none;
  background: var(--black);
  --menu-bar-margin-top: calc(-50% - .6rem);
  --menu-bar-margin-middle: -50%;
  --menu-bar-margin-bottom: calc(-50% + .6rem);
  --menu-bar-angle: 25deg;
}

@media screen and (min-width: 1024px) {
  .l-menu-button {
    --menu-bar-margin-top: calc(-50% - .7rem);
    --menu-bar-margin-bottom: calc(-50% + .7rem);
  }
}

.l-menu-button span {
  content: '';
  display: block;
  position: absolute;
  left: 30%;
  top: 50%;
  width: 3.4rem;
  height: .1rem;
  background: var(--white);
  transition: background 0.35s ease;
}

.l-menu-button span:nth-child(1) {
  transform: translate(-50%, var(--menu-bar-margin-top));
}

.l-menu-button span:nth-child(2) {
  transform: translate(-50%, var(--menu-bar-margin-middle));
}

.l-menu-button span:nth-child(3) {
  transform: translate(-50%, var(--menu-bar-margin-bottom));
}

.l-menu-button span:nth-child(4) {
  top: 53%;
  left: 70%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: var(--white);
  font-family: "League Spartan", "Zen Old Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1;
  white-space: nowrap;
}

.l-menu-button.is-open span {
  animation-duration: 0.35s;
  animation-timing-function: ease;
  animation-fill-mode: both;
}

.l-menu-button.is-open span:nth-child(1) {
  animation-name: menu-bar-top-open;
}

.l-menu-button.is-open span:nth-child(2) {
  animation-name: menu-bar-middle-open;
}

.l-menu-button.is-open span:nth-child(3) {
  animation-name: menu-bar-bottom-open;
}

.l-menu-button.is-close span {
  animation-duration: 0.35s;
  animation-timing-function: ease;
  animation-fill-mode: both;
}

.l-menu-button.is-close span:nth-child(1) {
  animation-name: menu-bar-top-close;
}

.l-menu-button.is-close span:nth-child(2) {
  animation-name: menu-bar-middle-close;
}

.l-menu-button.is-close span:nth-child(3) {
  animation-name: menu-bar-bottom-close;
}

@keyframes menu-bar-top-open {
  0% {
    transform: translate(-50%, var(--menu-bar-margin-top)) rotate(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(calc(-1 * var(--menu-bar-angle)));
  }
}

@keyframes menu-bar-middle-open {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes menu-bar-bottom-open {
  0% {
    transform: translate(-50%, var(--menu-bar-margin-bottom)) rotate(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(var(--menu-bar-angle));
  }
}

@keyframes menu-bar-top-close {
  0% {
    transform: translate(-50%, -50%) rotate(calc(-1 * var(--menu-bar-angle)));
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, var(--menu-bar-margin-top)) rotate(0);
  }
}

@keyframes menu-bar-middle-close {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes menu-bar-bottom-close {
  0% {
    transform: translate(-50%, -50%) rotate(var(--menu-bar-angle));
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, var(--menu-bar-margin-bottom)) rotate(0);
  }
}

@keyframes menu-bar-top-open--lg {
  0% {
    transform: translate(-50%, var(--menu-bar-margin-top--lg)) rotate(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(calc(-1 * var(--menu-bar-angle)));
  }
}

@keyframes menu-bar-bottom-open--lg {
  0% {
    transform: translate(-50%, var(--menu-bar-margin-bottom--lg)) rotate(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(var(--menu-bar-angle));
  }
}

@keyframes menu-bar-top-close--lg {
  0% {
    transform: translate(-50%, -50%) rotate(calc(-1 * var(--menu-bar-angle)));
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, var(--menu-bar-margin-top--lg)) rotate(0);
  }
}

@keyframes menu-bar-bottom-close--lg {
  0% {
    transform: translate(-50%, -50%) rotate(var(--menu-bar-angle));
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, var(--menu-bar-margin-bottom--lg)) rotate(0);
  }
}

.l-gnav {
  opacity: 0;
  position: fixed;
  top: 5rem;
  left: 0;
  z-index: -2;
  width: 100vw;
  height: calc(100vh - 5rem);
  background: url(../images/common/bg-gnav.webp) center/cover repeat;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 600px) {
  .l-gnav {
    background-image: url(../images/common/bg-gnav-lg.webp);
  }
}

@media screen and (min-width: 1200px) {
  .l-gnav {
    display: block !important;
    opacity: 1 !important;
    position: relative;
    top: auto;
    z-index: 300 !important;
    width: 100%;
    height: auto;
    background: none;
    pointer-events: visible !important;
  }
}

@media screen and (max-width: 1199px) {
  .is-in .l-gnav a {
    pointer-events: none;
  }
}

@media screen and (min-width: 1200px) {
  .is-change .l-gnav .menu > a, .is-change .l-gnav .menu > span {
    height: 6rem;
    padding-top: .3rem;
    padding-bottom: 0rem;
  }
}

@media screen and (min-width: 1200px) {
  .is-change .l-gnav .menu > a span:nth-of-type(2), .is-change .l-gnav .menu > span span:nth-of-type(2) {
    opacity: 0;
  }
}

.l-gnav.is-open {
  -webkit-overflow-scrolling: touch;
  pointer-events: visible;
  animation: 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) both gnav-in;
}

.l-gnav.is-open a {
  pointer-events: visible;
}

.l-gnav.is-close {
  -webkit-overflow-scrolling: auto;
  pointer-events: none;
  animation: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) both gnav-out;
}

@keyframes gnav-in {
  0% {
    opacity: 0;
    overflow: auto;
    z-index: 200;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    overflow: auto;
    z-index: 200;
    transform: scale(1);
  }
}

@keyframes gnav-out {
  0% {
    opacity: 1;
    overflow: auto;
    z-index: 200;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    overflow: hidden;
    z-index: -2;
    transform: scale(1.05);
  }
}

.l-gnav .gnav-inner {
  display: grid;
  position: relative;
  padding: 5rem 2rem 10rem;
}

@media screen and (min-width: 600px) {
  .l-gnav .gnav-inner {
    padding-top: 8rem;
  }
}

@media screen and (min-width: 1200px) {
  .l-gnav .gnav-inner {
    padding: 0;
  }
}

@media screen and (min-width: 600px) {
  .l-gnav .gnav-inner > div {
    display: grid;
    grid-template-columns: repeat(2, auto);
    place-content: end center;
    align-items: end;
    gap: 10%;
    margin-bottom: 8rem;
  }
}

@media screen and (min-width: 1200px) {
  .l-gnav .gnav-inner > div {
    grid-template-columns: none;
    place-content: normal;
    gap: 0;
    margin-bottom: 0;
  }
}

.l-gnav .menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.6rem 0;
}

@media screen and (max-width: 599px) {
  .l-gnav .menu {
    margin-bottom: 6rem;
  }
}

@media screen and (min-width: 600px) {
  .l-gnav .menu {
    grid-template-columns: none;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 1200px) {
  .l-gnav .menu {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    width: 100%;
    margin-bottom: 0;
    border-top: 0.2rem solid var(--beige);
  }
}

.l-gnav .menu > a, .l-gnav .menu > span {
  display: grid;
  position: relative;
  width: fit-content;
  line-height: 1.3;
  letter-spacing: 0;
  transition: height 0.35s cubic-bezier(0.39, 0.575, 0.565, 1), padding 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (min-width: 1200px) {
  .l-gnav .menu > a, .l-gnav .menu > span {
    place-content: center;
    place-items: center;
    width: 100%;
    height: 8rem;
    padding-bottom: 1.2rem;
    border-bottom: 0.2rem solid var(--beige);
    line-height: 1.4;
  }
}

.l-gnav .menu > a:active:not(:disabled) span:nth-of-type(1), .l-gnav .menu > a:hover:not(:disabled) span:nth-of-type(1), .l-gnav .menu > span:active:not(:disabled) span:nth-of-type(1), .l-gnav .menu > span:hover:not(:disabled) span:nth-of-type(1) {
  color: var(--sub-text-color);
  transition-duration: 0.4s;
}

@media screen and (min-width: 1200px) {
  .l-gnav .menu > a:nth-child(2n):before, .l-gnav .menu > span:nth-child(2n):before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: .2rem;
    height: 50%;
    background: var(--beige);
  }
}

.l-gnav .menu > a span:nth-of-type(1), .l-gnav .menu > span span:nth-of-type(1) {
  font-size: 2.4rem;
  font-family: "League Spartan", "Zen Old Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (max-width: 1199px) {
  .l-gnav .menu > a span:nth-of-type(1), .l-gnav .menu > span span:nth-of-type(1) {
    color: var(--white);
  }
}

@media screen and (min-width: 1200px) {
  .l-gnav .menu > a span:nth-of-type(1), .l-gnav .menu > span span:nth-of-type(1) {
    font-size: 1.6rem;
  }
}

.l-gnav .menu > a span:nth-of-type(2), .l-gnav .menu > span span:nth-of-type(2) {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
  font-family: "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  transition: opacity 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (min-width: 1200px) {
  .l-gnav .menu > a span:nth-of-type(2), .l-gnav .menu > span span:nth-of-type(2) {
    position: absolute;
    top: 64%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--sub-text-color);
    white-space: nowrap;
  }
}

@media screen and (min-width: 1200px) {
  .l-gnav .index {
    display: none !important;
  }
}

@media screen and (min-width: 600px) {
  .l-gnav .blank {
    display: none !important;
  }
}

.l-gnav .banners {
  display: grid;
}

@media screen and (max-width: 599px) {
  .l-gnav .banners {
    margin-bottom: 6rem;
  }
}

@media screen and (min-width: 600px) {
  .l-gnav .banners {
    width: 42rem;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 1200px) {
  .l-gnav .banners {
    display: none;
  }
}

.l-gnav .banners a {
  display: block;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  padding-left: 10%;
  border-bottom: .1rem solid #737373;
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.l-gnav .banners a:nth-of-type(1) {
  border-top: .1rem solid #737373;
}

.l-gnav .banners a:active:not(:disabled), .l-gnav .banners a:hover:not(:disabled) {
  opacity: .7;
  transition-duration: 0.25s;
}

.l-gnav .follow-us {
  margin-bottom: 12rem;
}

@media screen and (min-width: 1200px) {
  .l-gnav .follow-us {
    display: none;
  }
}

.l-gnav .follow-us h2 {
  margin-bottom: 1rem;
}

.l-gnav .follow-us div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}

.l-gnav .follow-us a {
  display: grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--white);
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.l-gnav .follow-us a:active:not(:disabled), .l-gnav .follow-us a:hover:not(:disabled) {
  opacity: .7;
  transition-duration: 0.25s;
}

.l-gnav .follow-us img {
  width: 2rem;
  height: auto;
}

.l-gnav .follow-us + p {
  margin-bottom: 4rem;
  color: var(--white);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .05em;
  text-align: center;
  white-space: nowrap;
}

@media screen and (min-width: 1200px) {
  .l-gnav .follow-us + p {
    display: none;
  }
}

.l-gnav small {
  display: block;
  color: var(--sub-text-color);
  font-size: 1.1rem;
  font-family: "League Spartan", "Zen Old Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .l-gnav small {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 1200px) {
  .l-gnav small {
    display: none;
  }
}

.page-philosophy .l-gnav .philosophy span:nth-of-type(1),
.page-works .l-gnav .works span:nth-of-type(1),
.page-works-detail .l-gnav .works span:nth-of-type(1),
.page-about .l-gnav .about span:nth-of-type(1),
.page-archive .l-gnav .archive span:nth-of-type(1),
.page-archive-detail .l-gnav .archive span:nth-of-type(1),
.page-blog .l-gnav .blog span:nth-of-type(1),
.page-blog-detail .l-gnav .blog span:nth-of-type(1),
.page-news .l-gnav .news span:nth-of-type(1),
.page-news-detail .l-gnav .news span:nth-of-type(1),
.page-contact .l-gnav .contact span:nth-of-type(1) {
  color: var(--sub-text-color);
}

.l-main {
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 1199px) {
  .l-main {
    padding-top: 5rem;
  }
}

.s-index .l-main {
  background: var(--white);
}

.l-main > * {
  position: relative;
}

.l-bg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.l-bg div {
  width: 100%;
  height: 100%;
  background: #f1f1ee url(../images/common/bg-01.png) center top/39rem repeat;
  transition: transform 0.6s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (min-width: 600px) {
  .l-bg div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.1);
    background-image: url(../images/common/bg-01-lg.png);
    background-size: 100%;
  }
}

.l-mv {
  display: grid;
  padding-top: 8rem;
  padding-bottom: 7rem;
}

@media screen and (min-width: 600px) {
  .l-mv {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

@media screen and (min-width: 1024px) {
  .l-mv {
    padding-top: 12rem;
    padding-bottom: 10rem;
  }
}

.l-mv h1, .l-mv p {
  position: relative;
  margin: 0;
  line-height: 1;
}

.l-mv h1:has(span:nth-of-type(2)), .l-mv p:has(span:nth-of-type(2)) {
  display: grid;
  gap: .2rem;
}

.l-mv h1 span:nth-of-type(1), .l-mv p span:nth-of-type(1) {
  font-size: 3.4rem;
  font-weight: 400;
  font-family: "League Spartan", "Zen Old Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

@media screen and (min-width: 1024px) {
  .l-mv h1 span:nth-of-type(1), .l-mv p span:nth-of-type(1) {
    font-size: 4rem;
  }
}

.l-mv h1 span:nth-of-type(2), .l-mv p span:nth-of-type(2) {
  color: var(--sub-text-color);
  font-size: 1.2rem;
  font-weight: 500;
  font-family: "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

@media screen and (min-width: 1024px) {
  .l-mv h1 span:nth-of-type(2), .l-mv p span:nth-of-type(2) {
    font-size: 1.3rem;
  }
}

.l-mv > div {
  position: relative;
}

@media screen and (min-width: 600px) {
  .l-mv > div {
    width: fit-content;
    margin-left: auto;
  }
}

.l-mv > div div {
  opacity: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 0;
  position: absolute;
  top: 5rem;
  right: 0;
  width: calc(100vw - 4rem);
  z-index: 100;
  padding: 2rem 2rem 2rem 3rem;
  background: var(--white);
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 600px) {
  .l-mv > div div {
    grid-template-columns: repeat(8, 1fr);
    gap: 1.4rem 0;
    width: 70rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-mv > div div {
    top: 6rem;
    gap: 1.6rem;
    width: 80rem;
    padding: 4rem 4rem 4rem 5rem;
  }
}

.l-mv button {
  position: relative;
  width: 100%;
  height: 4rem;
  padding: 0 1.4rem;
  border: 0.1rem solid var(--beige);
  border-radius: .4rem;
  background: var(--white);
  font-size: 1.25rem;
  font-weight: 500;
  font-family: "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (max-width: 599px) {
  .l-mv button {
    margin-top: 1rem;
  }
}

@media screen and (min-width: 600px) {
  .l-mv button {
    width: 20rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-mv button {
    width: 22rem;
    height: 5rem;
    padding-right: 2rem;
    padding-left: 2rem;
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 1200px) {
  .l-mv button:active:not(:disabled), .l-mv button:hover:not(:disabled) {
    opacity: .7;
    transition-duration: 0.25s;
  }
}

.l-mv button:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: calc(100% - 2rem);
  transform: translate(-50%, -50%) rotate(90deg);
  width: .6rem;
  height: 1rem;
  background: var(--base-text-color);
  clip-path: polygon(18% 0, 100% 50%, 18% 100%, 12% 92%, 82% 50%, 12% 8%);
  pointer-events: none;
}

@media screen and (min-width: 1024px) {
  .l-mv button:after {
    left: calc(100% - 2.4rem);
    width: .7rem;
    height: 1.1rem;
  }
}

.l-mv .is-active + div {
  opacity: 1;
  pointer-events: visible;
}

.l-mv .is-active + div .has-post {
  pointer-events: visible;
}

.l-mv a {
  opacity: .5;
  position: relative;
  width: fit-content;
  padding-left: 1.4rem;
  font-size: 1.25rem;
  font-weight: 500;
  font-family: "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  pointer-events: none;
}

@media screen and (min-width: 1024px) {
  .l-mv a {
    padding-left: 1.6rem;
    font-size: 1.3rem;
  }
}

.l-mv a:nth-of-type(1) {
  grid-row: 1 / 2;
  grid-column: 1 / 5;
}

@media screen and (min-width: 600px) {
  .l-mv a:nth-of-type(1) {
    grid-column: 1 / 9;
  }
}

.l-mv a:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0, -50%);
  width: .8rem;
  height: .8rem;
  border-radius: 50%;
  background: var(--beige);
}

@media screen and (min-width: 1024px) {
  .l-mv a:before {
    width: .8rem;
    height: .8rem;
  }
}

.l-mv .has-post {
  opacity: 1;
  pointer-events: visible;
}

.l-mv .is-current {
  pointer-events: none !important;
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.l-mv .is-current:active:not(:disabled), .l-mv .is-current:hover:not(:disabled) {
  opacity: .7;
  transition-duration: 0.25s;
}

.l-mv .is-current:before {
  background: var(--black);
}

.l-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background: url(../images/common/bg-02.png) center top/39rem repeat;
}

@media screen and (min-width: 600px) {
  .l-links {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (max-width: 1023px) {
  .l-links {
    padding-top: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-links {
    padding-top: 11rem;
  }
}

@media screen and (min-width: 1200px) {
  .l-links {
    display: flex;
    justify-content: space-between;
    gap: normal;
  }
}

.l-links article {
  width: 100%;
}

@media screen and (min-width: 1200px) {
  .l-links article {
    max-width: 22rem;
  }
}

@media screen and (min-width: 1920px) {
  .l-links article {
    max-width: 27rem;
  }
}

.l-links article:nth-of-type(1) img {
  width: 10rem;
}

.l-links article:nth-of-type(4) img {
  width: 10rem;
}

.l-links a {
  display: grid;
  grid-template-rows: 1fr 8rem;
  height: 24rem;
  background: var(--white);
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.l-links a:active:not(:disabled), .l-links a:hover:not(:disabled) {
  opacity: .7;
  transition-duration: 0.25s;
}

.l-links figure {
  display: grid;
  place-items: center;
  margin-bottom: 0;
}

.l-links img {
  object-fit: contain;
  width: 16rem;
  height: 8rem;
}

@media screen and (min-width: 1024px) {
  .l-links img {
    width: 18.4rem;
    height: 8rem;
  }
}

.l-links h2 {
  display: grid;
  place-items: center;
  height: 8rem;
  padding-bottom: .1rem;
  border-top: 0.1rem solid var(--beige);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.69230769;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .l-links h2 {
    font-size: 1.3rem;
  }
}

/* ---------------------------
  footer
--------------------------- */
.l-footer {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background: url(../images/common/bg-02.png) center top/39rem repeat;
}

@media screen and (min-width: 1024px) {
  .l-footer {
    padding-top: 11rem;
    padding-bottom: 8rem;
  }
}

@media screen and (min-width: 600px) {
  .l-footer > div > div {
    display: grid;
    grid-template-columns: 1fr auto;
  }
}

.l-footer .logo {
  display: block;
  position: relative;
  width: 14rem;
  margin-bottom: 4rem;
  line-height: 1;
}

@media screen and (max-width: 599px) {
  .l-footer .logo {
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 600px) {
  .l-footer .logo {
    margin-bottom: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer .logo {
    width: 16.6rem;
  }
}

.l-footer .logo img {
  width: 100%;
}

.l-footer p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

@media screen and (max-width: 599px) {
  .l-footer p {
    text-align: center;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer p {
    font-size: 1.4rem;
  }
}

.l-footer p + a {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  gap: .6rem;
  width: fit-content;
  margin-bottom: 3.6rem;
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (max-width: 599px) {
  .l-footer p + a {
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer p + a {
    margin-bottom: 5rem;
  }
}

.l-footer p + a:active:not(:disabled), .l-footer p + a:hover:not(:disabled) {
  opacity: .5;
  transition-duration: 0.25s;
}

.l-footer p + a img {
  display: inline-block;
  transform: translate(0, -0.1rem);
  width: 1.2rem;
  height: auto;
}

.l-footer p + a span {
  font-family: "League Spartan", "Zen Old Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

@media screen and (min-width: 1024px) {
  .l-footer p + a span {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 599px) {
  .l-footer .menu {
    display: none;
  }
}

@media screen and (min-width: 600px) {
  .l-footer .menu {
    display: grid;
    grid-template-columns: repeat(7, auto);
    gap: 2.2rem;
    margin-top: -.7rem;
    margin-bottom: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer .menu {
    margin-top: -.8rem;
  }
}

.l-footer .menu a {
  transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.l-footer .menu a:active:not(:disabled), .l-footer .menu a:hover:not(:disabled) {
  color: var(--sub-text-color);
  transition-duration: 0.4s;
}

.l-footer .menu span:nth-of-type(1) {
  font-size: 1.4rem;
  font-family: "League Spartan", "Zen Old Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.l-footer .sns {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 1.8rem;
  width: fit-content;
  margin-bottom: 4.6rem;
  margin-left: auto;
}

@media screen and (max-width: 599px) {
  .l-footer .sns {
    margin-right: auto;
  }
}

.l-footer .sns a {
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.l-footer .sns a:active:not(:disabled), .l-footer .sns a:hover:not(:disabled) {
  opacity: .5;
  transition-duration: 0.25s;
}

.l-footer .sns img {
  width: 2.4rem;
  height: auto;
}

.l-footer small {
  display: block;
  color: var(--sub-text-color);
  font-size: 1.1rem;
  font-family: "League Spartan", "Zen Old Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1;
}

@media screen and (max-width: 599px) {
  .l-footer small {
    text-align: center;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer small {
    font-size: 1.2rem;
  }
}

.l-sidebar {
  padding-top: 40.6195rem;
  background: var(--light-beige);
}

@media screen and (max-width: 1199px) {
  .l-sidebar {
    display: none;
  }
}

.l-sidebar > * {
  padding-right: 3rem;
  padding-left: 3rem;
}

.l-sidebar > * + * {
  border-top: 0.2rem solid var(--beige);
}

.l-sidebar .banners {
  display: grid;
  gap: 2rem;
}

.l-sidebar .banners a {
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.l-sidebar .banners a:active:not(:disabled), .l-sidebar .banners a:hover:not(:disabled) {
  opacity: .7;
  transition-duration: 0.25s;
}

.l-sidebar .follow-us {
  display: grid;
  grid-template-columns: repeat(4, auto);
  align-items: center;
  gap: 1.6rem;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.l-sidebar .follow-us h2 {
  transform: translate(0, 0.2rem);
  margin-right: .2rem;
}

.l-sidebar .follow-us a {
  display: block;
  width: 2rem;
  line-height: 1;
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.l-sidebar .follow-us a:active:not(:disabled), .l-sidebar .follow-us a:hover:not(:disabled) {
  opacity: .5;
  transition-duration: 0.25s;
}

.l-sidebar .pick-up-blog > div {
  grid-template-columns: none;
}

.l-sidebar .pick-up-blog > div h2, .l-sidebar .pick-up-blog > div h3, .l-sidebar .pick-up-blog > div h4 {
  font-size: 1.3rem;
}

.l-sidebar .pick-up-blog > div img {
  height: auto;
}

.l-sidebar .pick-up-items .swiper-wrapper {
  display: grid;
  grid-template-columns: none;
  gap: 3rem;
}

.l-sidebar .pick-up-items article {
  margin: 0 !important;
}

.l-sidebar .pick-up-items .swiper-scrollbar {
  display: none;
}

.l-sidebar .pick-up-items .swiper-button-wrap {
  display: none;
}

/*------------------------------------------------------------
  compornent
------------------------------------------------------------*/
/*
  heading
*/
.c-two-lang-heading, .c-two-lang-heading--small, .c-two-lang-heading--with-icon, .c-two-lang-heading--white {
  display: grid;
  gap: .8rem;
  position: relative;
  width: fit-content;
  margin-bottom: 3rem;
  line-height: 1.2;
}

@media screen and (min-width: 1024px) {
  .c-two-lang-heading, .c-two-lang-heading--small, .c-two-lang-heading--with-icon, .c-two-lang-heading--white {
    gap: 1rem;
    margin-bottom: 4rem;
  }
}

@media screen and (min-width: 1200px) {
  .c-two-lang-heading, .c-two-lang-heading--small, .c-two-lang-heading--with-icon, .c-two-lang-heading--white {
    grid-template-columns: repeat(2, auto);
    gap: 1.2rem;
    place-content: center;
    align-items: center;
  }
}

.c-two-lang-heading img, .c-two-lang-heading--small img, .c-two-lang-heading--with-icon img, .c-two-lang-heading--white img {
  display: block;
  width: 2rem;
  height: auto;
}

@media screen and (max-width: 1199px) {
  .c-two-lang-heading img, .c-two-lang-heading--small img, .c-two-lang-heading--with-icon img, .c-two-lang-heading--white img {
    margin-right: auto;
    margin-left: auto;
  }
}

.c-two-lang-heading > span, .c-two-lang-heading--small > span, .c-two-lang-heading--with-icon > span, .c-two-lang-heading--white > span {
  display: grid;
}

.c-two-lang-heading > span span:nth-of-type(1), .c-two-lang-heading--small > span span:nth-of-type(1), .c-two-lang-heading--with-icon > span span:nth-of-type(1), .c-two-lang-heading--white > span span:nth-of-type(1) {
  font-size: 2.4rem;
  font-weight: 400;
  font-family: "League Spartan", "Zen Old Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

@media screen and (min-width: 1024px) {
  .c-two-lang-heading > span span:nth-of-type(1), .c-two-lang-heading--small > span span:nth-of-type(1), .c-two-lang-heading--with-icon > span span:nth-of-type(1), .c-two-lang-heading--white > span span:nth-of-type(1) {
    font-size: 3rem;
  }
}

.c-two-lang-heading > span span:nth-of-type(2), .c-two-lang-heading--small > span span:nth-of-type(2), .c-two-lang-heading--with-icon > span span:nth-of-type(2), .c-two-lang-heading--white > span span:nth-of-type(2) {
  color: var(--sub-text-color);
  font-size: 1.2rem;
  font-weight: 400;
  font-family: "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.c-two-lang-heading--small {
  margin-bottom: 1.6rem;
}

@media screen and (min-width: 1024px) {
  .c-two-lang-heading--small {
    margin-bottom: 2.6rem;
  }
}

.c-two-lang-heading--small > span span:nth-of-type(1) {
  font-size: 1.6rem;
}

.c-two-lang-heading--small > span span:nth-of-type(2) {
  font-size: 1rem;
}

.c-two-lang-heading--with-icon {
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 1199px) {
  .c-two-lang-heading--with-icon {
    text-align: center;
  }
}

.c-two-lang-heading--white > span > span:nth-of-type(1) {
  color: var(--white);
}

.c-two-lang-heading--white > span > span:nth-of-type(2) {
  color: var(--white);
}

.c-border-heading, .c-post h2 {
  margin-bottom: 2.6rem;
  padding-bottom: 1.6rem;
  border-bottom: 0.1rem solid var(--black);
  font-size: 1.45rem;
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
}

@media screen and (min-width: 1024px) {
  .c-border-heading, .c-post h2 {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    font-size: 1.7rem;
  }
}

.c-frame-heading, .c-frame-heading--ja, .c-frame-heading--en, .c-frame-heading--white, .c-frame-heading--small {
  width: fit-content;
  margin-bottom: 1rem;
  padding: .2rem .6rem;
  background: var(--black);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

@media screen and (min-width: 1024px) {
  .c-frame-heading, .c-frame-heading--ja, .c-frame-heading--en, .c-frame-heading--white, .c-frame-heading--small {
    margin-bottom: 1.6rem;
    font-size: 1.8rem;
  }
}

.c-frame-heading--en {
  padding: .4rem .6rem .1rem;
  font-weight: 400;
  font-family: "League Spartan", "Zen Old Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1.3;
  letter-spacing: .06em;
}

@media screen and (min-width: 1024px) {
  .c-frame-heading--en {
    padding: .5rem .8rem .1rem;
  }
}

.c-frame-heading--white {
  background: var(--white);
  color: var(--base-text-color);
}

.c-frame-heading--small {
  font-size: 1.4rem;
  padding-right: .8rem;
  padding-left: .8rem;
}

.c-medium-heading, .c-medium-heading--white {
  margin-bottom: 1.6rem;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.6;
}

@media screen and (min-width: 1024px) {
  .c-medium-heading, .c-medium-heading--white {
    margin-bottom: 2.4rem;
    font-size: 2.8rem;
  }
}

.c-medium-heading--white {
  color: var(--white);
}

/*
  button
*/
.c-border-button, .c-border-button--more, .c-border-button--list, .c-border-button--white {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  position: relative;
  width: fit-content;
  min-width: 15rem;
  min-height: 5rem;
  font-size: 1.4rem;
  font-weight: 300;
  font-family: "League Spartan", "Zen Old Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  white-space: nowrap;
}

.c-border-button:active:not(:disabled):after, .c-border-button--more:active:not(:disabled):after, .c-border-button--list:active:not(:disabled):after, .c-border-button--white:active:not(:disabled):after, .c-border-button:hover:not(:disabled):after, .c-border-button--more:hover:not(:disabled):after, .c-border-button--list:hover:not(:disabled):after, .c-border-button--white:hover:not(:disabled):after {
  transform: translate(0, -50%) scaleX(0%);
  transform-origin: right center;
  transition-duration: 0.4s;
}

.c-border-button:disabled, .c-border-button--more:disabled, .c-border-button--list:disabled, .c-border-button--white:disabled {
  opacity: .5;
  cursor: default;
}

.c-border-button:after, .c-border-button--more:after, .c-border-button--list:after, .c-border-button--white:after {
  content: '';
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  transform: translate(0, -50%);
  transform-origin: left center;
  width: 100%;
  height: .1rem;
  background: var(--base-border-color);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-border-button span, .c-border-button--more span, .c-border-button--list span, .c-border-button--white span {
  display: inline-block;
  transform: translate(0, 0.2rem);
}

.c-border-button img, .c-border-button--more img, .c-border-button--list img, .c-border-button--white img, .c-border-button svg, .c-border-button--more svg, .c-border-button--list svg, .c-border-button--white svg {
  width: 1rem;
  height: auto;
}

@supports (-ms-ime-align: auto) {
  .c-border-button, .c-border-button--more, .c-border-button--list, .c-border-button--white {
    max-width: 15rem;
  }
}

.c-border-button--more {
  padding: 0;
  border: none;
}

.c-border-button--more img {
  transform: rotate(90deg);
}

.c-border-button--list {
  grid-template-columns: auto 1fr;
  min-width: 11rem;
  padding: 0;
  border: none;
}

.c-border-button--list span {
  transform: translate(0, 0.1rem);
  text-align: right;
}

.c-border-button--white {
  color: var(--white);
}

.c-border-button--white:after {
  background: var(--white);
}

.c-color-button {
  display: grid;
  place-items: center;
  position: relative;
  min-height: 7rem;
  margin-right: auto;
  margin-left: auto;
  border-radius: .4rem;
  background: var(--gray-black);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  white-space: nowrap;
  transition: background 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 600px) {
  .c-color-button {
    width: fit-content;
    min-width: 36rem;
  }
}

.c-color-button:active:not(:disabled), .c-color-button:hover:not(:disabled) {
  background: var(--gold);
  transition-duration: 0.4s;
}

/*
  list
*/
.c-dot-list, .c-post ul {
  display: grid;
  gap: .5rem;
}

.c-dot-list li, .c-post ul li {
  position: relative;
  padding-left: 1.6rem;
}

@media screen and (min-width: 1024px) {
  .c-dot-list li, .c-post ul li {
    padding-left: 2.2rem;
  }
}

.c-dot-list li:before, .c-post ul li:before {
  content: '';
  display: block;
  position: absolute;
  top: 1.32rem;
  left: .6rem;
  transform: translate(-50%, -50%);
  width: .3rem;
  height: .3rem;
  border-radius: 100%;
  background: var(--sub-text-color);
}

@media screen and (min-width: 1024px) {
  .c-dot-list li:before, .c-post ul li:before {
    top: 1.6rem;
    left: .8rem;
    width: .4rem;
    height: .4rem;
  }
}

.c-number-list, .c-post ol {
  counter-reset: li;
  list-style: none;
  display: grid;
  gap: .4rem;
  margin-left: 0;
}

.c-number-list li, .c-post ol li {
  position: relative;
  padding-left: 2.2rem;
}

@media screen and (min-width: 1024px) {
  .c-number-list li, .c-post ol li {
    padding-left: 2.8rem;
  }
}

.c-number-list li:before, .c-post ol li:before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--sub-text-color);
  counter-increment: li;
  content: counter(li) ". ";
}

/*
  table
*/
.c-border-table, .c-post table {
  width: 100%;
}

.c-border-table th, .c-post table th, .c-border-table td, .c-post table td {
  padding: 1.6rem 1rem;
  border-top: 0.1rem solid var(--base-border-color);
  border-bottom: 0.1rem solid var(--base-border-color);
}

@media screen and (min-width: 600px) {
  .c-border-table th, .c-post table th, .c-border-table td, .c-post table td {
    padding: 2rem 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-border-table th, .c-post table th, .c-border-table td, .c-post table td {
    padding: 3rem 3rem;
  }
}

.c-border-table th:first-child, .c-post table th:first-child, .c-border-table td:first-child, .c-post table td:first-child {
  border-left: 0.1rem solid rgba(255, 255, 255, 0.4);
}

.c-border-table th, .c-post table th {
  position: relative;
  width: 10rem;
  background: url(../images/common/bg-02.png) center top/39rem repeat;
  font-weight: 400;
}

@media screen and (min-width: 600px) {
  .c-border-table th, .c-post table th {
    width: 12rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-border-table th, .c-post table th {
    width: 22rem;
  }
}

/*
  post
*/
.c-date {
  display: inline-block;
  margin-right: 1.6rem;
  color: var(--sub-text-color);
  font-size: 1.4rem;
  font-family: "League Spartan", "Zen Old Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

@media screen and (min-width: 1024px) {
  .c-date {
    margin-right: 2rem;
  }
}

.c-category {
  display: inline-block;
  padding-right: 1rem;
  padding-left: 1rem;
  border: 0.1rem solid rgba(139, 146, 185, 0.4);
  border-radius: .2rem;
  color: var(--sub-text-color);
  font-size: 1.2rem;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .c-category {
    font-size: 1.4rem;
  }
}

.c-category:last-child {
  margin-right: 0;
}

.c-date-wrap,
.c-category-wrap {
  margin-bottom: .2rem;
}

@media screen and (min-width: 1024px) {
  .c-date-wrap,
  .c-category-wrap {
    margin-bottom: .4rem;
  }
}

.c-text-articles a {
  display: grid;
  align-items: center;
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2.6rem;
  border-bottom: 0.1rem solid var(--base-border-color);
}

@media screen and (min-width: 1024px) {
  .c-text-articles a {
    padding-top: 2.8rem;
    padding-bottom: 3.6rem;
  }
}

.c-text-articles a:active:not(:disabled) h2, .c-text-articles a:active:not(:disabled) h3, .c-text-articles a:hover:not(:disabled) h2, .c-text-articles a:hover:not(:disabled) h3 {
  color: var(--sub-text-color);
  transition-duration: 0.4s;
}

.c-text-articles a:active:not(:disabled) svg, .c-text-articles a:hover:not(:disabled) svg {
  animation: 0.4s cubic-bezier(0.19, 1, 0.22, 1) both button-hover-animation;
}

.c-text-articles a:active:not(:disabled) g, .c-text-articles a:active:not(:disabled) path, .c-text-articles a:hover:not(:disabled) g, .c-text-articles a:hover:not(:disabled) path {
  fill: var(--primary-color);
  transition-duration: 0.4s;
}

.c-text-articles h2, .c-text-articles h3 {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .c-text-articles h2, .c-text-articles h3 {
    font-size: 1.6rem;
  }
}

.c-articles:not(.swiper-wrapper) {
  display: grid;
  gap: 4rem;
}

@media screen and (min-width: 600px) {
  .c-articles:not(.swiper-wrapper) {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-articles:not(.swiper-wrapper) {
    gap: 5rem 5rem;
  }
}

@media screen and (min-width: 1536px) {
  .c-articles:not(.swiper-wrapper) {
    gap: 7rem 8%;
  }
}

.c-articles a {
  display: grid;
}

.c-articles a:active:not(:disabled) img, .c-articles a:hover:not(:disabled) img {
  transform: scale(1.1);
  transition-duration: .4s;
}

.c-articles figure {
  overflow: hidden;
  margin-bottom: 1rem;
}

@media screen and (min-width: 1024px) {
  .c-articles figure {
    margin-bottom: 1.4rem;
  }
}

.c-articles img {
  object-fit: cover;
  width: 100%;
  height: 58.33333333vw;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media screen and (min-width: 600px) {
  .c-articles img {
    height: 28.690625vw;
  }
}

@media screen and (min-width: 1024px) {
  .c-articles img {
    height: 27.73896484vw;
  }
}

@media screen and (min-width: 1200px) {
  .c-articles img {
    height: 21.8359375vw;
    max-height: 30rem;
  }
}

@media screen and (min-width: 1920px) {
  .c-articles img {
    height: 18.68734375vw;
    max-height: 35.8797rem;
  }
}

.c-articles h2, .c-articles h3, .c-articles h4 {
  margin-bottom: .6rem;
  font-size: 1.5rem;
  line-height: 1.55555555;
}

@media screen and (min-width: 1024px) {
  .c-articles h2, .c-articles h3, .c-articles h4 {
    margin-bottom: .8rem;
    font-size: 1.8rem;
  }
}

.c-articles .date-wrap {
  position: relative;
  margin-top: 1.2rem;
  padding-top: .8rem;
}

@media screen and (min-width: 1024px) {
  .c-articles .date-wrap {
    margin-top: 1.4rem;
    padding-top: 1rem;
  }
}

.c-articles .date-wrap:before {
  content: '';
  display: block;
  position: absolute;
  top: 0%;
  left: 0;
  transform: translate(0, -50%);
  width: 2rem;
  height: .1rem;
  background: var(--base-border-color);
}

.c-tags a, .c-tags span {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 500;
  font-family: "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

@media screen and (min-width: 1024px) {
  .c-tags a, .c-tags span {
    font-size: 1.2rem;
  }
}

.c-tags a {
  transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-tags a:active:not(:disabled), .c-tags a:hover:not(:disabled) {
  opacity: 1;
  color: var(--sub-text-color);
  transition-duration: 0.4s;
}

.pagination {
  padding-top: 5rem;
}

@media screen and (min-width: 1024px) {
  .pagination {
    padding-top: 12rem;
  }
}

.screen-reader-text {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}

.nav-links > * {
  display: grid;
  place-items: center;
  position: relative;
  width: 3.6rem;
  height: 4.8rem;
  margin: .8rem;
  border-radius: calc(infinity * .1rem);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  transition: box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .nav-links > * {
    width: 4.8rem;
    height: 6.4rem;
    margin: 1.2rem;
    font-size: 2rem;
  }
}

.nav-links > *:active:not(:disabled), .nav-links > *:hover:not(:disabled) {
  box-shadow: 0 0 2.6rem 0 rgba(58, 114, 239, 0.8);
  transition-duration: 0.4s;
}

.nav-links > *:active:not(:disabled):before, .nav-links > *:hover:not(:disabled):before {
  opacity: 0;
  transition-duration: 0.25s;
}

.nav-links > *:active:not(:disabled):after, .nav-links > *:hover:not(:disabled):after {
  opacity: 1;
  transition-duration: 0.25s;
}

.nav-links > *:before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  padding: .1rem;
  width: 100%;
  height: 100%;
  border-radius: calc(infinity * .1rem);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.nav-links > *:after {
  opacity: 0;
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  padding: .2rem;
  width: 100%;
  height: 100%;
  border-radius: calc(infinity * .1rem);
  background: linear-gradient(to bottom, rgba(196, 167, 101, 0.8), rgba(196, 167, 101, 0.1));
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.nav-links .current {
  color: var(--white);
  pointer-events: none;
}

.nav-links .current:before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  padding: .2rem;
  width: 100%;
  height: 100%;
  border-radius: calc(infinity * .1rem);
  background: linear-gradient(to right, #16BBEF 0%, #3D71EE 50%, #6657EA 100%);
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.nav-links .current:after {
  opacity: 1;
  content: '';
  display: block;
  position: absolute;
  top: 72%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 26%;
  height: .2rem;
  padding: 0;
  border-radius: 0;
  background: var(--white);
  mask: none;
}

@media screen and (min-width: 1024px) {
  .nav-links .current:after {
    height: .3rem;
  }
}

.nav-links .next, .nav-links .prev {
  border: none;
  background: rgba(255, 255, 255, 0.1);
}

.nav-links .next:active:not(:disabled):before, .nav-links .next:hover:not(:disabled):before, .nav-links .prev:active:not(:disabled):before, .nav-links .prev:hover:not(:disabled):before {
  opacity: 1;
}

.nav-links .next:before, .nav-links .prev:before {
  opacity: 1;
  content: '';
  display: block;
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: .7rem;
  height: 1rem;
  background: rgba(210, 213, 233, 0.6);
  clip-path: polygon(18% 0, 100% 50%, 18% 100%, 12% 92%, 82% 50%, 12% 8%);
  mask: none;
  transition: background 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .nav-links .next:before, .nav-links .prev:before {
    width: .8rem;
    height: 1.2rem;
  }
}

.nav-links .next:after, .nav-links .prev:after {
  content: none;
}

.nav-links .prev:before {
  transform: translate(-50%, -50%) scale(-1, 1);
}

.c-detail-pagination {
  display: grid;
  place-items: center;
  position: relative;
  margin-top: 7rem;
}

@media screen and (min-width: 1024px) {
  .c-detail-pagination {
    margin-top: 16rem;
  }
}

.c-detail-pagination .back {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  gap: 1rem;
  color: var(--white);
  font-size: 1.6rem;
}

@media screen and (min-width: 1024px) {
  .c-detail-pagination .back {
    gap: 3rem;
    font-size: 2rem;
  }
}

.c-detail-pagination .back a {
  min-width: 4.8rem;
  min-height: 3.2rem;
  padding: 0;
}

@media screen and (min-width: 1024px) {
  .c-detail-pagination .back a {
    min-width: 9rem;
    min-height: 6rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-detail-pagination .back svg {
    width: 1.8rem;
    height: auto;
  }
}

.c-detail-pagination .next, .c-detail-pagination .prev {
  display: grid;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)) left bottom/100% 0.1rem no-repeat;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0;
  transition: background-size 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .c-detail-pagination .next, .c-detail-pagination .prev {
    font-size: 2rem;
  }
}

.c-detail-pagination .next:active:not(:disabled), .c-detail-pagination .next:hover:not(:disabled), .c-detail-pagination .prev:active:not(:disabled), .c-detail-pagination .prev:hover:not(:disabled) {
  background-position: right bottom;
  background-size: 0 .1rem;
  transition-duration: 0.4s;
}

.c-detail-pagination .next:after, .c-detail-pagination .prev:after {
  content: '';
  display: block;
  position: absolute;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: .7rem;
  height: 1rem;
  background: var(--white);
  clip-path: polygon(18% 0, 100% 50%, 18% 100%, 12% 92%, 82% 50%, 12% 8%);
  transition: background 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .c-detail-pagination .next:after, .c-detail-pagination .prev:after {
    width: .8rem;
    height: 1.2rem;
  }
}

.c-detail-pagination .next img, .c-detail-pagination .next svg, .c-detail-pagination .prev img, .c-detail-pagination .prev svg {
  display: inline-block;
  width: 1.4rem;
}

@media screen and (min-width: 1024px) {
  .c-detail-pagination .next img, .c-detail-pagination .next svg, .c-detail-pagination .prev img, .c-detail-pagination .prev svg {
    width: 1.6rem;
  }
}

.c-detail-pagination .next {
  right: 0;
  margin-right: 1.8rem;
}

@media screen and (min-width: 1024px) {
  .c-detail-pagination .next {
    margin-right: 2.4rem;
  }
}

.c-detail-pagination .next:after {
  left: 150%;
}

@media screen and (min-width: 1024px) {
  .c-detail-pagination .next:after {
    left: 160%;
  }
}

.c-detail-pagination .prev {
  left: 0;
  margin-left: 1.8rem;
}

@media screen and (min-width: 1024px) {
  .c-detail-pagination .prev {
    margin-left: 2.4rem;
  }
}

.c-detail-pagination .prev:after {
  left: -50%;
  transform: translate(-50%, -50%) scale(-1, 1);
}

@media screen and (min-width: 1024px) {
  .c-detail-pagination .prev:after {
    left: -60%;
  }
}

@media screen and (max-width: 599px) {
  .c-post :where(.is-layout-flex) {
    gap: 2.4rem !important;
  }
}

@media screen and (min-width: 600px) {
  .c-post :where(.is-layout-flex) {
    gap: 4rem;
  }
}

.c-post > * {
  margin-bottom: 3rem;
}

@media screen and (min-width: 1024px) {
  .c-post > * {
    margin-bottom: 4rem;
  }
}

.c-post > *:last-child {
  margin-bottom: 0;
}

.c-post > *:has(+ h1), .c-post > *:has(+ h2), .c-post > *:has(+ h3), .c-post > *:has(+ h4), .c-post > *:has(+ h5), .c-post > *:has(+ h6) {
  margin-bottom: 4rem;
}

@media screen and (min-width: 1024px) {
  .c-post > *:has(+ h1), .c-post > *:has(+ h2), .c-post > *:has(+ h3), .c-post > *:has(+ h4), .c-post > *:has(+ h5), .c-post > *:has(+ h6) {
    margin-bottom: 8rem;
  }
}

.c-post > *:has(+ figure), .c-post > *:has(+ .wp-block-image figure), .c-post > *:has(+ table) {
  margin-bottom: 2.6rem;
}

@media screen and (min-width: 1024px) {
  .c-post > *:has(+ figure), .c-post > *:has(+ .wp-block-image figure), .c-post > *:has(+ table) {
    margin-bottom: 5rem;
  }
}

.c-post p {
  word-break: break-all;
}

.c-post strong {
  font-weight: 700;
}

/*
  form
*/
.c-form {
  display: grid;
  gap: 3rem;
}

@media screen and (min-width: 600px) {
  .c-form {
    gap: 0;
  }
}

.c-form > div {
  display: grid;
  gap: .4rem;
}

@media screen and (min-width: 600px) {
  .c-form > div {
    grid-template-columns: 1fr 75%;
    gap: 1.6%;
  }
}

.c-form > div:last-child > div:nth-of-type(2) {
  border-bottom: none;
}

@media screen and (min-width: 600px) {
  .c-form > div > div {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-form > div > div {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }
}

.c-form > div > div:nth-of-type(1) {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
}

@media screen and (min-width: 600px) {
  .c-form > div > div:nth-of-type(1) {
    padding-top: 4.1rem;
  }
}

.c-form > div > div:nth-of-type(2) {
  border-bottom: 0.1rem solid rgba(210, 213, 233, 0.4);
}

.c-form .error {
  color: #990000;
}

/*
  required, optional
*/
.c-required, .c-optional {
  display: inline-block;
  transform: translate(0, 0.3rem);
  padding: .5rem .7rem .4rem;
  border-radius: .2rem;
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .c-required, .c-optional {
    transform: translate(0, 0.8rem);
    padding: .5rem .8rem .6rem;
    font-size: 1.2rem;
  }
}

.c-required {
  background: #B5A071;
}

/*
  accordion
*/
.c-accordion-button, .c-accordion-button--arrow {
  position: relative;
}

.c-accordion-button:active:not(:disabled), .c-accordion-button--arrow:active:not(:disabled), .c-accordion-button:hover:not(:disabled), .c-accordion-button--arrow:hover:not(:disabled) {
  cursor: pointer;
}

.c-accordion-button.is-open + *, .is-open.c-accordion-button--arrow + * {
  grid-template-rows: 1fr;
  transition-duration: 0.4s;
}

.c-accordion-button + *, .c-accordion-button--arrow + * {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.c-accordion-button + * > div, .c-accordion-button--arrow + * > div {
  overflow: hidden;
}

.c-accordion-button--arrow.is-open:after {
  top: 49%;
  transform: translate(-50%, -50%) rotate(180deg);
  transition-duration: 0.4s;
}

.c-accordion-button--arrow:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: calc(100% - 3rem);
  transform: translate(-50%, -50%);
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--light-beige);
}

@media screen and (min-width: 1024px) {
  .c-accordion-button--arrow:before {
    left: calc(100% - 6.2rem);
    width: 3rem;
    height: 3rem;
  }
}

.c-accordion-button--arrow:after {
  content: '';
  display: block;
  position: absolute;
  top: 51%;
  left: calc(100% - 3rem);
  transform: translate(-50%, -50%);
  width: 1rem;
  height: .5rem;
  background: var(--black);
  clip-path: polygon(10% 0, 50% 76%, 90% 0, 100% 6%, 50% 100%, 0% 6%);
  transition: top 0.6s ease, transform 0.6s ease;
}

@media screen and (min-width: 1024px) {
  .c-accordion-button--arrow:after {
    left: calc(100% - 6.2rem);
    width: 1.4rem;
    height: .8rem;
  }
}

/*
  modal
*/
.c-modal-bg {
  opacity: 0;
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(33, 33, 33, 0.8);
  pointer-events: none;
}

.c-modal-bg.is-show {
  pointer-events: visible;
  animation: 0.35s cubic-bezier(0.39, 0.575, 0.565, 1) both layer-in;
}

.c-modal-bg.is-hide {
  pointer-events: none;
  animation: 0.35s cubic-bezier(0.39, 0.575, 0.565, 1) both layer-out;
}

@keyframes layer-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes layer-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes layer-slide-in {
  0% {
    opacity: 0;
    transform: translate(100%, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0%, 0);
  }
}

@keyframes layer-slide-out {
  0% {
    opacity: 1;
    transform: translate(0%, 0);
  }
  100% {
    opacity: 0;
    transform: translate(100%, 0);
  }
}

@keyframes modal-in {
  0% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes modal-out {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.95);
  }
}

.c-modal-container {
  opacity: 0;
  display: grid;
  place-items: center;
  position: fixed;
  inset: 0;
  z-index: 400;
  overflow: auto;
  width: 100%;
  height: 100%;
  padding: 2rem 2rem;
  pointer-events: none;
}

@media screen and (min-width: 600px) {
  .c-modal-container {
    padding: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-modal-container {
    padding: 5rem;
  }
}

.c-modal-container.is-open {
  pointer-events: visible;
  animation: 0.35s cubic-bezier(0.39, 0.575, 0.565, 1) both layer-in;
}

.c-modal-container.is-open > * {
  animation: 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) both modal-in;
}

.c-modal-container.is-close {
  pointer-events: none;
  animation: 0.35s cubic-bezier(0.39, 0.575, 0.565, 1) both layer-out;
}

.c-modal-container.is-close > * {
  animation: 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) both modal-out;
}

.c-modal {
  display: grid;
  position: relative;
  width: 100%;
  height: fit-content;
  padding: 6.6rem 2rem;
  background: url(../images/common/bg-02.png) center top/39rem repeat;
}

@media screen and (min-width: 600px) {
  .c-modal {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-modal {
    padding: 14rem 5rem;
  }
}

@media screen and (min-width: 1200px) {
  .c-modal {
    padding: 14rem;
  }
}

.c-modal-open-button:active:not(:disabled), .c-modal-open-button:hover:not(:disabled) {
  cursor: pointer;
}

.c-modal-close-button {
  opacity: 0;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: -2;
  width: 5rem;
  height: 5rem;
  padding: 0;
  border: none;
  pointer-events: none;
  animation: 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95) layer-out;
}

@media screen and (min-width: 1024px) {
  .c-modal-close-button {
    top: 4.2rem;
    right: 4.2rem;
  }
}

.c-modal-close-button.is-show {
  pointer-events: visible;
  animation: 0.35s cubic-bezier(0.39, 0.575, 0.565, 1) both layer-in;
}

.c-modal-close-button.is-hide {
  pointer-events: none;
  animation: 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both layer-out;
}

.c-modal-close-button:before, .c-modal-close-button:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3.6rem;
  height: .2rem;
  border-radius: calc(infinity * 1px);
  background: #ccc;
}

@media screen and (min-width: 1024px) {
  .c-modal-close-button:before, .c-modal-close-button:after {
    width: 5rem;
  }
}

.c-modal-close-button:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.c-modal-close-button:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/*
  other
*/
.c-theme-heading, .c-theme-heading--white {
  width: fit-content;
  margin-bottom: .2rem;
  padding: .3rem .4rem 0;
  background: var(--black);
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 400;
  font-family: "League Spartan", "Zen Old Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1.2;
}

@media screen and (min-width: 1024px) {
  .c-theme-heading, .c-theme-heading--white {
    padding-right: .6rem;
    padding-left: .6rem;
    font-size: 1.1rem;
  }
}

.c-theme-heading--white {
  background: var(--white);
  color: var(--black);
}

.c-theme-wrap {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  gap: .4rem;
  width: fit-content;
}

.c-theme-wrap span:nth-of-type(2) {
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.c-term-heading {
  position: relative;
  margin-bottom: 3rem;
  padding-bottom: 2.2rem;
  font-size: 1.7rem;
  font-weight: 500;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .c-term-heading {
    margin-bottom: 5rem;
    padding-bottom: 3.2rem;
    font-size: 2.2rem;
  }
}

.c-term-heading:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: .1rem;
  height: 1.6rem;
  background: var(--black);
}

@media screen and (min-width: 1024px) {
  .c-term-heading:after {
    height: 2rem;
  }
}

.c-pref-wrap {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  gap: .4rem;
  width: fit-content;
  margin-bottom: 1rem;
}

.c-pref-wrap img {
  width: 1rem;
  height: auto;
}

.c-pref-wrap span {
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.c-archive-articles:not(.swiper-wrapper), .c-archive-articles--black:not(.swiper-wrapper), .c-archive-articles--wide:not(.swiper-wrapper) {
  display: grid;
  gap: 3rem;
}

@media screen and (min-width: 1024px) {
  .c-archive-articles:not(.swiper-wrapper), .c-archive-articles--black:not(.swiper-wrapper), .c-archive-articles--wide:not(.swiper-wrapper) {
    gap: 4rem;
  }
}

.c-archive-articles article, .c-archive-articles--black article, .c-archive-articles--wide article {
  position: relative;
}

.c-archive-articles article:active:not(:disabled):before, .c-archive-articles--black article:active:not(:disabled):before, .c-archive-articles--wide article:active:not(:disabled):before, .c-archive-articles article:hover:not(:disabled):before, .c-archive-articles--black article:hover:not(:disabled):before, .c-archive-articles--wide article:hover:not(:disabled):before {
  transform: translate(-50%, 0) scaleY(1);
  transition-duration: 0.4s;
}

.c-archive-articles article:active:not(:disabled):after, .c-archive-articles--black article:active:not(:disabled):after, .c-archive-articles--wide article:active:not(:disabled):after, .c-archive-articles article:hover:not(:disabled):after, .c-archive-articles--black article:hover:not(:disabled):after, .c-archive-articles--wide article:hover:not(:disabled):after {
  transform: translate(0, -50%) scaleX(1);
  transition-duration: 0.4s;
}

.c-archive-articles article:before, .c-archive-articles--black article:before, .c-archive-articles--wide article:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, 0) scaleY(0);
  transform-origin: center top;
  width: .2rem;
  height: 100%;
  background: var(--base-border-color);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-archive-articles article:after, .c-archive-articles--black article:after, .c-archive-articles--wide article:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, -50%) scaleX(0);
  transform-origin: left center;
  width: 100%;
  height: .2rem;
  background: var(--base-border-color);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-archive-articles a, .c-archive-articles--black a, .c-archive-articles--wide a {
  display: grid;
  background: url(../images/common/bg-02.png) center top/39rem repeat;
}

@media screen and (min-width: 600px) {
  .c-archive-articles a, .c-archive-articles--black a, .c-archive-articles--wide a {
    grid-template-columns: 40% 1fr;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-archive-articles a, .c-archive-articles--black a, .c-archive-articles--wide a {
    gap: 5rem;
    padding: 5rem;
  }
}

.c-archive-articles a:active:not(:disabled):before, .c-archive-articles--black a:active:not(:disabled):before, .c-archive-articles--wide a:active:not(:disabled):before, .c-archive-articles a:hover:not(:disabled):before, .c-archive-articles--black a:hover:not(:disabled):before, .c-archive-articles--wide a:hover:not(:disabled):before {
  transform: translate(-50%, 0) scaleY(1);
  transition-duration: 0.4s;
}

.c-archive-articles a:active:not(:disabled):after, .c-archive-articles--black a:active:not(:disabled):after, .c-archive-articles--wide a:active:not(:disabled):after, .c-archive-articles a:hover:not(:disabled):after, .c-archive-articles--black a:hover:not(:disabled):after, .c-archive-articles--wide a:hover:not(:disabled):after {
  transform: translate(0, -50%) scaleX(1);
  transition-duration: 0.4s;
}

.c-archive-articles a:active:not(:disabled) figure:before, .c-archive-articles--black a:active:not(:disabled) figure:before, .c-archive-articles--wide a:active:not(:disabled) figure:before, .c-archive-articles a:hover:not(:disabled) figure:before, .c-archive-articles--black a:hover:not(:disabled) figure:before, .c-archive-articles--wide a:hover:not(:disabled) figure:before {
  opacity: 1;
  transition-duration: 0.4s;
}

.c-archive-articles a:active:not(:disabled) figure:after, .c-archive-articles--black a:active:not(:disabled) figure:after, .c-archive-articles--wide a:active:not(:disabled) figure:after, .c-archive-articles a:hover:not(:disabled) figure:after, .c-archive-articles--black a:hover:not(:disabled) figure:after, .c-archive-articles--wide a:hover:not(:disabled) figure:after {
  opacity: 1;
  transition-duration: 0.4s;
}

.c-archive-articles a:before, .c-archive-articles--black a:before, .c-archive-articles--wide a:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 100%;
  transform: translate(-50%, 0) scaleY(0);
  transform-origin: center bottom;
  width: .2rem;
  height: 100%;
  background: var(--base-border-color);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-archive-articles a:after, .c-archive-articles--black a:after, .c-archive-articles--wide a:after {
  content: '';
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  transform: translate(0, -50%) scaleX(0);
  transform-origin: right center;
  width: 100%;
  height: .2rem;
  background: var(--base-border-color);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-archive-articles figure, .c-archive-articles--black figure, .c-archive-articles--wide figure {
  margin-bottom: 0;
}

.c-archive-articles figure:before, .c-archive-articles--black figure:before, .c-archive-articles--wide figure:before {
  opacity: 0;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  width: .8rem;
  height: .8rem;
  border-radius: 50%;
  background: var(--base-border-color);
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-archive-articles figure:after, .c-archive-articles--black figure:after, .c-archive-articles--wide figure:after {
  opacity: 0;
  content: '';
  display: block;
  position: absolute;
  top: 100%;
  left: 100%;
  transform: translate(-50%, -50%);
  width: .8rem;
  height: .8rem;
  border-radius: 50%;
  background: var(--base-border-color);
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-archive-articles figure img, .c-archive-articles--black figure img, .c-archive-articles--wide figure img {
  object-fit: cover;
  width: 100%;
  height: 56.03358974vw;
}

@media screen and (min-width: 600px) {
  .c-archive-articles figure img, .c-archive-articles--black figure img, .c-archive-articles--wide figure img {
    height: 21.72239583vw;
  }
}

@media screen and (min-width: 1024px) {
  .c-archive-articles figure img, .c-archive-articles--black figure img, .c-archive-articles--wide figure img {
    height: 19.51220703vw;
    max-height: 20rem;
  }
}

@media screen and (max-width: 599px) {
  .c-archive-articles div, .c-archive-articles--black div, .c-archive-articles--wide div {
    padding: 2rem;
  }
}

.c-archive-articles p:nth-of-type(1), .c-archive-articles--black p:nth-of-type(1), .c-archive-articles--wide p:nth-of-type(1) {
  position: relative;
}

.c-archive-articles p:nth-of-type(1):after, .c-archive-articles--black p:nth-of-type(1):after, .c-archive-articles--wide p:nth-of-type(1):after {
  content: '';
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: .1rem;
  background-image: repeating-linear-gradient(to right, var(--black), var(--black) 0.2rem, transparent 0.2rem, transparent 0.8rem);
  background-position: center;
  background-repeat: repeat-x;
  background-size: 100% .1rem;
}

@media screen and (max-width: 599px) {
  .c-archive-articles p:nth-of-type(2), .c-archive-articles--black p:nth-of-type(2), .c-archive-articles--wide p:nth-of-type(2) {
    grid-template-columns: none;
  }
}

@media screen and (max-width: 599px) {
  .c-archive-articles p:nth-of-type(2) span:nth-of-type(2), .c-archive-articles--black p:nth-of-type(2) span:nth-of-type(2), .c-archive-articles--wide p:nth-of-type(2) span:nth-of-type(2) {
    line-height: 1.4;
  }
}

.c-archive-articles h2, .c-archive-articles--black h2, .c-archive-articles--wide h2, .c-archive-articles h3, .c-archive-articles--black h3, .c-archive-articles--wide h3, .c-archive-articles h4, .c-archive-articles--black h4, .c-archive-articles--wide h4 {
  margin-bottom: .8rem;
  font-size: 1.5rem;
  line-height: 1.55555555;
}

@media screen and (min-width: 1024px) {
  .c-archive-articles h2, .c-archive-articles--black h2, .c-archive-articles--wide h2, .c-archive-articles h3, .c-archive-articles--black h3, .c-archive-articles--wide h3, .c-archive-articles h4, .c-archive-articles--black h4, .c-archive-articles--wide h4 {
    margin-bottom: 1.6rem;
    font-size: 1.8rem;
  }
}

.c-archive-articles .date-wrap, .c-archive-articles--black .date-wrap, .c-archive-articles--wide .date-wrap {
  position: relative;
  margin-top: 1.2rem;
  padding-top: .8rem;
}

@media screen and (min-width: 1024px) {
  .c-archive-articles .date-wrap, .c-archive-articles--black .date-wrap, .c-archive-articles--wide .date-wrap {
    margin-top: 1.4rem;
    padding-top: 1rem;
  }
}

.c-archive-articles .date-wrap:before, .c-archive-articles--black .date-wrap:before, .c-archive-articles--wide .date-wrap:before {
  content: '';
  display: block;
  position: absolute;
  top: 0%;
  left: 0;
  transform: translate(0, -50%);
  width: 2rem;
  height: .1rem;
  background: var(--base-border-color);
}

.c-archive-articles--black a {
  background: #424242;
}

.c-archive-articles--black p:nth-of-type(1):after {
  background-image: repeating-linear-gradient(to right, var(--white), var(--white) 0.2rem, transparent 0.2rem, transparent 0.8rem);
}

.c-archive-articles--black p:nth-of-type(1) span {
  color: var(--white);
}

.c-archive-articles--black h2, .c-archive-articles--black h3, .c-archive-articles--black h4 {
  color: var(--white);
}

@media screen and (min-width: 600px) {
  .c-archive-articles--wide figure img {
    height: 21.72239583vw;
  }
}

@media screen and (min-width: 1024px) {
  .c-archive-articles--wide figure img {
    height: 20.09658203vw;
  }
}

@media screen and (min-width: 1200px) {
  .c-archive-articles--wide figure img {
    height: 15.80445312vw;
  }
}

@media screen and (min-width: 1366px) {
  .c-archive-articles--wide figure img {
    height: 16.38162518vw;
    max-height: 22.4773rem;
  }
}

@media screen and (min-width: 1920px) {
  .c-archive-articles--wide figure img {
    height: 27.4727rem;
    max-height: none;
  }
}

@media screen and (min-width: 600px) {
  .c-pick-up-items-articles {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-pick-up-items-articles article {
  width: 23rem;
}

@media screen and (min-width: 1024px) {
  .c-pick-up-items-articles article {
    width: 21rem;
  }
}

.c-pick-up-items-articles a:active:not(:disabled) img, .c-pick-up-items-articles a:hover:not(:disabled) img {
  transform: scale(1.1);
  transition-duration: .4s;
}

.c-pick-up-items-articles figure {
  overflow: hidden;
  margin-bottom: .8rem;
}

.c-pick-up-items-articles img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.c-pick-up-items-articles h3 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.66666666;
}

@media screen and (min-width: 1024px) {
  .c-pick-up-items-articles h3 {
    font-size: 1.3rem;
  }
}

.c-swiper-button-wrap {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: space-between;
}

@media screen and (max-width: 1199px) {
  .c-swiper-button-wrap {
    grid-row: 3 / 4;
    grid-column: 1 / 3;
  }
}

.c-swiper-button-wrap div {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  transform: none;
  border: 0.1rem solid var(--base-border-color);
  border-radius: 50%;
  background: transparent;
}

.c-swiper-button-wrap div:after {
  background-image: url(../images/common/icon-arrow.svg);
}

/*------------------------------------------------------------
  index
------------------------------------------------------------*/
.s-index .a-mv {
  position: relative;
}

.s-index .a-mv .swiper {
  overflow: visible;
}

.s-index .a-mv .swiper-slide {
  width: 100% !important;
}

.s-index .a-mv .swiper-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 1200px) {
  .s-index .a-mv .swiper-slide img {
    max-height: 100svh;
  }
}

.s-index .a-mv .swiper-pagination {
  bottom: -3.6rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv .swiper-pagination {
    bottom: -5rem;
  }
}

.s-index .a-mv h1 {
  display: inline;
  position: absolute;
  bottom: 6%;
  left: 6%;
  z-index: 1;
  margin: 0;
  color: var(--white);
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.76923076;
  letter-spacing: .05em;
  white-space: nowrap;
}

@media screen and (min-width: 600px) {
  .s-index .a-mv h1 {
    left: 5%;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv h1 {
    bottom: 8%;
    left: 6%;
    font-size: 4rem;
  }
}

.s-index .a-mv h1 span {
  background: linear-gradient(to right, var(--white), var(--white)) left bottom/100% 0.1rem no-repeat;
}

.s-index .a-philosophy > div {
  display: grid;
  gap: 5rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-philosophy > div {
    grid-template-columns: repeat(2, auto);
    gap: 10rem;
    width: 74%;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-philosophy > div {
    width: 68%;
    gap: 14rem;
  }
}

@media screen and (min-width: 1200px) {
  .s-index .a-philosophy > div {
    width: 70%;
    max-width: 63.7rem;
  }
}

.s-index .a-philosophy h2 {
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .2em;
  white-space: nowrap;
  writing-mode: vertical-rl;
}

@media screen and (min-width: 1024px) {
  .s-index .a-philosophy h2 {
    font-size: 4.6rem;
    letter-spacing: .25em;
  }
}

.s-index .a-philosophy rt {
  margin-bottom: .6rem;
  margin-left: .2rem;
  font-size: 1.3rem;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .s-index .a-philosophy rt {
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
  }
}

.s-index .a-philosophy p {
  font-size: 1.5rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-philosophy p {
    font-size: 1.7rem;
  }
}

.s-index .a-philosophy p:has(+ p) {
  margin-bottom: 1.6rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-philosophy p:has(+ p) {
    margin-bottom: 3rem;
  }
}

.s-index .a-news {
  background: url(../images/common/bg-02.png) center top/39rem repeat;
}

.s-index .a-news > div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 0 5rem;
}

@media screen and (min-width: 1200px) {
  .s-index .a-news > div {
    align-items: center;
  }
}

@media screen and (max-width: 1199px) {
  .s-index .a-news > div > a {
    transform: translate(0, -1rem);
  }
}

@media screen and (min-width: 1200px) {
  .s-index .a-news > div > a {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    transform: translate(0, 0.6rem);
  }
}

@media screen and (min-width: 1200px) {
  .s-index .a-news h2 {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
  }
}

.s-index .a-news .swiper {
  height: 12.2094rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-news .swiper {
    height: 7.7297rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-news .swiper {
    height: 8.8688rem;
  }
}

@media screen and (max-width: 1199px) {
  .s-index .a-news .swiper {
    grid-row: 2 / 3;
    grid-column: 1 / 3;
  }
}

.s-index .a-news .swiper-slide {
  overflow: hidden;
}

.s-index .a-news .swiper-slide a {
  width: fit-content;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.s-index .a-works {
  display: grid;
}

@media screen and (max-width: 1199px) {
  .s-index .a-works {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

@media screen and (min-width: 1200px) {
  .s-index .a-works {
    grid-template-columns: none;
  }
}

@media screen and (max-width: 1199px) {
  .s-index .a-works > a {
    transform: translate(0, -1rem);
  }
}

@media screen and (min-width: 1200px) {
  .s-index .a-works > a {
    grid-row: 3 / 4;
    grid-column: 1 / 2;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 1200px) {
  .s-index .a-works h2 {
    gap: 0;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
}

@media screen and (max-width: 599px) {
  .s-index .a-works > div:nth-of-type(1) {
    overflow: visible;
    margin-bottom: 3rem;
  }
}

@media screen and (max-width: 1199px) {
  .s-index .a-works > div:nth-of-type(1) {
    grid-row: 2 / 3;
    grid-column: 1 / 3;
  }
}

@media screen and (min-width: 1200px) {
  .s-index .a-works > div:nth-of-type(1) {
    margin-bottom: 8rem;
  }
}

@media screen and (max-width: 599px) {
  .s-index .a-works .swiper-wrapper {
    padding-bottom: 4rem;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-works .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-works .swiper-wrapper {
    gap: 5rem 5rem;
  }
}

@media screen and (min-width: 1536px) {
  .s-index .a-works .swiper-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

@media screen and (max-width: 599px) {
  .s-index .a-works article {
    width: 28rem;
  }
}

@media screen and (max-width: 599px) {
  .s-index .a-works article:last-of-type {
    margin-right: 0;
  }
}

@media screen and (max-width: 599px) {
  .s-index .a-works article img {
    height: 48.80615384vw;
  }
}

@media screen and (min-width: 1536px) {
  .s-index .a-works article img {
    height: 16.31673177vw;
    max-height: none;
  }
}

@media screen and (min-width: 1920px) {
  .s-index .a-works article img {
    height: 15.815vw;
    max-height: 30.3641rem;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-works .swiper-scrollbar {
    display: none;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-works .swiper-button-wrap {
    display: none;
  }
}

.s-index .a-archive {
  background: var(--gray-black);
}

.s-index .a-archive > div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
}

@media screen and (max-width: 1199px) {
  .s-index .a-archive > div > a {
    transform: translate(0, -1rem);
  }
}

.s-index .a-archive > div > div {
  grid-row: 2 / 3;
  grid-column: 1 / 3;
}

@media screen and (min-width: 1200px) {
  .s-index .a-pick-up-blog-wrap {
    display: none;
  }
}

.s-index .a-pick-up-blog {
  position: relative;
}

@media screen and (min-width: 1200px) {
  .s-index .a-pick-up-blog {
    display: none;
  }
}

.s-index .a-pick-up-blog:before {
  content: '';
  display: block;
  position: absolute;
  top: 0%;
  left: 0%;
  width: calc(100% - 2rem);
  height: 100%;
  background: var(--light-beige);
}

@media screen and (min-width: 600px) {
  .s-index .a-pick-up-blog:before {
    width: calc(100% - 3rem);
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-pick-up-blog:before {
    width: calc(100% - 5rem);
  }
}

.s-index .a-pick-up-blog > * {
  position: relative;
}

.s-index .a-pick-up-blog .articles {
  width: 29rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 600px) {
  .s-index .a-pick-up-blog .articles {
    grid-template-columns: none;
    width: 33.9rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-pick-up-blog .articles {
    width: 43.7rem;
  }
}

.s-index .a-pick-up-blog .articles img {
  height: 18.85rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-pick-up-blog .articles img {
    height: 22.0344rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-pick-up-blog .articles img {
    height: 28.4047rem;
  }
}

.s-index .a-pick-up-items {
  position: relative;
}

@media screen and (min-width: 1200px) {
  .s-index .a-pick-up-items {
    display: none;
  }
}

.s-index .a-pick-up-items:before {
  content: '';
  display: block;
  position: absolute;
  top: 0%;
  right: 0%;
  width: calc(100% - 2rem);
  height: 100%;
  background: var(--light-beige);
}

@media screen and (min-width: 600px) {
  .s-index .a-pick-up-items:before {
    width: calc(100% - 3rem);
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-pick-up-items:before {
    width: calc(100% - 5rem);
  }
}

.s-index .a-pick-up-items > div {
  position: relative;
}

.s-index .a-pick-up-items > div > div:nth-of-type(1) {
  margin-left: 2rem;
  padding-right: 2rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-pick-up-items > div > div:nth-of-type(1) {
    margin-right: -3rem;
    margin-left: 3rem;
    padding-right: 3rem;
  }
}

@media screen and (max-width: 1023px) {
  .s-index .a-pick-up-items > div > div:nth-of-type(1) {
    margin-bottom: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-pick-up-items > div > div:nth-of-type(1) {
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
  }
}

.s-index .a-pick-up-items > div > div:nth-of-type(2) {
  margin-left: 2rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-pick-up-items > div > div:nth-of-type(2) {
    margin-left: 3rem;
  }
}

.s-index .a-pick-up-items .swiper-wrapper {
  display: flex;
  gap: 0;
  width: fit-content;
}

@media screen and (max-width: 1023px) {
  .s-index .a-pick-up-items .swiper-wrapper {
    padding-bottom: 4rem;
  }
}

.s-index .a-pick-up-items article:last-of-type {
  margin-right: 0 !important;
}

@media screen and (min-width: 1024px) {
  .s-index .a-pick-up-items article {
    width: 23rem;
  }
}

.s-index .a-pick-up-items .swiper-scrollbar {
  width: calc(100% - 2rem);
}

@media screen and (min-width: 600px) {
  .s-index .a-pick-up-items .swiper-scrollbar {
    width: calc(100% - 3rem);
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-pick-up-items .swiper-button-wrap {
    display: none;
  }
}

.s-index .a-partner {
  background: url(../images/common/bg-02.png) center top/39rem repeat;
}

@media screen and (min-width: 600px) {
  .s-index .a-partner > div {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

.s-index .a-partner .swiper {
  overflow: visible;
}

@media screen and (max-width: 599px) {
  .s-index .a-partner .swiper {
    margin-bottom: 3rem;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-partner .swiper {
    grid-row: 2 / 3;
    grid-column: 1 / 3;
  }
}

.s-index .a-partner .swiper-wrapper {
  padding-bottom: 4rem;
}

@media screen and (min-width: 1200px) {
  .s-index .a-partner .swiper-wrapper {
    padding-bottom: 3rem;
  }
}

.s-index .a-partner .swiper-wrapper article {
  position: relative;
  width: 21rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-partner .swiper-wrapper article {
    width: 28rem;
  }
}

.s-index .a-partner .swiper-wrapper article:last-of-type {
  margin-right: 0;
}

@media screen and (min-width: 1200px) {
  .s-index .a-partner .swiper-wrapper article:active:not(:disabled):after, .s-index .a-partner .swiper-wrapper article:hover:not(:disabled):after {
    opacity: 1;
    transition-duration: 0.25s;
  }
}

@media screen and (min-width: 1200px) {
  .s-index .a-partner .swiper-wrapper article:active:not(:disabled) > p, .s-index .a-partner .swiper-wrapper article:hover:not(:disabled) > p {
    opacity: 1;
    transition-duration: 0.25s;
  }
}

@media screen and (min-width: 1200px) {
  .s-index .a-partner .swiper-wrapper article:active:not(:disabled) div, .s-index .a-partner .swiper-wrapper article:hover:not(:disabled) div {
    opacity: 1;
    transition-duration: 0.25s;
  }
}

.s-index .a-partner .swiper-wrapper article:after {
  opacity: 0;
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.s-index .a-partner .swiper-wrapper article > p {
  display: none;
}

@media screen and (min-width: 1200px) {
  .s-index .a-partner .swiper-wrapper article > p {
    opacity: 0;
    display: grid;
    grid-template-columns: repeat(2, auto);
    align-items: center;
    gap: .4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    padding: .4rem .6rem;
    background: var(--white);
    line-height: 1;
    transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  }
}

.s-index .a-partner .swiper-wrapper article > p span {
  display: inline-block;
  transform: translate(0, 0.1rem);
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "League Spartan", "Zen Old Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.s-index .a-partner .swiper-wrapper article > p img {
  width: 1.2rem;
  height: auto;
}

@media screen and (min-width: 1200px) {
  .s-index .a-partner .swiper-wrapper div {
    opacity: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 0 2rem 1.6rem;
    transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  }
}

.s-index .a-partner .swiper-wrapper figure {
  margin-bottom: 1.4rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-partner .swiper-wrapper figure {
    margin-bottom: 1.6rem;
  }
}

@media screen and (min-width: 1200px) {
  .s-index .a-partner .swiper-wrapper figure {
    margin-bottom: 0;
  }
}

.s-index .a-partner .swiper-wrapper figure img {
  object-fit: cover;
  width: 100%;
  height: 66.00358974vw;
}

@media screen and (min-width: 600px) {
  .s-index .a-partner .swiper-wrapper figure img {
    height: 33.51744791vw;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-partner .swiper-wrapper figure img {
    height: 33.51748046vw;
    max-height: 34rem;
  }
}

.s-index .a-partner .swiper-wrapper h3 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
}

@media screen and (min-width: 1024px) {
  .s-index .a-partner .swiper-wrapper h3 {
    margin-bottom: 1.2rem;
  }
}

@media screen and (min-width: 1200px) {
  .s-index .a-partner .swiper-wrapper h3 {
    color: var(--white);
  }
}

.s-index .a-partner .swiper-wrapper h3 + p {
  color: var(--sub-text-color);
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.61538461;
}

@media screen and (min-width: 1200px) {
  .s-index .a-partner .swiper-wrapper h3 + p {
    color: var(--white);
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-partner .swiper-button-wrap {
    gap: 2rem;
    grid-row: 1 / 2;
    grid-column: 2 / 3;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-partner .swiper-button-wrap {
    transform: translate(0, 1rem);
  }
}

.s-index .a-partner .modal {
  gap: 2rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-partner .modal {
    grid-template-columns: 38.75% 53.75%;
    gap: 5%;
    justify-content: center;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-partner .modal {
    gap: 6%;
  }
}

@media screen and (min-width: 1200px) {
  .s-index .a-partner .modal {
    gap: 7.5%;
    max-width: 110rem;
  }
}

.s-index .a-partner .modal > div div:nth-of-type(1) {
  display: grid;
  grid-template-columns: repeat(3, auto);
  align-items: center;
  gap: 1rem;
  width: fit-content;
  margin-bottom: 3rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-partner .modal > div div:nth-of-type(1) {
    margin-bottom: 5rem;
  }
}

.s-index .a-partner .modal h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
}

@media screen and (min-width: 1024px) {
  .s-index .a-partner .modal h3 {
    margin-bottom: 1.2rem;
    font-size: 2.4rem;
  }
}

.s-index .a-partner .modal h3 + p {
  position: relative;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.61538461;
}

@media screen and (min-width: 1200px) {
  .s-index .a-partner .modal h3 + p {
    font-size: 1.4rem;
  }
}

.s-index .a-partner .modal h3 + p:has(> *) {
  margin-bottom: 2.4rem;
  padding-bottom: 2rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-partner .modal h3 + p:has(> *) {
    margin-bottom: 3.2rem;
    padding-bottom: 2.6rem;
  }
}

.s-index .a-partner .modal h3 + p:has(> *):after {
  content: '';
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  transform: translate(0, -50%);
  width: 2rem;
  height: .1rem;
  background: var(--black);
}

.s-index .a-partner .modal a {
  display: grid;
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.s-index .a-partner .modal a:active:not(:disabled), .s-index .a-partner .modal a:hover:not(:disabled) {
  opacity: .7;
  transition-duration: 0.25s;
}

.s-index .a-partner .modal a img {
  width: 1.6rem;
  height: auto;
}

.s-index .a-blog {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
}

@media screen and (max-width: 1199px) {
  .s-index .a-blog > a {
    transform: translate(0, -1rem);
  }
}

.s-index .a-blog > div {
  grid-row: 2 / 3;
  grid-column: 1 / 3;
}

/*------------------------------------------------------------
  philosophy
------------------------------------------------------------*/
.s-philosophy .a-philosophy {
  display: grid;
  align-items: start;
  gap: 6rem;
}

@media screen and (min-width: 600px) {
  .s-philosophy .a-philosophy {
    grid-template-columns: 20% 1fr;
    gap: 0;
  }
}

@media screen and (min-width: 1024px) {
  .s-philosophy .a-philosophy {
    grid-template-columns: 28% 1fr;
  }
}

.s-philosophy .a-philosophy h2 {
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .2em;
  white-space: nowrap;
  writing-mode: vertical-rl;
}

@media screen and (min-width: 600px) {
  .s-philosophy .a-philosophy h2 {
    margin-left: 0;
  }
}

@media screen and (min-width: 1024px) {
  .s-philosophy .a-philosophy h2 {
    transform: translate(-1rem, 0);
    margin-left: auto;
    font-size: 4.6rem;
    letter-spacing: .25em;
  }
}

@media screen and (min-width: 1366px) {
  .s-philosophy .a-philosophy h2 {
    transform: translate(-2rem, 0);
  }
}

.s-philosophy .a-philosophy rt {
  margin-bottom: .6rem;
  margin-left: .2rem;
  font-size: 1.3rem;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .s-philosophy .a-philosophy rt {
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-philosophy .a-lead {
    margin-top: -.4rem;
  }
}

.s-philosophy .a-harmony p:has(+ p) {
  margin-bottom: 1rem;
}

@media screen and (min-width: 1024px) {
  .s-philosophy .a-harmony p:has(+ p) {
    margin-bottom: 1.6rem;
  }
}

.s-philosophy .a-research > article:nth-of-type(2) div {
  padding-right: 2rem;
  padding-left: 2rem;
  background: var(--white);
}

@media screen and (min-width: 600px) {
  .s-philosophy .a-research > article:nth-of-type(2) div {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-philosophy .a-research > article:nth-of-type(2) div {
    padding-right: 5rem;
    padding-left: 5rem;
  }
}

.s-philosophy .a-research > article:nth-of-type(2) h4 {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-size: 1.6rem;
  font-weight: 400;
}

@media screen and (min-width: 1024px) {
  .s-philosophy .a-research > article:nth-of-type(2) h4 {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
    font-size: 2rem;
  }
}

.s-philosophy .a-research > article:nth-of-type(2) h4:after {
  content: '';
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 4rem);
  height: .1rem;
  background: var(--black);
}

@media screen and (min-width: 600px) {
  .s-philosophy .a-research > article:nth-of-type(2) h4:after {
    width: calc(100% + 6rem);
  }
}

@media screen and (min-width: 1024px) {
  .s-philosophy .a-research > article:nth-of-type(2) h4:after {
    width: calc(100% + 10rem);
  }
}

.s-philosophy .a-research > article:nth-of-type(2) section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media screen and (min-width: 1024px) {
  .s-philosophy .a-research > article:nth-of-type(2) section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.s-philosophy .a-research > article:nth-of-type(2) section + section {
  border-top: 0.1rem solid var(--beige);
}

.s-philosophy .a-research p:has(+ p) {
  margin-bottom: 1rem;
}

@media screen and (min-width: 1024px) {
  .s-philosophy .a-research p:has(+ p) {
    margin-bottom: 1.6rem;
  }
}

.s-philosophy .a-research p + img {
  display: block;
  width: 90%;
  max-width: 40rem;
  margin-right: auto;
  margin-left: auto;
}

.s-philosophy .a-research h5 {
  display: grid;
  gap: .8rem;
  margin-bottom: 1rem;
}

@media screen and (min-width: 1024px) {
  .s-philosophy .a-research h5 {
    gap: 1.4rem;
    margin-bottom: 1.4rem;
  }
}

.s-philosophy .a-research h5 span:nth-of-type(1) {
  width: fit-content;
  padding: .2rem .6rem;
  background: var(--black);
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1;
}

@media screen and (min-width: 1024px) {
  .s-philosophy .a-research h5 span:nth-of-type(1) {
    padding: .4rem 1rem;
    font-size: 1.5rem;
  }
}

.s-philosophy .a-research h5 span:nth-of-type(2) {
  font-size: 1.45rem;
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.76470588;
}

@media screen and (min-width: 1024px) {
  .s-philosophy .a-research h5 span:nth-of-type(2) {
    font-size: 1.7rem;
  }
}

/*------------------------------------------------------------
  works
------------------------------------------------------------*/
.s-works-detail .a-detail > P {
  margin-bottom: .4rem;
}

@media screen and (min-width: 1024px) {
  .s-works-detail .a-detail > P {
    margin-bottom: .8rem;
  }
}

.s-works-detail .a-detail .swiper--works-wrap {
  position: relative;
}

.s-works-detail .a-detail .swiper--works {
  margin-bottom: 1.2rem;
}

@media screen and (min-width: 1024px) {
  .s-works-detail .a-detail .swiper--works {
    margin-bottom: 2rem;
  }
}

.s-works-detail .a-detail .swiper--works figure {
  margin-bottom: 0;
}

.s-works-detail .a-detail .swiper--works img {
  object-fit: cover;
  width: 100%;
  height: 61.00974358vw;
}

@media screen and (min-width: 600px) {
  .s-works-detail .a-detail .swiper--works img {
    height: 53.11080729vw;
  }
}

@media screen and (min-width: 1024px) {
  .s-works-detail .a-detail .swiper--works img {
    height: 59.74960937vw;
    max-height: 61.1836rem;
  }
}

.s-works-detail .a-detail .swiper--works-thumbnails .swiper-slide {
  opacity: .4;
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  border: .2rem solid transparent;
  cursor: pointer;
}

.s-works-detail .a-detail .swiper--works-thumbnails .swiper-slide:active:not(:disabled), .s-works-detail .a-detail .swiper--works-thumbnails .swiper-slide:hover:not(:disabled) {
  opacity: 1;
  transition-duration: 0.25s;
}

.s-works-detail .a-detail .swiper--works-thumbnails .swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--black);
}

.s-works-detail .a-detail .swiper--works-thumbnails figure {
  margin-bottom: 0;
}

.s-works-detail .a-detail .swiper--works-thumbnails img {
  object-fit: cover;
  width: 100%;
  height: 16.23410256vw;
}

@media screen and (min-width: 600px) {
  .s-works-detail .a-detail .swiper--works-thumbnails img {
    height: 11.17252604vw;
  }
}

@media screen and (min-width: 1024px) {
  .s-works-detail .a-detail .swiper--works-thumbnails img {
    height: 12.5984375vw;
    max-height: 12.9008rem;
  }
}

.s-works-detail .a-detail table {
  width: 100%;
}

@media screen and (min-width: 600px) {
  .s-works-detail .a-detail tr:nth-of-type(1) th, .s-works-detail .a-detail tr:nth-of-type(1) td {
    border-top: 0.1rem solid var(--base-border-color);
  }
}

@media screen and (max-width: 599px) {
  .s-works-detail .a-detail tr:nth-of-type(1) th {
    border-top: 0.1rem solid var(--base-border-color);
  }
}

@media screen and (max-width: 599px) {
  .s-works-detail .a-detail th, .s-works-detail .a-detail td {
    display: grid;
  }
}

@media screen and (min-width: 600px) {
  .s-works-detail .a-detail th, .s-works-detail .a-detail td {
    height: 9.9rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: 0.1rem solid var(--base-border-color);
  }
}

@media screen and (min-width: 1024px) {
  .s-works-detail .a-detail th, .s-works-detail .a-detail td {
    height: 12.7rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.s-works-detail .a-detail th {
  position: relative;
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

@media screen and (max-width: 599px) {
  .s-works-detail .a-detail th {
    padding-top: 2rem;
    padding-bottom: 1rem;
  }
}

@media screen and (min-width: 600px) {
  .s-works-detail .a-detail th {
    width: 9.2rem;
    padding-right: 1.2rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-works-detail .a-detail th {
    width: 17rem;
    padding-right: 4rem;
  }
}

.s-works-detail .a-detail th:after {
  content: '';
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: .1rem;
  background-image: repeating-linear-gradient(to right, var(--black), var(--black) 0.2rem, transparent 0.2rem, transparent 0.8rem);
  background-position: center;
  background-repeat: repeat-x;
  background-size: 100% .1rem;
}

@media screen and (min-width: 600px) {
  .s-works-detail .a-detail th:after {
    top: 50%;
    left: 100%;
    width: .1rem;
    height: calc(100% - 4rem);
    background-image: repeating-linear-gradient(to bottom, var(--black), var(--black) 0.2rem, transparent 0.2rem, transparent 0.8rem);
    background-position: center;
    background-repeat: repeat-y;
    background-size: .1rem 100%;
  }
}

@media screen and (min-width: 1024px) {
  .s-works-detail .a-detail th:after {
    height: calc(100% - 6rem);
  }
}

@media screen and (max-width: 599px) {
  .s-works-detail .a-detail td {
    padding-top: 1rem;
    padding-bottom: 2rem;
    border-bottom: 0.1rem solid var(--base-border-color);
  }
}

@media screen and (min-width: 600px) {
  .s-works-detail .a-detail td {
    padding-bottom: 2.2rem;
    padding-left: 1.2rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-works-detail .a-detail td {
    padding-bottom: 3.2rem;
    padding-left: 4rem;
  }
}

/*------------------------------------------------------------
  about
------------------------------------------------------------*/
.s-about .a-concept h2 {
  display: grid;
}

.s-about .a-concept p:has(+ p) {
  margin-bottom: 1rem;
}

@media screen and (min-width: 1024px) {
  .s-about .a-concept p:has(+ p) {
    margin-bottom: 1.6rem;
  }
}

.s-about .a-concept img {
  display: block;
  max-width: 47rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 599px) {
  .s-about .a-values tr:nth-of-type(1) th {
    border-top: 0.1rem solid var(--base-border-color);
  }
}

@media screen and (max-width: 599px) {
  .s-about .a-values th, .s-about .a-values td {
    display: grid;
  }
}

@media screen and (min-width: 600px) {
  .s-about .a-values th, .s-about .a-values td {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-about .a-values th, .s-about .a-values td {
    padding-top: 3.4rem;
    padding-bottom: 3.4rem;
  }
}

.s-about .a-values th {
  position: relative;
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

@media screen and (max-width: 599px) {
  .s-about .a-values th {
    padding-top: 2rem;
    padding-bottom: 1rem;
  }
}

@media screen and (min-width: 600px) {
  .s-about .a-values th {
    width: 30%;
    padding-right: 2rem;
    border-top: 0.1rem solid var(--base-border-color);
    border-bottom: 0.1rem solid var(--base-border-color);
  }
}

@media screen and (min-width: 1024px) {
  .s-about .a-values th {
    width: 34%;
    padding-right: 4rem;
  }
}

.s-about .a-values th:after {
  content: '';
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: .1rem;
  background-image: repeating-linear-gradient(to right, var(--black), var(--black) 0.2rem, transparent 0.2rem, transparent 0.8rem);
  background-position: center;
  background-repeat: repeat-X;
  background-size: 100% .1rem;
}

@media screen and (min-width: 600px) {
  .s-about .a-values th:after {
    top: 50%;
    left: 100%;
    width: .1rem;
    height: calc(100% - 4rem);
    background-image: repeating-linear-gradient(to bottom, var(--black), var(--black) 0.2rem, transparent 0.2rem, transparent 0.8rem);
    background-position: center;
    background-repeat: repeat-y;
    background-size: .1rem 100%;
  }
}

@media screen and (min-width: 1024px) {
  .s-about .a-values th:after {
    height: calc(100% - 6rem);
  }
}

.s-about .a-values td {
  border-bottom: 0.1rem solid var(--base-border-color);
}

@media screen and (max-width: 599px) {
  .s-about .a-values td {
    padding-top: 1rem;
    padding-bottom: 2rem;
  }
}

@media screen and (min-width: 600px) {
  .s-about .a-values td {
    padding-left: 2rem;
    border-top: 0.1rem solid var(--base-border-color);
  }
}

@media screen and (min-width: 1024px) {
  .s-about .a-values td {
    padding-left: 4rem;
  }
}

.s-about .a-business-field div {
  display: grid;
  gap: 3rem;
  width: fit-content;
  max-width: 60%;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 600px) {
  .s-about .a-business-field div {
    grid-template-columns: 31% 32% 31%;
    align-items: end;
    gap: 3%;
    max-width: 100%;
  }
}

@media screen and (min-width: 1024px) {
  .s-about .a-business-field div {
    grid-template-columns: 29% 30% 29%;
    gap: 6%;
    min-width: 76rem;
  }
}

.s-about .a-business-field div + p {
  padding: 2rem;
  background: var(--white);
  color: #646464;
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.78571428;
}

@media screen and (min-width: 1024px) {
  .s-about .a-business-field div + p {
    padding: 2rem 2.6rem;
    font-size: 1.4rem;
  }
}

.s-about .a-business-field div + p span {
  display: inline-block;
}

.s-about .a-about-katsunosuke-honda {
  background: var(--gray-black);
  color: var(--white);
}

.s-about .a-about-katsunosuke-honda article {
  display: grid;
  gap: 3rem;
}

@media screen and (min-width: 600px) {
  .s-about .a-about-katsunosuke-honda article {
    grid-template-columns: 40% 1fr;
    gap: 10%;
  }
}

@media screen and (min-width: 1024px) {
  .s-about .a-about-katsunosuke-honda article {
    grid-template-columns: 35rem 1fr;
    gap: 8rem;
  }
}

.s-about .a-about-katsunosuke-honda article p:nth-of-type(1) {
  font-size: 1.35rem;
  font-weight: 500;
  font-family: "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
}

@media screen and (min-width: 1024px) {
  .s-about .a-about-katsunosuke-honda article p:nth-of-type(1) {
    font-size: 1.5rem;
  }
}

.s-about .a-about-katsunosuke-honda article h3 {
  display: grid;
  line-height: 1.6;
}

.s-about .a-about-katsunosuke-honda article h3 span:nth-of-type(1) {
  font-size: 2.3rem;
  font-weight: 400;
}

@media screen and (min-width: 1024px) {
  .s-about .a-about-katsunosuke-honda article h3 span:nth-of-type(1) {
    font-size: 3.4rem;
  }
}

.s-about .a-about-katsunosuke-honda article h3 span:nth-of-type(2) {
  font-size: 1.35rem;
  font-weight: 300;
  font-family: "League Spartan", "Zen Old Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

@media screen and (min-width: 1024px) {
  .s-about .a-about-katsunosuke-honda article h3 span:nth-of-type(2) {
    font-size: 1.5rem;
  }
}

.s-about .a-about-katsunosuke-honda article h3 + p {
  position: relative;
  margin-top: 2rem;
  padding-top: 2rem;
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.85714285;
}

@media screen and (min-width: 1024px) {
  .s-about .a-about-katsunosuke-honda article h3 + p {
    font-size: 1.4rem;
  }
}

.s-about .a-about-katsunosuke-honda article h3 + p:before {
  content: '';
  display: block;
  position: absolute;
  top: 0%;
  left: 0;
  transform: translate(0, -50%);
  width: 2rem;
  height: .1rem;
  background: var(--base-border-color);
}

.s-about .a-about-katsunosuke-honda section {
  padding: 0 2rem 2rem;
  background: #424242;
}

@media screen and (min-width: 600px) {
  .s-about .a-about-katsunosuke-honda section {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-about .a-about-katsunosuke-honda section {
    padding-bottom: 2.4rem;
    padding-right: 5rem;
    padding-left: 5rem;
  }
}

.s-about .a-about-katsunosuke-honda section h3 {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-size: 1.6rem;
  font-weight: 400;
}

@media screen and (min-width: 1024px) {
  .s-about .a-about-katsunosuke-honda section h3 {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
    font-size: 2rem;
  }
}

.s-about .a-about-katsunosuke-honda section h3:after {
  content: '';
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 4rem);
  height: .1rem;
  background: var(--base-border-color);
}

@media screen and (min-width: 600px) {
  .s-about .a-about-katsunosuke-honda section h3:after {
    width: calc(100% + 6rem);
  }
}

@media screen and (min-width: 1024px) {
  .s-about .a-about-katsunosuke-honda section h3:after {
    width: calc(100% + 10rem);
  }
}

.s-about .a-about-katsunosuke-honda section table {
  width: 100%;
  margin-top: 2rem;
}

@media screen and (min-width: 1024px) {
  .s-about .a-about-katsunosuke-honda section table {
    margin-top: 2.4rem;
  }
}

.s-about .a-about-katsunosuke-honda section tr:nth-of-type(1) th, .s-about .a-about-katsunosuke-honda section tr:nth-of-type(1) td {
  border-top: none;
}

@media screen and (max-width: 599px) {
  .s-about .a-about-katsunosuke-honda section th, .s-about .a-about-katsunosuke-honda section td {
    display: grid;
  }
}

@media screen and (min-width: 600px) {
  .s-about .a-about-katsunosuke-honda section th, .s-about .a-about-katsunosuke-honda section td {
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-top: 0.1rem solid var(--base-border-color);
  }
}

@media screen and (max-width: 599px) {
  .s-about .a-about-katsunosuke-honda section th {
    padding-top: 1.6rem;
    padding-bottom: .2rem;
    border-top: 0.1rem solid var(--base-border-color);
  }
}

@media screen and (min-width: 600px) {
  .s-about .a-about-katsunosuke-honda section th {
    width: 14rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-about .a-about-katsunosuke-honda section th {
    width: 16rem;
  }
}

@media screen and (max-width: 599px) {
  .s-about .a-about-katsunosuke-honda section td {
    padding-top: .2rem;
    padding-bottom: 1.6rem;
  }
}

/*------------------------------------------------------------
  archive
------------------------------------------------------------*/
/*------------------------------------------------------------
  news
------------------------------------------------------------*/
.s-detail .a-detail div:has(+ h1) {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0 3rem;
}

@media screen and (min-width: 600px) {
  .s-detail .a-detail div:has(+ h1) {
    grid-template-columns: auto auto 1fr;
  }
}

@media screen and (min-width: 1024px) {
  .s-detail .a-detail div:has(+ h1) {
    gap: 0 4rem;
  }
}

@media screen and (max-width: 599px) {
  .s-detail .a-detail div:has(+ h1) p:nth-of-type(1) {
    grid-template-columns: none;
    grid-row: 1 / 2;
    grid-column: 1 / 3;
  }
}

@media screen and (max-width: 599px) {
  .s-detail .a-detail div:has(+ h1) p:nth-of-type(1) span:nth-of-type(1) {
    margin-left: 0;
  }
}

@media screen and (max-width: 599px) {
  .s-detail .a-detail div:has(+ h1) p:nth-of-type(1) span:nth-of-type(2) {
    line-height: 1.4;
  }
}

.s-detail .a-detail div:has(+ h1) p:nth-of-type(2) {
  position: relative;
}

@media screen and (min-width: 600px) {
  .s-detail .a-detail div:has(+ h1) p:nth-of-type(2):before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: -1.6rem;
    transform: translate(-50%, -50%);
    width: .6rem;
    height: .1rem;
    background: var(--black);
  }
}

@media screen and (min-width: 1024px) {
  .s-detail .a-detail div:has(+ h1) p:nth-of-type(2):before {
    left: -2rem;
  }
}

.s-detail .a-detail div:has(+ h1) p:nth-of-type(3) {
  margin-left: auto;
}

@media screen and (max-width: 599px) {
  .s-detail .a-detail div:has(+ h1) p:nth-of-type(3) {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
  }
}

.s-detail .a-detail h1 {
  margin-top: 1rem;
  margin-bottom: 3rem;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.61538461;
}

@media screen and (min-width: 1024px) {
  .s-detail .a-detail h1 {
    margin-top: 2rem;
    margin-bottom: 7rem;
    font-size: 2.6rem;
  }
}

.s-detail .a-detail h1 + figure img,
.s-detail .a-detail h1 + img {
  display: block;
  width: 100%;
  margin-bottom: 4rem;
}

@media screen and (min-width: 1024px) {
  .s-detail .a-detail h1 + figure img,
  .s-detail .a-detail h1 + img {
    margin-bottom: 9rem;
  }
}

.s-detail .a-detail > section div {
  padding-top: 3.6rem;
  padding-bottom: 3.6rem;
  border-top: 0.1rem solid var(--base-border-color);
  border-bottom: 0.1rem solid var(--base-border-color);
}

@media screen and (min-width: 1024px) {
  .s-detail .a-detail > section div {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.s-detail .a-detail > section p {
  text-align: center;
}

.s-detail .a-detail > section p a {
  font-size: 1.25rem;
}

@media screen and (min-width: 1024px) {
  .s-detail .a-detail > section p a {
    font-size: 1.3rem;
  }
}

.s-detail .a-related-blog,
.s-detail .a-related-archive {
  position: relative;
}

.s-detail .a-related-blog:before,
.s-detail .a-related-archive:before {
  content: '';
  display: block;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: .1rem;
  background: var(--black);
}

.page-news-detail .a-detail h1 {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 0.1rem solid var(--base-border-color);
}

@media screen and (min-width: 1024px) {
  .page-news-detail .a-detail h1 {
    margin-bottom: 9rem;
    padding-bottom: 6rem;
  }
}

/*------------------------------------------------------------
  blog
------------------------------------------------------------*/
/*------------------------------------------------------------
  komedeiinoda
------------------------------------------------------------*/
.s-komedeiinoda .a-mv h1 {
  margin: 0;
}

.s-komedeiinoda .a-concept > div {
  display: grid;
  gap: 4rem;
}

@media screen and (min-width: 600px) {
  .s-komedeiinoda .a-concept > div {
    grid-template-columns: 10% 1fr;
    gap: 4%;
  }
}

@media screen and (min-width: 1024px) {
  .s-komedeiinoda .a-concept > div {
    gap: 6%;
  }
}

@media screen and (min-width: 1536px) {
  .s-komedeiinoda .a-concept > div {
    gap: 7%;
  }
}

.s-komedeiinoda .a-concept h2 {
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .2em;
  white-space: nowrap;
  writing-mode: vertical-rl;
}

@media screen and (min-width: 1024px) {
  .s-komedeiinoda .a-concept h2 {
    font-size: 4.6rem;
    letter-spacing: .25em;
  }
}

.s-komedeiinoda .a-concept h3 {
  transform: translate(-1rem, 0);
}

.s-komedeiinoda .a-concept h3 + div {
  display: grid;
  gap: 2rem;
}

@media screen and (min-width: 600px) {
  .s-komedeiinoda .a-concept h3 + div {
    grid-template-columns: 55% 1fr;
  }
}

@media screen and (min-width: 1024px) {
  .s-komedeiinoda .a-concept h3 + div {
    grid-template-columns: 52% 1fr;
    gap: 4%;
  }
}

@media screen and (min-width: 1200px) {
  .s-komedeiinoda .a-concept h3 + div {
    gap: 6%;
  }
}

@media screen and (min-width: 1536px) {
  .s-komedeiinoda .a-concept h3 + div {
    grid-template-columns: 50% 1fr;
    gap: 8%;
  }
}

@media screen and (max-width: 599px) {
  .s-komedeiinoda .a-concept figure {
    width: 26rem;
    margin-right: -2rem;
    margin-left: auto;
  }
}

.s-komedeiinoda .a-pride {
  display: grid;
  gap: 2rem;
}

@media screen and (min-width: 600px) {
  .s-komedeiinoda .a-pride {
    grid-template-columns: 1fr 60%;
    gap: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-komedeiinoda .a-pride {
    grid-template-columns: 1fr 58%;
    gap: 4%;
  }
}

@media screen and (min-width: 1366px) {
  .s-komedeiinoda .a-pride {
    gap: 6%;
  }
}

@media screen and (min-width: 1536px) {
  .s-komedeiinoda .a-pride {
    grid-template-columns: 1fr 54%;
    gap: 8%;
  }
}

@media screen and (min-width: 600px) {
  .s-komedeiinoda .a-pride div {
    margin-top: -.8rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-komedeiinoda .a-pride div {
    margin-top: -1.2rem;
  }
}

@media screen and (max-width: 599px) {
  .s-komedeiinoda .a-pride figure {
    width: 26rem;
    margin-left: -2rem;
  }
}

@media screen and (min-width: 600px) {
  .s-komedeiinoda .a-pride figure {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
  }
}

@media screen and (min-width: 600px) {
  .s-komedeiinoda .a-image figure {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 1366px) {
  .s-komedeiinoda .a-image figure {
    width: 100%;
  }
}

.s-komedeiinoda .a-pillar section {
  background: var(--white);
}

@media screen and (min-width: 600px) {
  .s-komedeiinoda .a-pillar section:not(:nth-of-type(1)) > div > div div {
    grid-template-columns: 1fr 42.5%;
    gap: 3%;
  }
}

@media screen and (min-width: 1024px) {
  .s-komedeiinoda .a-pillar section:not(:nth-of-type(1)) > div > div div {
    gap: 4%;
  }
}

@media screen and (min-width: 600px) {
  .s-komedeiinoda .a-pillar section:nth-of-type(2) > div > div div {
    grid-template-columns: 1fr 32.5%;
  }
}

.s-komedeiinoda .a-pillar section > div > div div {
  display: grid;
  gap: 1.2rem;
  position: relative;
  padding: 1.2rem 2rem 2rem;
}

@media screen and (min-width: 600px) {
  .s-komedeiinoda .a-pillar section > div > div div {
    padding-top: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-komedeiinoda .a-pillar section > div > div div {
    gap: 2.6rem;
    padding: 3rem 5rem 5rem;
  }
}

.s-komedeiinoda .a-pillar section > div > div div:before {
  content: '';
  display: block;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 4rem);
  height: .1rem;
  background: var(--beige);
}

@media screen and (min-width: 1024px) {
  .s-komedeiinoda .a-pillar section > div > div div:before {
    width: calc(100% - 10rem);
  }
}

.s-komedeiinoda .a-pillar h3 {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  height: 6rem;
  padding-right: 2rem;
  padding-left: 2rem;
}

@media screen and (min-width: 1024px) {
  .s-komedeiinoda .a-pillar h3 {
    gap: 1.6rem;
    height: 8rem;
    padding-right: 5rem;
    padding-left: 5rem;
  }
}

.s-komedeiinoda .a-pillar h3:active:not(:disabled) span:nth-of-type(2), .s-komedeiinoda .a-pillar h3:hover:not(:disabled) span:nth-of-type(2) {
  color: var(--sub-text-color);
  transition-duration: 0.4s;
}

.s-komedeiinoda .a-pillar span:nth-of-type(1) {
  display: inline-block;
  transform: translate(0, 0.1rem);
  width: 3rem;
  background: var(--black);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.5;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-komedeiinoda .a-pillar span:nth-of-type(1) {
    font-size: 1.5rem;
  }
}

.s-komedeiinoda .a-pillar span:nth-of-type(2) {
  font-size: 1.8rem;
  font-weight: 400;
  transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .s-komedeiinoda .a-pillar span:nth-of-type(2) {
    font-size: 2rem;
  }
}

.s-komedeiinoda .a-feature section {
  padding: 3rem 0;
  border-bottom: 0.1rem solid var(--base-border-color);
}

.s-komedeiinoda .a-feature section:nth-of-type(1) {
  border-top: 0.1rem solid var(--base-border-color);
}

@media screen and (min-width: 600px) {
  .s-komedeiinoda .a-feature section {
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 5.55555555%;
  }
}

@media screen and (min-width: 1024px) {
  .s-komedeiinoda .a-feature section {
    padding: 6rem 0;
  }
}

.s-komedeiinoda .a-feature section > p {
  padding: 1.2rem 1.4rem;
  background: var(--white);
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.8;
}

@media screen and (min-width: 600px) {
  .s-komedeiinoda .a-feature section > p {
    grid-row: 3 / 4;
    grid-column: 1 / 3;
  }
}

@media screen and (min-width: 1024px) {
  .s-komedeiinoda .a-feature section > p {
    padding: 1.6rem 2rem;
    font-size: 1.4rem;
  }
}

.s-komedeiinoda .a-feature h3 {
  display: grid;
}

@media screen and (max-width: 599px) {
  .s-komedeiinoda .a-feature h3 {
    place-items: center;
    text-align: center;
  }
}

@media screen and (min-width: 1024px) {
  .s-komedeiinoda .a-feature h3 span:nth-of-type(1) {
    margin-bottom: 1rem;
  }
}

.s-komedeiinoda .a-feature figure {
  margin-bottom: 1.2rem;
}

@media screen and (min-width: 600px) {
  .s-komedeiinoda .a-feature figure {
    grid-row: 1 / 3;
    grid-column: 2 / 3;
  }
}

@media screen and (min-width: 1024px) {
  .s-komedeiinoda .a-feature figure {
    margin-bottom: 2rem;
  }
}

.s-komedeiinoda .a-feature p + button,
.s-komedeiinoda .a-feature p + a {
  display: grid;
  grid-template-columns: repeat(2, auto);
  place-items: center;
  place-content: center;
  gap: 1rem;
  width: 100%;
  min-height: 4rem;
  padding: .4rem;
  border-radius: .4rem;
  background: var(--gold);
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 500;
  font-family: "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
  transition: background 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .s-komedeiinoda .a-feature p + button,
  .s-komedeiinoda .a-feature p + a {
    min-height: 4.4rem;
  }
}

.s-komedeiinoda .a-feature p + button:active:not(:disabled), .s-komedeiinoda .a-feature p + button:hover:not(:disabled),
.s-komedeiinoda .a-feature p + a:active:not(:disabled),
.s-komedeiinoda .a-feature p + a:hover:not(:disabled) {
  background: var(--gray-black);
  transition-duration: 0.4s;
}

.s-komedeiinoda .a-feature p + button img,
.s-komedeiinoda .a-feature p + a img {
  width: 1.6rem;
}

.s-komedeiinoda .modal {
  display: none;
  padding: 6.6rem 2rem;
  background: var(--white);
}

@media screen and (min-width: 600px) {
  .s-komedeiinoda .modal {
    width: 80%;
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-komedeiinoda .modal {
    width: 70%;
    padding: 14rem 5rem;
  }
}

@media screen and (min-width: 1200px) {
  .s-komedeiinoda .modal {
    padding: 14rem;
  }
}

@media screen and (min-width: 1366px) {
  .s-komedeiinoda .modal {
    max-width: 80rem;
  }
}

.s-komedeiinoda .a-creator article {
  display: grid;
  gap: 1.4rem;
  padding: 2rem;
  background: url(../images/common/bg-02.png) center top/39rem repeat;
}

@media screen and (min-width: 600px) {
  .s-komedeiinoda .a-creator article {
    grid-template-columns: 40% 1fr;
    gap: 4%;
    align-items: center;
  }
}

@media screen and (min-width: 1024px) {
  .s-komedeiinoda .a-creator article {
    gap: 6%;
    padding: 3rem;
  }
}

.s-komedeiinoda .a-creator article p:nth-of-type(1) {
  position: relative;
  margin-bottom: 1.6rem;
  font-size: 1.8rem;
  line-height: 1.66666666;
}

@media screen and (max-width: 599px) {
  .s-komedeiinoda .a-creator article p:nth-of-type(1) {
    text-align: center;
  }
}

@media screen and (min-width: 1024px) {
  .s-komedeiinoda .a-creator article p:nth-of-type(1) {
    font-size: 2rem;
    line-height: 1.75;
  }
}

.s-komedeiinoda .a-creator article p:nth-of-type(2) {
  font-weight: 500;
  font-family: "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

@media screen and (max-width: 599px) {
  .s-komedeiinoda .a-creator article p:nth-of-type(2) {
    text-align: center;
  }
}

.s-komedeiinoda .a-creator h3 {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.4;
}

@media screen and (max-width: 599px) {
  .s-komedeiinoda .a-creator h3 {
    text-align: center;
  }
}

@media screen and (min-width: 1024px) {
  .s-komedeiinoda .a-creator h3 {
    font-size: 2.4rem;
  }
}

.s-komedeiinoda .a-shop {
  background: var(--gray-black);
}

.s-komedeiinoda .a-shop > div > div {
  display: grid;
  gap: 3rem;
}

@media screen and (min-width: 600px) {
  .s-komedeiinoda .a-shop > div > div {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .s-komedeiinoda .a-shop > div > div {
    gap: 4rem;
  }
}

.s-komedeiinoda .a-shop > div > div + p {
  color: var(--white);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.76470588;
  text-align: center;
}

.s-komedeiinoda .a-shop article {
  padding: 0 2rem 2rem;
  background: #424242;
}

@media screen and (min-width: 1024px) {
  .s-komedeiinoda .a-shop article {
    padding: 0 3rem 3rem;
  }
}

.s-komedeiinoda .a-shop article > div:nth-of-type(1) {
  display: grid;
  place-items: center;
  height: 16rem;
}

.s-komedeiinoda .a-shop article > div:nth-of-type(1) img {
  object-fit: contain;
  width: 15rem;
  height: 10rem;
}

.s-komedeiinoda .a-shop article > div:nth-of-type(2) {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 1.8rem;
}

@media screen and (min-width: 1024px) {
  .s-komedeiinoda .a-shop article > div:nth-of-type(2) {
    margin-bottom: 2rem;
  }
}

.s-komedeiinoda .a-shop article > figure {
  margin-bottom: 2.2rem !important;
}

@media screen and (min-width: 1024px) {
  .s-komedeiinoda .a-shop article > figure {
    margin-bottom: 2.6rem !important;
  }
}

.s-komedeiinoda .a-shop article > p {
  color: var(--white);
  font-family: "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.s-komedeiinoda .a-shop h3 {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.2;
}

@media screen and (min-width: 1024px) {
  .s-komedeiinoda .a-shop h3 {
    font-size: 2rem;
  }
}

.s-komedeiinoda .a-shop a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  transform: translate(0, 0.1rem);
  width: 10rem;
  height: 2rem;
  padding-right: .6rem;
  padding-left: .6rem;
  background: var(--white);
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "League Spartan", "Zen Old Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1;
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.s-komedeiinoda .a-shop a:active:not(:disabled), .s-komedeiinoda .a-shop a:hover:not(:disabled) {
  opacity: .7;
  transition-duration: 0.25s;
}

.s-komedeiinoda .a-shop a span {
  display: inline-block;
  transform: translate(0, 0.1rem);
}

.s-komedeiinoda .a-shop a img {
  width: 1.2rem;
}

@media screen and (min-width: 600px) {
  .s-komedeiinoda .a-lineup > div {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

.s-komedeiinoda .a-lineup .swiper {
  overflow: visible;
}

@media screen and (max-width: 599px) {
  .s-komedeiinoda .a-lineup .swiper {
    margin-bottom: 3rem;
  }
}

@media screen and (min-width: 600px) {
  .s-komedeiinoda .a-lineup .swiper {
    grid-row: 2 / 3;
    grid-column: 1 / 3;
  }
}

.s-komedeiinoda .a-lineup .swiper-wrapper {
  padding-bottom: 4rem;
}

.s-komedeiinoda .a-lineup article {
  position: relative;
  width: 28rem;
}

.s-komedeiinoda .a-lineup article:last-of-type {
  margin-right: 0;
}

.s-komedeiinoda .a-lineup article:active:not(:disabled) img, .s-komedeiinoda .a-lineup article:hover:not(:disabled) img {
  transform: scale(1.1);
  transition-duration: .4s;
}

.s-komedeiinoda .a-lineup figure {
  overflow: hidden;
  margin-bottom: 1.4rem;
}

@media screen and (min-width: 1024px) {
  .s-komedeiinoda .a-lineup figure {
    margin-bottom: 1.6rem;
  }
}

.s-komedeiinoda .a-lineup img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.s-komedeiinoda .a-lineup h3 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.66666666;
}

@media screen and (min-width: 600px) {
  .s-komedeiinoda .a-lineup .swiper-button-wrap {
    gap: 2rem;
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    transform: translate(0, 1rem);
  }
}

@media screen and (min-width: 1024px) {
  .s-komedeiinoda .a-lineup .swiper-button-wrap {
    transform: translate(0, 2rem);
  }
}

.s-komedeiinoda .a-blog {
  position: relative;
}

.s-komedeiinoda .a-blog:before {
  content: '';
  display: block;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: .1rem;
  background: var(--black);
}

/*------------------------------------------------------------
  utility
------------------------------------------------------------*/
.u-dis-none {
  display: none !important;
}

@media screen and (max-width: 599px) {
  .u-sm-dis-none {
    display: none !important;
  }
}

@media screen and (min-width: 600px) {
  .u-md-dis-none {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-md-dis-none {
    display: revert !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-dis-none {
    display: none !important;
  }
}

.u-dis-grid {
  display: grid !important;
}

.u-dis-block {
  display: block !important;
}

.u-dis-ib {
  display: inline-block !important;
}

.u-gap-0 {
  gap: 0;
}

.u-of-hidden {
  overflow: hidden;
}

.u-pos-relative {
  position: relative;
}

.u-before-con-none:before {
  content: none !important;
}

.u-after-con-none:after {
  content: none !important;
}

.u-opa-0 {
  opacity: 0;
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mr-0 {
  margin-right: 0 !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-ml-0 {
  margin-left: 0 !important;
}

.u-mr-auto {
  margin-right: auto;
}

.u-ml-auto {
  margin-left: auto;
}

@media screen and (min-width: 600px) {
  .u-md-mt-0 {
    margin-top: 0 !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-mt-0 {
    margin-top: 0 !important;
  }
}

@media screen and (min-width: 600px) {
  .u-md-mr-0 {
    margin-right: 0 !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-mr-0 {
    margin-right: 0 !important;
  }
}

@media screen and (min-width: 600px) {
  .u-md-mb-0 {
    margin-bottom: 0 !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-mb-0 {
    margin-bottom: 0 !important;
  }
}

@media screen and (min-width: 600px) {
  .u-md-ml-0 {
    margin-left: 0 !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-ml-0 {
    margin-left: 0 !important;
  }
}

@media screen and (min-width: 600px) {
  .u-md-mr-auto {
    margin-right: auto;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-mr-auto {
    margin-right: auto;
  }
}

@media screen and (min-width: 600px) {
  .u-md-ml-auto {
    margin-left: auto;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-ml-auto {
    margin-left: auto;
  }
}

.u-mt-xxxs {
  margin-top: 0.5rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-xxxs {
    margin-top: 1rem !important;
  }
}

.u-mt-xxs {
  margin-top: 1rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-xxs {
    margin-top: 2rem !important;
  }
}

.u-mt-xs {
  margin-top: 2rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-xs {
    margin-top: 4rem !important;
  }
}

.u-mt-small {
  margin-top: 3rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-small {
    margin-top: 6rem !important;
  }
}

.u-mt-medium {
  margin-top: 4rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-medium {
    margin-top: 8rem !important;
  }
}

.u-mt-large {
  margin-top: 7rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-large {
    margin-top: 14rem !important;
  }
}

.u-mt-xl {
  margin-top: 9rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-xl {
    margin-top: 18rem !important;
  }
}

.u-mt-minus-xxxs {
  margin-top: -0.5rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-minus-xxxs {
    margin-top: -1rem !important;
  }
}

.u-mt-minus-xxs {
  margin-top: -1rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-minus-xxs {
    margin-top: -2rem !important;
  }
}

.u-mt-minus-xs {
  margin-top: -2rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-minus-xs {
    margin-top: -4rem !important;
  }
}

.u-mt-minus-small {
  margin-top: -3rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-minus-small {
    margin-top: -6rem !important;
  }
}

.u-mt-minus-medium {
  margin-top: -4rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-minus-medium {
    margin-top: -8rem !important;
  }
}

.u-mt-minus-large {
  margin-top: -7rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-minus-large {
    margin-top: -14rem !important;
  }
}

.u-mb-xxxs {
  margin-bottom: 0.5rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-xxxs {
    margin-bottom: 1rem !important;
  }
}

.u-mb-xxs {
  margin-bottom: 1rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-xxs {
    margin-bottom: 2rem !important;
  }
}

.u-mb-xs {
  margin-bottom: 2rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-xs {
    margin-bottom: 4rem !important;
  }
}

.u-mb-small {
  margin-bottom: 3rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-small {
    margin-bottom: 6rem !important;
  }
}

.u-mb-medium {
  margin-bottom: 4rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-medium {
    margin-bottom: 8rem !important;
  }
}

.u-mb-large {
  margin-bottom: 7rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-large {
    margin-bottom: 14rem !important;
  }
}

.u-mb-xl {
  margin-bottom: 9rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-xl {
    margin-bottom: 18rem !important;
  }
}

.u-mb-minus-xxxs {
  margin-bottom: -0.5rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-minus-xxxs {
    margin-bottom: -1rem !important;
  }
}

.u-mb-minus-xxs {
  margin-bottom: -1rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-minus-xxs {
    margin-bottom: -2rem !important;
  }
}

.u-mb-minus-xs {
  margin-bottom: -2rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-minus-xs {
    margin-bottom: -4rem !important;
  }
}

.u-mb-minus-small {
  margin-bottom: -3rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-minus-small {
    margin-bottom: -6rem !important;
  }
}

.u-mb-minus-medium {
  margin-bottom: -4rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-minus-medium {
    margin-bottom: -8rem !important;
  }
}

.u-mb-minus-large {
  margin-bottom: -7rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-minus-large {
    margin-bottom: -14rem !important;
  }
}

.u-pt-0 {
  padding-top: 0 !important;
}

.u-pr-0 {
  padding-right: 0 !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pl-0 {
  padding-left: 0 !important;
}

.u-pt-xxxs {
  padding-top: 0.5rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-xxxs {
    padding-top: 1rem !important;
  }
}

.u-pt-xxs {
  padding-top: 1rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-xxs {
    padding-top: 2rem !important;
  }
}

.u-pt-xs {
  padding-top: 2rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-xs {
    padding-top: 4rem !important;
  }
}

.u-pt-small {
  padding-top: 3rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-small {
    padding-top: 6rem !important;
  }
}

.u-pt-medium {
  padding-top: 4rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-medium {
    padding-top: 8rem !important;
  }
}

.u-pt-large {
  padding-top: 7rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-large {
    padding-top: 14rem !important;
  }
}

.u-pt-xl {
  padding-top: 9rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-xl {
    padding-top: 18rem !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-pt-0 {
    padding-top: 0 !important;
  }
}

.u-pb-xxxs {
  padding-bottom: 0.5rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-xxxs {
    padding-bottom: 1rem !important;
  }
}

.u-pb-xxs {
  padding-bottom: 1rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-xxs {
    padding-bottom: 2rem !important;
  }
}

.u-pb-xs {
  padding-bottom: 2rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-xs {
    padding-bottom: 4rem !important;
  }
}

.u-pb-small {
  padding-bottom: 3rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-small {
    padding-bottom: 6rem !important;
  }
}

.u-pb-medium {
  padding-bottom: 4rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-medium {
    padding-bottom: 8rem !important;
  }
}

.u-pb-large {
  padding-bottom: 7rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-large {
    padding-bottom: 14rem !important;
  }
}

.u-pb-xl {
  padding-bottom: 9rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-xl {
    padding-bottom: 18rem !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-pb-0 {
    padding-bottom: 0 !important;
  }
}

.u-br-xs {
  border-radius: .4rem;
}

@media screen and (min-width: 1024px) {
  .u-br-xs {
    border-radius: .8rem;
  }
}

.u-br-small {
  border-radius: .8rem;
}

@media screen and (min-width: 1024px) {
  .u-br-small {
    border-radius: 1.6rem;
  }
}

.u-br-medium {
  border-radius: 2rem;
}

@media screen and (min-width: 1024px) {
  .u-br-medium {
    border-radius: 4rem;
  }
}

.u-bg-white {
  background: var(--white);
}

.u-bg-black {
  background: var(--black);
}

.u-col-white {
  color: var(--white);
}

.u-col-gray {
  color: #555;
}

.u-col-black {
  color: var(--black);
}

.u-col-blue {
  color: var(--blue);
}

.u-col-green {
  color: var(--green);
}

.u-col-yellow {
  color: #EEBF18;
}

.u-col-red {
  color: #E63D5B;
}

.u-col-primary {
  color: var(--primary-color);
}

.u-col-secondary {
  color: var(--secondary-color);
}

.u-fs-0 {
  font-size: 0;
}

.u-fs-xs {
  font-size: .85714285em;
}

@media screen and (min-width: 1024px) {
  .u-fs-xs {
    font-size: .8125em;
  }
}

.u-fs-small {
  font-size: .92857142em;
}

@media screen and (min-width: 1024px) {
  .u-fs-small {
    font-size: .875em;
  }
}

.u-fs-medium {
  font-size: 1.07142857em;
}

@media screen and (min-width: 1024px) {
  .u-fs-medium {
    font-size: 1.125em;
  }
}

.u-fs-large {
  font-size: 1.14285714em;
}

@media screen and (min-width: 1024px) {
  .u-fs-large {
    font-size: 1.25em;
  }
}

.u-fw-100 {
  font-weight: 100;
}

.u-fw-200 {
  font-weight: 200;
}

.u-fw-300 {
  font-weight: 300;
}

.u-fw-400 {
  font-weight: 400;
}

.u-fw-500 {
  font-weight: 500;
}

.u-fw-600 {
  font-weight: 600;
}

.u-fw-700 {
  font-weight: 700;
}

.u-fw-800 {
  font-weight: 800;
}

.u-fw-900 {
  font-weight: 900;
}

.u-lh-xxs {
  line-height: .4;
}

.u-lh-xs {
  line-height: .8;
}

.u-lh-1 {
  line-height: 1;
}

.u-lh-small {
  line-height: 1.2;
}

.u-lh-medium {
  line-height: 1.6;
}

.u-lh-large {
  line-height: 2;
}

.u-lh-xl {
  line-height: 2.4;
}

.u-lh-xxl {
  line-height: 2.8;
}

.u-ls-minus-large {
  letter-spacing: -.12em;
}

.u-ls-minus-medium {
  letter-spacing: -.08em;
}

.u-ls-minus-small {
  letter-spacing: -.04em;
}

.u-ls-0 {
  letter-spacing: 0;
}

.u-ls-small {
  letter-spacing: .04em;
}

.u-ls-medium {
  letter-spacing: .08em;
}

.u-ls-large {
  letter-spacing: .12em;
}

.u-ls-xl {
  letter-spacing: .16em;
}

.u-ls-xxl {
  letter-spacing: .2em;
}

@media screen and (min-width: 600px) {
  .u-md-ls-0 {
    letter-spacing: 0;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-ls-0 {
    letter-spacing: 0;
  }
}

.u-ta-center {
  text-align: center !important;
}

@media screen and (max-width: 599px) {
  .u-sm-ta-center {
    text-align: center !important;
  }
}

@media screen and (min-width: 600px) {
  .u-md-ta-center {
    text-align: center !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-ta-center {
    text-align: center !important;
  }
}

.u-ta-right {
  text-align: right !important;
}

@media screen and (max-width: 599px) {
  .u-sm-ta-right {
    text-align: right !important;
  }
}

@media screen and (min-width: 600px) {
  .u-md-ta-right {
    text-align: right !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-ta-right {
    text-align: right !important;
  }
}

.u-ta-left {
  text-align: left !important;
}

@media screen and (max-width: 599px) {
  .u-sm-ta-left {
    text-align: left !important;
  }
}

@media screen and (min-width: 600px) {
  .u-md-ta-left {
    text-align: left !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-ta-left {
    text-align: left !important;
  }
}

.u-ws-nowrap {
  white-space: nowrap;
}

.u-pe-none {
  pointer-events: none !important;
}

/*# sourceMappingURL=style.css.map */