@charset "UTF-8";
@property --root-font-size {
  syntax: "<length>";
  inherits: false;
  initial-value: 16px;
}
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}
:root {
  /* inner（sass変数を使用） */
  /* z-index */
  --z-index-header: 100;
  --z-index-modal: 200;
  --z-index-overlay: 900;
  /* color */
  --color-base: #fff;
  --color-text: #000;
  --color-white: #fff;
  --color-black: #000;
  --color-gray: #f0f0f0;
  --color-border: #aaaaaf;
  --color-accent: #408f95;
  --color-primary: #014099;
  --color-secondary: #00f;
  --color-orange: #de8430;
  /* font-family */
  --ff-base: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  --ff-en: "Poppins", sans-serif;
  --to-rem: calc(tan(atan2(1px, var(--root-font-size))) * 1rem);
  /* transition duration */
  --duration: 0.3s;
  /* header height */
  --header-height: 94px;
}
@media screen and (width < 1024px) {
  :root {
    --header-height: 56px;
  }
}

/*! kiso.css v1.2.4 | 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%;
  -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;
}

: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(: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;
}

: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;
}

@media print {
  :where(pre) {
    /* Prevent text wrapping in print media. */
    text-wrap-mode: unset;
  }
}
/* ======================================================
//  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):lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

: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;
}

: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;
  text-decoration-inset: auto;
  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) {
  /*
  * 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;
}

: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;
}

: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;
}

/* ======================================================
//  MARK: Embedded content
// ====================================================== */
: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;
}

: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;
}

: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: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;
}

/* ======================================================
//  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(:-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;
}
: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], [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;
}

: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;
}

::-moz-placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: 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], [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;
}

:where(h1, h2, h3, h4, h5, h6) {
  margin: 0;
}

:where(p) {
  margin: 0;
}

html {
  font-size: 100%;
}

body {
  color: var(--color-text);
  font-family: var(--ff-base);
  font-weight: 400;
}

a[href^=tel] {
  text-decoration: none;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  /* 強調をなくす */
  transition: opacity var(--duration) ease;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

img,
svg {
  vertical-align: middle;
}

picture {
  display: block;
}

video,
object {
  display: block;
  max-width: 100%;
  height: auto;
  border: none;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}

:where(:-moz-any-link,
button,
[type=button],
[type=reset],
[type=submit],
label[for],
select,
summary,
[role=tab],
[role=button]) {
  cursor: pointer;
}

:where(:any-link,
button,
[type=button],
[type=reset],
[type=submit],
label[for],
select,
summary,
[role=tab],
[role=button]) {
  cursor: pointer;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

:focus:not(:focus-visible) {
  outline: none;
}

input[type=text] {
  font-size: 1rem;
  /* = 16px */
}

input,
textarea,
select {
  font: inherit;
}

input[type=submit],
input[type=button],
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  outline: none;
}

button {
  margin: 0;
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

textarea {
  field-sizing: content;
}

.l-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: var(--z-index-header);
}

.l-inner {
  width: min(100%, 81.25rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: min(100%, 37.5rem);
    max-width: 37.5rem;
    padding-inline: 1.25rem;
  }
}

/**
 * 共通パンくずリスト（c-breadcrumb-common）
 *
 * 既存の .c-breadcrumb（UFB 事業サイト用）とは別系統。
 * 本サイトと同種の見た目（暗色テキスト・HOME 起点）。
 */
.c-breadcrumb-common {
  padding-block: 0.5rem 2.75rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb-common {
    padding-block: 0.625rem;
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media screen and (max-width: 767px) {
  .c-breadcrumb-common__inner {
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: 0;
    padding-inline: 1.25rem;
  }
}

.c-breadcrumb-common__list {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.c-breadcrumb-common__item {
  display: inline-flex;
  align-items: flex-start;
  max-width: 100%;
  color: var(--color-text, #333);
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb-common__item {
    font-size: 0.75rem;
  }
}
.c-breadcrumb-common__item:first-child {
  font-family: var(--ff-en);
}
.c-breadcrumb-common__item + .c-breadcrumb-common__item::before {
  content: "/";
  display: inline-block;
  margin: 0 0.875rem;
  flex-shrink: 0;
  color: #ccc;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb-common__item + .c-breadcrumb-common__item::before {
    margin: 0 0.625rem;
  }
}
.c-breadcrumb-common__item:not(:last-child) {
  white-space: nowrap;
}

.c-breadcrumb-common__link {
  min-width: 0;
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-breadcrumb-common__link:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 0.125rem;
  }
}

/**
 * パンくずリスト（c-breadcrumb）
 *
 * 構造:
 *   .c-breadcrumb（外枠）
 *   .c-breadcrumb__inner（l-inner）
 *   .c-breadcrumb__nav > .c-breadcrumb__list > .c-breadcrumb__item
 * 区切りは .c-breadcrumb__item + .c-breadcrumb__item::before で表示
 */
.c-breadcrumb {
  padding-block: 0.5rem 2.75rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    padding-block: 0.625rem;
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media screen and (max-width: 767px) {
  .c-breadcrumb__inner {
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: 0;
    padding-inline: 1.25rem;
  }
}

.c-breadcrumb__list {
  display: flex;
  align-items: flex-start;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-breadcrumb__item {
  display: inline-flex;
  align-items: flex-start;
  max-width: 100%;
  color: var(--color-text, #333);
  font-size: 0.875rem;
  font-weight: 500;
  /* 2番目以降の項目の前に矢印を表示 */
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__item {
    font-size: 0.75rem;
  }
}
.c-breadcrumb__item + .c-breadcrumb__item::before {
  content: "/";
  display: inline-block;
  margin: 0 0.875rem;
  flex-shrink: 0;
  color: #ccc;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__item + .c-breadcrumb__item::before {
    margin: 0 0.625rem;
  }
}
.c-breadcrumb__item:not(:last-child) {
  white-space: nowrap;
}

.c-breadcrumb__link {
  min-width: 0;
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-breadcrumb__link:hover {
    opacity: 0.7;
    text-decoration: underline;
  }
}

.c-button {
  position: relative;
  display: inline-flex;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
  min-width: 15rem;
  min-height: 3.5rem;
  padding: 0;
  border: 1px solid var(--color-white);
  border-radius: 0.25rem;
  background-color: var(--color-white);
  color: var(--color-black);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.45s ease;
}
@media screen and (max-width: 767px) {
  .c-button {
    min-width: 12.5rem;
    width: 100%;
    min-height: 3.25rem;
    font-size: 0.875rem;
    letter-spacing: 0;
  }
}
.c-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--color-black);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scaleX(0);
  transform-origin: left center;
}
@media (any-hover: hover) {
  .c-button:hover {
    opacity: 1;
    color: var(--color-white);
  }
  .c-button:hover::before {
    transform: scaleX(1);
  }
}

.c-button__text {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  padding: 0.25rem 3rem;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .c-button__text {
    padding: 0.25rem 2.5rem;
  }
}

.c-button__arrow {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3.5rem;
}

.c-button__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 2.5rem;
  background-color: currentcolor;
  opacity: 0.3;
  translate: 0 -50%;
}

.c-button__arrow-icon {
  width: 1.25rem;
  height: 0.625rem;
  background-color: currentcolor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23fff; %7D .cls-2 %7B fill: none; stroke: %23fff; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M15,0l5,5-5,5' /%3E%3Cpath class='cls-2' d='M0,5h18' /%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23fff; %7D .cls-2 %7B fill: none; stroke: %23fff; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M15,0l5,5-5,5' /%3E%3Cpath class='cls-2' d='M0,5h18' /%3E%3C/svg%3E%0A");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transition: translate var(--duration);
}

@media (any-hover: hover) {
  .c-button:hover .c-button__arrow-icon {
    translate: 0.5rem 0;
  }
}
.c-button[data-color=black] {
  border-color: var(--color-black);
  background-color: var(--color-black);
  color: var(--color-white);
}
.c-button[data-color=black]::before {
  background-color: var(--color-white);
}
@media (any-hover: hover) {
  .c-button[data-color=black]:hover {
    color: var(--color-black);
  }
}

.c-button--small .c-button__text {
  padding: 0.25rem 1.25rem;
}

.c-button--external .c-button__arrow-icon {
  width: 0.9375rem;
  height: 0.9375rem;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.85 14.85'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23000; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath d='M7.78,0h7.07v7.07' /%3E%3Cpath class='cls-1' d='M.71,14.14L13.44,1.41' /%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.85 14.85'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23000; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath d='M7.78,0h7.07v7.07' /%3E%3Cpath class='cls-1' d='M.71,14.14L13.44,1.41' /%3E%3C/svg%3E");
}

@media (any-hover: hover) {
  .c-button--external:hover .c-button__arrow-icon {
    translate: 0.25rem -0.25rem;
  }
}
.c-contact-cta {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-block: 7.4375rem 9rem;
  border-block-start: 1px solid #ececec;
}
@media screen and (max-width: 1023px) {
  .c-contact-cta {
    padding-block: 5rem 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .c-contact-cta {
    padding-block: 3.75rem 4.375rem;
  }
}

.c-contact-cta__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 81.25rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .c-contact-cta__inner {
    padding-inline: 1.25rem;
  }
}

.c-contact-cta__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  min-height: 20rem;
  padding: 2.5rem 2.5rem 2rem;
  border: 2px solid var(--color-primary);
  border-radius: 0.75rem;
  background-color: var(--color-white);
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.45s ease;
}
@media screen and (max-width: 767px) {
  .c-contact-cta__button {
    min-height: 15rem;
    padding: 2.5rem 1.25rem 1.5rem;
  }
}
.c-contact-cta__button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--color-primary);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateX(0);
}
@media (any-hover: hover) {
  .c-contact-cta__button:hover {
    opacity: 1;
    color: var(--color-primary);
  }
  .c-contact-cta__button:hover::before {
    transform: translateX(100%);
  }
}

.c-contact-cta__en {
  position: absolute;
  top: 4.5rem;
  left: 5rem;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--ff-en);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.77;
}
@media screen and (max-width: 767px) {
  .c-contact-cta__en {
    top: 3.25rem;
    left: 1.125rem;
    gap: 1rem;
    font-size: 0.9375rem;
  }
}
.c-contact-cta__en::before {
  content: "";
  flex-shrink: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: currentcolor;
}
@media screen and (max-width: 767px) {
  .c-contact-cta__en::before {
    width: 0.375rem;
    height: 0.375rem;
  }
}

.c-contact-cta__ja {
  position: relative;
  z-index: 1;
  color: inherit;
  font-size: clamp(2rem, 1.67rem + 0.69vw, 2.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .c-contact-cta__ja {
    font-size: 2rem;
  }
}

.c-contact-cta__marquee {
  position: absolute;
  bottom: clamp(0.5rem, -0.17rem + 1.39vw, 1.5rem);
  left: 0;
  z-index: 0;
  width: 100%;
  pointer-events: none;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-contact-cta__marquee {
    bottom: 0.75rem;
  }
}

.c-contact-cta__marquee-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: c-contact-cta-marquee 60s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .c-contact-cta__marquee-track {
    animation: none;
  }
}

.c-contact-cta__marquee-text {
  flex-shrink: 0;
  padding-inline-end: 0.4em;
  color: #f0f0f0;
  font-family: var(--ff-en);
  font-size: clamp(4rem, -1.67rem + 11.81vw, 12.5rem);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-contact-cta__marquee-text {
    font-size: 6.25rem;
  }
}

@keyframes c-contact-cta-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/**
 * ブロックエディタ本文の共通スタイル
 * フロント・他テーマでも .c-entry-content を付ければ同じ見た目になる
 */
.c-entry-content > *:first-child {
  margin-block-start: 0;
}
.c-entry-content h1,
.c-entry-content h2,
.c-entry-content h3,
.c-entry-content h4,
.c-entry-content h5,
.c-entry-content h6 {
  color: var(--color-text);
  font-weight: 700;
  line-height: 1.6;
  font-feature-settings: "palt";
}
.c-entry-content h1 {
  margin-block-start: 2.5rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-entry-content h1 {
    margin-block-start: 2rem;
    font-size: 1.375rem;
  }
}
.c-entry-content h2 {
  position: relative;
  margin-block-start: 2.5rem;
  padding-block-end: 0.75rem;
  border-block-end: 1px solid var(--color-border);
  font-size: 1.375rem;
}
@media screen and (max-width: 767px) {
  .c-entry-content h2 {
    margin-block-start: 2rem;
    padding-block-end: 0.625rem;
    font-size: 1.25rem;
  }
}
.c-entry-content h2::after {
  content: "";
  position: absolute;
  inset-block-end: -1px;
  inset-inline-start: 0;
  width: 4rem;
  height: 2px;
  background-color: var(--color-primary);
}
.c-entry-content h3 {
  margin-block-start: 2rem;
  padding-inline-start: 0.875rem;
  border-inline-start: 3px solid var(--color-primary);
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-entry-content h3 {
    margin-block-start: 1.75rem;
    padding-inline-start: 0.75rem;
    font-size: 1.125rem;
  }
}
.c-entry-content h4 {
  margin-block-start: 1.75rem;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .c-entry-content h4 {
    margin-block-start: 1.5rem;
    font-size: 1rem;
  }
}
.c-entry-content h5 {
  margin-block-start: 1.5rem;
  font-size: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .c-entry-content h5 {
    margin-block-start: 1.25rem;
    font-size: 0.9375rem;
  }
}
.c-entry-content h6 {
  margin-block-start: 1.25rem;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .c-entry-content h6 {
    font-size: 0.875rem;
  }
}
.c-entry-content p {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .c-entry-content p {
    font-size: 0.875rem;
    line-height: 1.75;
  }
}
.c-entry-content ul,
.c-entry-content ol {
  margin-block-start: 1rem;
  padding-inline-start: 1.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .c-entry-content ul,
  .c-entry-content ol {
    padding-inline-start: 1.25rem;
    font-size: 0.875rem;
  }
}
.c-entry-content ul {
  list-style-type: disc;
}
.c-entry-content ul ::marker {
  color: var(--color-primary);
}
.c-entry-content ol {
  list-style-type: decimal;
}
.c-entry-content ol ::marker {
  color: var(--color-primary);
}
.c-entry-content a:not(.wp-block-button__link) {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .c-entry-content a:not(.wp-block-button__link):hover {
    opacity: 0.7;
  }
}
.c-entry-content img,
.c-entry-content .wp-block-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin-block-start: 1.5rem;
}
.c-entry-content .wp-block-image {
  margin-block-start: 1.5rem;
}
.c-entry-content figure {
  margin-block-start: 1.5rem;
}
.c-entry-content figcaption {
  margin-block-start: 0.5rem;
  color: #666;
  font-size: 0.875rem;
  line-height: 1.6;
}
.c-entry-content blockquote {
  margin-block-start: 1.5rem;
  padding-block: 1rem;
  padding-inline-start: 1.5rem;
  padding-inline-end: 1.25rem;
  border-inline-start: 3px solid var(--color-primary);
  border-radius: 0.25rem;
  background-color: #eff4f9;
  color: var(--color-text);
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .c-entry-content blockquote {
    padding-inline-start: 1rem;
    padding-inline-end: 0.875rem;
  }
}
.c-entry-content blockquote p {
  margin-block-start: 0;
}
.c-entry-content blockquote blockquote {
  margin-block-start: 0.75rem;
  padding-block: 0;
  padding-inline-start: 1rem;
  padding-inline-end: 0;
  border-radius: 0;
  background-color: transparent;
  font-style: inherit;
}
.c-entry-content code {
  padding-block: 0.125rem;
  padding-inline: 0.375rem;
  border-radius: 0.25rem;
  background-color: var(--color-gray);
  color: var(--color-primary);
  font-family: ui-monospace, monospace;
  font-size: 0.9em;
}
.c-entry-content pre {
  overflow-x: auto;
  margin-block-start: 1.5rem;
  padding-block: 1rem;
  padding-inline: 1rem;
  border-radius: 0.5rem;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-family: ui-monospace, monospace;
  font-size: 0.875rem;
  line-height: 1.6;
}
.c-entry-content pre code {
  padding: 0;
  background-color: transparent;
}
.c-entry-content table {
  width: 100%;
  margin-block-start: 1.5rem;
  border: 1px solid var(--color-border);
  border-collapse: collapse;
  color: var(--color-text);
  font-size: 0.9375rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .c-entry-content table {
    font-size: 0.8125rem;
  }
}
.c-entry-content th,
.c-entry-content td {
  padding-block: 0.75rem;
  padding-inline: 1rem;
  border: 1px solid var(--color-border);
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .c-entry-content th,
  .c-entry-content td {
    padding-block: 0.625rem;
    padding-inline: 0.75rem;
  }
}
.c-entry-content th:not([class*=has-text-align]),
.c-entry-content td:not([class*=has-text-align]) {
  text-align: start;
}
.c-entry-content .wp-block-table {
  overflow-x: auto;
  margin-block-start: 1.5rem;
  -webkit-overflow-scrolling: touch;
}
.c-entry-content .wp-block-table table {
  margin-block-start: 0;
}
.c-entry-content .wp-block-table td,
.c-entry-content .wp-block-table th {
  border: 1px solid #d8dde5;
}
.c-entry-content .wp-block-table thead {
  border-block-end: none;
}
.c-entry-content .wp-block-table thead th {
  background-color: var(--color-primary);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--color-white);
  font-weight: 700;
}
.c-entry-content .wp-block-table tbody th {
  background-color: #eef3f9;
  color: var(--color-text);
  font-weight: 700;
}
.c-entry-content .wp-block-table tbody td {
  background-color: var(--color-white);
}
.c-entry-content .wp-block-table tbody tr:nth-child(even) td {
  background-color: #f5f8fc;
}
.c-entry-content .wp-block-table tbody tr:nth-child(even) th {
  background-color: #e4ecf6;
}
.c-entry-content th {
  background-color: var(--color-gray);
  font-weight: 700;
}
.c-entry-content hr {
  margin-block-start: 2rem;
  border: none;
  border-block-start: 1px solid var(--color-border);
}
.c-entry-content strong {
  font-weight: 700;
}
.c-entry-content em {
  font-style: italic;
}
.c-entry-content .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-block-start: 1.5rem;
}
.c-entry-content .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding-block: 0.75rem;
  padding-inline: 1.75rem;
  border: 1px solid var(--color-black);
  border-radius: 0.25rem;
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background-color var(--duration), color var(--duration);
}
@media (any-hover: hover) {
  .c-entry-content .wp-block-button__link:hover {
    background-color: var(--color-white);
    color: var(--color-black);
  }
}
.c-entry-content .wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent;
  color: var(--color-text);
}
@media (any-hover: hover) {
  .c-entry-content .wp-block-button.is-style-outline .wp-block-button__link:hover {
    background-color: var(--color-black);
    color: var(--color-white);
  }
}
.c-entry-content .wp-block-quote,
.c-entry-content .wp-block-pullquote {
  margin-block-start: 1.5rem;
}
.c-entry-content .wp-block-quote .wp-block-quote,
.c-entry-content .wp-block-quote .wp-block-pullquote,
.c-entry-content .wp-block-quote blockquote,
.c-entry-content .wp-block-pullquote .wp-block-quote,
.c-entry-content .wp-block-pullquote .wp-block-pullquote,
.c-entry-content .wp-block-pullquote blockquote {
  margin-block-start: 0.75rem;
}
.c-entry-content .wp-block-embed,
.c-entry-content .wp-block-video,
.c-entry-content .wp-block-audio {
  margin-block-start: 1.5rem;
}

.c-notice {
  width: 100%;
}

.c-notice__item {
  border: 3px solid #c2c2c2;
  border-radius: 0.5rem;
}

.c-notice__item.is-opened .c-notice__item-summary-inner::after {
  rotate: 90deg;
}

.c-notice__item-summary {
  display: block;
  width: 100%;
  list-style: none;
  cursor: pointer;
}

.c-notice__item-summary::-webkit-details-marker {
  display: none;
}

.c-notice__item-summary-inner {
  display: block;
  position: relative;
  padding: 1.25rem 1.875rem;
  text-align: center;
  transition: background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .c-notice__item-summary-inner {
    padding: 1.25rem;
  }
}
.c-notice__item-summary-inner::before, .c-notice__item-summary-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  border-radius: 100vmax;
  background: var(--color-text);
}
.c-notice__item-summary-inner::before {
  right: 2.5rem;
  width: 1rem;
  height: 0.125rem;
}
@media screen and (max-width: 767px) {
  .c-notice__item-summary-inner::before {
    right: 1.25rem;
    width: 1.25rem;
  }
}
.c-notice__item-summary-inner::after {
  right: 2.9375rem;
  width: 0.125rem;
  height: 1rem;
  rotate: 0deg;
  transition: rotate 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-notice__item-summary-inner::after {
    height: 1.25rem;
    right: 1.8125rem;
  }
}
@media (any-hover: hover) {
  .c-notice__item-summary-inner:hover {
    background-color: color-mix(in srgb, var(--color-primary) 5%, white);
  }
}

.c-notice__item-summary-text {
  margin: 0;
  display: inline-block;
  position: relative;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .c-notice__item-summary-text {
    display: inline-block;
    padding-inline: 1.875rem;
    font-size: 1rem;
    line-height: 1.5;
  }
}

.c-notice__item-content {
  overflow: hidden;
}

.c-notice__item-content-inner {
  padding: 1.25rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-notice__item-content-inner {
    padding: 1rem 1.25rem;
  }
}

.c-notice__item-content-text {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-notice__item-content-text-item {
  position: relative;
  padding-inline-start: 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.63;
}
@media screen and (max-width: 767px) {
  .c-notice__item-content-text-item {
    font-size: 0.875rem;
    line-height: 1.75;
  }
}
.c-notice__item-content-text-item::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}

/**
 * ページネーション共通コンポーネント
 *
 * 親（プロジェクト）から上書きする場合:
 *   - 呼び出し元で親クラスで wrap する（例: <div class="p-ufb-evidence__pagination">...</div>）
 *   - プロジェクトの SCSS ではその wrapper クラスに --_pagination-* を設定する
 *   - 親の CSS ファイルに c-pagination のクラス名は書かない（コンポーネントのカプセル化）
 *
 * 上書き可能な変数: --_pagination-bg, --_pagination-text, --_pagination-text-hover,
 *   --_pagination-bg-hover, --_pagination-active-bg, --_pagination-active-text,
 *   --_pagination-border, --_pagination-border-hover
 */
