@charset "UTF-8";
.ly_cont {
  /*! kiso.css v1.2.4 | MIT License | https://github.com/tak-dcxi/kiso.css */
  /* ======================================================
  //  MARK: Universal
  // ====================================================== */
}
.ly_cont *,
.ly_cont ::before,
.ly_cont ::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;
}
.ly_cont {
  /* ======================================================
  //  MARK: Document and Body Elements
  // ====================================================== */
}
.ly_cont :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%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /*
  * Prevents layout shift caused by the appearance or disappearance of the scrollbar.
  * Starting with Chrome 145, specifying `scrollbar-gutter: stable` will cause vw to be calculated without considering the scrollbar, which will also prevent horizontal scrolling.
  */
  scrollbar-gutter: stable;
  /* Suppresses the tap highlight on iOS. */
  -webkit-tap-highlight-color: transparent;
}
.ly_cont :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;
}
.ly_cont {
  /* ======================================================
  // MARK: Sections
  // ------------------------------------------------------ */
}
.ly_cont :where(:is(h1, h2, h3, h4, h5, h6):lang(en)) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}
.ly_cont :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;
}
.ly_cont :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;
}
.ly_cont :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;
}
.ly_cont {
  /* ======================================================
  //  MARK: Grouping content
  // ====================================================== */
}
.ly_cont :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;
}
.ly_cont :where(blockquote, figure) {
  /* The `margin-inline` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline: unset;
}
.ly_cont :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;
}
.ly_cont :where(address:lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}
.ly_cont :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: "";
}
.ly_cont :where(dt) {
  /* It is common to display `<dt>` elements in bold, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}
.ly_cont :where(dd) {
  /* The `margin-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline-start: unset;
}
.ly_cont :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;
}
@media print {
  .ly_cont :where(pre) {
    /* Prevent text wrapping in print media. */
    text-wrap-mode: unset;
  }
}
.ly_cont {
  /* ======================================================
  //  MARK: Text-level semantics
  // ====================================================== */
}
.ly_cont :where(em:lang(ja)) {
  /* In Japanese, emphasis is commonly represented by bold text, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}
.ly_cont :where(:is(i, cite, em, dfn):lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}
.ly_cont :where(u, s, del, ins) {
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}
.ly_cont :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;
}
.ly_cont :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;
  text-decoration-inset: auto;
  cursor: help;
}
.ly_cont :where(time) {
  /* Set to `no-autospace` because date notations in typography do not include spaces. */
  text-autospace: no-autospace;
}
@media (forced-colors: active) {
  .ly_cont :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 {
  .ly_cont :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;
  }
}
.ly_cont {
  /* ======================================================
  //  MARK: Links
  // ====================================================== */
}
.ly_cont :where(a) {
  /*
  * The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance.
  * In Firefox on iOS, the user agent stylesheet’s text color is applied even when the text is not a link.
  * @see https://github.com/darkreader/darkreader/issues/9836
  */
  color: unset;
}
.ly_cont :where(a:-moz-any-link) {
  /*
  * 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;
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}
.ly_cont :where(a:any-link) {
  /*
  * 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;
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}
.ly_cont {
  /* ======================================================
  //  MARK: Embedded content
  // ====================================================== */
}
.ly_cont :where(img, svg, picture, video, audio, canvas, model, iframe, embed, object) {
  /* 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;
}
.ly_cont :where(img, svg, picture, video, canvas, model, iframe, embed, object) {
  /*
  * Automatically adjust block size based on content.
  * Exclude the <audio> element as it disappears when block-size is auto.
  * @see https://github.com/tak-dcxi/kiso.css/issues/5
  */
  block-size: auto;
}
.ly_cont :where(iframe) {
  /* The `border` specified in the UA stylesheet is often unnecessary, so it is reset. */
  border: unset;
}
.ly_cont {
  /* ======================================================
  //  MARK: Tabular data
  // ====================================================== */
}
.ly_cont :where(table) {
  /* Collapse borders for a more refined table design. */
  border-collapse: collapse;
}
.ly_cont :where(caption, th) {
  /* The `text-align` specified in the UA stylesheet is often unnecessary, so it is reset. */
  text-align: unset;
}
.ly_cont :where(caption:lang(en)) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}
.ly_cont {
  /* ======================================================
  //  MARK: Forms
  // ====================================================== */
}
.ly_cont :where(button, input, select, textarea),
.ly_cont ::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;
}
.ly_cont :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;
}
.ly_cont :where(input[type=file i]) {
  /* The `border` is often unnecessary, so it is reset here. */
  border: unset;
}
.ly_cont :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) {
  .ly_cont :where(input[type=search i]) {
    /* normalize the background color on iOS. */
    background-color: Canvas;
  }
}
.ly_cont :where(input:is([type=tel i],
[type=url i],
[type=email i],
[type=number i]):not(:-moz-placeholder)) {
  /*
  * 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;
}
.ly_cont :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;
}
.ly_cont :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;
}
.ly_cont :where(input:not([type=button i], [type=submit i], [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;
}
.ly_cont :where(button,
input:is([type=button i], [type=submit i], [type=reset i])),
.ly_cont ::file-selector-button {
  /* The `background-color` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  background-color: unset;
}
.ly_cont :where(button,
input:is([type=button i], [type=submit i], [type=reset i]),
[role=tab i],
[role=button i],
[role=option i]),
.ly_cont ::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;
}
.ly_cont :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]),
.ly_cont :where(:enabled)::file-selector-button {
  /* Indicate clickable elements with a pointer cursor. */
  cursor: pointer;
}
.ly_cont :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;
}
.ly_cont :where(legend) {
  /* The default `padding-inline` is often unnecessary, so it is reset. */
  padding-inline: unset;
}
.ly_cont :where(progress) {
  /* Resets the vertical alignment of the `<progress>` element to its initial value. */
  vertical-align: unset;
}
.ly_cont ::-moz-placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}
.ly_cont ::placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}
.ly_cont {
  /* ======================================================
  //  MARK: Interactive elements
  // ====================================================== */
}
.ly_cont :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;
}
.ly_cont :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;
}
.ly_cont :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;
}
.ly_cont :where(dialog:not([open], [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;
}
.ly_cont :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;
}
.ly_cont :where(dialog)::backdrop {
  /* Normalize the background color of the `::backdrop` element. */
  background-color: oklch(0% 0 0deg / 0.3);
}
.ly_cont :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;
}
.ly_cont {
  /* ======================================================
  //  MARK: Focus Styles
  // ====================================================== */
}
.ly_cont :where(:focus-visible) {
  /* Add space between the content and the focus outline. */
  outline-offset: 3px;
}
.ly_cont [tabindex="-1"]:focus {
  /* Prevent programmatically focused elements from displaying an outline unless they are naturally focusable. */
  outline: none !important;
}
.ly_cont {
  /* ======================================================
  //  MARK: Misc
  // ====================================================== */
}
.ly_cont :where(:disabled, [aria-disabled=true i]) {
  /* Display the default cursor on disabled elements to reflect their non-interactive state. */
  cursor: default;
}
.ly_cont [hidden]:not([hidden=until-found i]) {
  /* Ensure that elements intended to be hidden are not displayed, improving clarity and layout control. */
  display: none !important;
}

.ly_cont :where(h1, h2, h3, h4, h5, h6) {
  text-wrap: unset;
}
.ly_cont :where(img, svg, picture, video, canvas, model, audio, iframe, embed, object) {
  /* Prevents extra space from appearing around the element. */
  vertical-align: top;
}
.ly_cont :where(table) {
  border-spacing: 0;
}

:root {
  --negLeading: calc((1em - 1lh) / 2);
  --transEasing: ease-in-out;
  --transDur: 0.3s;
  --transCommons: var(--transDur) var(--transEasing);
  --designW: 1440;
  --designContW: 1100;
  --contentsWholeW: max(var(--htmlW), 1020px);
  --contW: min(90%, calc(var(--designContW) * 1px));
  --contSpace_hor: calc((var(--contentsWholeW) * 1px - var(--contW)) / 2);
  --headerH: 104px;
  --linkIconColor: currentColor;
  --color_txt: #333;
  --color_txt_link: var(--color_main);
  --color_main: #0046a0;
  --color_line_gray: #dedede;
  --lightGray: #f5f5f5;
  --color_bg: #F4F2EC;
  --ff_outfit: "Outfit", sans-serif;
  --ff_zen: "Zen Kaku Gothic New", sans-serif;
  --ff_mincho: "BIZ UDPMincho", serif;
  --color_gray: #677780;
  --color_line: #cbcbce;
}
@media screen and (max-width: 767px) {
  :root {
    --contentsWholeW: var(--htmlW);
    --designW: 375;
    --designContW: 335;
    --contW: calc(var(--designContW) / var(--designW) * var(--htmlW) * 1px);
    --headerH: 80px;
  }
}