.c-pagination {
  --_pagination-bg: var(--color-white, #fff);
  --_pagination-text: var(--color-text);
  --_pagination-text-hover: #374151;
  --_pagination-bg-hover: #f9fafb;
  --_pagination-active-bg: var(--color-black, #000);
  --_pagination-active-text: var(--color-white, #fff);
  --_pagination-border: #d1d5db;
  --_pagination-border-hover: #9ca3af;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.c-pagination__item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 2.75rem;
  min-width: 2.75rem;
  padding: 0 0.75rem;
  border: 1px solid var(--_pagination-border);
  border-radius: 0.375rem;
  background-color: var(--_pagination-bg);
  color: var(--_pagination-text);
  font-size: 0.9375rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
@media screen and (max-width: 767px) {
  .c-pagination__item {
    height: 2.5rem;
    min-width: 2.5rem;
    font-size: 0.875rem;
  }
}
@media (any-hover: hover) {
  .c-pagination__item:hover:not([data-state=current]):not([data-state=disabled]):not([data-state=dots]) {
    border-color: var(--_pagination-border-hover);
    background-color: var(--_pagination-bg-hover);
    color: var(--_pagination-text-hover);
  }
}

.c-pagination__item[data-state=current] {
  border-color: var(--_pagination-active-bg);
  background-color: var(--_pagination-active-bg);
  color: var(--_pagination-active-text);
  cursor: default;
}

.c-pagination__item[data-state=dots] {
  border-color: transparent;
  background-color: transparent;
  cursor: default;
}
@media (any-hover: hover) {
  .c-pagination__item[data-state=dots]:hover {
    border-color: transparent;
    background-color: transparent;
  }
}

.c-pagination__item[data-state=prev],
.c-pagination__item[data-state=next] {
  font-weight: 500;
}

.c-pagination__item[data-state=disabled] {
  opacity: 0.6;
  cursor: default;
}
@media (any-hover: hover) {
  .c-pagination__item[data-state=disabled]:hover {
    border-color: var(--_pagination-border);
    background-color: var(--_pagination-bg);
    color: var(--_pagination-text);
  }
}

.c-related-links {
  padding-block: 5rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-related-links {
    padding-block: 3rem 1.5rem;
  }
}

.c-related-links__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-related-links__inner {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.c-related-links__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
  gap: 1rem;
  min-height: 7.5rem;
  padding: 1.5rem 2.5rem;
  border-radius: 0.375rem;
  background-color: #f4f4f4;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.45s ease;
}
.c-related-links__link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--color-black);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scaleX(0);
  transform-origin: left center;
}
@media (any-hover: hover) {
  .c-related-links__link:hover {
    opacity: 1;
    color: var(--color-white);
  }
  .c-related-links__link:hover::before {
    transform: scaleX(1);
  }
  .c-related-links__link:hover .c-related-links__arrow {
    translate: 0.5rem 0;
  }
}
@media screen and (max-width: 767px) {
  .c-related-links__link {
    min-height: 4.5rem;
    padding: 1.25rem;
  }
}

.c-related-links__body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.25rem;
  min-width: 0;
}

.c-related-links__text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .c-related-links__text {
    font-size: 1rem;
  }
}

.c-related-links__desc {
  color: var(--color-text);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
  transition: color 0.45s ease;
}
.c-related-links__link:hover .c-related-links__desc {
  color: inherit;
}
@media screen and (max-width: 767px) {
  .c-related-links__desc {
    font-size: 0.75rem;
    line-height: 1.6;
  }
}

.c-related-links__arrow {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 1.25rem;
  height: 0.625rem;
  background-color: currentcolor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10'%3E%3Cpath fill='%23fff' d='M15,0l5,5-5,5'/%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' d='M0,5h18'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10'%3E%3Cpath fill='%23fff' d='M15,0l5,5-5,5'/%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' d='M0,5h18'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transition: translate var(--duration);
}

@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  box-sizing: border-box;
  width: 120px;
  height: auto;
  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;
}

.scroll-hint-shadow-wrap {
  position: relative;
}

.scroll-hint-shadow-wrap::after {
  content: "";
  width: 20px;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.scroll-hint-shadow-wrap::before {
  content: "";
  width: 20px;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.scroll-hint-shadow-wrap:has(.scroll-hint.is-right-scrollable)::after,
.scroll-hint-shadow-wrap.is-right-scrollable::after {
  opacity: 1;
  visibility: visible;
}

.scroll-hint-shadow-wrap:has(.scroll-hint.is-left-scrollable)::before,
.scroll-hint-shadow-wrap.is-left-scrollable::before {
  opacity: 1;
  visibility: visible;
}

.scroll-hint-icon {
  background: color-mix(in srgb, var(--color-primary) 85%, transparent);
}

@media print {
  .scroll-hint-icon-wrap,
  .scroll-hint-icon {
    display: none !important;
  }
}
.c-section-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    gap: 0.5rem;
  }
}
.c-section-title[data-align=center] {
  align-items: center;
  text-align: center;
}
.c-section-title[data-align=right] {
  align-items: flex-end;
  text-align: right;
}

.c-section-title__en {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-en);
  font-size: clamp(1rem, 0.92rem + 0.17vw, 1.125rem);
  font-weight: 600;
  line-height: 1.77;
}
@media screen and (max-width: 767px) {
  .c-section-title__en {
    font-size: 0.9375rem;
  }
}
.c-section-title__en::before {
  content: "";
  flex-shrink: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .c-section-title__en::before {
    width: 0.375rem;
    height: 0.375rem;
  }
}

.c-section-title[data-align=center] .c-section-title__en {
  justify-content: center;
}

.c-section-title[data-align=right] .c-section-title__en {
  justify-content: flex-end;
}

.c-section-title__ja {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(2rem, 1.43rem + 0.89vw, 2.5rem);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .c-section-title__ja {
    font-size: 1.375rem;
    line-height: 1.375;
  }
}

.c-section-title--large {
  gap: 0.875rem;
}
.c-section-title--large .c-section-title__ja {
  font-size: clamp(3rem, 2.33rem + 1.39vw, 4rem);
}
@media screen and (max-width: 767px) {
  .c-section-title--large .c-section-title__ja {
    font-size: 2rem;
  }
}

.c-ufb-contact {
  padding-block: 7.5rem 6.25rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .c-ufb-contact {
    padding-block: 3.625rem 2.5rem;
  }
}

.c-ufb-contact__banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 30.375rem;
  padding: 7.875rem 3.75rem 5.75rem;
  border-radius: 0.75rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-ufb-contact__banner {
    min-height: 0;
    padding: 6.875rem 1.5rem 3.875rem;
    border-radius: 0.75rem;
  }
}

.c-ufb-contact__label {
  position: absolute;
  top: 4.8125rem;
  left: 5rem;
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0;
  font-family: var(--ff-en);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .c-ufb-contact__label {
    top: 3.5rem;
    left: 1.25rem;
    gap: 1rem;
    font-size: 0.9375rem;
  }
}

.c-ufb-contact__label-dot {
  flex-shrink: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .c-ufb-contact__label-dot {
    width: 0.375rem;
    height: 0.375rem;
  }
}

.c-ufb-contact__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 56.25rem);
}

.c-ufb-contact__title {
  color: var(--color-white);
  font-size: clamp(2rem, 1.43rem + 0.89vw, 2.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.14em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .c-ufb-contact__title {
    font-size: 1.375rem;
    line-height: 1.45;
  }
}

.c-ufb-contact__text {
  margin-block-start: 1.875rem;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .c-ufb-contact__text {
    margin-block-start: 0.875rem;
    font-size: 0.875rem;
    line-height: 1.75;
    letter-spacing: 0.02em;
  }
}

.c-ufb-contact__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-block-start: 2.625rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-ufb-contact__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1.375rem;
    margin-block-start: 2.125rem;
  }
}

.c-ufb-contact__button {
  position: relative;
  display: inline-flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  min-width: 0;
  min-height: 5rem;
  padding: 1rem 2rem;
  border-radius: 0.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  transition: color 0.45s ease;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .c-ufb-contact__button {
    flex: auto;
    width: 100%;
    min-height: 4.5rem;
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
  }
}
.c-ufb-contact__button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scaleX(0);
  transform-origin: left center;
}

.c-ufb-contact__button--primary {
  border: 1px solid var(--color-white);
  background-color: var(--color-white);
  color: #0649a4;
}
.c-ufb-contact__button--primary::before {
  background-color: #0649a4;
}
@media (any-hover: hover) {
  .c-ufb-contact__button--primary:hover {
    opacity: 1;
    color: var(--color-white);
  }
  .c-ufb-contact__button--primary:hover::before {
    transform: scaleX(1);
  }
}

.c-ufb-contact__button--tel {
  align-items: baseline;
  gap: 0.375rem;
  padding-block: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.125rem;
  background-color: transparent;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .c-ufb-contact__button--tel {
    padding-block: 1.25rem;
  }
}
.c-ufb-contact__button--tel::before {
  background-color: var(--color-white);
}
@media (any-hover: hover) {
  .c-ufb-contact__button--tel:hover {
    opacity: 1;
    color: #0649a4;
  }
  .c-ufb-contact__button--tel:hover::before {
    transform: scaleX(1);
  }
}

.c-ufb-contact__tel-label {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .c-ufb-contact__tel-label {
    font-size: 0.9375rem;
  }
}

.c-ufb-contact__tel-number {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .c-ufb-contact__tel-number {
    font-size: 1.125rem;
  }
}

.p-contact-intl {
  padding-block: 5rem;
  background-color: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .p-contact-intl {
    padding-block: 3.5rem 1.5rem;
  }
}

.p-contact-intl__texts {
  margin-block-start: 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact-intl__texts {
    margin-block-start: 1.5rem;
  }
}

.p-contact-intl__text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .p-contact-intl__text {
    font-size: 0.875rem;
    line-height: 1.75;
  }
}
.p-contact-intl__text + .p-contact-intl__text {
  margin-block-start: 0.5rem;
}

.p-contact-intl__text--strong {
  font-weight: 700;
}

.p-contact-intl__button {
  display: flex;
  justify-content: center;
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact-intl__button {
    margin-block-start: 2rem;
  }
}

.p-contact-intl__note {
  margin-block-start: 2rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact-intl__note {
    margin-block-start: 1.5rem;
    font-size: 0.875rem;
  }
}

.p-contact-thanks {
  padding-block: 5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact-thanks {
    padding-block: 3.5rem;
  }
}

.p-contact-thanks__panel {
  width: min(100%, 62.5rem);
  margin-inline: auto;
  padding: 3rem 2.5rem;
  background-color: var(--color-gray);
  border-radius: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-contact-thanks__panel {
    padding: 2rem 1.25rem;
  }
}

.p-contact-thanks__text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact-thanks__text {
    font-size: 0.875rem;
    line-height: 2;
  }
}

.p-contact-thanks__button {
  display: flex;
  justify-content: center;
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-contact-thanks__button {
    margin-block-start: 2rem;
  }
}

.p-error {
  padding-block: 7.5rem;
  background-color: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .p-error {
    padding-block: 3.75rem;
  }
}

.p-error__inner {
  margin-inline: auto;
  text-align: center;
}

.p-error__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-error__text {
    font-size: 0.875rem;
  }
}

.p-error__button {
  margin-block-start: 2rem;
  text-align: center;
}

.p-footer {
  width: 100%;
  padding-block: 0 1.25rem;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-footer {
    position: relative;
    padding-block: 0 1rem;
    padding-inline: 1.25rem;
  }
}

.p-footer__inner {
  display: flex;
  gap: 0.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    flex-direction: column-reverse;
  }
}

.p-footer__panel {
  display: flex;
  flex-direction: column;
  border-radius: 0.75rem;
  background-color: #cccccc;
}
@media screen and (max-width: 1023px) {
  .p-footer__panel {
    padding: 2.5rem 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__panel {
    padding: 2rem 1.25rem;
  }
}

.p-footer__panel--info {
  flex: 0 1 41.4893617021%;
  min-width: 0;
  justify-content: space-between;
  gap: 3rem;
  padding: 6.875rem clamp(2.5rem, -1.11rem + 7.52vw, 5rem) 7.6875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__panel--info {
    flex: none;
    width: 100%;
    gap: 1.375rem;
    padding: 2.25rem 1.25rem 2.25rem;
  }
}

.p-footer__panel--nav {
  position: relative;
  flex: 1 1 58.2978723404%;
  min-width: 0;
  justify-content: space-between;
  gap: 6.375rem;
  padding: 7.25rem clamp(2.5rem, -1.11rem + 7.52vw, 5rem) 7.875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__panel--nav {
    position: static;
    flex: none;
    width: 100%;
    gap: 1.75rem;
    padding: 2.25rem 1.25rem 2.25rem;
  }
}

.p-footer__catch {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1.75rem, 0.89rem + 1.34vw, 2.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-footer__catch {
    font-size: 1.375rem;
  }
}

.p-footer__company {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.p-footer__company-name,
.p-footer__company-address,
.p-footer__company-tel {
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-footer__company-name,
  .p-footer__company-address,
  .p-footer__company-tel {
    font-size: 0.875rem;
    line-height: 1.71;
  }
}

.p-footer__company-name {
  font-weight: 700;
}

.p-footer__company-tel a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-footer__company-tel a:hover {
    opacity: 0.7;
  }
}

.p-footer__logo-wrapper {
  margin-block-start: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo-wrapper {
    margin-block-start: 2.25rem;
  }
}

.p-footer__logo {
  display: block;
  line-height: 0;
  transition: opacity var(--duration);
  width: min(100%, 23.375rem);
  height: auto;
  aspect-ratio: 234/37;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    width: min(100%, 14.625rem);
  }
}
@media (any-hover: hover) {
  .p-footer__logo:hover {
    opacity: 0.8;
  }
}

.p-footer__nav {
  display: flex;
  gap: 3rem;
}
@media screen and (max-width: 1023px) {
  .p-footer__nav {
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.p-footer__nav-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.875rem;
  flex: 1;
  min-width: 0;
  max-width: 21.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-col {
    gap: 1.375rem;
  }
}

.p-footer__nav-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-group {
    gap: 0.5rem;
  }
}

.p-footer__nav-parent {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-decoration: none;
  font-feature-settings: "palt";
  transition: color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-footer__nav-parent {
    font-size: 0.875rem;
    line-height: 1.71;
  }
}
@media (any-hover: hover) {
  .p-footer__nav-parent:hover {
    opacity: 1;
    color: var(--color-primary);
  }
}

.p-footer__nav-children {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  padding-inline-start: 1rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-children {
    gap: 0.25rem;
    padding-inline-start: 1.25rem;
  }
}

.p-footer__nav-children-link {
  color: var(--color-text);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-decoration: none;
  font-feature-settings: "palt";
  transition: color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-footer__nav-children-link {
    font-size: 0.875rem;
    line-height: 1.77;
  }
}
@media (any-hover: hover) {
  .p-footer__nav-children-link:hover {
    opacity: 1;
    color: var(--color-primary);
  }
}

.p-footer__nav-children-link--en {
  font-family: var(--ff-en);
  font-weight: 700;
}

.p-footer__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem 20rem;
}

.p-footer__privacy {
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-decoration: none;
  font-feature-settings: "palt";
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-footer__privacy {
    font-size: 0.8125rem;
    line-height: 1.6;
  }
}
@media (any-hover: hover) {
  .p-footer__privacy:hover {
    opacity: 1;
    color: var(--color-primary);
  }
}

.p-footer__copyright {
  color: #666666;
  font-family: var(--ff-en);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    margin-block-start: 2.25rem;
    text-align: center;
    width: 100%;
  }
}

.p-footer__pagetop-wrapper {
  position: absolute;
  bottom: 4.375rem;
  right: 4.375rem;
  margin-block-start: auto;
}
@media screen and (max-width: 767px) {
  .p-footer__pagetop-wrapper {
    bottom: 6.875rem;
    right: 3.0625rem;
  }
}

.p-footer__pagetop {
  display: block;
  flex-shrink: 0;
  width: 0.625rem;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 40'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23000; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath d='M0,5L5,0l5,5' /%3E%3Cpath class='cls-1' d='M5,40V2' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform var(--duration);
}
@media screen and (max-width: 767px) {
  .p-footer__pagetop {
    width: 0.625rem;
    height: 2rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 32'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23000; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath d='M0,5L5,0l5,5' /%3E%3Cpath class='cls-1' d='M5,32V2' /%3E%3C/svg%3E ");
  }
}
@media (any-hover: hover) {
  .p-footer__pagetop:hover {
    transform: translateY(calc(-6 * var(--to-rem)));
  }
}

.p-form {
  --_form-color-text: var(--color-text);
  --_form-color-bg: var(--color-white);
  --_form-color-badge-text: var(--color-white);
  --_form-color-badge-bg: var(--color-orange);
  --_form-color-accent: var(--color-primary);
  --_form-color-border: var(--color-border);
  --_form-color-primary: var(--color-primary);
  max-width: 62.5rem;
  margin-inline: auto;
}
.p-form > * + * {
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-form > * + * {
    margin-block-start: 2rem;
  }
}
.p-form > *:nth-last-child(2) {
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-form > *:nth-last-child(2) {
    margin-block-start: 1.5rem;
  }
}

.p-form.p-form--confirm .p-form__label {
  margin-block-start: 0;
}

.p-form.p-form--stacked {
  max-width: none;
}
.p-form.p-form--stacked > * + * {
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-form.p-form--stacked > * + * {
    margin-block-start: 1.25rem;
  }
}
.p-form.p-form--stacked > *:nth-last-child(2) {
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-form.p-form--stacked > *:nth-last-child(2) {
    margin-block-start: 1.5rem;
  }
}

.p-form--stacked .p-form__item {
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
}

.p-form--stacked .p-form__label {
  justify-content: flex-start;
  gap: 0.75rem;
  min-width: auto;
  margin-block-start: 0;
}

.p-form__field-note {
  margin-block-start: 0.375rem;
  color: var(--_form-color-text);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.8;
}

.p-form--stacked .p-form__acceptance {
  text-align: left;
}

.p-form--stacked .p-form__acceptance .p-form__data-checkbox {
  justify-content: flex-start;
}

.cf7msm-ro {
  display: block;
  width: 100%;
  white-space: pre-wrap;
}

.p-form__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-form__actions {
    flex-direction: column;
    gap: 1rem;
  }
}

.p-form__actions .p-form__submit {
  margin-block-start: 0;
}

.p-form__submit--back .c-button {
  border-color: var(--color-black);
}

.p-form__item {
  display: flex;
  align-items: flex-start;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-form__item {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.p-form__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.875rem;
  min-width: 15.625rem;
  margin-block-start: 0.9em;
  color: var(--_form-color-text);
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-form__label {
    gap: 1rem;
    min-width: auto;
  }
}

.p-form__label-note {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  color: var(--_form-color-text);
}

.p-form__label-required {
  display: inline-block;
  padding-block: 0.5rem;
  padding-inline: 1rem;
  border-radius: 4px;
  background-color: var(--_form-color-badge-bg);
  color: var(--_form-color-badge-text);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-form__label-required {
    padding-block: 0.25rem;
    padding-inline: 0.75rem;
  }
}

.p-form__data {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-form__data {
    flex: auto;
    width: 100%;
  }
}

.p-form__data-inner {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.p-form__data-inner > * {
  flex: 1;
}

.p-form__address {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.p-form__zip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.p-form__zip-mark {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.p-form__input--zip {
  max-width: 12.5rem;
}

.p-form__zip-confirm {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.p-form__input,
.p-form__select,
.p-form__textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid var(--_form-color-border);
  border-radius: 0.375rem;
  background-color: var(--_form-color-bg);
  color: var(--_form-color-text);
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-form__input,
  .p-form__select,
  .p-form__textarea {
    padding: 0.875rem 1.25rem;
  }
}

.p-form__input::-moz-placeholder, .p-form__select::-moz-placeholder, .p-form__textarea::-moz-placeholder {
  color: oklch(from var(--_form-color-text) l c h/50%);
}

.p-form__input::placeholder,
.p-form__select::placeholder,
.p-form__textarea::placeholder {
  color: oklch(from var(--_form-color-text) l c h/50%);
}

.p-form__input:focus,
.p-form__select:focus,
.p-form__textarea:focus {
  border-color: var(--_form-color-accent);
  box-shadow: 0 0 0 3px oklch(from var(--_form-color-accent) l c h/10%);
  outline: none;
}

.p-form__input:hover:not(:focus),
.p-form__select:hover:not(:focus),
.p-form__textarea:hover:not(:focus) {
  border-color: var(--_form-color-accent);
  opacity: 0.7;
}

.p-form__input.is-error,
.p-form__select.is-error,
.p-form__textarea.is-error {
  border-color: var(--_form-color-badge-bg);
}

.p-form__select {
  position: relative;
  padding-inline-end: 3rem;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.p-form__select option {
  color: var(--_form-color-text);
}

.p-form__select-wrap {
  position: relative;
}

.p-form__select-wrap::after {
  content: "";
  position: absolute;
  top: 1.75rem;
  right: 1rem;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  width: 0.75rem;
  height: 0.5rem;
  border: none;
  background-color: var(--_form-color-primary);
  pointer-events: none;
  translate: 0 -50%;
}

.p-form__textarea {
  min-height: 10rem;
  resize: vertical;
}

.p-form__radio-group {
  display: flex;
  flex-flow: row wrap;
  gap: 1rem 1.25rem;
}

.wpcf7-radio.p-form__radio-group,
.p-form__radio-group .wpcf7-radio {
  display: flex;
  flex-flow: row wrap;
  gap: 1rem 1.25rem;
}

.p-form__radio {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  cursor: pointer;
}

.p-form__radio input[type=radio],
.p-form__radio-group input[type=radio] {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  margin-inline-end: 0.5rem;
  border: 2px solid var(--_form-color-border);
  border-radius: 50%;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: border-color 0.2s ease;
}

.p-form__radio input[type=radio]:checked,
.p-form__radio-group input[type=radio]:checked {
  border-color: var(--_form-color-accent);
  background-color: var(--_form-color-accent);
}

.p-form__radio input[type=radio]:checked::after,
.p-form__radio-group input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--_form-color-bg);
  translate: -50% -50%;
}

.p-form__radio input[type=radio]:hover:not(:checked),
.p-form__radio-group input[type=radio]:hover:not(:checked) {
  border-color: var(--_form-color-accent);
  opacity: 0.5;
}

.p-form__radio input[type=radio]:focus,
.p-form__radio-group input[type=radio]:focus {
  box-shadow: 0 0 0 3px oklch(from var(--_form-color-accent) l c h/10%);
  outline: none;
}

.p-form__radio-text {
  color: var(--_form-color-text);
  font-size: 1rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.p-form__checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  cursor: pointer;
}

.p-form__checkbox input[type=checkbox] {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  margin-inline-end: 0.5rem;
  border: 2px solid var(--_form-color-border);
  border-radius: 4px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: border-color 0.2s ease;
}

.p-form__checkbox input[type=checkbox]:checked {
  border-color: var(--_form-color-accent);
  background-color: var(--_form-color-accent);
}

.p-form__checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 0.125rem;
  left: 0.3125rem;
  width: 0.375rem;
  height: 0.625rem;
  border: 2px solid var(--_form-color-bg);
  border-top: none;
  border-left: none;
  rotate: 45deg;
}

.p-form__checkbox input[type=checkbox]:hover:not(:checked) {
  border-color: var(--_form-color-accent);
  opacity: 0.5;
}

.p-form__checkbox input[type=checkbox]:focus {
  box-shadow: 0 0 0 3px oklch(from var(--_form-color-accent) l c h/10%);
  outline: none;
}

.p-form__checkbox-text {
  color: var(--_form-color-text);
  font-size: 1rem;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.p-form__acceptance {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__acceptance {
    text-align: left;
  }
}

.p-form__acceptance-text {
  color: var(--_form-color-text);
  font-size: 1rem;
  font-weight: 500;
}
.p-form__acceptance-text + * {
  display: block;
  margin-block-start: 1rem;
}

.p-form__privacy {
  text-decoration: underline;
  text-underline-offset: 0.3125rem;
}

.p-form__acceptance .p-form__data-checkbox {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-form__acceptance .p-form__data-checkbox {
    display: flex;
    justify-content: center;
  }
}

.p-form__acceptance input[type=checkbox] {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  margin-inline-end: 0.5rem;
  border: 2px solid var(--_form-color-border);
  border-radius: 4px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: border-color 0.2s ease;
}

.p-form__acceptance input[type=checkbox]:checked {
  border-color: var(--_form-color-accent);
  background-color: var(--_form-color-accent);
}
.p-form__acceptance input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 0.125rem;
  left: 0.3125rem;
  width: 0.375rem;
  height: 0.625rem;
  border: 2px solid var(--_form-color-bg);
  border-top: none;
  border-left: none;
  rotate: 45deg;
}

.p-form__acceptance input[type=checkbox]:hover:not(:checked) {
  border-color: var(--_form-color-accent);
  opacity: 0.5;
}

.p-form__acceptance .p-form__label-required {
  margin-inline-end: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-form__acceptance .p-form__label-required {
    margin-inline-end: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-form__acceptance .p-form__checkbox-text {
    font-size: 0.875rem;
  }
}

.p-form__link {
  color: var(--_form-color-accent);
  text-decoration: underline;
  transition: opacity 0.2s ease;
}
@media (any-hover: hover) {
  .p-form__link:hover {
    opacity: 0.8;
  }
}

.p-form__submit {
  text-align: center;
}

.p-form__submit .c-button {
  min-width: 17.5rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-form__submit .c-button {
    min-width: 0;
  }
}

.p-form__submit .c-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

@media (any-hover: hover) {
  .p-form__submit .c-button:disabled:hover {
    color: var(--color-white);
  }
  .p-form__submit .c-button:disabled:hover::before {
    transform: scaleX(0);
  }
}
.p-form__error {
  display: block;
  color: var(--_form-color-badge-bg);
  font-size: 0.875rem;
}

.p-form__success {
  padding: 1.5rem;
  border: 1px solid var(--_form-color-accent);
  border-radius: 8px;
  background-color: rgba(64, 143, 149, 0.1);
  color: var(--_form-color-accent);
  font-size: 1rem;
  text-align: center;
}

.wpcf7-list-item {
  display: flex;
  margin: 0;
}

.p-form__radio-group .wpcf7-list-item,
.p-form__radio .wpcf7-list-item {
  display: flex;
  align-items: center;
}

.p-form__radio-group .wpcf7-list-item label,
.p-form__radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.p-form__radio-group .wpcf7-list-item-label,
.p-form__radio .wpcf7-list-item-label,
.p-form__radio .wpcf7-li label {
  color: var(--_form-color-text);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.p-form__checkbox .wpcf7-list-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.p-form__item .wpcf7-list-item {
  display: flex;
  align-items: center;
}

body.is-header-common {
  --header-height: 72px;
}
@media screen and (max-width: 767px) {
  body.is-header-common {
    --header-height: 56px;
  }
}

.p-header {
  width: 100%;
  height: var(--header-height);
}
.p-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-color: var(--color-white);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

.p-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  height: inherit;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .p-header__inner {
    padding-inline: 1rem;
  }
}

.p-header__logo {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.p-header__logo-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  height: inherit;
  color: var(--color-primary);
  text-decoration: none;
}

.p-header__logo-mark {
  display: block;
  width: clamp(11.25rem, 6.26rem + 7.8vw, 15.625rem);
  height: auto;
  aspect-ratio: 250/40;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1023px) {
  .p-header__logo-mark {
    width: 12.5rem;
  }
}

.p-header__nav {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 0.75rem;
  min-width: 0;
  height: inherit;
}
@media screen and (max-width: 1023px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__nav-list {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0.25rem;
  height: inherit;
}

.p-header__nav-item {
  display: flex;
  align-items: stretch;
  height: inherit;
}

.p-header__nav-link {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
  height: inherit;
  padding-inline: clamp(0.25rem, -0.04rem + 0.45vw, 0.5rem);
  color: var(--color-text);
  font-size: clamp(0.625rem, 0.2rem + 0.67vw, 1rem);
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--duration);
}
.p-header__nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: var(--color-primary);
  opacity: 0;
  transition: opacity var(--duration);
}
.p-header__nav-link.is-current {
  color: var(--color-primary);
}
.p-header__nav-link.is-current::after {
  opacity: 1;
}

.p-header__nav-item--divider {
  align-self: center;
  width: 0;
  height: 1.25rem;
  margin-inline: clamp(0.25rem, -0.04rem + 0.45vw, 0.5rem);
  border-left: 1px dotted var(--color-text);
}

.p-header__contact {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  min-width: clamp(6.25rem, 1.97rem + 6.69vw, 10rem);
  height: 3rem;
  padding-inline: 1.25rem;
  border: 1px solid var(--color-primary);
  border-radius: 0.25rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: clamp(0.625rem, 0.2rem + 0.67vw, 1rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.45s ease;
}
.p-header__contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--color-white);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scaleX(0);
  transform-origin: left center;
}
@media (any-hover: hover) {
  .p-header__contact:hover {
    opacity: 1;
    color: var(--color-primary);
  }
  .p-header__contact:hover::before {
    transform: scaleX(1);
  }
}

.p-header__hamburger {
  position: relative;
  z-index: 3;
  display: none;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  outline: none;
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  .p-header__hamburger {
    display: block;
  }
}

.p-header__hamburger span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 2.5rem;
  height: 1px;
  background-color: var(--color-text);
  translate: -50% -50%;
  transition: top calc(var(--duration) * 1.67), opacity calc(var(--duration) * 1.67), rotate calc(var(--duration) * 1.67);
}
.p-header__hamburger span:nth-of-type(1) {
  top: calc(50% - 7px);
}
.p-header__hamburger span:nth-of-type(2) {
  top: 50%;
}
.p-header__hamburger span:nth-of-type(3) {
  top: calc(50% + 7px);
}

.p-header__hamburger.is-open span:nth-of-type(1) {
  top: 50%;
  rotate: 22deg;
}
.p-header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}
.p-header__hamburger.is-open span:nth-of-type(3) {
  top: 50%;
  rotate: -22deg;
}

.p-header__drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  display: none;
  overflow-y: auto;
  width: 100%;
  height: 100svh;
  padding-block: 5.125rem 2.5rem;
  padding-inline: 2.5rem;
  background-color: var(--color-white);
  scrollbar-width: none;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.p-header__drawer::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1024px) {
  .p-header__drawer {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .p-header__drawer {
    display: block;
  }
  .p-header__drawer.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
}

.p-header__drawer-nav {
  width: 100%;
  max-width: 25rem;
  margin-inline: auto;
}

.p-header__drawer-list {
  display: flex;
  flex-direction: column;
}

.p-header__drawer-item--divider {
  width: 100%;
  height: 0;
  margin-block: 1rem;
  border-top: 1px dotted var(--color-text);
}

.p-header__drawer-link {
  display: block;
  padding-block: 0.8125rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: color var(--duration);
}
.p-header__drawer-link.is-current {
  color: var(--color-primary);
}

.p-header__drawer-item--contact {
  margin-block-start: 1.0625rem;
}

.p-header__drawer-contact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  min-height: 3.25rem;
  padding-inline: 1.25rem;
  border: 1px solid var(--color-primary);
  border-radius: 0.25rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: color 0.45s ease;
}
.p-header__drawer-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--color-white);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scaleX(0);
  transform-origin: left center;
}
@media (any-hover: hover) {
  .p-header__drawer-contact:hover {
    opacity: 1;
    color: var(--color-primary);
  }
  .p-header__drawer-contact:hover::before {
    transform: scaleX(1);
  }
}

@media (any-hover: hover) {
  .p-header__nav-link:hover,
  .p-header__drawer-link:hover {
    opacity: 1;
    color: var(--color-primary);
  }
}
.p-single {
  padding-block: 5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-single {
    padding-block: 3rem 3.75rem;
  }
}

.p-single__inner {
  width: min(100%, 68.75rem);
  margin-inline: auto;
}

.p-single__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.p-single__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-single__meta {
    gap: 0.625rem;
  }
}

.p-single__date {
  color: #666;
  font-family: var(--ff-en);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-single__date {
    font-size: 0.875rem;
    line-height: 1.71;
  }
}

.p-single__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.p-single__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  min-height: 1.75rem;
  padding: 0.25rem 1rem;
  border-radius: 0.25rem;
  background-color: #e0e0e0;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-single__category {
    min-width: 5.3125rem;
    min-height: 1.625rem;
  }
}
@media (any-hover: hover) {
  .p-single__category:hover {
    opacity: 0.7;
  }
}

.p-single__title {
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-single__title {
    font-size: 1.375rem;
    line-height: 1.5;
  }
}

.p-single__subtitle {
  color: #666;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-single__subtitle {
    font-size: 0.875rem;
  }
}

.p-single__summary {
  margin-block-start: 1.5rem;
  padding-block: 1rem;
  padding-inline: 1.25rem;
  border-radius: 0.25rem;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-single__summary {
    margin-block-start: 1.25rem;
    padding-inline: 1rem;
  }
}

.p-single__author {
  color: var(--color-text);
  font-size: 0.875rem;
}

.p-single__thumbnail,
.p-single__featured-image {
  overflow: hidden;
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-single__thumbnail,
  .p-single__featured-image {
    margin-block-start: 1.75rem;
  }
}
.p-single__thumbnail img,
.p-single__featured-image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-single__content {
  margin-block-start: 4rem;
}
@media screen and (max-width: 767px) {
  .p-single__content {
    margin-block-start: 2rem;
  }
}

.p-single__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-single__actions {
    margin-block-start: 1.75rem;
  }
}

.p-single__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-block-start: 3rem;
  padding-block-start: 1.5rem;
  border-block-start: 1px solid var(--color-border);
}
@media screen and (max-width: 767px) {
  .p-single__tags {
    margin-block-start: 2rem;
  }
}

.p-single__tag {
  display: inline-block;
  padding-block: 0.25rem;
  padding-inline: 0.75rem;
  border-radius: 0.25rem;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-size: 0.75rem;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-single__tag:hover {
    opacity: 0.7;
  }
}

.p-single__tag--custom {
  cursor: default;
}

.p-single__nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-single__nav {
    gap: 0.75rem;
    margin-block-start: 2.5rem;
  }
}

.p-single__nav-prev {
  min-width: 0;
}

.p-single__nav-center {
  justify-self: center;
}

.p-single__nav-next {
  min-width: 0;
  text-align: end;
}

.p-single__nav-link {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-single__nav-link {
    font-size: 0.8125rem;
  }
}
@media (any-hover: hover) {
  .p-single__nav-link:hover {
    opacity: 0.7;
  }
}

.p-single__nav-button {
  display: flex;
  justify-content: center;
}

.p-single__nav-back {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  min-height: 2.75rem;
  padding-block: 0.5rem;
  padding-inline: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: 0.375rem;
  background-color: transparent;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.45s ease, border-color 0.45s ease;
}
.p-single__nav-back::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--color-black);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scaleX(0);
  transform-origin: left center;
}
@media screen and (max-width: 767px) {
  .p-single__nav-back {
    min-height: 2.5rem;
    padding-inline: 1.25rem;
    font-size: 0.8125rem;
  }
}
@media (any-hover: hover) {
  .p-single__nav-back:hover {
    opacity: 1;
    border-color: var(--color-black);
    color: var(--color-white);
  }
  .p-single__nav-back:hover::before {
    transform: scaleX(1);
  }
}

.p-single__content-pagination {
  margin-block-start: 4rem;
}
@media screen and (max-width: 767px) {
  .p-single__content-pagination {
    margin-block-start: 2.5rem;
  }
}

.p-single__content-pagination-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-single__content-pagination-inner {
    gap: 0.75rem;
  }
}

.p-single__content-pagination-prev {
  min-width: 0;
}

.p-single__content-pagination-center {
  justify-self: center;
}

.p-single__content-pagination-next {
  min-width: 0;
  text-align: end;
}

.p-single__content-pagination-link {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-single__content-pagination-link {
    font-size: 0.8125rem;
  }
}
@media (any-hover: hover) {
  .p-single__content-pagination-link:hover {
    opacity: 0.7;
  }
}

.p-single__content-pagination-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.625rem 1.25rem;
  border: 1px solid var(--color-text);
  color: var(--color-text);
  text-decoration: none;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-single__content-pagination-button:hover {
    opacity: 0.7;
  }
}

.p-single__content-pagination-button-text {
  font-size: 0.875rem;
  font-weight: 500;
}

.p-single__content-pagination-button-arrow {
  width: 1rem;
  height: 0.5rem;
  background-color: currentcolor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10'%3E%3Cpath d='M15,0l5,5-5,5' fill='%23fff'/%3E%3Cpath d='M0,5h18' fill='none' stroke='%23fff' stroke-width='2'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10'%3E%3Cpath d='M15,0l5,5-5,5' fill='%23fff'/%3E%3Cpath d='M0,5h18' fill='none' stroke='%23fff' stroke-width='2'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.p-single__related {
  margin-block-start: 3rem;
  padding-block-start: 2rem;
  border-block-start: 1px solid var(--color-border);
}

.p-single__related-title {
  margin-block-end: 1.5rem;
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 700;
}

.p-single__related-list {
  display: grid;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-single__related-list {
    gap: 1rem;
  }
}

.p-single__related-link {
  display: grid;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.p-single__related-thumbnail {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: var(--color-gray);
}
.p-single__related-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-single__related-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.p-single__related-date {
  color: #666;
  font-size: 0.75rem;
}

.p-single__related-item-title {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

.p-ufb-about-apps {
  padding-block: 7rem 7.5rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-ufb-about-apps {
    padding-block: 3.5rem 3.5rem;
  }
}

.p-ufb-about-apps__lead {
  margin-block-start: 1.75rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-about-apps__lead {
    margin-block-start: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.85;
  }
}

.p-ufb-about-apps__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-block-start: 4.75rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-about-apps__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-block-start: 2rem;
  }
}

.p-ufb-about-apps__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 13.75rem;
  padding: 2.375rem 1rem 2.5rem;
  border-radius: 0.5rem;
  background-color: #eff4f9;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-ufb-about-apps__item {
    min-height: 0;
    padding: 1.25rem 0.75rem 1.125rem;
  }
}

.p-ufb-about-apps__media {
  width: 5rem;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-ufb-about-apps__media {
    width: 3.5rem;
  }
}

.p-ufb-about-apps__title {
  margin-block-start: 1.125rem;
  color: var(--color-text);
  font-size: clamp(1.125rem, 0.7rem + 0.67vw, 1.5rem);
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-about-apps__title {
    margin-block-start: 0.875rem;
    font-size: 1rem;
  }
}

.p-ufb-about-apps__text {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-about-apps__text {
    margin-block-start: 0.5rem;
    font-size: 0.75rem;
  }
}

.p-ufb-about-features {
  padding-block: 7rem 7.5rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-ufb-about-features {
    padding-block: 3.5rem 3.5rem;
  }
}

.p-ufb-about-features__lead {
  margin-block-start: 1.75rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-ufb-about-features__lead {
    margin-block-start: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.85;
  }
}

.p-ufb-about-features__slider.swiper {
  width: 100%;
  margin-block-start: 4.625rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-about-features__slider.swiper {
    width: 100vw;
    margin-block-start: 2rem;
    margin-inline: calc(50% - 50vw);
    overflow: hidden;
  }
}

.p-ufb-about-features__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .p-ufb-about-features__list {
    gap: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-ufb-about-features__list {
    display: flex;
    align-items: stretch;
    gap: 0;
  }
}

@media (width >= 768px) {
  .p-ufb-about-features__list.swiper-wrapper {
    display: grid;
    transform: none;
    transition: none;
  }
}

.p-ufb-about-features__item {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  min-height: 32.75rem;
  height: auto;
  padding: 2rem 1.75rem 2rem;
  border-radius: 0.5rem;
  background-color: #eff4f9;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-ufb-about-features__item {
    padding-inline: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-ufb-about-features__item {
    min-height: 0;
    height: auto;
    padding: 1.5rem 1.25rem 1.75rem;
  }
}

.p-ufb-about-features__item.swiper-slide {
  height: auto;
}
@media (width >= 768px) {
  .p-ufb-about-features__item.swiper-slide {
    width: auto;
    height: auto;
    margin: 0;
  }
}

@media (width >= 768px) {
  .p-ufb-about-features__slider.swiper {
    overflow: visible;
  }
}

.p-ufb-about-features__pagination {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-ufb-about-features__pagination {
    position: static;
    inset: auto;
    bottom: auto;
    left: auto;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-block-start: 2rem;
    transform: none;
  }
}

@media screen and (max-width: 767px) {
  .p-ufb-about-features__slider.swiper-horizontal > .p-ufb-about-features__pagination {
    position: static;
    inset: auto;
    bottom: auto;
    left: auto;
    width: auto;
    transform: none;
  }
}

.p-ufb-about-features__pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  margin: 0;
  border-radius: 50%;
  background-color: var(--color-text);
  opacity: 1;
}

.p-ufb-about-features__pagination .swiper-pagination-bullet-active {
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--color-primary);
}

.p-ufb-about-features__num {
  position: absolute;
  top: 3.25rem;
  left: 2.875rem;
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-ufb-about-features__num {
    top: 1rem;
    left: 1rem;
    font-size: 1rem;
  }
}

.p-ufb-about-features__media {
  aspect-ratio: 1;
  overflow: hidden;
  width: min(12.5rem, 100%);
  margin-block-start: 0.75rem;
  padding: 0.25rem;
  border-radius: 50%;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-ufb-about-features__media {
    width: 10rem;
  }
}
.p-ufb-about-features__media img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-ufb-about-features__title {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-size: clamp(1.125rem, 0.7rem + 0.67vw, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-ufb-about-features__title {
    margin-block-start: 1rem;
    font-size: 1.125rem;
  }
}

.p-ufb-about-features__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-block-start: 0.75rem;
  padding: 0.25rem 1.375rem;
  border: 0.0625rem solid #d4d4d4;
  border-radius: 100vmax;
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .p-ufb-about-features__tag {
    font-size: 0.6875rem;
  }
}

.p-ufb-about-features__text {
  margin-block-start: 0.75rem;
  padding-inline: 0.75rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-about-features__text {
    margin-block-start: 1rem;
    padding-inline: 0;
    font-size: 0.8125rem;
  }
}

.p-ufb-about-methods {
  padding-block: 7.125rem 7.5rem;
  background-color: #eff4f8;
}
@media screen and (max-width: 767px) {
  .p-ufb-about-methods {
    padding-block: 3.5rem 3.5rem;
  }
}

.p-ufb-about-methods__lead {
  margin-block-start: 1.75rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-about-methods__lead {
    margin-block-start: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.85;
  }
}

.p-ufb-about-methods__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.25rem;
  margin-block-start: 4.75rem;
  align-items: stretch;
}
@media screen and (max-width: 1023px) {
  .p-ufb-about-methods__list {
    gap: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-ufb-about-methods__list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-block-start: 2rem;
  }
}

.p-ufb-about-methods__item {
  display: flex;
  flex-direction: column;
  padding: 3rem clamp(1rem, -0.98rem + 4.14vw, 2.375rem) 2.5rem;
  border: 0.0625rem solid #d4d4d4;
  border-radius: 0.375rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-ufb-about-methods__item {
    padding: 1.5rem 1.25rem 1.5rem;
  }
}

.p-ufb-about-methods__item--featured {
  border-color: var(--color-primary);
  background-color: #e9f8ff;
}
.p-ufb-about-methods__item--featured .p-ufb-about-methods__type {
  color: var(--color-primary);
}
.p-ufb-about-methods__item--featured .p-ufb-about-methods__spec {
  background-color: #c9edfd;
}

.p-ufb-about-methods__type {
  color: #666;
  font-family: var(--ff-en);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-ufb-about-methods__type {
    font-size: 0.875rem;
  }
}

.p-ufb-about-methods__title {
  margin-block-start: 0.5rem;
  color: var(--color-text);
  font-size: clamp(1.125rem, 0.7rem + 0.67vw, 1.5rem);
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-about-methods__title {
    font-size: 1.25rem;
  }
}

.p-ufb-about-methods__subtitle {
  margin-block-start: 1.125rem;
  padding-block-end: 0.6875rem;
  border-block-end: 0.0625rem solid #d4d4d4;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-about-methods__subtitle {
    font-size: 0.875rem;
  }
}

.p-ufb-about-methods__points {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-block-start: 0.875rem;
  margin-block-end: 1.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-ufb-about-methods__points {
    gap: 0.5rem;
    font-size: 0.75rem;
  }
}
.p-ufb-about-methods__points li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.p-ufb-about-methods__points li::before {
  content: "";
  flex-shrink: 0;
  width: 0.375rem;
  height: 0.375rem;
  margin-block-start: 0.75rem;
  border-radius: 50%;
  background-color: currentColor;
}
@media screen and (max-width: 767px) {
  .p-ufb-about-methods__points li::before {
    width: 0.25rem;
    height: 0.25rem;
    margin-block-start: 0.625rem;
  }
}

.p-ufb-about-methods__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-block-start: auto;
  padding-block-start: 1.5rem;
  border-block-start: 0.0625rem solid #d4d4d4;
}

.p-ufb-about-methods__spec {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.125rem;
  padding: 0.125rem 1.3125rem;
  border-radius: 0.25rem;
  background-color: #f3f4f6;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-about-methods__spec {
    min-width: 5.5rem;
    padding: 0.125rem 1rem;
    font-size: 0.75rem;
  }
}

.p-ufb-about-methods__spec-label::after {
  content: ":";
}

.p-ufb-about-next {
  margin-block-end: 1.25rem;
  padding-block: 7.125rem 7.5rem;
  background-color: #eff4f8;
}
@media screen and (max-width: 767px) {
  .p-ufb-about-next {
    padding-block: 3.5rem 3.5rem;
  }
}

.p-ufb-about-next__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.4375rem;
  margin-block-start: 4.25rem;
  align-items: stretch;
}
@media screen and (max-width: 1023px) {
  .p-ufb-about-next__list {
    gap: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-ufb-about-next__list {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-block-start: 2rem;
  }
}

.p-ufb-about-next__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 25rem;
  padding: clamp(3rem, 1.56rem + 3.01vw, 4rem) clamp(1rem, -0.08rem + 2.26vw, 1.75rem) clamp(2rem, -0.53rem + 5.26vw, 3.75rem);
  border-radius: 0.375rem;
  background-color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-ufb-about-next__item {
    min-height: 0;
    padding: 1.5rem 1.25rem 1.5rem;
  }
}