:lang(en) {
  --negLeading: calc((1cap - 1lh) / 2);
}

@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint.is-right-scrollable {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-right-scrollable.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  box-sizing: border-box;
  width: 120px;
  height: 80px;
  border-radius: 5px;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  animation: scroll-hint-appear 1.2s linear;
  animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #FFF;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

/**
 * Layout
 */
.ly_cont {
  padding-top: var(--headerH);
}

/**
 * Container
 */
.ct_std {
  margin-inline: auto;
  width: var(--contW);
}
/**
 * Page
 */
.pg_exhibition2026 header.head_white .c_black {
  border: none;
}
.pg_exhibition2026 header.head_white form .search_text {
  text-align: left;
}

.pg_exhibition2026 main {
  background-color: var(--color_bg);
}

.un_main {
  padding-block: 140px 150px;
}
@media screen and (max-width: 767px) {
  .un_main {
    padding-block: 90px;
  }
}

.un_mv {
  display: grid;
  place-items: center start;
  width: 100%;
  aspect-ratio: 1440/662;
  background: url(../img/exhibition2026/mv_img_01.webp) center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .un_mv {
    aspect-ratio: 375/440;
    background-image: url(../img/exhibition2026/mv_img_01_sp.webp);
  }
}
.un_mv_heading {
  padding: 36px 60px;
  background: color-mix(in srgb, #fff 85%, transparent);
}
@media screen and (max-width: 767px) {
  .un_mv_heading {
    width: 96%;
    padding: 24px 20px;
  }
  .un_mv_heading img {
    width: 100%;
  }
}

.un_anchorArea {
  padding-block: 44px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .un_anchorArea {
    padding-block: 30px;
  }
}

.bl_anchorNav_list {
  display: flex;
}
@media not all and (max-width: 767px), print {
  .bl_anchorNav_list {
    flex-direction: row;
    justify-content: center;
    gap: 44px;
  }
}
@media screen and (max-width: 767px) {
  .bl_anchorNav_list {
    flex-direction: column;
    gap: 14px;
  }
}
@media not all and (max-width: 767px), print {
  .bl_anchorNav_item {
    flex: 1;
    max-width: 256px;
  }
}
.bl_anchorNav_item a {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  border-bottom: 1px solid var(--color_line);
  padding-bottom: 16px;
  text-decoration: none;
}
@media not all and (max-width: 767px), print {
  .bl_anchorNav_item a {
    height: 100%;
  }
}
.bl_anchorNav_item a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 24px;
  height: 1px;
  background-color: var(--color_gray);
}
@media screen and (max-width: 767px) {
  .bl_anchorNav_item a::after {
    width: 20px;
  }
}
.bl_anchorNav_txt {
  flex: 1;
  font-family: var(--ff_zen);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.3;
  color: var(--color_txt);
}
@media screen and (max-width: 767px) {
  .bl_anchorNav_txt {
    font-size: 0.875rem;
  }
}
.bl_anchorNav_icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 24px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--color_gray);
  color: #fff;
}
.bl_anchorNav_icon svg {
  width: 8px;
  height: 10px;
}
@media screen and (max-width: 767px) {
  .bl_anchorNav_icon {
    width: 20px;
  }
}

.bl_secHdg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-bottom: 50px;
  font-family: var(--ff_zen);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  color: var(--color_txt);
}
@media screen and (max-width: 767px) {
  .bl_secHdg {
    gap: 10px;
    padding-bottom: 40px;
  }
}
.bl_secHdg_main {
  font-size: 2.375rem;
  letter-spacing: 0.1em;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .bl_secHdg_main {
    font-size: 1.875rem;
  }
}
.bl_secHdg_sub {
  font-size: 1.25rem;
  letter-spacing: 0.14em;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .bl_secHdg_sub {
    font-size: 1rem;
  }
}
.bl_secHdg__wh {
  color: #fff;
}