.p-ufb-about-next__media {
  margin: 0;
}
.p-ufb-about-next__media img {
  display: block;
  width: 100%;
  height: auto;
}

.p-ufb-about-next__media--01 {
  width: 3rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-about-next__media--01 {
    width: 2.5rem;
  }
}

.p-ufb-about-next__media--02 {
  width: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-about-next__media--02 {
    width: 3rem;
  }
}

.p-ufb-about-next__media--03 {
  width: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-about-next__media--03 {
    width: 2rem;
  }
}

.p-ufb-about-next__title {
  margin-block-start: 2.125rem;
  color: var(--color-text);
  font-size: clamp(1.125rem, 0.7rem + 0.67vw, 1.5rem);
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-about-next__title {
    margin-block-start: 0.75rem;
    font-size: 1.125rem;
  }
}

.p-ufb-about-next__text {
  margin-block-start: 0.875rem;
  margin-block-end: 1.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-about-next__text {
    margin-block-start: 0.5rem;
    margin-block-end: 1rem;
    font-size: 0.875rem;
  }
}

.p-ufb-about-next__button {
  width: 100%;
  max-width: 19rem;
  min-width: 0;
  margin-block-start: auto;
}
@media screen and (max-width: 767px) {
  .p-ufb-about-next__button {
    max-width: none;
  }
}

.p-ufb-about-what {
  padding-block: 6.625rem 7.5rem;
  background-color: #eff4f9;
}
@media screen and (max-width: 767px) {
  .p-ufb-about-what {
    padding-block: 3rem 3.5rem;
  }
}

.p-ufb-about-what__text-wrap {
  margin-block-start: 1.875rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-ufb-about-what__text-wrap {
    margin-block-start: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.85;
  }
}
.p-ufb-about-what__text-wrap .p-ufb-about-what__text + .p-ufb-about-what__text {
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-about-what__text-wrap .p-ufb-about-what__text + .p-ufb-about-what__text {
    margin-block-start: 1rem;
  }
}

.p-ufb-about-what__link {
  margin-block-start: 0;
}

.p-ufb-about-what__link-a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  text-underline-offset: 0.1875rem;
  transition: opacity var(--duration) ease;
}
.p-ufb-about-what__link-a::before {
  content: ">";
  flex-shrink: 0;
}
.p-ufb-about-what__link-a::after {
  content: "";
  position: absolute;
  bottom: 0.1875rem;
  inset-inline-start: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-text);
}
@media (any-hover: hover) {
  .p-ufb-about-what__link-a:hover {
    opacity: 0.7;
  }
}

.p-ufb-about-chart {
  margin-block-start: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-about-chart {
    margin-block-start: 2rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.p-ufb-about-chart__visuals,
.p-ufb-about-chart__heads,
.p-ufb-about-chart__table-wrap,
.p-ufb-about-chart__table {
  width: 100%;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-ufb-about-chart__visuals,
  .p-ufb-about-chart__heads,
  .p-ufb-about-chart__table-wrap,
  .p-ufb-about-chart__table {
    min-width: 50rem;
  }
}

.p-ufb-about-chart__visuals {
  display: grid;
  grid-template-columns: 18.3% minmax(0, 1fr) minmax(0, 1fr) minmax(0, 0.96fr);
  align-items: stretch;
  background-color: #e8f4fc;
}

.p-ufb-about-chart__visual-spacer,
.p-ufb-about-chart__head-spacer {
  min-height: 0;
}

.p-ufb-about-chart__visual {
  display: block;
  margin: 0;
  min-height: 10.3125rem;
  overflow: hidden;
}
.p-ufb-about-chart__visual img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}

.p-ufb-about-chart__heads {
  display: grid;
  grid-template-columns: 18.3% minmax(0, 1fr) minmax(0, 1fr) minmax(0, 0.96fr);
  grid-template-rows: auto auto;
}

.p-ufb-about-chart__head-spacer {
  grid-column: 1;
  grid-row: 1/3;
}

.p-ufb-about-chart__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  min-width: 0;
  min-height: 5rem;
  padding: 0.5rem 0.375rem;
  color: var(--color-white);
  text-align: center;
}

.p-ufb-about-chart__head--ufb {
  grid-column: 2;
  grid-row: 1;
  border: 1px solid #ffbd00;
  background-color: #014099;
}

.p-ufb-about-chart__head--mb {
  grid-column: 3;
  grid-row: 1;
  border: 1px solid #ffbd00;
  border-left: none;
  background-color: #0099ff;
}

.p-ufb-about-chart__head--milli {
  grid-column: 4;
  grid-row: 1/3;
  background-color: #339999;
}

.p-ufb-about-chart__head-ja {
  max-width: 100%;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 767px) {
  .p-ufb-about-chart__head-ja {
    font-size: 0.75rem;
  }
}

.p-ufb-about-chart__head-en {
  max-width: 100%;
  font-family: var(--ff-en);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 767px) {
  .p-ufb-about-chart__head-en {
    font-size: 0.625rem;
  }
}

.p-ufb-about-chart__fine {
  display: flex;
  grid-column: 2/4;
  grid-row: 2;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 3.25rem;
  padding: 0.375rem 0.5rem;
  border-inline: 0.1875rem solid #ffbd00;
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  background-color: #ffbd00;
}

.p-ufb-about-chart__fine-ja {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-about-chart__fine-ja {
    font-size: 0.875rem;
  }
}

.p-ufb-about-chart__fine-en {
  font-family: var(--ff-en);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-ufb-about-chart__fine-en {
    font-size: 0.75rem;
  }
}

.p-ufb-about-chart__table-wrap {
  position: relative;
}

.p-ufb-about-chart__table-wrap::after {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-start: 18.3%;
  width: calc((100% - 18.3%) * 2 / 2.96);
  box-sizing: border-box;
  border: 0.1875rem solid #ffbd00;
  border-block-start: 0;
  pointer-events: none;
  z-index: 1;
}

.p-ufb-about-chart__table {
  border-collapse: collapse;
  table-layout: fixed;
  background-color: var(--color-white);
}

.p-ufb-about-chart__col-label {
  width: 18.3%;
}

.p-ufb-about-chart__col-ufb,
.p-ufb-about-chart__col-mb {
  width: calc((100% - 18.3%) * 1 / 2.96);
}

.p-ufb-about-chart__col-milli {
  width: calc((100% - 18.3%) * 0.96 / 2.96);
}

.p-ufb-about-chart__th,
.p-ufb-about-chart__table td {
  padding: 0.375rem 0.75rem 1rem;
  border: 0.0625rem solid #d4d4d4;
  vertical-align: middle;
  text-align: center;
  overflow-wrap: anywhere;
}

.p-ufb-about-chart__th {
  color: var(--color-white);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  background-color: #333;
}
@media screen and (max-width: 767px) {
  .p-ufb-about-chart__th {
    font-size: 0.75rem;
    padding: 0.75rem 0.5rem;
  }
}

.p-ufb-about-chart__th-main,
.p-ufb-about-chart__th-sub {
  display: block;
}

.p-ufb-about-chart__th-sub {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin-block-start: 0.625rem;
  margin-inline: auto;
  padding: 0rem 0.8125rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.7);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.714;
  letter-spacing: 0.02em;
}

.p-ufb-about-chart__table td {
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-ufb-about-chart__table td {
    font-size: 0.75rem;
    padding: 0.75rem 0.5rem;
  }
}

.p-ufb-about-chart__value {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.77;
}
@media screen and (max-width: 767px) {
  .p-ufb-about-chart__value {
    font-size: 0.8125rem;
  }
}

.p-ufb-about-chart__compare {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin-block-start: 0.5rem;
  margin-inline: auto;
  padding: 0 0.625rem;
  border: 0.0625rem solid var(--color-text);
  text-align: left;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-ufb-about-chart__compare {
    font-size: 0.6875rem;
    padding: 0.375rem 0.5rem;
  }
}
.p-ufb-about-chart__compare li {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.25rem;
}
.p-ufb-about-chart__compare li::before {
  content: "■";
  flex-shrink: 0;
}

.p-ufb-about-chart__dynamics {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.p-ufb-about-chart__note {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.71;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-about-chart__note {
    font-size: 0.6875rem;
  }
}

.p-ufb-about-chart__summary {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.77;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-ufb-about-chart__summary {
    font-size: 0.75rem;
  }
}

.p-ufb-about-chart__row-dynamics td {
  vertical-align: top;
  border-block-end: 0;
}

.p-ufb-about-chart__row-summary td {
  vertical-align: middle;
  border-block-start: 0.0625rem solid #d4d4d4;
  padding-block-end: 0.625rem;
}

.p-ufb-case {
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-case {
    padding-block: 3rem;
  }
}

.p-ufb-case__controls {
  display: grid;
  gap: 2rem;
}

.p-ufb-case__tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.625rem;
  border-block-end: 1px solid #d4d4d4;
}
@media screen and (max-width: 767px) {
  .p-ufb-case__tabs {
    gap: 0.5rem;
  }
}

.p-ufb-case__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.9375rem;
  padding: 0.75rem 1rem;
  border: 1px solid #d4d4d4;
  border-block-end: none;
  border-radius: 0.375rem 0.375rem 0 0;
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: clamp(1.25rem, 0.96rem + 0.45vw, 1.5rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
  font-feature-settings: "palt";
  cursor: pointer;
  transition: background-color var(--duration), border-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-ufb-case__tab {
    min-height: 3rem;
    padding-inline: 0.375rem;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
  }
}
.p-ufb-case__tab[aria-selected=true] {
  background-color: #d4d4d4;
}
@media (any-hover: hover) {
  .p-ufb-case__tab:hover:not([aria-selected=true]) {
    background-color: #f5f5f5;
  }
}
.p-ufb-case__tab:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.p-ufb-case__filter-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-ufb-case__filter-btns {
    justify-content: flex-start;
    gap: 0.5rem;
  }
}

.p-ufb-case__filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.625rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid #ddd;
  border-radius: 0.375rem;
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-ufb-case__filter-btn {
    min-height: 2.25rem;
    padding: 0.375rem 0.875rem;
    font-size: 0.75rem;
  }
}
.p-ufb-case__filter-btn.is-active {
  border-color: var(--color-text);
  background-color: var(--color-text);
  color: var(--color-white);
}
@media (any-hover: hover) {
  .p-ufb-case__filter-btn:not(.is-active):hover {
    border-color: var(--color-text);
  }
}

.p-ufb-case__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 1.5rem;
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-case__list {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
    margin-block-start: 2rem;
  }
}

.p-ufb-case__item.is-hidden {
  display: none;
}

.p-ufb-case__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  border-radius: 0.375rem;
  background-color: var(--color-white);
  color: inherit;
  text-decoration: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

@media (any-hover: hover) {
  a.p-ufb-case__card:hover .p-ufb-case__image {
    transform: scale(1.08);
  }
}

.p-ufb-case__media {
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 374/244;
  background-color: #e8e8e8;
}

.p-ufb-case__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 0.375rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.4s ease;
}

.p-ufb-case__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-case__body {
    padding: 1rem;
  }
}

.p-ufb-case__title {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-case__title {
    font-size: 0.9375rem;
  }
}

.p-ufb-case__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-block-start: auto;
  padding-block-start: 0.75rem;
}

.p-ufb-case__tag {
  padding: 0.125rem 1rem;
  border-radius: 0.375rem;
  background-color: #f5f5f5;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.p-ufb-case__empty {
  margin-block-start: 2.5rem;
  color: #666;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

.p-ufb-case__pagination {
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-case__pagination {
    margin-block-start: 2rem;
  }
}

.p-ufb-case__evidence {
  display: flex;
  justify-content: center;
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-case__evidence {
    margin-block-start: 3.5rem;
  }
}

.p-ufb-case__evidence .c-button {
  min-width: 17.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-case__evidence .c-button {
    min-width: auto;
    width: 100%;
  }
}

.p-ufb-case-cta.c-ufb-contact {
  padding-block: 5rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-case-cta.c-ufb-contact {
    padding-block: 3rem 1.5rem;
  }
}

.p-ufb-case-related.c-related-links {
  padding-block: 2.5rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-case-related.c-related-links {
    padding-block: 1rem 3rem;
  }
}

.p-ufb-case-related-posts {
  padding-block: 5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-case-related-posts {
    padding-block: 3rem 3.75rem;
  }
}

.p-ufb-case-related-posts__list {
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-case-related-posts__list {
    margin-block-start: 2rem;
  }
}

.p-single--case .p-single__category {
  min-width: auto;
  min-height: auto;
  padding: 0.125rem 1rem;
  border-radius: 0.375rem;
  background-color: #f5f5f5;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media (any-hover: hover) {
  .p-single--case .p-single__category:hover {
    opacity: 0.7;
  }
}

/**
 * Swiper 8.4.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 30, 2023
 */
@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;
}
:root {
  --swiper-theme-color:#007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

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

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

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

.swiper-pointer-events {
  touch-action: pan-y;
}

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

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

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

.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);
  backface-visibility: hidden;
}

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  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-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

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

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

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

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

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

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

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

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

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

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

.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-button-next, .swiper-button-prev {
  position: absolute;
  top: 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-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

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

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

.swiper-button-next:after, .swiper-button-prev: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, .swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

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

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

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

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

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s 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;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.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: 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;
  -moz-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-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

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

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

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s 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: 0.2s transform, 0.2s left;
}

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

.swiper-pagination-progressbar {
  background: 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-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

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

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

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: 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: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

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

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

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

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

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

.swiper-slide-zoomed {
  cursor: move;
}

.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-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .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);
  }
}
.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, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  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-next + .swiper-slide, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.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-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  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;
}

.swiper-flip .swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

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

.p-ufb-column {
  width: 100%;
  padding-block: 7.125rem 7.5rem;
  background-color: #eff4f8;
}
@media screen and (max-width: 1023px) {
  .p-ufb-column {
    padding-block: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-ufb-column {
    padding-block: 3.375rem 3.75rem;
  }
}

.p-ufb-column__slider {
  width: 100%;
  margin-block-start: 4.25rem;
}
@media screen and (max-width: 1023px) {
  .p-ufb-column__slider {
    margin-block-start: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-ufb-column__slider {
    width: 100vw;
    margin-block-start: 2.25rem;
    margin-inline: calc(50% - 50vw);
    padding-inline: 0;
    overflow: hidden;
  }
}

.p-ufb-column__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .p-ufb-column__list {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-ufb-column__list {
    display: flex;
    gap: 0;
  }
}

@media (width >= 768px) {
  .p-ufb-column__list.swiper-wrapper {
    display: grid;
    transform: none;
    transition: none;
  }
}

.p-ufb-column__item {
  min-width: 0;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-ufb-column__item {
    height: auto;
  }
}

@media (width >= 768px) {
  .p-ufb-column__item.swiper-slide {
    width: auto;
    height: auto;
    margin: 0;
  }
}

@media (width >= 768px) {
  .p-ufb-column__slider.swiper {
    overflow: visible;
  }
}

.p-ufb-column__pagination {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-ufb-column__pagination {
    position: static;
    inset: auto;
    bottom: auto;
    left: auto;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-block-start: 2.4375rem;
    transform: none;
  }
}

@media screen and (max-width: 767px) {
  .p-ufb-column__slider.swiper-horizontal > .p-ufb-column__pagination {
    position: static;
    inset: auto;
    bottom: auto;
    left: auto;
    width: auto;
    transform: none;
  }
}

.p-ufb-column__pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  margin: 0 !important;
  border-radius: 50%;
  background-color: var(--color-text);
  opacity: 1;
}

.p-ufb-column__pagination .swiper-pagination-bullet-active {
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--color-primary);
}

.p-ufb-column__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-block-end: 1.25rem;
  border-block-end: 0.125rem solid #d4d4d4;
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-ufb-column__card {
    padding-block-end: 1rem;
  }
}
@media (any-hover: hover) {
  .p-ufb-column__card:hover .p-ufb-column__image {
    scale: 1.06;
  }
  .p-ufb-column__card:hover .p-ufb-column__arrow-icon {
    translate: 0.5rem 0;
  }
}

.p-ufb-column__visual {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 374/255;
  border: 1px solid #d4d4d4;
  border-radius: 0.375rem;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .p-ufb-column__visual {
    aspect-ratio: 280/190;
  }
}

.p-ufb-column__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.p-ufb-column__body {
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-column__body {
    padding-inline: 0;
  }
}

.p-ufb-column__heading {
  display: -webkit-box;
  margin-block-start: 2rem;
  overflow: hidden;
  color: var(--color-text);
  font-size: clamp(1.25rem, 0.89rem + 0.75vw, 1.5rem);
  font-weight: 700;
  line-height: 1.58;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 767px) {
  .p-ufb-column__heading {
    margin-block-start: 1rem;
    font-size: 1.125rem;
    line-height: 1.55;
  }
}

.p-ufb-column__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.5rem;
  margin-block-start: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-column__meta {
    gap: 0.75rem;
    margin-block-start: 0.75rem;
  }
}

.p-ufb-column__date {
  color: #666;
  font-family: var(--ff-en);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-column__date {
    font-size: 0.875rem;
    line-height: 1.71;
  }
}

.p-ufb-column__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.5rem;
  min-height: 2rem;
  padding: 0.25rem 1rem;
  border-radius: 0.25rem;
  background-color: #e0e0e0;
  color: var(--color-text);
  font-size: clamp(0.875rem, 0.69rem + 0.38vw, 1rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-column__tag {
    min-width: 5.875rem;
    min-height: 1.625rem;
    font-size: 0.875rem;
  }
}

.p-ufb-column__arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-block-start: auto;
  padding-block-start: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-column__arrow {
    padding-block-start: 1.125rem;
    padding-inline-end: 1.125rem;
  }
}

.p-ufb-column__arrow-icon {
  width: 1.25rem;
  height: 0.625rem;
  background-color: currentcolor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23fff; %7D .cls-2 %7B fill: none; stroke: %23fff; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M15,0l5,5-5,5' /%3E%3Cpath class='cls-2' d='M0,5h18' /%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23fff; %7D .cls-2 %7B fill: none; stroke: %23fff; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M15,0l5,5-5,5' /%3E%3Cpath class='cls-2' d='M0,5h18' /%3E%3C/svg%3E%0A");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transition: translate var(--duration);
}
@media screen and (max-width: 767px) {
  .p-ufb-column__arrow-icon {
    width: 1rem;
    height: 0.5rem;
  }
}

.p-ufb-column__actions {
  display: flex;
  justify-content: flex-end;
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-column__actions {
    margin-block-start: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-ufb-column__actions .c-button {
    width: 100%;
  }
}

.p-ufb-contact-intro {
  padding-block: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-ufb-contact-intro {
    padding-block: 2.5rem 0;
  }
}

.p-ufb-contact-intro__texts {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-ufb-contact-intro__texts {
    text-align: left;
  }
}

.p-ufb-contact-intro__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-contact-intro__text {
    font-size: 0.875rem;
    line-height: 1.75;
  }
}

.p-ufb-contact {
  padding-block: 3.75rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-contact {
    padding-block: 2rem 3.75rem;
  }
}

.p-ufb-contact--confirm {
  padding-block: 5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-contact--confirm {
    padding-block: 2.5rem 3.75rem;
  }
}

.p-ufb-contact__notice {
  width: min(100%, 62.5rem);
  margin-inline: auto;
}

.p-ufb-contact__form-wrap {
  width: min(100%, 62.5rem);
  margin-block-start: 5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-ufb-contact__form-wrap {
    margin-block-start: 2.5rem;
  }
}

.p-ufb-contact--confirm .p-ufb-contact__form-wrap {
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-contact--confirm .p-ufb-contact__form-wrap {
    margin-block-start: 2rem;
  }
}

.p-ufb-download {
  padding-block: 0;
}

.p-ufb-download__inner {
  max-width: min(100%, 120rem);
  margin-inline: auto;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-download__inner {
    padding-inline: 0;
  }
}

.p-ufb-download__banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 43.875rem;
  border-radius: 0.625rem;
  isolation: isolate;
}
@media screen and (max-width: 767px) {
  .p-ufb-download__banner {
    min-height: 26.875rem;
    border-radius: 0;
  }
}

.p-ufb-download__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #000;
}

.p-ufb-download__bg-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-ufb-download__card {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 40rem);
  min-height: 28.875rem;
  padding: 2.5rem 5rem 3rem;
  border-radius: 0.375rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-ufb-download__card {
    width: min(100%, 21.875rem);
    min-height: 0;
    margin-block: 2.5rem;
    margin-inline: 1rem;
    padding: 2.125rem 1.25rem 2.625rem;
  }
}

.p-ufb-download__content {
  width: 100%;
  max-width: 30rem;
}

.p-ufb-download__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-ufb-download__title {
    gap: 0.25rem;
  }
}

.p-ufb-download__en {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  color: var(--color-text);
  font-family: var(--ff-en);
  font-size: clamp(1rem, 0.86rem + 0.22vw, 1.125rem);
  font-weight: 600;
  line-height: 1.77;
}
@media screen and (max-width: 767px) {
  .p-ufb-download__en {
    gap: 0.75rem;
    font-size: 0.9375rem;
  }
}
.p-ufb-download__en::before {
  content: "";
  flex-shrink: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-ufb-download__en::before {
    width: 0.375rem;
    height: 0.375rem;
  }
}

.p-ufb-download__ja {
  color: var(--color-text);
  font-size: clamp(1.75rem, 0.89rem + 1.34vw, 2.5rem);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-download__ja {
    font-size: 1.375rem;
    line-height: 1.375;
  }
}

.p-ufb-download__text {
  margin-block-start: 2.375rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-download__text {
    margin-block-start: 1rem;
    font-size: 0.875rem;
    line-height: 1.71;
  }
}

.p-ufb-download__button-wrapper {
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-download__button-wrapper {
    margin-block-start: 1.25rem;
  }
}

.p-ufb-download__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  min-height: 5rem;
  padding-inline: 1.5rem;
  border: 1px solid var(--color-black);
  border-radius: 0.25rem;
  background-color: var(--color-black);
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.45s ease;
}
@media screen and (max-width: 767px) {
  .p-ufb-download__button {
    min-height: 4rem;
  }
}
.p-ufb-download__button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--color-white);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scaleX(0);
  transform-origin: left center;
}
@media (any-hover: hover) {
  .p-ufb-download__button:hover {
    opacity: 1;
    color: var(--color-black);
  }
  .p-ufb-download__button:hover::before {
    transform: scaleX(1);
  }
}

.p-ufb-download__button-text {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-download__button-text {
    font-size: 0.875rem;
  }
}

.p-ufb-engine-intro {
  padding-block: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-ufb-engine-intro {
    padding-block: 2.5rem 0;
  }
}

.p-ufb-engine-intro__texts {
  text-align: left;
}

.p-ufb-engine-intro__text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-engine-intro__text {
    font-size: 0.875rem;
    line-height: 1.75;
  }
}

.p-ufb-engine {
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-engine {
    padding-block: 3rem;
  }
}

.p-ufb-engine__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .p-ufb-engine__filter {
    justify-content: flex-start;
    gap: 0.5rem;
  }
}

.p-ufb-engine__filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.625rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid #ddd;
  border-radius: 0.375rem;
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-ufb-engine__filter-btn {
    min-height: 2.25rem;
    padding: 0.375rem 0.875rem;
    font-size: 0.75rem;
  }
}
.p-ufb-engine__filter-btn.is-active {
  border-color: var(--color-black);
  background-color: var(--color-black);
  color: var(--color-white);
}
@media (any-hover: hover) {
  .p-ufb-engine__filter-btn:hover:not(.is-active) {
    border-color: var(--color-black);
    color: var(--color-black);
  }
}

.p-ufb-engine__list {
  display: grid;
  gap: 4rem;
  margin-block-start: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-engine__list {
    gap: 2.5rem;
    margin-block-start: 2rem;
  }
}

.p-ufb-engine__item.is-hidden {
  display: none;
}

.p-ufb-engine__name {
  color: var(--color-text);
  font-size: clamp(1.75rem, 1.39rem + 0.75vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-engine__name {
    font-size: 1.5rem;
  }
}

.p-ufb-engine__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, -0.67rem + 4.51vw, 3rem);
  align-items: start;
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-engine__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
    margin-block-start: 1rem;
  }
}

.p-ufb-engine__media {
  position: relative;
  overflow: hidden;
  border-radius: 0.375rem;
  aspect-ratio: 455/349;
  background-color: #e8eef1;
}

.p-ufb-engine__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.5rem;
  padding: 0.25rem 1rem;
  border: 1px solid #d4d4d4;
  border-radius: 0.375rem;
  background-color: #eee;
  color: var(--color-text);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-ufb-engine__tag {
    top: 0.75rem;
    left: 0.75rem;
    min-height: 2rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
  }
}

.p-ufb-engine__image,
.p-ufb-engine__image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-ufb-engine__image-placeholder {
  background: linear-gradient(135deg, #dfe8f0 0%, #eff4f9 50%, #d4dee8 100%);
}

.p-ufb-engine__table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #d4e0ec;
}
.p-ufb-engine__table th,
.p-ufb-engine__table td {
  padding: 0.875rem 1rem;
  border-block-end: 1px solid #d4e0ec;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
  text-align: left;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .p-ufb-engine__table th,
  .p-ufb-engine__table td {
    padding: 0.75rem 0.875rem;
    font-size: 0.8125rem;
  }
}
.p-ufb-engine__table th {
  width: 10.5rem;
  border-inline-end: 1px solid #d4e0ec;
  background-color: #eff4f9;
  color: var(--color-text);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-ufb-engine__table th {
    display: block;
    width: 100%;
    border-block-end: 1px solid #d4e0ec;
    border-inline-end: 0;
  }
}
.p-ufb-engine__table td {
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-ufb-engine__table td {
    display: block;
    width: 100%;
  }
}
.p-ufb-engine__table tr:last-child th,
.p-ufb-engine__table tr:last-child td {
  border-block-end: none;
}

.p-ufb-engine__table-lines {
  display: grid;
  gap: 0.25rem;
}

.p-ufb-engine__table-line {
  position: relative;
  padding-inline-start: 0.875rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
.p-ufb-engine__table-line::before {
  content: "";
  position: absolute;
  top: 0.625rem;
  left: 0;
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-ufb-engine__table-line {
    font-size: 0.8125rem;
  }
}

.p-ufb-engine__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-block-start: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-engine__actions {
    margin-block-start: 1.25rem;
    flex-direction: column;
  }
}

.p-ufb-engine__action .c-button {
  min-width: 12.5rem;
  min-height: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-engine__action .c-button {
    min-width: auto;
    width: 100%;
  }
}

.p-ufb-engine__empty {
  margin-block-start: 2.5rem;
  color: #666;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

.p-ufb-engine-cta.c-ufb-contact {
  padding-block: 5rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-engine-cta.c-ufb-contact {
    padding-block: 3rem 1.5rem;
  }
}

.p-ufb-engine-related.c-related-links {
  padding-block: 2.5rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-engine-related.c-related-links {
    padding-block: 1rem 3rem;
  }
}

.p-ufb-evidence-intro {
  padding-block: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-ufb-evidence-intro {
    padding-block: 2.5rem 0;
  }
}

.p-ufb-evidence-intro__texts {
  text-align: left;
}

.p-ufb-evidence-intro__text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-evidence-intro__text {
    font-size: 0.875rem;
    line-height: 1.75;
  }
}

.p-ufb-evidence {
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-evidence {
    padding-block: 3rem;
  }
}

.p-ufb-evidence__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-ufb-evidence__filter {
    justify-content: flex-start;
    gap: 0.5rem;
  }
}

.p-ufb-evidence__filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.625rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid #ddd;
  border-radius: 0.375rem;
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-ufb-evidence__filter-btn {
    min-height: 2.25rem;
    padding: 0.375rem 0.875rem;
    font-size: 0.75rem;
  }
}
.p-ufb-evidence__filter-btn.is-active {
  border-color: var(--color-text);
  background-color: var(--color-text);
  color: var(--color-white);
}
@media (any-hover: hover) {
  .p-ufb-evidence__filter-btn:not(.is-active):hover {
    border-color: var(--color-text);
  }
}

.p-ufb-evidence__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 1.5rem;
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-evidence__list {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
    margin-block-start: 2rem;
  }
}

.p-ufb-evidence__item.is-hidden {
  display: none;
}

.p-ufb-evidence__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  border-radius: 0.375rem;
  background-color: var(--color-white);
  color: inherit;
  text-decoration: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

@media (any-hover: hover) {
  a.p-ufb-evidence__card:hover .p-ufb-evidence__image {
    transform: scale(1.08);
  }
}

.p-ufb-evidence__media {
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 374/244;
  background-color: #e8e8e8;
}

.p-ufb-evidence__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.4s ease;
}

.p-ufb-evidence__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem 1.25rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-evidence__body {
    padding: 1rem;
  }
}

.p-ufb-evidence__title {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-evidence__title {
    font-size: 0.9375rem;
  }
}

.p-ufb-evidence__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-block-start: auto;
  padding-block-start: 0.875rem;
}

.p-ufb-evidence__tag {
  padding: 0.125rem 1rem;
  border-radius: 0.375rem;
  background-color: #f5f5f5;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.p-ufb-evidence__empty {
  margin-block-start: 2.5rem;
  color: #666;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

.p-ufb-evidence__pagination {
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-evidence__pagination {
    margin-block-start: 2rem;
  }
}

.p-ufb-evidence__cases {
  display: flex;
  justify-content: center;
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-evidence__cases {
    margin-block-start: 3.5rem;
  }
}
.p-ufb-evidence__cases .c-button {
  min-width: 17.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-evidence__cases .c-button {
    min-width: auto;
    width: 100%;
  }
}

.p-ufb-evidence-related.c-related-links {
  padding-block: 2.5rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-evidence-related.c-related-links {
    padding-block: 1rem 3rem;
  }
}

.p-ufb-evidence-related-posts {
  padding-block: 5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-evidence-related-posts {
    padding-block: 3rem 3.75rem;
  }
}

.p-ufb-evidence-related-posts__list {
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-evidence-related-posts__list {
    margin-block-start: 2rem;
  }
}

.p-single--evidence .p-single__category {
  min-width: auto;
  min-height: auto;
  padding: 0.125rem 1rem;
  border-radius: 0.375rem;
  background-color: #f5f5f5;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media (any-hover: hover) {
  .p-single--evidence .p-single__category:hover {
    opacity: 0.7;
  }
}

.p-ufb-factory-intro {
  padding-block: 2.5rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-factory-intro {
    padding-block: 1.5rem 3rem;
  }
}

.p-ufb-factory-intro__texts {
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-factory-intro__texts {
    margin-block-start: 1.5rem;
  }
}

.p-ufb-factory-intro__text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-factory-intro__text {
    font-size: 0.875rem;
    line-height: 1.75;
  }
}

.p-ufb-factory-advantages {
  padding-block: 2.5rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-factory-advantages {
    padding-block: 1.5rem 3.5rem;
  }
}

.p-ufb-factory-advantages__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 0.17rem + 2.26vw, 2rem);
  margin-block-start: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-factory-advantages__list {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    margin-block-start: 2rem;
  }
}

.p-ufb-factory-advantages__item {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 2.25rem 1.75rem 2rem;
  border-radius: 0.375rem;
  background-color: #eff4f9;
}
@media screen and (max-width: 767px) {
  .p-ufb-factory-advantages__item {
    padding: 1.75rem 1.25rem 1.5rem;
  }
}

.p-ufb-factory-advantages__num {
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-ufb-factory-advantages__num {
    font-size: 1.75rem;
  }
}

.p-ufb-factory-advantages__heading {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-size: clamp(1.25rem, 0.89rem + 0.75vw, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-factory-advantages__heading {
    margin-block-start: 0.75rem;
    font-size: 1.125rem;
  }
}

.p-ufb-factory-advantages__text {
  margin-block-start: 0.75rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-factory-advantages__text {
    font-size: 0.875rem;
    line-height: 1.71;
  }
}

.p-ufb-factory-evidence {
  padding-block: 5rem 6.25rem;
  background-color: #eff4f9;
}
@media screen and (max-width: 767px) {
  .p-ufb-factory-evidence {
    padding-block: 3rem 3.5rem;
  }
}

.p-ufb-factory-evidence__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, -0.08rem + 2.26vw, 1.75rem);
  margin-block-start: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-factory-evidence__list {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    margin-block-start: 2rem;
  }
}

.p-ufb-factory-evidence__item {
  display: flex;
  flex-direction: column;
  padding: 2.25rem 2rem 2rem;
  border-radius: 0.375rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-ufb-factory-evidence__item {
    padding: 1.75rem 1.25rem 1.5rem;
  }
}

.p-ufb-factory-evidence__head {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.p-ufb-factory-evidence__value {
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: clamp(2.25rem, 1.17rem + 2.26vw, 3rem);
  font-weight: 700;
  line-height: 1;
}

.p-ufb-factory-evidence__unit {
  color: #666;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-factory-evidence__unit {
    font-size: 0.8125rem;
  }
}

.p-ufb-factory-evidence__heading {
  margin-block-start: 1.25rem;
  color: var(--color-text);
  font-size: clamp(1.125rem, 0.94rem + 0.38vw, 1.25rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-factory-evidence__heading {
    margin-block-start: 1rem;
    font-size: 1rem;
  }
}

.p-ufb-factory-evidence__text {
  margin-block-start: 0.5rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-factory-evidence__text {
    font-size: 0.8125rem;
  }
}

.p-ufb-factory-cases {
  padding-block: 5rem 6.25rem;
  background-color: #eff4f9;
}
@media screen and (max-width: 767px) {
  .p-ufb-factory-cases {
    padding-block: 3rem 3.5rem;
  }
}

.p-ufb-factory-cases__lead {
  margin-block-start: 1.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-factory-cases__lead {
    margin-block-start: 1rem;
    font-size: 0.875rem;
    line-height: 1.75;
  }
}

.p-ufb-factory-cases__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 0.53rem + 1.5vw, 1.75rem);
  margin-block-start: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-factory-cases__list {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    margin-block-start: 2rem;
  }
}

.p-ufb-factory-cases__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid #d4d4d4;
  border-radius: 0.375rem;
  background-color: var(--color-white);
}

.p-ufb-factory-cases__visual {
  overflow: hidden;
  aspect-ratio: 400/267;
  background-color: #e8eef1;
}

.p-ufb-factory-cases__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-ufb-factory-cases__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem 1.25rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-factory-cases__body {
    padding: 1rem 1rem 1.25rem;
  }
}

.p-ufb-factory-cases__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 1.75rem;
  padding-inline: 0.625rem;
  border-radius: 0.1875rem;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}

.p-ufb-factory-cases__heading {
  margin-block-start: 0.5rem;
  color: var(--color-text);
  font-size: clamp(1.125rem, 0.76rem + 0.75vw, 1.375rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-factory-cases__heading {
    font-size: 1rem;
  }
}

.p-ufb-factory-cases__text {
  margin-block-start: 0.5rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-factory-cases__text {
    font-size: 0.8125rem;
  }
}

.p-ufb-factory-cases__client {
  margin-block-start: auto;
  padding-block-start: 0.875rem;
  color: #666;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}

.p-ufb-factory-cases__client-link {
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}

.p-ufb-factory-faq {
  padding-block: 5rem 0;
}

.p-ufb-faq {
  padding-block: 7.125rem 0;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-ufb-faq {
    padding-block: 3.375rem 0;
  }
}

.p-ufb-faq__list {
  margin-block-start: 4.25rem;
  border-block-start: 1px solid #e5e5e5;
}
@media screen and (max-width: 767px) {
  .p-ufb-faq__list {
    margin-block-start: 2.25rem;
  }
}

.p-ufb-faq__item {
  border-block-end: 1px solid #e5e5e5;
}

.p-ufb-faq__summary {
  display: block;
  width: 100%;
  cursor: pointer;
  list-style: none;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-ufb-faq__summary:hover {
    opacity: 0.6;
  }
}

.p-ufb-faq__summary::-webkit-details-marker {
  display: none;
}

.p-ufb-faq__q {
  position: relative;
  display: grid;
  grid-template-columns: 1.75rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding-block: 1.5625rem;
  padding-inline-end: 3rem;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-ufb-faq__q {
    grid-template-columns: 1.375rem minmax(0, 1fr);
    gap: 0.625rem;
    padding-block: 1rem;
    padding-inline-end: 2.25rem;
  }
}
.p-ufb-faq__q::before, .p-ufb-faq__q::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  background-color: var(--color-text);
  translate: 0 -50%;
}
@media screen and (max-width: 767px) {
  .p-ufb-faq__q::before, .p-ufb-faq__q::after {
    top: 1.375rem;
    translate: 0 0;
  }
}
.p-ufb-faq__q::before {
  width: 1.25rem;
  height: 2px;
}
@media screen and (max-width: 767px) {
  .p-ufb-faq__q::before {
    top: 1.8125rem;
    width: 1rem;
  }
}
.p-ufb-faq__q::after {
  right: 0.5625rem;
  width: 2px;
  height: 1.25rem;
  transform: rotate(var(--rotate-after, 0deg));
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-ufb-faq__q::after {
    right: 0.4375rem;
    height: 1rem;
  }
}

.p-ufb-faq__q-label {
  color: var(--color-text);
  font-family: var(--ff-en);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-ufb-faq__q-label {
    font-size: 1.25rem;
  }
}

.p-ufb-faq__q-text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.77;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-faq__q-text {
    font-size: 0.9375rem;
    line-height: 1.8;
  }
}

.p-ufb-faq__content {
  overflow: hidden;
}

.p-ufb-faq__a {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding-block: 0 3.5rem;
  padding-inline-end: 4rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-faq__a {
    grid-template-columns: 1.375rem minmax(0, 1fr);
    gap: 0.375rem;
    padding-block-end: 0.875rem;
    padding-inline-end: 2.25rem;
  }
}

.p-ufb-faq__a-label {
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-ufb-faq__a-label {
    font-size: 1.25rem;
  }
}

.p-ufb-faq__a-text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-faq__a-text {
    font-size: 0.875rem;
    line-height: 1.71;
  }
}
.p-ufb-faq__a-text a {
  color: var(--color-primary);
  text-decoration: underline;
}

.p-ufb-flow-intro {
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-flow-intro {
    padding-block: 2.5rem;
  }
}

.p-ufb-flow-intro__texts {
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-flow-intro__texts {
    margin-block-start: 1.5rem;
  }
}

.p-ufb-flow-intro__text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-flow-intro__text {
    font-size: 0.875rem;
    line-height: 1.75;
  }
}

.p-ufb-flow-steps {
  padding-block: 5rem;
  background-color: #eff4f9;
}
@media screen and (max-width: 767px) {
  .p-ufb-flow-steps {
    padding-block: 3rem;
  }
}

.p-ufb-flow-steps__list {
  display: grid;
  gap: 3rem;
  margin-block-start: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-flow-steps__list {
    gap: 2rem;
    margin-block-start: 2rem;
  }
}

.p-ufb-flow-steps__item {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
  padding-block-end: 3rem;
  border-block-end: 1px solid #eee;
}
@media screen and (max-width: 767px) {
  .p-ufb-flow-steps__item {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
    padding-block-end: 2rem;
  }
}
.p-ufb-flow-steps__item:last-child {
  padding-block-end: 0;
  border-block-end: none;
}

.p-ufb-flow-steps__index {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-flow-steps__index {
    flex-direction: column;
    gap: 0.125rem;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-ufb-flow-steps__phase {
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.p-ufb-flow-steps__num {
  flex-shrink: 0;
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-ufb-flow-steps__num {
    font-size: 2.5rem;
    text-align: left;
  }
}

.p-ufb-flow-steps__title {
  color: var(--color-text);
  font-size: clamp(1.375rem, 1.01rem + 0.75vw, 1.625rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-flow-steps__title {
    font-size: 1.25rem;
  }
}

.p-ufb-flow-steps__text {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.78;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-flow-steps__text {
    margin-block-start: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.75;
  }
}

.p-ufb-flow-steps__panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-block-start: 1.25rem;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .p-ufb-flow-steps__panels {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
    margin-block-start: 1rem;
  }
}

.p-ufb-flow-steps__panel {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 100%;
  padding: 1.25rem 1.25rem 1.5rem;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-flow-steps__panel {
    padding: 1rem 1rem 1.25rem;
  }
}

.p-ufb-flow-steps__panel--company {
  border: 1px solid #d4d4d4;
  background-color: var(--color-white);
}

.p-ufb-flow-steps__panel--client {
  border: 1px solid var(--color-primary);
  background-color: #e9f8ff;
}

.p-ufb-flow-steps__panel-title {
  color: var(--color-text);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-flow-steps__panel-title {
    font-size: 0.875rem;
  }
}

.p-ufb-flow-steps__panel-list {
  display: grid;
  gap: 0.25rem;
}

.p-ufb-flow-steps__panel-item {
  position: relative;
  padding-inline-start: 1rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-flow-steps__panel-item {
    font-size: 0.8125rem;
    line-height: 1.7;
  }
}
.p-ufb-flow-steps__panel-item::before {
  content: "・";
  position: absolute;
  inset-inline-start: 0;
  color: #999;
}

.p-ufb-flow-steps__note {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-block-start: 1rem;
  padding: 0.375rem 0.875rem;
  border-radius: 0.375rem;
  background-color: #e3e3e3;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-flow-steps__note {
    margin-block-start: 0.75rem;
    font-size: 0.75rem;
  }
}

.p-ufb-flow-steps__note-icon {
  display: block;
  flex-shrink: 0;
  width: 0.875rem;
  height: 0.875rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-ufb-flow-custom {
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-flow-custom {
    padding-block: 3rem;
  }
}

.p-ufb-flow-custom__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 0.28rem + 1.5vw, 1.5rem);
  margin-block-start: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-flow-custom__list {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
    margin-block-start: 2rem;
  }
}

.p-ufb-flow-custom__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  padding: 1.75rem 1.5rem 1.75rem;
  border-radius: 0.5rem;
  background-color: #eff4f9;
}
@media screen and (max-width: 767px) {
  .p-ufb-flow-custom__item {
    padding: 1.5rem 1.25rem;
  }
}

.p-ufb-flow-custom__icon {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: var(--color-white);
}

.p-ufb-flow-custom__icon-image {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.p-ufb-flow-custom__title {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-flow-custom__title {
    margin-block-start: 0.75rem;
    font-size: 1rem;
  }
}

.p-ufb-flow-custom__text {
  margin-block-start: 0.75rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-flow-custom__text {
    font-size: 0.8125rem;
    line-height: 1.7;
  }
}

.p-ufb-flow-cta.c-ufb-contact {
  padding-block: 5rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-flow-cta.c-ufb-contact {
    padding-block: 3rem 1.5rem;
  }
}

.p-ufb-flow-related.c-related-links {
  padding-block: 2.5rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-flow-related.c-related-links {
    padding-block: 1rem 3rem;
  }
}

.p-ufb-footer {
  width: 100%;
  padding-block: 1.25rem;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-footer {
    position: relative;
    padding-block: 1rem;
    padding-inline: 1.25rem;
  }
}

.p-ufb-footer__bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-block-end: 0.25rem;
  padding: 1.75rem 1.8125rem;
  border-radius: 0.75rem;
  background-color: #cccccc;
}
@media screen and (max-width: 767px) {
  .p-ufb-footer__bar {
    padding: 1.25rem 1.25rem;
  }
}

.p-ufb-footer__corp-link {
  display: inline-flex;
  align-items: center;
  gap: 1.125rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-ufb-footer__corp-link {
    gap: 0.875rem;
    font-size: 0.875rem;
    line-height: 1.71;
  }
}
.p-ufb-footer__corp-link::before {
  content: "";
  flex-shrink: 0;
  width: 1.25rem;
  height: 0.625rem;
  background-color: currentcolor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 8'%3E%3Cpath fill='%23fff' d='M5,0L0,4l5,4'/%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' d='M16,4H2'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 8'%3E%3Cpath fill='%23fff' d='M5,0L0,4l5,4'/%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' d='M16,4H2'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transition: transform var(--duration);
}
@media screen and (max-width: 767px) {
  .p-ufb-footer__corp-link::before {
    width: 1rem;
    height: 0.5rem;
  }
}
@media (any-hover: hover) {
  .p-ufb-footer__corp-link:hover {
    opacity: 0.7;
  }
  .p-ufb-footer__corp-link:hover::before {
    transform: translateX(calc(-4 * var(--to-rem)));
  }
}

.p-ufb-footer__inner {
  display: flex;
  gap: 0.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-ufb-footer__inner {
    flex-direction: column-reverse;
  }
}