.bl_exhibition {
  position: relative;
  border-bottom: 1px solid #BABABA;
  background: #2D3031;
}
@media not all and (max-width: 767px), print {
  .bl_exhibition {
    padding-block: 130px;
  }
}
@media screen and (max-width: 767px) {
  .bl_exhibition {
    padding-block: 90px;
  }
}
.bl_exhibition_img {
  width: 100%;
  overflow: hidden;
}
.bl_exhibition_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.bl_productsList {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.bl_productsItem {
  display: grid;
  background-color: #fff;
  padding: 50px;
}
@media screen and (max-width: 767px) {
  .bl_productsItem {
    padding: 24px;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
}
@media not all and (max-width: 767px), print {
  .bl_productsItem {
    grid-template-columns: 43.6% minmax(0, 1fr);
    gap: 48px;
    align-items: start;
  }
}
.bl_productsItem_mainImg {
  overflow: hidden;
  flex-shrink: 0;
}
@media not all and (max-width: 767px), print {
  .bl_productsItem_mainImg {
    width: 100%;
    aspect-ratio: 436/310;
  }
}
.bl_productsItem_mainImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.bl_productsItem_hd {
  position: relative;
  padding-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .bl_productsItem_hd {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
}
.bl_productsItem_hd::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: var(--color_gray);
}
@media screen and (max-width: 767px) {
  .bl_productsItem_hd::after {
    width: 30px;
  }
}
.bl_productsItem_caption {
  font-family: var(--ff_zen);
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--color_gray);
}
@media screen and (max-width: 767px) {
  .bl_productsItem_caption {
    font-size: 0.8125rem;
  }
}
.bl_productsItem_name {
  margin-top: 5px;
  font-family: var(--ff_zen);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--color_txt);
}
@media screen and (max-width: 767px) {
  .bl_productsItem_name {
    margin-top: 4px;
    font-size: 1.125rem;
  }
}
.bl_productsItem_bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .bl_productsItem_bullets {
    margin-top: 24px;
  }
}
.bl_productsItem_bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-family: var(--ff_zen);
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--color_txt);
}
@media screen and (max-width: 767px) {
  .bl_productsItem_bullets li {
    gap: 8px;
    font-size: 0.875rem;
  }
}
.bl_productsItem_bullets li::before {
  content: "";
  flex-shrink: 0;
  margin-top: 0.7em;
  width: 4px;
  aspect-ratio: 1;
  background-color: var(--color_gray);
  border-radius: 50%;
}
.bl_productsItem_sub {
  display: flex;
  align-items: flex-start;
  margin-top: 36px;
}
@media not all and (max-width: 767px), print {
  .bl_productsItem_sub {
    margin-top: 30px;
    gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .bl_productsItem_sub {
    flex-direction: column;
    margin-top: 30px;
  }
}
.bl_productsItem_subDivider {
  flex-shrink: 0;
  width: 1px;
  align-self: stretch;
  background-color: var(--color_line);
}
@media screen and (max-width: 767px) {
  .bl_productsItem_subDivider {
    display: none;
  }
}
.bl_productsItem_subItem {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .bl_productsItem_subItem {
    width: 100%;
    border-bottom: 1px solid var(--color_line);
  }
}
@media screen and (max-width: 767px) {
  .bl_productsItem_subItem ~ .bl_productsItem_subItem {
    margin-top: 24px;
  }
}
.bl_productsItem_subItem .bl_productsItem_catalogBtn {
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .bl_productsItem_subItem .bl_productsItem_catalogBtn {
    margin-top: 10px;
  }
}
.bl_productsItem_subImg {
  overflow: hidden;
  width: 100%;
}
@media not all and (max-width: 767px), print {
  .bl_productsItem_subImg {
    height: 147px;
  }
}
@media screen and (max-width: 767px) {
  .bl_productsItem_subImg {
    height: 170px;
  }
}
.bl_productsItem_subImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.bl_productsItem_subLabel {
  margin-top: 8px;
  font-family: var(--ff_zen);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--color_gray);
}
@media screen and (max-width: 767px) {
  .bl_productsItem_subLabel {
    font-size: 0.875rem;
  }
}
.bl_productsItem_catalogBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 40px;
  background-color: var(--color_gray);
  border: 1px solid var(--color_gray);
  color: #fff;
  font-family: var(--ff_zen);
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity var(--transCommons);
}
@media screen and (max-width: 767px) {
  .bl_productsItem_catalogBtn {
    font-size: 0.875rem;
  }
}
.bl_productsItem_catalogBtn:focus-visible {
  opacity: 0.7;
}
@media (any-hover: hover) {
  .bl_productsItem_catalogBtn:hover {
    opacity: 0.7;
  }
}
.bl_productsItem_catalogBtn_icon {
  flex-shrink: 0;
  width: 20px;
  height: 16px;
}
.bl_productsItem_foot {
  margin-top: 26px;
}
@media screen and (max-width: 767px) {
  .bl_productsItem_foot {
    margin-top: 24px;
    border-top: 1px solid var(--color_line);
    padding-top: 26px;
  }
}
.bl_productsItem_videoBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 56px;
  background-color: var(--color_gray);
  border: 1px solid var(--color_gray);
  color: #fff;
  font-family: var(--ff_zen);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .bl_productsItem_videoBtn {
    height: 50px;
    font-size: 0.9375rem;
  }
}
.bl_productsItem_videoBtn.is_disabled {
  opacity: 0.4;
  pointer-events: none;
}
.bl_productsItem_videoBtn_icon {
  flex-shrink: 0;
  width: 22px;
  height: 18px;
}
.bl_productsItem__noSub .bl_productsItem_btns {
  display: flex;
  margin-top: 36px;
}
@media not all and (max-width: 767px), print {
  .bl_productsItem__noSub .bl_productsItem_btns {
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .bl_productsItem__noSub .bl_productsItem_btns {
    margin-top: 30px;
    flex-direction: column;
    gap: 12px;
  }
}
@media not all and (max-width: 767px), print {
  .bl_productsItem__noSub .bl_productsItem_btns .bl_productsItem_catalogBtn,
  .bl_productsItem__noSub .bl_productsItem_btns .bl_productsItem_videoBtn {
    flex: 1;
    height: 56px;
  }
}
@media screen and (max-width: 767px) {
  .bl_productsItem__noSub .bl_productsItem_btns .bl_productsItem_catalogBtn,
  .bl_productsItem__noSub .bl_productsItem_btns .bl_productsItem_videoBtn {
    height: 50px;
  }
}
@media not all and (max-width: 767px), print {
  .bl_productsItem__noSub .bl_productsItem_body {
    justify-content: center;
  }
}

.bl_brandIntro {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color_line);
}
@media not all and (max-width: 767px), print {
  .bl_brandIntro {
    gap: 50px;
    margin-top: 100px;
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .bl_brandIntro {
    gap: 26px;
    margin-top: 50px;
    padding-top: 50px;
  }
}
.bl_brandIntro_lead {
  font-family: var(--ff_zen);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.9;
  letter-spacing: 0.05em;
  color: var(--color_txt);
}
@media not all and (max-width: 767px), print {
  .bl_brandIntro_lead {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .bl_brandIntro_lead {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .bl_brandIntro_lead br {
    display: none;
  }
}
.bl_brandIntro_cards {
  display: flex;
  gap: 20px;
}
@media not all and (max-width: 767px), print {
  .bl_brandIntro_cards {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .bl_brandIntro_cards {
    flex-direction: column;
  }
}
.bl_brandIntro_card {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  flex: 1;
  transition: opacity var(--transCommons);
}
@media not all and (max-width: 767px), print {
  .bl_brandIntro_card {
    height: 280px;
  }
}
@media screen and (max-width: 767px) {
  .bl_brandIntro_card {
    height: 171px;
  }
}
.bl_brandIntro_card:focus-visible {
  opacity: 0.7;
}
@media (any-hover: hover) {
  .bl_brandIntro_card:hover {
    opacity: 0.7;
  }
}
.bl_brandIntro_cardImg {
  width: 100%;
  height: 100%;
}
.bl_brandIntro_cardImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/**
 * Helper
 */
@media screen and (max-width: 767px) {
  .hp_pcOnly {
    display: none !important;
  }
}

@media not all and (max-width: 767px), print {
  .hp_spOnly {
    display: none !important;
  }
}

.hp_srOnly {
  position: absolute !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  clip: rect(0, 0, 0, 0) !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}

.hp_trimLeading::before, .hp_trimLeading::after {
  content: "";
  display: block;
}
.hp_trimLeading::before {
  margin-block-end: var(--negLeading);
}
.hp_trimLeading::after {
  margin-block-start: var(--negLeading);
}