.p-ufb-footer__panel {
  display: flex;
  flex-direction: column;
  border-radius: 0.75rem;
  background-color: #cccccc;
}
@media screen and (max-width: 1023px) {
  .p-ufb-footer__panel {
    padding: 2.5rem 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-ufb-footer__panel {
    padding: 2rem 1.25rem;
  }
}

.p-ufb-footer__panel--info {
  flex: 0 1 41.4893617021%;
  min-width: 0;
  justify-content: space-between;
  gap: 5rem;
  padding: 6.875rem clamp(2.5rem, -1.11rem + 7.52vw, 5rem) 7.6875rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-footer__panel--info {
    flex: none;
    width: 100%;
    gap: 1.375rem;
    padding: 2.25rem 1.25rem 2.25rem;
  }
}

.p-ufb-footer__panel--nav {
  position: relative;
  flex: 1 1 58.2978723404%;
  min-width: 0;
  justify-content: space-between;
  gap: 9.375rem;
  padding: 7.25rem clamp(2.5rem, -1.11rem + 7.52vw, 5rem) 7.875rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-footer__panel--nav {
    position: static;
    flex: none;
    width: 100%;
    gap: 1.75rem;
    padding: 2.25rem 1.25rem 2.125rem;
  }
}

.p-ufb-footer__catch {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(2rem, 1.28rem + 1.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-footer__catch {
    font-size: 1.375rem;
  }
}

.p-ufb-footer__company {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.p-ufb-footer__company-name,
.p-ufb-footer__company-address,
.p-ufb-footer__company-tel {
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-footer__company-name,
  .p-ufb-footer__company-address,
  .p-ufb-footer__company-tel {
    font-size: 0.875rem;
    line-height: 1.71;
  }
}

.p-ufb-footer__company-name {
  font-weight: 700;
}

.p-ufb-footer__company-tel a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-ufb-footer__company-tel a:hover {
    opacity: 0.7;
  }
}

.p-ufb-footer__logo-wrapper {
  margin-block-start: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-footer__logo-wrapper {
    margin-block-start: 2.25rem;
  }
}

.p-ufb-footer__logo {
  display: block;
  width: min(100%, 23.375rem);
  height: auto;
  aspect-ratio: 234/37;
  line-height: 0;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-ufb-footer__logo {
    width: min(100%, 14.625rem);
  }
}
@media (any-hover: hover) {
  .p-ufb-footer__logo:hover {
    opacity: 0.8;
  }
}

.p-ufb-footer__nav {
  display: flex;
  gap: 4.75rem;
}
@media screen and (max-width: 1023px) {
  .p-ufb-footer__nav {
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-ufb-footer__nav {
    flex-direction: column;
    gap: 1.375rem;
  }
}

.p-ufb-footer__nav-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.875rem;
  flex: 0 1 18.75rem;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-ufb-footer__nav-col {
    flex: none;
    gap: 1.375rem;
  }
}

.p-ufb-footer__nav-col--actions {
  max-width: 18.75rem;
  flex: 0 1 18.75rem;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-footer__nav-col--actions {
    max-width: none;
    flex: none;
    width: 100%;
    gap: 1.625rem;
  }
}

.p-ufb-footer__nav-link {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-decoration: none;
  font-feature-settings: "palt";
  transition: color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-ufb-footer__nav-link {
    font-size: 0.875rem;
    line-height: 1.71;
  }
}
@media (any-hover: hover) {
  .p-ufb-footer__nav-link:hover {
    opacity: 1;
    color: var(--color-primary);
  }
}

.p-ufb-footer__actions {
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
  width: 100%;
  margin-block-start: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-footer__actions {
    gap: 1.25rem;
    margin-block-start: 0;
  }
}

.p-ufb-footer__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  min-height: 3rem;
  padding-inline: 1rem;
  border-radius: 0.25rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: color 0.45s ease;
}
@media screen and (max-width: 767px) {
  .p-ufb-footer__btn {
    font-size: 0.875rem;
  }
}
.p-ufb-footer__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scaleX(0);
  transform-origin: left center;
}

.p-ufb-footer__btn--download {
  border: 1px solid var(--color-black);
  background-color: transparent;
  color: var(--color-text);
}
.p-ufb-footer__btn--download::before {
  background-color: var(--color-white);
}
@media (any-hover: hover) {
  .p-ufb-footer__btn--download:hover {
    opacity: 1;
  }
  .p-ufb-footer__btn--download:hover::before {
    transform: scaleX(1);
  }
}

.p-ufb-footer__btn--contact {
  border: 1px solid var(--color-black);
  background-color: var(--color-black);
  color: var(--color-white);
}
.p-ufb-footer__btn--contact::before {
  background-color: var(--color-white);
}
@media (any-hover: hover) {
  .p-ufb-footer__btn--contact:hover {
    opacity: 1;
    color: var(--color-black);
  }
  .p-ufb-footer__btn--contact:hover::before {
    transform: scaleX(1);
  }
}

.p-ufb-footer__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem 20rem;
}

.p-ufb-footer__privacy {
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-decoration: none;
  font-feature-settings: "palt";
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-ufb-footer__privacy {
    font-size: 0.8125rem;
  }
}
@media (any-hover: hover) {
  .p-ufb-footer__privacy:hover {
    opacity: 1;
    color: var(--color-primary);
  }
}

.p-ufb-footer__copyright {
  color: #666666;
  font-family: var(--ff-en);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-ufb-footer__copyright {
    width: 100%;
    margin-block-start: 2.25rem;
    text-align: center;
  }
}

.p-ufb-footer__pagetop-wrapper {
  position: absolute;
  right: 4.375rem;
  bottom: 4.375rem;
  margin-block-start: auto;
}
@media screen and (max-width: 767px) {
  .p-ufb-footer__pagetop-wrapper {
    right: 3.125rem;
    bottom: 6.875rem;
  }
}

.p-ufb-footer__pagetop {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 0.625rem;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 40'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23000; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath d='M0,5L5,0l5,5' /%3E%3Cpath class='cls-1' d='M5,40V2' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform var(--duration);
}
.p-ufb-footer__pagetop::before {
  content: "";
  position: absolute;
  inset-block: 0;
  left: 50%;
  width: 1.25rem;
  translate: -50% 0;
}
@media screen and (max-width: 767px) {
  .p-ufb-footer__pagetop {
    width: 0.625rem;
    height: 2rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 32'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23000; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath d='M0,5L5,0l5,5' /%3E%3Cpath class='cls-1' d='M5,32V2' /%3E%3C/svg%3E");
  }
}
@media (any-hover: hover) {
  .p-ufb-footer__pagetop:hover {
    transform: translateY(calc(-6 * var(--to-rem)));
  }
}

.p-ufb-header {
  z-index: var(--z-index-header);
  width: 100%;
  height: var(--header-height);
  background-color: var(--color-white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.p-ufb-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  height: inherit;
  padding-inline: clamp(0.625rem, -0.09rem + 1.12vw, 1.25rem);
}
@media screen and (max-width: 1023px) {
  .p-ufb-header__inner {
    padding-inline: 1rem;
  }
}

.p-ufb-header__brand {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.p-ufb-header__brand-link {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 0rem + 0.78vw, 0.9375rem);
  color: var(--color-primary);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-ufb-header__brand-link {
    gap: 0.375rem;
  }
}

.p-ufb-header__logo-mark {
  display: block;
  width: clamp(10rem, 3.57rem + 10.04vw, 15.625rem);
  height: auto;
  aspect-ratio: 250/40;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1023px) {
  .p-ufb-header__logo-mark {
    width: clamp(11.25rem, -3.75rem + 66.67vw, 12.5rem);
  }
}

.p-ufb-header__site-logo-image {
  display: block;
  flex-shrink: 0;
  width: auto;
  height: clamp(2.25rem, 1.39rem + 1.34vw, 3rem);
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1023px) {
  .p-ufb-header__site-logo-image {
    height: clamp(2rem, -1rem + 13.33vw, 2.25rem);
  }
}

.p-ufb-header__main {
  position: relative;
  z-index: 3;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  min-width: 0;
  height: inherit;
  padding-block: 0.625rem 0;
}
@media screen and (max-width: 1023px) {
  .p-ufb-header__main {
    display: none;
  }
}

.p-ufb-header__corp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding-inline-end: 0.5rem;
  color: var(--color-primary);
  font-size: clamp(0.625rem, 0.34rem + 0.45vw, 0.875rem);
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity var(--duration);
  font-feature-settings: "palt";
}
.p-ufb-header__corp-link::before {
  content: "";
  flex-shrink: 0;
  width: clamp(0.75rem, 0.46rem + 0.45vw, 1rem);
  height: auto;
  aspect-ratio: 16/8;
  background-color: currentcolor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 8'%3E%3Cpath fill='%23fff' d='M5,0L0,4l5,4'/%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' d='M16,4H2'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 8'%3E%3Cpath fill='%23fff' d='M5,0L0,4l5,4'/%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' d='M16,4H2'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}

.p-ufb-header__nav {
  display: flex;
  flex: 1 1 auto;
  align-items: stretch;
  justify-content: flex-end;
  gap: clamp(0.5rem, -0.07rem + 0.89vw, 1rem);
  min-width: 0;
  min-height: 0;
  width: 100%;
  margin-block-start: 0.5rem;
}

.p-ufb-header__nav-list {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0.125rem;
  min-width: 0;
}

.p-ufb-header__nav-item {
  display: flex;
  align-items: stretch;
}

.p-ufb-header__nav-item--has-mega {
  position: relative;
}

.p-ufb-header__nav-link {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: clamp(0.125rem, -0.16rem + 0.45vw, 0.375rem);
  margin-inline: clamp(0.25rem, -0.04rem + 0.45vw, 0.5rem);
  color: var(--color-text);
  font-size: clamp(0.5625rem, 0.06rem + 0.78vw, 1rem);
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--duration), opacity var(--duration);
  font-feature-settings: "palt";
}
.p-ufb-header__nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: var(--color-primary);
  opacity: 0;
  transition: opacity var(--duration);
}

.p-ufb-header__nav-label {
  display: block;
}

.p-ufb-header__nav-icon {
  display: block;
  flex-shrink: 0;
  width: 0.4375rem;
  height: 0.4375rem;
  border-right: 0.09375rem solid currentcolor;
  border-bottom: 0.09375rem solid currentcolor;
  rotate: 45deg;
  translate: 0 -0.0625rem;
  transform-origin: center 75%;
  transition: rotate 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.p-ufb-header__nav-item--has-mega.is-open .p-ufb-header__nav-link,
.p-ufb-header__nav-item--has-mega:focus-within .p-ufb-header__nav-link,
.p-ufb-header__nav-item.is-current > .p-ufb-header__nav-link {
  color: var(--color-primary);
  opacity: 1;
}

.p-ufb-header__nav-item.is-current > .p-ufb-header__nav-link::after {
  opacity: 1;
}

.p-ufb-header__nav-item--has-mega.is-open .p-ufb-header__nav-icon,
.p-ufb-header__nav-item--has-mega:focus-within .p-ufb-header__nav-icon {
  rotate: 225deg;
}

@media (any-hover: hover) {
  .p-ufb-header__nav-item--has-mega:hover > .p-ufb-header__nav-link {
    color: var(--color-primary);
    opacity: 1;
  }
  .p-ufb-header__nav-item--has-mega:hover > .p-ufb-header__nav-link .p-ufb-header__nav-icon {
    rotate: 225deg;
  }
  .p-ufb-header__nav-item:not(.p-ufb-header__nav-item--has-mega):hover .p-ufb-header__nav-link {
    color: var(--color-primary);
    opacity: 1;
  }
}
.p-ufb-header__mega {
  position: fixed;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.p-ufb-header__mega::before {
  content: "";
  position: absolute;
  top: -1rem;
  right: 0;
  left: 0;
  height: 1rem;
}

.p-ufb-header__mega-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.28s ease;
  cursor: default;
}

.p-ufb-header__nav-item--has-mega.is-open .p-ufb-header__mega,
.p-ufb-header__nav-item--has-mega:focus-within .p-ufb-header__mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.p-ufb-header__nav-item--has-mega.is-open .p-ufb-header__mega-overlay,
.p-ufb-header__nav-item--has-mega:focus-within .p-ufb-header__mega-overlay {
  opacity: 1;
}

.p-ufb-header__mega-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  background-color: var(--color-white);
  box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.1);
}

.p-ufb-header__mega-inner {
  padding-block: 1.5rem 2.5rem;
}

.p-ufb-header__mega-title {
  padding-block-end: 1rem;
  border-block-end: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
.p-ufb-header__mega-title a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-ufb-header__mega-title a:hover {
    opacity: 0.75;
  }
}

.p-ufb-header__mega-title-arrow {
  display: block;
  flex-shrink: 0;
  width: 0.4375rem;
  height: 0.4375rem;
  border-right: 0.15625rem solid var(--color-primary);
  border-bottom: 0.15625rem solid var(--color-primary);
  rotate: -45deg;
}

.p-ufb-header__mega-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 3rem;
  margin-block-start: 1.25rem;
}
.p-ufb-header__mega-list:has(> :only-child) {
  grid-template-columns: minmax(0, 1fr);
  max-width: 25rem;
}

.p-ufb-header__mega-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.25rem;
  color: var(--color-text);
  font-size: clamp(0.75rem, 0.54rem + 0.33vw, 0.9375rem);
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  transition: opacity var(--duration);
  font-feature-settings: "palt";
}
.p-ufb-header__mega-link::before {
  content: "";
  flex-shrink: 0;
  width: 0.625rem;
  height: 2px;
  background-color: var(--color-primary);
}

.p-ufb-header__nav-item--divider {
  align-self: center;
  width: 0;
  height: 1rem;
  margin-inline: clamp(0.25rem, -0.04rem + 0.45vw, 0.5rem);
  border-left: 1px solid #ccc;
}

.p-ufb-header__actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  align-self: flex-end;
  gap: clamp(0.375rem, -0.05rem + 0.67vw, 0.75rem);
  margin-block-end: 0.75rem;
}

.p-ufb-header__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  min-width: clamp(7.5rem, 0.07rem + 11.61vw, 14rem);
  min-height: 3rem;
  padding-inline: clamp(0.75rem, -0.32rem + 1.67vw, 1.6875rem);
  border-radius: 0.25rem;
  font-size: clamp(0.5625rem, 0.06rem + 0.78vw, 1rem);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.45s ease;
}
.p-ufb-header__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scaleX(0);
  transform-origin: left center;
}

.p-ufb-header__btn--download {
  border: 1px solid var(--color-black);
  background-color: var(--color-black);
  color: var(--color-white);
}
.p-ufb-header__btn--download::before {
  background-color: var(--color-white);
}
@media (any-hover: hover) {
  .p-ufb-header__btn--download:hover {
    opacity: 1;
    color: var(--color-black);
  }
  .p-ufb-header__btn--download:hover::before {
    transform: scaleX(1);
  }
}

.p-ufb-header__btn--contact {
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary);
  color: var(--color-white);
}
.p-ufb-header__btn--contact::before {
  background-color: var(--color-white);
}
@media (any-hover: hover) {
  .p-ufb-header__btn--contact:hover {
    opacity: 1;
    color: var(--color-primary);
  }
  .p-ufb-header__btn--contact:hover::before {
    transform: scaleX(1);
  }
}

.p-ufb-header__hamburger {
  position: relative;
  z-index: 3;
  display: none;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  outline: none;
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  .p-ufb-header__hamburger {
    display: block;
  }
}

.p-ufb-header__hamburger span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 2.5rem;
  height: 1px;
  background-color: var(--color-text);
  translate: -50% -50%;
  transition: top calc(var(--duration) * 1.67), opacity calc(var(--duration) * 1.67), rotate calc(var(--duration) * 1.67);
}
.p-ufb-header__hamburger span:nth-of-type(1) {
  top: calc(50% - 7px);
}
.p-ufb-header__hamburger span:nth-of-type(2) {
  top: 50%;
}
.p-ufb-header__hamburger span:nth-of-type(3) {
  top: calc(50% + 7px);
}

.p-ufb-header__hamburger.is-open span:nth-of-type(1) {
  top: 50%;
  rotate: 22deg;
}
.p-ufb-header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}
.p-ufb-header__hamburger.is-open span:nth-of-type(3) {
  top: 50%;
  rotate: -22deg;
}

.p-ufb-header__drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  display: none;
  overflow-y: auto;
  width: 100%;
  height: 100svh;
  padding-block: var(--header-height) 2.5rem;
  padding-inline: 1.25rem;
  background-color: var(--color-white);
  scrollbar-width: none;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.p-ufb-header__drawer::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1024px) {
  .p-ufb-header__drawer {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .p-ufb-header__drawer {
    display: block;
  }
  .p-ufb-header__drawer.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
}

.p-ufb-header__drawer-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 25rem;
  margin-inline: auto;
  padding-block-start: 1.25rem;
}

.p-ufb-header__drawer-corp {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  align-self: flex-end;
  gap: 0.375rem;
  margin-block-end: 1.75rem;
  color: var(--color-primary);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}
.p-ufb-header__drawer-corp::before {
  content: "";
  flex-shrink: 0;
  width: 1rem;
  height: 0.5rem;
  background-color: currentcolor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 8'%3E%3Cpath fill='%23fff' d='M5,0L0,4l5,4'/%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' d='M16,4H2'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 8'%3E%3Cpath fill='%23fff' d='M5,0L0,4l5,4'/%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' d='M16,4H2'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}

.p-ufb-header__drawer-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.p-ufb-header__drawer-item--divider {
  width: 100%;
  height: 0;
  margin-block: 0.75rem;
  border-top: 1px dotted var(--color-text);
}

.p-ufb-header__drawer-link {
  display: block;
  padding-block: 0.625rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  transition: color var(--duration);
  font-feature-settings: "palt";
}
.p-ufb-header__drawer-link.is-current {
  color: var(--color-primary);
}

.p-ufb-header__drawer-parent {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.p-ufb-header__drawer-parent .p-ufb-header__drawer-link {
  flex: 1;
  min-width: 0;
}

.p-ufb-header__drawer-toggle {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  margin-inline-end: -0.625rem;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
}

.p-ufb-header__drawer-toggle .p-ufb-header__nav-icon {
  width: 0.5rem;
  height: 0.5rem;
}

.p-ufb-header__drawer-item--has-child.is-open .p-ufb-header__nav-icon {
  rotate: 225deg;
}

.p-ufb-header__drawer-content {
  overflow: hidden;
}

.p-ufb-header__drawer-sublist {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 0 0.5rem;
}

.p-ufb-header__drawer-sublink {
  display: block;
  padding-block: 0.625rem;
  padding-inline-start: 1.25rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  font-feature-settings: "palt";
}

.p-ufb-header__drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-block-start: 2rem;
}

.p-ufb-header__drawer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.25rem;
  padding-inline: 1rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
}

.p-ufb-header__drawer-btn--download {
  border: 1px solid var(--color-black);
  background-color: var(--color-black);
  color: var(--color-white);
}

.p-ufb-header__drawer-btn--contact {
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary);
  color: var(--color-white);
}

@media (any-hover: hover) {
  .p-ufb-header__corp-link:hover,
  .p-ufb-header__drawer-corp:hover,
  .p-ufb-header__drawer-sublink:hover {
    opacity: 0.7;
  }
  .p-ufb-header__drawer-link:hover {
    opacity: 1;
    color: var(--color-primary);
  }
  .p-ufb-header__mega-link:hover {
    opacity: 0.75;
  }
}
.p-ufb-maker-intro {
  padding-block: 2.5rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-maker-intro {
    padding-block: 1.5rem 3rem;
  }
}

.p-ufb-maker-intro__texts {
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-maker-intro__texts {
    margin-block-start: 1.5rem;
  }
}

.p-ufb-maker-intro__text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-maker-intro__text {
    font-size: 0.875rem;
    line-height: 1.75;
  }
}

.p-ufb-maker-reasons {
  padding-block: 2.5rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-maker-reasons {
    padding-block: 1.5rem 3.5rem;
  }
}

.p-ufb-maker-reasons__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 0.17rem + 2.26vw, 2rem);
  margin-block-start: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-maker-reasons__list {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    margin-block-start: 2rem;
  }
}

.p-ufb-maker-reasons__item {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 2.25rem 1.75rem 2rem;
  border-radius: 0.375rem;
  background-color: #eff4f9;
}
@media screen and (max-width: 767px) {
  .p-ufb-maker-reasons__item {
    padding: 1.75rem 1.25rem 1.5rem;
  }
}

.p-ufb-maker-reasons__num {
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-ufb-maker-reasons__num {
    font-size: 1.75rem;
  }
}

.p-ufb-maker-reasons__heading {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-size: clamp(1.25rem, 0.89rem + 0.75vw, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-maker-reasons__heading {
    margin-block-start: 0.75rem;
    font-size: 1.125rem;
  }
}

.p-ufb-maker-reasons__text {
  margin-block-start: 0.75rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-maker-reasons__text {
    font-size: 0.875rem;
    line-height: 1.71;
  }
}

.p-ufb-maker-categories {
  padding-block: 5rem 6.25rem;
  background-color: #eff4f9;
}
@media screen and (max-width: 767px) {
  .p-ufb-maker-categories {
    padding-block: 3rem 3.5rem;
  }
}

.p-ufb-maker-categories__lead {
  margin-block-start: 1.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-maker-categories__lead {
    margin-block-start: 1rem;
    font-size: 0.875rem;
    line-height: 1.75;
  }
}

.p-ufb-maker-categories__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 0.53rem + 1.5vw, 1.75rem);
  margin-block-start: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-maker-categories__list {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    margin-block-start: 2rem;
  }
}

.p-ufb-maker-categories__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 0.375rem;
  background-color: var(--color-white);
}

.p-ufb-maker-categories__visual {
  overflow: hidden;
  aspect-ratio: 400/267;
  background-color: #e8eef1;
}

.p-ufb-maker-categories__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-ufb-maker-categories__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem 1.25rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-maker-categories__body {
    padding: 1rem 1rem 1.25rem;
  }
}

.p-ufb-maker-categories__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 1.75rem;
  padding-inline: 0.625rem;
  border-radius: 0.1875rem;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}

.p-ufb-maker-categories__heading {
  margin-block-start: 0.5rem;
  color: var(--color-text);
  font-size: clamp(1.25rem, 0.89rem + 0.75vw, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-maker-categories__heading {
    font-size: 1rem;
  }
}

.p-ufb-maker-categories__text {
  margin-block-start: 0.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}

.p-ufb-maker-categories__client {
  margin-block-start: auto;
  padding-block-start: 0.875rem;
  color: #666;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}

.p-ufb-maker-categories__client-link {
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}

.p-ufb-maker-flow {
  padding-block: 5rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-maker-flow {
    padding-block: 3rem 3.5rem;
  }
}

.p-ufb-maker-flow__list {
  display: grid;
  gap: 1.75rem;
  margin-block-start: 3.5rem;
  padding: 3rem 3.5rem;
  border-radius: 0.5rem;
  background-color: #eff4f9;
}
@media screen and (max-width: 767px) {
  .p-ufb-maker-flow__list {
    gap: 1.5rem;
    margin-block-start: 2rem;
    padding: 1.75rem 1.25rem;
  }
}

.p-ufb-maker-flow__item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.p-ufb-maker-flow__num {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-ufb-maker-flow__num {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.875rem;
  }
}

.p-ufb-maker-flow__heading {
  color: var(--color-text);
  font-size: clamp(1.25rem, 0.89rem + 0.75vw, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-maker-flow__heading {
    font-size: 1rem;
  }
}

.p-ufb-maker-flow__text {
  margin-block-start: 0.25rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-maker-flow__text {
    font-size: 0.8125rem;
    line-height: 1.75;
  }
}

.p-ufb-maker-flow__button {
  display: flex;
  justify-content: center;
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-maker-flow__button {
    margin-block-start: 1.75rem;
  }
}

.p-ufb-maker-faq {
  padding-block: 5rem 0;
}

.p-ufb-mv {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: calc(100svh - var(--header-height));
  margin-block-start: var(--header-height);
  background-color: #edeef7;
}
@media screen and (max-width: 767px) {
  .p-ufb-mv {
    min-height: calc(37.5rem - var(--header-height));
  }
}

.p-ufb-mv__inner {
  position: relative;
  display: flex;
  align-items: center;
  width: min(81.25rem, 100%);
  min-height: inherit;
  margin-inline: auto;
  padding-block: 3.75rem;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-mv__inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 3rem 1.5rem;
    padding-inline: 1.25rem;
  }
}

.p-ufb-mv__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: min(100%, 75rem);
  translate: 0 -2.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-mv__content {
    gap: 1.625rem;
    width: 100%;
    translate: none;
  }
}

.p-ufb-mv__title {
  margin: 0;
  color: var(--color-text);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1440px) {
  .p-ufb-mv__title {
    font-size: clamp(3rem, -0.68rem + 5.76vw, 4.5rem);
  }
}
@media screen and (max-width: 767px) {
  .p-ufb-mv__title {
    font-size: 2.5rem;
    line-height: 1.5;
    letter-spacing: 0.15em;
  }
}

.p-ufb-mv__text {
  margin: 0;
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1440px) {
  .p-ufb-mv__text {
    font-size: clamp(0.875rem, -0.35rem + 1.92vw, 1.375rem);
  }
}
@media screen and (max-width: 767px) {
  .p-ufb-mv__text {
    font-size: 1.125rem;
    line-height: 1.77;
  }
}

.p-ufb-mv__visual {
  position: absolute;
  top: 50%;
  right: -46%;
  z-index: 1;
  width: clamp(50rem, -22.18rem + 150.38vw, 100rem);
  translate: 0 calc(-50% - 2.5rem);
  pointer-events: none;
}
@media screen and (max-width: 1440px) {
  .p-ufb-mv__visual {
    right: -36vw;
  }
}
@media screen and (max-width: 767px) {
  .p-ufb-mv__visual {
    top: auto;
    bottom: -1.5rem;
    right: auto;
    left: 50%;
    translate: -50% 0;
    width: min(200vw, 48.75rem);
  }
}

.p-ufb-mv__video {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.p-ufb-news {
  width: 100%;
  padding-block: 7.125rem 7.375rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 1023px) {
  .p-ufb-news {
    padding-block: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-ufb-news {
    padding-block: 3.5rem 3.75rem;
  }
}

.p-ufb-news__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5rem;
}
@media screen and (max-width: 1023px) {
  .p-ufb-news__content {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-ufb-news__content {
    flex-direction: column;
    align-items: stretch;
    gap: 2.25rem;
  }
}

.p-ufb-news__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  max-width: 55rem;
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-news__body {
    max-width: none;
    margin-block-start: 0;
  }
}

.p-ufb-news__list {
  border-block-start: 1px solid #d4d4d4;
}

.p-ufb-news__item {
  border-block-end: 1px solid #d4d4d4;
}

.p-ufb-news__link {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding-block: 1.9375rem;
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-ufb-news__link {
    gap: 0.75rem;
    padding-block: 1.125rem;
  }
}
@media (any-hover: hover) {
  .p-ufb-news__link:hover .p-ufb-news__arrow-icon {
    translate: 0.5rem 0;
  }
}

.p-ufb-news__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-news__meta {
    gap: 0.625rem;
  }
}

.p-ufb-news__date {
  color: #666;
  font-family: var(--ff-en);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-news__date {
    font-size: 0.875rem;
    line-height: 1.71;
  }
}

.p-ufb-news__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  min-height: 1.75rem;
  padding: 0.25rem 1rem;
  border-radius: 0.25rem;
  background-color: #e0e0e0;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-news__tag {
    min-width: 5.3125rem;
    min-height: 1.625rem;
  }
}

.p-ufb-news__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-news__row {
    gap: 1.5rem;
  }
}

.p-ufb-news__heading {
  display: -webkit-box;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 767px) {
  .p-ufb-news__heading {
    font-size: 0.875rem;
    line-height: 1.71;
    -webkit-line-clamp: 3;
  }
}

.p-ufb-news__arrow {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  margin-block-start: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-news__arrow {
    margin-block-start: 0.625rem;
  }
}

.p-ufb-news__arrow-icon {
  width: 1.25rem;
  height: 0.625rem;
  background-color: currentcolor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23fff; %7D .cls-2 %7B fill: none; stroke: %23fff; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M15,0l5,5-5,5' /%3E%3Cpath class='cls-2' d='M0,5h18' /%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23fff; %7D .cls-2 %7B fill: none; stroke: %23fff; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M15,0l5,5-5,5' /%3E%3Cpath class='cls-2' d='M0,5h18' /%3E%3C/svg%3E%0A");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transition: translate var(--duration);
}
@media screen and (max-width: 767px) {
  .p-ufb-news__arrow-icon {
    width: 1rem;
    height: 0.5rem;
  }
}

.p-ufb-news__actions {
  display: flex;
  justify-content: flex-end;
  margin-block-start: 5.125rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-news__actions {
    margin-block-start: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-ufb-news__actions .c-button {
    width: 100%;
  }
}

.p-ufb-page-mv {
  margin-block-start: calc(var(--header-height));
  background-color: var(--color-white);
}

.p-ufb-page-mv__inner {
  padding-block: 5.75rem 0;
}
@media screen and (max-width: 767px) {
  .p-ufb-page-mv__inner {
    padding-block: 3.5rem 0;
  }
}

.p-ufb-page-mv__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.p-ufb-page-mv__en {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-text);
  font-family: var(--ff-en);
  font-size: clamp(1.25rem, 0.96rem + 0.45vw, 1.5rem);
  font-weight: 600;
  line-height: 1.58;
}
@media screen and (max-width: 767px) {
  .p-ufb-page-mv__en {
    gap: 0.625rem;
    font-size: 1.125rem;
  }
}

.p-ufb-page-mv__en::before {
  content: "";
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-ufb-page-mv__en::before {
    width: 0.375rem;
    height: 0.375rem;
  }
}

.p-ufb-page-mv__ja {
  color: var(--color-text);
  font-size: clamp(2.75rem, 1.89rem + 1.34vw, 3.5rem);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-page-mv__ja {
    font-size: 1.75rem;
    line-height: 1.375;
  }
}

.p-ufb-page-mv + .c-breadcrumb {
  padding-block: 6.25rem 3rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-page-mv + .c-breadcrumb {
    padding-block: 2.5rem 1.5rem;
  }
}

.p-ufb-personal-intro {
  padding-block: 2.5rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-personal-intro {
    padding-block: 1.5rem 3rem;
  }
}

.p-ufb-personal-intro__texts {
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-personal-intro__texts {
    margin-block-start: 1.5rem;
  }
}

.p-ufb-personal-intro__text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-personal-intro__text {
    font-size: 0.875rem;
    line-height: 1.75;
  }
}

.p-ufb-personal-tech {
  padding-block: 2.5rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-personal-tech {
    padding-block: 1.5rem 3.5rem;
  }
}

.p-ufb-personal-tech__inner {
  display: flex;
  align-items: flex-start;
  gap: clamp(2.5rem, -1.11rem + 7.52vw, 5rem);
}
@media screen and (max-width: 767px) {
  .p-ufb-personal-tech__inner {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.p-ufb-personal-tech__content {
  flex: 1;
}

.p-ufb-personal-tech__texts {
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-personal-tech__texts {
    margin-block-start: 1.25rem;
  }
}

.p-ufb-personal-tech__text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-personal-tech__text {
    font-size: 0.875rem;
    line-height: 1.75;
  }
}
.p-ufb-personal-tech__text + .p-ufb-personal-tech__text {
  margin-block-start: 0.75rem;
}

.p-ufb-personal-tech__media {
  width: 43.3333333333%;
  overflow: hidden;
  border-radius: 0.375rem;
  aspect-ratio: 520/390;
  background-color: #e8eef1;
}
@media screen and (max-width: 767px) {
  .p-ufb-personal-tech__media {
    width: 100%;
  }
}

.p-ufb-personal-tech__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-ufb-personal-benefits {
  padding-block: 5rem 6.25rem;
  background-color: #eff4f9;
}
@media screen and (max-width: 767px) {
  .p-ufb-personal-benefits {
    padding-block: 3rem 3.5rem;
  }
}

.p-ufb-personal-benefits__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, -0.08rem + 2.26vw, 1.75rem);
  margin-block-start: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-personal-benefits__list {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    margin-block-start: 2rem;
  }
}

.p-ufb-personal-benefits__item {
  display: flex;
  flex-direction: column;
  padding: 2.25rem 2rem 2rem;
  border-radius: 0.375rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-ufb-personal-benefits__item {
    padding: 1.75rem 1.25rem 1.5rem;
  }
}

.p-ufb-personal-benefits__head {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.p-ufb-personal-benefits__value {
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: clamp(2.25rem, 1.17rem + 2.26vw, 3rem);
  font-weight: 700;
  line-height: 1;
}

.p-ufb-personal-benefits__unit {
  color: #666;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-personal-benefits__unit {
    font-size: 0.8125rem;
  }
}

.p-ufb-personal-benefits__heading {
  margin-block-start: 1.25rem;
  color: var(--color-text);
  font-size: clamp(1.125rem, 0.94rem + 0.38vw, 1.25rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-ufb-personal-benefits__heading {
    margin-block-start: 1rem;
    font-size: 1rem;
  }
}

.p-ufb-personal-benefits__text {
  margin-block-start: 0.5rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-personal-benefits__text {
    font-size: 0.8125rem;
  }
}

.p-ufb-personal-faq {
  padding-block: 5rem;
}

.p-ufb-personal-store {
  margin-block: 2.5rem 0;
  padding-block: 5rem 6.25rem;
  background-color: #eff4f9;
}
@media screen and (max-width: 767px) {
  .p-ufb-personal-store {
    margin-block: 1.5rem 0;
    padding-block: 3rem 3.5rem;
  }
}

.p-ufb-personal-store__list {
  display: grid;
  gap: 1.25rem;
  margin-block-start: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-personal-store__list {
    gap: 1rem;
    margin-block-start: 2rem;
  }
}

.p-ufb-personal-store__card {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr) 20rem;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 2.25rem;
  border-radius: 0.375rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-ufb-personal-store__card {
    grid-template-columns: 3.5rem minmax(0, 1fr);
    gap: 1rem;
    padding: 1.5rem 1.25rem;
  }
}

.p-ufb-personal-store__icon {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 1px solid #d4d4d4;
}
@media screen and (max-width: 767px) {
  .p-ufb-personal-store__icon {
    width: 3.5rem;
    height: 3.5rem;
  }
}

.p-ufb-personal-store__icon-image {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.p-ufb-personal-store__heading {
  color: var(--color-text);
  font-size: clamp(1.125rem, 0.94rem + 0.38vw, 1.25rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-personal-store__heading {
    font-size: 1rem;
  }
}

.p-ufb-personal-store__text {
  margin-block-start: 0.5rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-personal-store__text {
    font-size: 0.8125rem;
  }
}

.p-ufb-personal-store__button {
  flex-shrink: 0;
}
.p-ufb-personal-store__button .c-button {
  width: 100%;
  border-color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-ufb-personal-store__button {
    grid-column: 1/-1;
    width: 100%;
  }
}

.p-ufb-portal-intro {
  padding-block: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-ufb-portal-intro {
    padding-block: 2.5rem 0;
  }
}

.p-ufb-portal-intro__texts {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-ufb-portal-intro__texts {
    text-align: left;
  }
}

.p-ufb-portal-intro__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-portal-intro__text {
    font-size: 0.875rem;
    line-height: 1.75;
  }
}

.p-ufb-portal {
  padding-block: 3.75rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-portal {
    padding-block: 2rem 3.75rem;
  }
}

.p-ufb-portal__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem 1.5rem;
}
@media screen and (max-width: 1023px) {
  .p-ufb-portal__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .p-ufb-portal__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 0.75rem;
  }
}
@media screen and (max-width: 600px) {
  .p-ufb-portal__list {
    grid-template-columns: minmax(0, 1fr);
  }
}

.p-ufb-portal__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
  border: 1px solid #d4d4d4;
  border-radius: 0.375rem;
}

@media (any-hover: hover) {
  a.p-ufb-portal__card:hover .p-ufb-portal__image {
    transform: scale(1.08);
  }
}

.p-ufb-portal__media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 280/360;
}

.p-ufb-portal__badge {
  position: absolute;
  inset-block-start: 0.625rem;
  inset-inline-start: 0.625rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 1.5rem;
  padding: 0.125rem 0.5rem;
  border-radius: 0.1875rem;
  background-color: var(--color-text);
  color: var(--color-white);
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.p-ufb-portal__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.4s ease;
}

.p-ufb-portal__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem 1.25rem;
}

.p-ufb-portal__title {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-portal__title {
    font-size: 0.9375rem;
  }
}

.p-ufb-portal__summary {
  margin-block-start: 0.25rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.p-ufb-portal__download {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-block-start: auto;
  padding-block-start: 0.5rem;
  color: var(--color-text);
}

.p-ufb-portal__download-icon {
  display: block;
  flex-shrink: 0;
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--color-primary);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M8 12L3 7h3V1h4v6h3L8 12zm-6 2h12v2H2v-2z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M8 12L3 7h3V1h4v6h3L8 12zm-6 2h12v2H2v-2z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.p-ufb-portal__download-text {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
}

.p-ufb-portal__empty {
  margin-block-start: 2.5rem;
  color: #666;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

.p-ufb-portal-request {
  padding-block: 5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-portal-request {
    padding-block: 2.5rem 3.75rem;
  }
}

.p-ufb-portal-request--confirm {
  padding-block: 5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-portal-request--confirm {
    padding-block: 2.5rem 3.75rem;
  }
}

.p-ufb-portal-request--confirm .p-ufb-portal-request__form-wrap {
  width: min(100%, 62.5rem);
  margin-block-start: 5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-ufb-portal-request--confirm .p-ufb-portal-request__form-wrap {
    margin-block-start: 2.5rem;
  }
}

.p-ufb-portal-request__notice {
  width: min(100%, 62.5rem);
  margin-inline: auto;
}

.p-ufb-portal-request__layout {
  display: grid;
  grid-template-columns: minmax(0, 22.5rem) minmax(0, 1fr);
  gap: 3.75rem;
  align-items: start;
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-portal-request__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
    margin-block-start: 2.5rem;
  }
}

.p-ufb-portal-request__document {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}
@media screen and (max-width: 767px) {
  .p-ufb-portal-request__document {
    position: static;
  }
}

.p-ufb-portal-request__media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 280/360;
  border: 1px solid #d4d4d4;
  border-radius: 0.375rem;
  background-color: var(--color-gray);
}

.p-ufb-portal-request__badge {
  position: absolute;
  inset-block-start: 0.625rem;
  inset-inline-start: 0.625rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 1.5rem;
  padding: 0.125rem 0.5rem;
  border-radius: 0.1875rem;
  background-color: var(--color-text);
  color: var(--color-white);
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.p-ufb-portal-request__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-ufb-portal-request__document-title {
  margin-block-start: 0.75rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-portal-request__document-title {
    font-size: 1rem;
  }
}

.p-ufb-portal-request__document-summary {
  margin-block-start: 0.25rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}

.p-ufb-portal-request__form-head {
  margin-block-end: 2rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-portal-request__form-head {
    margin-block-end: 1.5rem;
  }
}

.p-ufb-portal-request__form-title {
  color: var(--color-text);
  font-size: clamp(1.5rem, 1.21rem + 0.45vw, 1.75rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-portal-request__form-title {
    font-size: 1.375rem;
  }
}

.p-ufb-portal-request__form-lead {
  margin-block-start: 0.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-portal-request__form-lead {
    font-size: 0.875rem;
  }
}

.p-ufb-portal-request__back {
  display: flex;
  justify-content: center;
  margin-block-start: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-portal-request__back {
    margin-block-start: 3.75rem;
  }
}

.p-ufb-product {
  padding-block: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-product {
    padding-block: 3.75rem;
  }
}

.p-ufb-product__list {
  display: grid;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-product__list {
    gap: 1.5rem;
  }
}

.p-ufb-product__card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(1.5rem, -0.67rem + 4.51vw, 3rem);
  align-items: center;
  padding: 2.5rem 3rem;
  border: 1px solid #d4d4d4;
  border-radius: 0.375rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-ufb-product__card {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
    padding: 1.5rem 1.25rem;
  }
}

.p-ufb-product__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-ufb-product__body {
    order: 2;
    align-items: stretch;
  }
}

.p-ufb-product__heading {
  color: var(--color-text);
  font-size: clamp(1.25rem, 0.68rem + 0.89vw, 1.75rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-product__heading {
    font-size: 1.125rem;
  }
}

.p-ufb-product__text {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-product__text {
    margin-block-start: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.71;
  }
}

.p-ufb-product__button {
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-product__button {
    margin-block-start: 1.25rem;
  }
}
.p-ufb-product__button .c-button {
  min-width: 15rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-product__button .c-button {
    min-width: auto;
    width: 100%;
  }
}

.p-ufb-product__media {
  overflow: hidden;
  border-radius: 0.375rem;
  aspect-ratio: 520/390;
  background-color: #e8eef1;
}
@media screen and (max-width: 767px) {
  .p-ufb-product__media {
    order: 1;
  }
}

.p-ufb-product__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-ufb-products {
  padding-block: 7rem 7.5rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-ufb-products {
    padding-block: 3.375rem 4rem;
  }
}

.p-ufb-products__list {
  display: grid;
  gap: 4.75rem;
  margin-block-start: 4rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-products__list {
    gap: 2.375rem;
    margin-block-start: 2.25rem;
  }
}

.p-ufb-products__item {
  display: grid;
  grid-template-columns: minmax(0, 43.3333333333%) minmax(0, 1fr);
  gap: 5rem;
  align-items: flex-start;
}
@media screen and (max-width: 1023px) {
  .p-ufb-products__item {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-ufb-products__item {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.375rem;
  }
}

.p-ufb-products__media {
  overflow: hidden;
  margin-block-start: 0.25rem;
  border-radius: 0.375rem;
  aspect-ratio: 520/390;
  background-color: #eef2f4;
}
@media screen and (max-width: 767px) {
  .p-ufb-products__media {
    margin-block-start: 0rem;
  }
}

.p-ufb-products__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-ufb-products__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-ufb-products__body {
    align-items: stretch;
  }
}

.p-ufb-products__category {
  color: var(--color-primary);
  font-size: clamp(0.875rem, 0.73rem + 0.22vw, 1rem);
  font-weight: 700;
  line-height: 1.5;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-products__category {
    font-size: 0.875rem;
  }
}

.p-ufb-products__heading {
  margin-block-start: 0.75rem;
  color: var(--color-text);
  font-size: clamp(1.5rem, 0.93rem + 0.89vw, 2rem);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-products__heading {
    margin-block-start: 0.25rem;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
  }
}

.p-ufb-products__text {
  margin-block-start: 1.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-products__text {
    margin-block-start: 1rem;
    font-size: 0.875rem;
    line-height: 1.71;
    letter-spacing: 0.01em;
  }
}

.p-ufb-products__button-wrapper {
  margin-block-start: 4.75rem;
}
@media screen and (max-width: 1023px) {
  .p-ufb-products__button-wrapper {
    margin-block-start: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-ufb-products__button-wrapper {
    margin-block-start: 1.125rem;
  }
}
.p-ufb-products__button-wrapper .c-button {
  min-width: 20rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-products__button-wrapper .c-button {
    min-width: auto;
    width: 100%;
  }
}

.p-ufb-products__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5rem;
  margin-block-start: 5rem;
}
@media screen and (max-width: 1023px) {
  .p-ufb-products__cards {
    gap: 2.5rem;
    margin-block-start: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-ufb-products__cards {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
    margin-block-start: 2.5rem;
  }
}

.p-ufb-products__card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2.4375rem;
  border: 1px solid #d4d4d4;
  border-radius: 0.375rem;
  color: inherit;
  text-decoration: none;
  transition: border-color var(--duration), box-shadow var(--duration);
}
@media screen and (max-width: 767px) {
  .p-ufb-products__card {
    padding: 1rem 1.125rem;
  }
}

@media (any-hover: hover) {
  .p-ufb-products__card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.06);
  }
  .p-ufb-products__card:hover .p-ufb-products__card-arrow-icon {
    translate: 0.5rem 0;
  }
}
.p-ufb-products__card-en {
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-ufb-products__card-en {
    font-size: 0.875rem;
    line-height: 1.71;
    letter-spacing: 0;
  }
}

.p-ufb-products__card-heading {
  color: var(--color-text);
  font-size: clamp(1.25rem, 0.89rem + 0.75vw, 1.5rem);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-products__card-heading {
    font-size: 1.25rem;
  }
}

.p-ufb-products__card-row {
  display: grid;
  grid-template-columns: 6.5rem minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-block-start: 2.125rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-products__card-row {
    gap: 1.125rem;
    margin-block-start: 1rem;
  }
}

.p-ufb-products__card-thumb {
  overflow: hidden;
  width: 6.5rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 0.375rem;
  margin-block-start: 0.25rem;
}
.p-ufb-products__card-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-ufb-products__card-text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-products__card-text {
    font-size: 0.875rem;
  }
}

.p-ufb-products__card-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-block-start: auto;
  margin-block-start: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-products__card-arrow {
    margin-block-start: 0;
    position: absolute;
    bottom: 1rem;
    right: 1.125rem;
  }
}

.p-ufb-products__card-arrow-icon {
  width: 1.25rem;
  height: 0.625rem;
  background-color: var(--color-text);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23fff; %7D .cls-2 %7B fill: none; stroke: %23fff; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M15,0l5,5-5,5' /%3E%3Cpath class='cls-2' d='M0,5h18' /%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23fff; %7D .cls-2 %7B fill: none; stroke: %23fff; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M15,0l5,5-5,5' /%3E%3Cpath class='cls-2' d='M0,5h18' /%3E%3C/svg%3E%0A");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transition: translate var(--duration);
}

.p-ufb-pump-intro {
  padding-block: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-ufb-pump-intro {
    padding-block: 2.5rem 0;
  }
}

.p-ufb-pump-intro__texts {
  text-align: left;
}

.p-ufb-pump-intro__text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-pump-intro__text {
    font-size: 0.875rem;
    line-height: 1.75;
  }
}

.p-ufb-pump {
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-pump {
    padding-block: 3rem;
  }
}

.p-ufb-pump__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .p-ufb-pump__filter {
    justify-content: flex-start;
    gap: 0.5rem;
  }
}

.p-ufb-pump__filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.625rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid #ddd;
  border-radius: 0.375rem;
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-ufb-pump__filter-btn {
    min-height: 2.25rem;
    padding: 0.375rem 0.875rem;
    font-size: 0.75rem;
  }
}
.p-ufb-pump__filter-btn.is-active {
  border-color: var(--color-black);
  background-color: var(--color-black);
  color: var(--color-white);
}
@media (any-hover: hover) {
  .p-ufb-pump__filter-btn:hover:not(.is-active) {
    border-color: var(--color-black);
    color: var(--color-black);
  }
}

.p-ufb-pump__list {
  display: grid;
  gap: 4rem;
  margin-block-start: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-pump__list {
    gap: 2.5rem;
    margin-block-start: 2rem;
  }
}

.p-ufb-pump__item.is-hidden {
  display: none;
}

.p-ufb-pump__name {
  color: var(--color-text);
  font-size: clamp(1.75rem, 1.39rem + 0.75vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-pump__name {
    font-size: 1.5rem;
  }
}

.p-ufb-pump__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, -0.67rem + 4.51vw, 3rem);
  align-items: start;
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-pump__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
    margin-block-start: 1rem;
  }
}

.p-ufb-pump__media {
  position: relative;
  overflow: hidden;
  border-radius: 0.375rem;
  aspect-ratio: 455/349;
}

.p-ufb-pump__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.5rem;
  padding: 0.25rem 1rem;
  border: 1px solid #d4d4d4;
  border-radius: 0.375rem;
  background-color: #eee;
  color: var(--color-text);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-ufb-pump__tag {
    top: 0.75rem;
    left: 0.75rem;
    min-height: 2rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
  }
}

.p-ufb-pump__image,
.p-ufb-pump__image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-ufb-pump__image-placeholder {
  background: linear-gradient(135deg, #dfe8f0 0%, #eff4f9 50%, #d4dee8 100%);
}

.p-ufb-pump__table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #d4e0ec;
}
.p-ufb-pump__table th,
.p-ufb-pump__table td {
  padding: 0.875rem 1rem;
  border-block-end: 1px solid #d4e0ec;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
  text-align: left;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .p-ufb-pump__table th,
  .p-ufb-pump__table td {
    padding: 0.75rem 0.875rem;
    font-size: 0.8125rem;
  }
}
.p-ufb-pump__table th {
  width: 10.5rem;
  border-inline-end: 1px solid #d4e0ec;
  background-color: #eff4f9;
  color: var(--color-text);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-ufb-pump__table th {
    display: block;
    width: 100%;
    border-block-end: 1px solid #d4e0ec;
    border-inline-end: 0;
  }
}
.p-ufb-pump__table td {
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-ufb-pump__table td {
    display: block;
    width: 100%;
  }
}
.p-ufb-pump__table tr:last-child th,
.p-ufb-pump__table tr:last-child td {
  border-block-end: none;
}

.p-ufb-pump__table-lines {
  display: grid;
  gap: 0.25rem;
}

.p-ufb-pump__table-line {
  position: relative;
  padding-inline-start: 0.875rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
.p-ufb-pump__table-line::before {
  content: "";
  position: absolute;
  top: 0.625rem;
  left: 0;
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-ufb-pump__table-line {
    font-size: 0.8125rem;
  }
}

.p-ufb-pump__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-block-start: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-pump__actions {
    margin-block-start: 1.25rem;
    flex-direction: column;
  }
}

.p-ufb-pump__action .c-button {
  min-width: 12.5rem;
  min-height: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-pump__action .c-button {
    min-width: auto;
    width: 100%;
  }
}

.p-ufb-pump__empty {
  margin-block-start: 2.5rem;
  color: #666;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

.p-ufb-pump-cta.c-ufb-contact {
  padding-block: 5rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-pump-cta.c-ufb-contact {
    padding-block: 3rem 1.5rem;
  }
}

.p-ufb-pump-related.c-related-links {
  padding-block: 2.5rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-pump-related.c-related-links {
    padding-block: 1rem 3rem;
  }
}

.p-ufb-reasons {
  padding-block: 6.875rem 7.5rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-ufb-reasons {
    padding-block: 3.375rem 3.75rem;
  }
}

.p-ufb-reasons__list {
  display: grid;
  gap: 5rem;
  margin-block-start: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-reasons__list {
    margin-block-start: 2.5rem;
    gap: 2.5rem;
  }
}

.p-ufb-reasons__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 5rem;
  align-items: flex-start;
}
@media screen and (max-width: 1023px) {
  .p-ufb-reasons__item {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-ufb-reasons__item {
    display: flex;
    flex-direction: column-reverse;
    gap: 2.5rem;
  }
}

.p-ufb-reasons__item--reverse .p-ufb-reasons__media {
  order: 2;
}
@media screen and (max-width: 767px) {
  .p-ufb-reasons__item--reverse .p-ufb-reasons__media {
    order: 0;
  }
}
.p-ufb-reasons__item--reverse .p-ufb-reasons__body {
  order: 1;
}

.p-ufb-reasons__media {
  overflow: hidden;
  border-radius: 0.375rem;
  aspect-ratio: 560/420;
  background-color: #e8eef1;
}

.p-ufb-reasons__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-ufb-reasons__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.p-ufb-reasons__label {
  color: var(--color-text);
  font-family: var(--ff-en);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-ufb-reasons__label {
    font-size: 0.875rem;
  }
}

.p-ufb-reasons__label-num {
  color: var(--color-primary);
  font-weight: 700;
}

.p-ufb-reasons__heading {
  margin-block-start: 1.5rem;
  color: var(--color-text);
  font-size: clamp(2rem, 0.86rem + 1.79vw, 3rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-reasons__heading {
    margin-block-start: 0.75rem;
    font-size: 1.5rem;
  }
}

.p-ufb-reasons__text {
  margin-block-start: 3.125rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.07em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-reasons__text {
    margin-block-start: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.8;
  }
}

.p-ufb-reasons__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-block-start: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-reasons__tags {
    gap: 0.5rem;
    margin-block-start: 0.875rem;
  }
}

.p-ufb-reasons__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding-inline: 0.9375rem;
  border-radius: 0.25rem;
  background-color: #eee;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-reasons__tag {
    min-height: 1.625rem;
    padding-inline: 0.5rem;
    font-size: 0.875rem;
  }
}

.p-ufb-reasons__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-block-start: 4.75rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-reasons__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    margin-block-start: 2.5rem;
  }
}

.p-ufb-reasons__button {
  min-width: 24.375rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-reasons__button {
    min-width: 0;
    width: 100%;
  }
}

.p-ufb-reasons__adopted {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 1.875rem;
  margin-block-start: 5rem;
  padding-block: 2.75rem 2.875rem;
  padding-inline: 2.5rem;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 130%, rgba(32, 83, 136, 0.28), transparent 65%), linear-gradient(120deg, #090c12, #020305 55%, #0b1018);
  color: var(--color-white);
}
.p-ufb-reasons__adopted::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.45;
  background: radial-gradient(1px 1px at 6% 18%, #cbdcf1 90%, transparent), radial-gradient(1px 1px at 19% 80%, #cbdcf1 90%, transparent), radial-gradient(1px 1px at 30% 12%, #cbdcf1 90%, transparent), radial-gradient(1px 1px at 47% 89%, #cbdcf1 90%, transparent), radial-gradient(1px 1px at 69% 19%, #cbdcf1 90%, transparent), radial-gradient(1px 1px at 83% 84%, #cbdcf1 90%, transparent), radial-gradient(1px 1px at 95% 28%, #cbdcf1 90%, transparent);
}
.p-ufb-reasons__adopted::after {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  width: 60%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, #e8cd96, transparent);
}
@media screen and (max-width: 767px) {
  .p-ufb-reasons__adopted {
    gap: 1.5rem;
    margin-block-start: 2.5rem;
    margin-inline: calc(50% - 50vw);
    padding-block: 2.125rem 2.25rem;
    padding-inline: 1rem;
    border-inline: 0;
  }
}

.p-ufb-reasons__adopted-title {
  color: #e7c88e;
  font-family: var(--ff-en);
  font-size: clamp(1.25rem, 1.02rem + 0.97vw, 1.75rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-align: center;
  text-wrap: balance;
}
@media screen and (max-width: 767px) {
  .p-ufb-reasons__adopted-title {
    font-size: 1.25rem;
  }
}

.p-ufb-reasons__logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-reasons__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

.p-ufb-reasons__logo {
  min-width: 0;
}

.p-ufb-reasons__logo-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 5.25rem;
  padding-block: 1.25rem;
  padding-inline: 1rem 1.875rem;
  border: 1px solid rgba(185, 202, 222, 0.28);
  border-radius: 0.1875rem;
  background: linear-gradient(125deg, rgba(166, 192, 225, 0.1), rgba(18, 30, 46, 0.35) 55%, rgba(4, 7, 12, 0.65));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0.375rem 1rem rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}
.p-ufb-reasons__logo-link::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 25%;
  left: 25%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d7b77d, transparent);
}
.p-ufb-reasons__logo-link::after {
  content: "↗";
  position: absolute;
  right: 0.8125rem;
  color: #d7b77d;
  font-size: 0.875rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-ufb-reasons__logo-link {
    min-height: 4.875rem;
    padding-block: 1rem;
    padding-inline: 0.625rem 1.5rem;
  }
  .p-ufb-reasons__logo-link::after {
    right: 0.5625rem;
    font-size: 0.75rem;
  }
}
@media (any-hover: hover) {
  .p-ufb-reasons__logo-link:hover {
    border-color: #cfaf75;
    background-color: rgba(48, 77, 110, 0.25);
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.3), 0 0 1.25rem rgba(85, 138, 197, 0.12);
    transform: translateY(-0.125rem);
  }
}
.p-ufb-reasons__logo-link:focus-visible {
  outline: 2px solid #efcf94;
  outline-offset: 4px;
}
.p-ufb-reasons__logo-link:active {
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .p-ufb-reasons__logo-link {
    transition: none;
  }
  .p-ufb-reasons__logo-link:hover {
    transform: none;
  }
}

.p-ufb-reasons__logo-name {
  color: #f5f6fa;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.025em;
  text-align: center;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-reasons__logo-name {
    font-size: 0.875rem;
  }
}

.p-ufb-solution-intro {
  padding-block: 2.5rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-solution-intro {
    padding-block: 1.5rem 3rem;
  }
}

.p-ufb-solution-intro__texts {
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-solution-intro__texts {
    margin-block-start: 1.5rem;
  }
}

.p-ufb-solution-intro__text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-solution-intro__text {
    font-size: 0.875rem;
    line-height: 1.75;
  }
}
.p-ufb-solution-intro__text + .p-ufb-solution-intro__text {
  margin-block-start: 0.5rem;
}

.p-ufb-solution-adopted {
  padding-block: 2.5rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-solution-adopted {
    padding-block: 1.5rem 3rem;
  }
}

.p-ufb-solution-adopted__inner {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 1.875rem;
  padding-block: 2.75rem 2.875rem;
  padding-inline: 2.5rem;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 130%, rgba(32, 83, 136, 0.28), transparent 65%), linear-gradient(120deg, #090c12, #020305 55%, #0b1018);
  color: var(--color-white);
}
.p-ufb-solution-adopted__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.45;
  background: radial-gradient(1px 1px at 6% 18%, #cbdcf1 90%, transparent), radial-gradient(1px 1px at 19% 80%, #cbdcf1 90%, transparent), radial-gradient(1px 1px at 30% 12%, #cbdcf1 90%, transparent), radial-gradient(1px 1px at 47% 89%, #cbdcf1 90%, transparent), radial-gradient(1px 1px at 69% 19%, #cbdcf1 90%, transparent), radial-gradient(1px 1px at 83% 84%, #cbdcf1 90%, transparent), radial-gradient(1px 1px at 95% 28%, #cbdcf1 90%, transparent);
}
.p-ufb-solution-adopted__inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  width: 60%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, #e8cd96, transparent);
}
@media screen and (max-width: 767px) {
  .p-ufb-solution-adopted__inner {
    gap: 1.5rem;
    margin-inline: calc(50% - 50vw);
    width: 100vw;
    max-width: 100vw;
    padding-block: 2.125rem 2.25rem;
    padding-inline: 1rem;
    border-inline: 0;
  }
}

.p-ufb-solution-adopted__title {
  color: #e7c88e;
  font-family: var(--ff-en);
  font-size: clamp(1.25rem, 1.02rem + 0.97vw, 1.75rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-align: center;
  text-wrap: balance;
}
@media screen and (max-width: 767px) {
  .p-ufb-solution-adopted__title {
    font-size: 1.25rem;
  }
}

.p-ufb-solution-adopted__logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-solution-adopted__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

.p-ufb-solution-adopted__logo {
  min-width: 0;
}

.p-ufb-solution-adopted__logo-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 5.25rem;
  padding-block: 1.25rem;
  padding-inline: 1rem 1.875rem;
  border: 1px solid rgba(185, 202, 222, 0.28);
  border-radius: 0.1875rem;
  background: linear-gradient(125deg, rgba(166, 192, 225, 0.1), rgba(18, 30, 46, 0.35) 55%, rgba(4, 7, 12, 0.65));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0.375rem 1rem rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}
.p-ufb-solution-adopted__logo-link::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 25%;
  left: 25%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d7b77d, transparent);
}
.p-ufb-solution-adopted__logo-link::after {
  content: "↗";
  position: absolute;
  right: 0.8125rem;
  color: #d7b77d;
  font-size: 0.875rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-ufb-solution-adopted__logo-link {
    min-height: 4.875rem;
    padding-block: 1rem;
    padding-inline: 0.625rem 1.5rem;
  }
  .p-ufb-solution-adopted__logo-link::after {
    right: 0.5625rem;
    font-size: 0.75rem;
  }
}
@media (any-hover: hover) {
  .p-ufb-solution-adopted__logo-link:hover {
    border-color: #cfaf75;
    background-color: rgba(48, 77, 110, 0.25);
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.3), 0 0 1.25rem rgba(85, 138, 197, 0.12);
    transform: translateY(-0.125rem);
  }
}
.p-ufb-solution-adopted__logo-link:focus-visible {
  outline: 2px solid #efcf94;
  outline-offset: 4px;
}
.p-ufb-solution-adopted__logo-link:active {
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .p-ufb-solution-adopted__logo-link {
    transition: none;
  }
  .p-ufb-solution-adopted__logo-link:hover {
    transform: none;
  }
}

.p-ufb-solution-adopted__logo-name {
  color: #f5f6fa;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.025em;
  text-align: center;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-solution-adopted__logo-name {
    font-size: 0.875rem;
  }
}

.p-ufb-solution-select {
  margin-block: 2.5rem 0;
  padding-block: 7.5rem 7.5rem;
  background-color: #eff4f9;
}
@media screen and (max-width: 767px) {
  .p-ufb-solution-select {
    margin-block: 1.5rem 0;
    padding-block: 3.75rem 3.75rem;
  }
}

.p-ufb-solution-select__lead {
  margin-block-start: 1.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-solution-select__lead {
    margin-block-start: 1rem;
    font-size: 0.875rem;
    line-height: 1.75;
  }
}

.p-ufb-solution-select__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.25rem;
  margin-block-start: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-solution-select__list {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
    margin-block-start: 2rem;
  }
}

.p-ufb-solution-select__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 0.375rem;
  background-color: var(--color-white);
}

.p-ufb-solution-select__visual {
  overflow: hidden;
  aspect-ratio: 534/300;
  background-color: #e8eef1;
}

.p-ufb-solution-select__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-ufb-solution-select__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.75rem 2rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-solution-select__body {
    padding: 1.5rem 1.25rem;
  }
}

.p-ufb-solution-select__en {
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-ufb-solution-select__en {
    font-size: 0.75rem;
  }
}

.p-ufb-solution-select__heading {
  margin-block-start: 0.75rem;
  color: var(--color-text);
  font-size: clamp(1.25rem, 1.11rem + 0.22vw, 1.375rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-solution-select__heading {
    margin-block-start: 0.5rem;
    font-size: 1.125rem;
  }
}

.p-ufb-solution-select__text {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-solution-select__text {
    margin-block-start: 0.75rem;
    font-size: 0.8125rem;
    line-height: 1.75;
  }
}

.p-ufb-solution-select__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-block-start: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-solution-select__tags {
    margin-block-start: 1rem;
  }
}

.p-ufb-solution-select__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.75rem;
  padding-inline: 0.625rem;
  border-radius: 0.1875rem;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}

.p-ufb-solution-select__button {
  margin-block-start: auto;
  padding-block-start: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-solution-select__button {
    padding-block-start: 1.25rem;
  }
}
.p-ufb-solution-select__button .c-button {
  width: 100%;
}

.p-ufb-solutions {
  padding-block: 7.125rem 7.5rem;
  background-color: #eff4f9;
}
@media screen and (max-width: 767px) {
  .p-ufb-solutions {
    padding-block: 3.25rem 3.75rem;
  }
}

.p-ufb-solutions__cards {
  width: min(100%, 120rem);
  margin-inline: auto;
  margin-block-start: 4.75rem;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .p-ufb-solutions__cards {
    margin-block-start: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-ufb-solutions__cards {
    margin-block-start: 2.25rem;
    padding-inline: 1.25rem;
  }
}

.p-ufb-solutions__title .c-section-title__ja {
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-ufb-solutions__title .c-section-title__ja {
    line-height: 1.6;
  }
}

.p-ufb-solutions__lead {
  margin-block-start: 4.25rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-solutions__lead {
    margin-block-start: 1.75rem;
    font-size: 0.875rem;
    line-height: 1.71;
    letter-spacing: 0;
  }
}

.p-ufb-solutions__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17.9375rem), 1fr));
  gap: clamp(0.625rem, -0.28rem + 1.88vw, 1.25rem);
}

.p-ufb-solutions__card {
  position: relative;
  display: block;
  overflow: hidden;
  height: 100%;
  min-height: 40rem;
  border-radius: 0.375rem;
  color: var(--color-white);
  text-decoration: none;
  isolation: isolate;
}
@media screen and (max-width: 1023px) {
  .p-ufb-solutions__card {
    min-height: 30rem;
  }
}
@media screen and (max-width: 767px) {
  .p-ufb-solutions__card {
    min-height: 30rem;
  }
}

.p-ufb-solutions__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.p-ufb-solutions__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: scale 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.p-ufb-solutions__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.28) 42%, rgba(0, 0, 0, 0.72) 100%);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-ufb-solutions__card::before {
    background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.75) 100%);
  }
}

.p-ufb-solutions__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: inherit;
  padding: 2rem clamp(1rem, -0.44rem + 3.01vw, 2rem) 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-solutions__body {
    padding: 2rem clamp(1rem, -0.5rem + 6.67vw, 1.125rem) 1.9375rem clamp(1rem, -2rem + 13.33vw, 1.25rem);
  }
}

.p-ufb-solutions__en {
  color: var(--color-white);
  font-family: var(--ff-en);
  font-size: clamp(0.75rem, 0.46rem + 0.45vw, 1rem);
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-ufb-solutions__en {
    font-size: 0.875rem;
    line-height: 1.71;
    letter-spacing: 0;
  }
}

.p-ufb-solutions__heading {
  margin-block-start: 0.75rem;
  color: var(--color-white);
  font-size: clamp(1.5rem, 0.93rem + 0.89vw, 2rem);
  font-weight: 700;
  line-height: 1.375;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-solutions__heading {
    margin-block-start: 0.25rem;
    font-size: 1.25rem;
    line-height: 1.7;
  }
}

.p-ufb-solutions__text {
  min-height: 5.25rem;
  margin-block-start: 1.625rem;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ufb-solutions__text {
    margin-block-start: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.71;
  }
}

.p-ufb-solutions__arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-block-start: 1.25rem;
  padding-inline-end: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-ufb-solutions__arrow {
    margin-block-start: 0rem;
    padding-inline-end: 0rem;
  }
}

.p-ufb-solutions__arrow-icon {
  width: 1.25rem;
  height: 0.625rem;
  background-color: currentcolor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23fff; %7D .cls-2 %7B fill: none; stroke: %23fff; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M15,0l5,5-5,5' /%3E%3Cpath class='cls-2' d='M0,5h18' /%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23fff; %7D .cls-2 %7B fill: none; stroke: %23fff; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M15,0l5,5-5,5' /%3E%3Cpath class='cls-2' d='M0,5h18' /%3E%3C/svg%3E%0A");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transition: translate var(--duration);
}

@media (any-hover: hover) {
  .p-ufb-solutions__card:hover .p-ufb-solutions__image {
    scale: 1.06;
  }
  .p-ufb-solutions__card:hover .p-ufb-solutions__arrow-icon {
    translate: 0.5rem 0;
  }
}
.p-under-mv {
  margin-block-start: var(--header-height);
}

.p-under-mv__inner {
  display: flex;
  align-items: center;
  width: min(100%, 81.25rem);
  min-height: 20.9375rem;
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-under-mv__inner {
    min-height: 15rem;
    padding-inline: 1.25rem;
  }
}

.p-under-mv__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  translate: 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-under-mv__title {
    translate: 0 0.25rem;
  }
}

.p-under-mv__en {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-en);
  font-size: clamp(1.25rem, 1.08rem + 0.35vw, 1.5rem);
  font-weight: 600;
  line-height: 1.58;
}
@media screen and (max-width: 767px) {
  .p-under-mv__en {
    gap: 0.625rem;
    font-size: 1.125rem;
  }
}

.p-under-mv__en::before {
  content: "";
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-under-mv__en::before {
    width: 0.375rem;
    height: 0.375rem;
  }
}

.p-under-mv__ja {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(2.75rem, 2.25rem + 1.04vw, 3.5rem);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-under-mv__ja {
    font-size: 1.75rem;
    line-height: 1.375;
  }
}

@media (width <= 767px) {
  [data-only-device=md] {
    display: none;
  }
}

@media (width >= 768px) {
  [data-only-device=sm] {
    display: none;
  }
}

@media (width <= 767px) {
  .u-pc-hidden {
    display: block;
  }
}
@media (width >= 768px) {
  .u-pc-hidden {
    display: none;
  }
}

.js-animation,
.c-section-title {
  opacity: 0;
  translate: 0 1.875rem;
}
.js-animation.is-animatable,
.c-section-title.is-animatable {
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1), translate 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, translate;
}
.js-animation.is-inview,
.c-section-title.is-inview {
  opacity: 1;
  translate: 0 0;
}

@media (prefers-reduced-motion: reduce) {
  .js-animation,
  .c-section-title {
    opacity: 1;
    translate: none;
    transition: none;
    will-change: auto;
  }
}
@media (width >= 768px) {
  .u-sp-hidden {
    display: block;
  }
}
@media (width <= 767px) {
  .u-sp-hidden {
    display: none;
  }
}

.u-sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
}

.u-text__marker {
  background: linear-gradient(transparent 75%, var(--color-orange) 75%);
}

.u-text__indent {
  padding-inline-start: 1em;
  text-indent: -1em;
}