@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: #1e1e1e;
  --color-white: #fff;
  --color-black: #000;
  --color-gray: #f0f0f0;
  --color-border: #aaaaaf;
  --color-accent: #1155cc;
  --color-primary: #1155cc;
  --color-secondary: #00f;
  --color-orange: #de8430;
  --color-red: #d32f2f;
  /* font-family */
  --ff-base: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  --ff-en: "Outfit", sans-serif;
  --to-rem: calc(tan(atan2(1px, var(--root-font-size))) * 1rem);
  /* transition duration */
  --duration: 0.3s;
  /* header height */
  --header-height: 80px;
}
@media screen and (width <= 1023px) {
  :root {
    --header-height: 64px;
  }
}

/*! 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%;
  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: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(: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;
}

::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 {
  scrollbar-gutter: stable;
  font-size: 100%;
}

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

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%;
  object-fit: cover;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}

: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;
  inset: 0;
  z-index: var(--z-index-header);
}

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

.l-inner--narrow {
  width: min(100%, 81.25rem);
}
@media screen and (max-width: 767px) {
  .l-inner--narrow {
    width: min(100%, 37.5rem);
  }
}

.l-main--overlap-mv {
  margin-block-start: 0;
}

/**
 * パンくずリスト（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: 1rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    padding-block: 0.875rem;
    overflow-x: auto;
    white-space: nowrap;
  }
}

.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: center;
  max-width: 100%;
  color: var(--color-text, #333);
  font-size: 0.875rem;
  /* 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 8px;
  flex-shrink: 0;
  color: var(--color-text, #333);
}

.c-breadcrumb__link {
  min-width: 0;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media (any-hover: hover) {
  .c-breadcrumb__link:hover {
    opacity: 0.7;
  }
}

.c-button {
  position: relative;
  display: inline-block;
  width: min(100%, 22.5rem);
  padding: 0.875rem 1.875rem;
  border: 1px solid hsl(0, 0%, 65%);
  border-radius: 0.5rem;
  background-color: var(--color-white);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
  color: var(--color-black);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color var(--duration) ease, color var(--duration) ease, border-color var(--duration) ease;
}
.c-button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.875rem;
  width: 0.375rem;
  height: 0.375rem;
  border-top: 2px solid currentcolor;
  border-right: 2px solid currentcolor;
  rotate: 45deg;
  translate: 0 -50%;
  transition: translate var(--duration) ease;
}
@media (any-hover: hover) {
  .c-button:hover {
    opacity: 1;
    border-color: var(--color-black);
    background-color: var(--color-black);
    color: var(--color-white);
  }
  .c-button:hover::before {
    translate: 5px -50%;
  }
}

.c-button[data-color=black] {
  border-color: var(--color-black);
  background-color: var(--color-black);
  color: var(--color-white);
}
@media (any-hover: hover) {
  .c-button[data-color=black]:hover {
    border-color: var(--color-black);
    background-color: var(--color-white);
    color: var(--color-black);
  }
  .c-button[data-color=black]:hover::before {
    translate: 5px -50%;
  }
}

.c-button[data-color=palt] {
  font-feature-settings: "palt";
}

.c-heading01__sub {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  font-family: var(--ff-en);
  font-feature-settings: "palt";
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .c-heading01__sub {
    font-size: 1.875rem;
  }
}

.c-heading01__main {
  position: relative;
  margin-block-start: 1.25rem;
  padding-inline-start: 3.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  font-family: var(--ff-en);
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .c-heading01__main {
    margin-block-start: 0.75rem;
    font-size: 1.125rem;
  }
}
.c-heading01__main::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 2.5625rem;
  height: 0.0625rem;
  background-color: var(--color-text);
}

.c-notice__item {
  border: 3px solid #e9eeef;
  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%;
  color: var(--color-text);
}
.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 {
    cursor: pointer;
    background-color: color-mix(in srgb, var(--color-primary) 5%, white);
  }
}

.c-notice__item-summary-text {
  display: inline-block;
  position: relative;
  font-size: max(1.25rem, 8px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0em;
}
@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 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-notice__item-content-inner {
    padding: 1rem 1.25rem;
  }
}

.c-notice__item-content-text {
  position: relative;
  font-size: max(1rem, 8px);
  font-weight: 500;
  line-height: 1.63;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .c-notice__item-content-text {
    font-size: 0.875rem;
    line-height: 1.75;
  }
}

.c-notice__item-content-text-item {
  padding-inline-start: 1rem;
  position: relative;
}
.c-notice__item-content-text-item::before {
  content: "";
  position: absolute;
  width: 0.25rem;
  height: 0.25rem;
  background-color: var(--color-text);
  left: 0rem;
  top: 0.8em;
  border-radius: 50%;
}

/**
 * ページネーション共通コンポーネント
 *
 * 前へ・次へは矢印表示。文言はスクリーンリーダー用に .c-pagination__sr で保持。
 *
 * 親（プロジェクト）から上書きする場合:
 *   - 呼び出し元で親クラスで wrap する（例: <div class="p-news-list__pagination">...</div>）
 *   - プロジェクトの SCSS ではその wrapper クラスに --_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: var(--color-text);
  --_pagination-bg-hover: oklch(from var(--color-gray) l c h / 50%);
  --_pagination-active-bg: var(--color-primary, #000);
  --_pagination-active-text: var(--color-white, #fff);
  --_pagination-border: var(--color-gray);
  --_pagination-border-hover: var(--color-text);
  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);
  background-color: var(--_pagination-bg);
  color: var(--_pagination-text);
  font-size: 0.9375rem;
  font-family: var(--ff-en);
  text-decoration: none;
  transition: border-color var(--duration), background-color var(--duration), color var(--duration);
}
@media screen and (max-width: 767px) {
  .c-pagination__item {
    height: 2.5rem;
    min-width: 2.5rem;
    padding: 0 0.625rem;
    font-size: 0.875rem;
  }
}
@media (any-hover: hover) {
  .c-pagination__item:hover:not([data-state=current]):not([data-state=disabled]) {
    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);
}

.c-pagination__item[data-state=dots] {
  border-color: transparent;
  background-color: transparent;
  cursor: default;
}
.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] {
  padding: 0;
  font-size: 0;
}
.c-pagination__item[data-state=prev] .c-pagination__sr,
.c-pagination__item[data-state=next] .c-pagination__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.c-pagination__arrow {
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  background-color: currentColor;
  transition: transform var(--duration);
}

.c-pagination__arrow--prev {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4.53' height='7.95' viewBox='0 0 4.53 7.95'%3E%3Cpolyline points='4.03 .5 .5 3.97 4.03 7.45' fill='none' stroke='%2315c' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.c-pagination__arrow--next {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4.53' height='7.95' viewBox='0 0 4.53 7.95'%3E%3Cpolyline points='.5 .5 4.03 3.97 .5 7.45' fill='none' stroke='%2315c' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

@media (any-hover: hover) {
  .c-pagination__item[data-state=prev]:hover .c-pagination__arrow--prev {
    transform: translateX(-0.1875rem);
  }
  .c-pagination__item[data-state=next]:hover .c-pagination__arrow--next {
    transform: translateX(0.1875rem);
  }
}
.c-pagination__item[data-state=disabled] {
  opacity: 0.5;
  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-pagination__item[data-state=disabled]:hover .c-pagination__arrow--prev,
  .c-pagination__item[data-state=disabled]:hover .c-pagination__arrow--next {
    transform: none;
  }
}

.c-section-heading {
  font-feature-settings: "palt";
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1.57;
  letter-spacing: 0.05em;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .c-section-heading {
    font-size: 1.5rem;
  }
}

.c-section-heading__accent {
  color: var(--color-primary);
}

.c-section-heading[data-align=center] {
  text-align: center;
}

.c-section-title {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  width: max-content;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    gap: 0.5rem;
  }
}
.c-section-title[data-align=center] {
  justify-items: center;
  text-align: center;
}
.c-section-title[data-align=left] {
  justify-items: start;
  text-align: left;
}
.c-section-title[data-align=right] {
  justify-items: end;
  text-align: right;
}

.c-section-title::after {
  content: "";
  display: block;
  width: 80%;
  height: 0.1875rem;
  background-color: var(--color-orange);
}
@media screen and (max-width: 767px) {
  .c-section-title::after {
    width: 60%;
  }
}

.c-section-title__main {
  color: var(--color-text);
  font-family: var(--ff-en);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-section-title__main {
    font-size: 2rem;
  }
}

.c-section-title__sub {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .c-section-title__sub {
    font-size: 0.875rem;
  }
}

.c-top-title {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-top-title {
    align-items: flex-start;
    gap: 0.5rem;
  }
}

.c-top-title__icon {
  width: 2.875rem;
  height: 2.875rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .c-top-title__icon {
    zoom: 0.6;
    margin-block-start: 0.75rem;
  }
}
.c-top-title__icon--works {
  width: 3.25rem;
  height: 2.625rem;
}
.c-top-title__icon--estate {
  width: 2.75rem;
  height: 2.9375rem;
}
.c-top-title__icon--features {
  width: 2.4375rem;
  height: 3.0625rem;
}
.c-top-title__icon--column {
  width: 1.75rem;
  height: 3.375rem;
}
.c-top-title__icon--staff {
  width: 3.25rem;
  height: 2.75rem;
}
.c-top-title__icon--showroom {
  width: 3.4375rem;
  height: 2.75rem;
}
.c-top-title__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.c-top-title__text {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .c-top-title__text {
    flex-direction: column;
  }
}

.c-top-title__sub {
  font-size: 5rem;
  font-weight: 700;
  font-family: var(--ff-en);
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-top-title__sub {
    font-size: 2.5rem;
  }
}

.c-top-title__main {
  margin: 0;
  position: relative;
  padding-inline-start: 1.5rem;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 2.2;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-top-title__main {
    padding-inline-start: 1.25rem;
    font-size: 0.75rem;
    line-height: 1.3;
  }
}
.c-top-title__main::before {
  content: "/";
  position: absolute;
  top: 50%;
  left: 0.25rem;
  transform: translateY(-50%);
  display: inline-block;
  padding-inline: 0.5rem;
}

.p-archive {
  padding-block: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive {
    padding-block: calc(80 * var(--to-rem));
  }
}

.p-archive__inner {
  max-width: calc(var(--inner) + var(--padding-inner) * 2);
}

.p-archive__header {
  margin-block-end: calc(40 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-archive__header {
    margin-block-end: calc(60 * var(--to-rem));
  }
}

.p-archive__title {
  margin-block-end: calc(16 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive__title {
    margin-block-end: calc(24 * var(--to-rem));
  }
}

.p-archive__description {
  margin-block-start: calc(16 * var(--to-rem));
  color: var(--color-text);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-archive__description {
    margin-block-start: calc(24 * var(--to-rem));
    font-size: calc(16 * var(--to-rem));
  }
}

.p-archive__list {
  display: grid;
  gap: calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive__list {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(32 * var(--to-rem));
  }
}
@media screen and (max-width: 1023px) {
  .p-archive__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-archive__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: calc(16 * var(--to-rem));
  border: 1px solid var(--color-gray);
  border-radius: 12px;
  background-color: var(--color-white);
  text-decoration: none;
  transition: translate 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-archive__link {
    padding: calc(20 * var(--to-rem));
  }
}
@media (any-hover: hover) {
  .p-archive__link:hover {
    box-shadow: 0 8px 24px oklch(from var(--color-black) l c h/10%);
    translate: 0 calc(-4 * var(--to-rem));
  }
}

.p-archive__thumbnail {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  margin-block-end: calc(16 * var(--to-rem));
  border-radius: 8px;
  background-color: var(--color-gray);
}
@media screen and (max-width: 767px) {
  .p-archive__thumbnail {
    margin-block-end: calc(20 * var(--to-rem));
  }
}

.p-archive__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.3s ease;
}

@media (any-hover: hover) {
  .p-archive__link:hover .p-archive__thumbnail img {
    scale: 1.05;
  }
}
.p-archive__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: calc(12 * var(--to-rem));
}

.p-archive__item-title {
  margin: 0;
  color: var(--color-text);
  font-size: calc(16 * var(--to-rem));
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-archive__item-title {
    font-size: calc(20 * var(--to-rem));
  }
}

.p-archive__meta {
  display: flex;
  flex-wrap: wrap;
  gap: calc(12 * var(--to-rem));
  align-items: center;
  color: var(--color-text);
  font-size: calc(12 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive__meta {
    font-size: calc(14 * var(--to-rem));
  }
}

.p-archive__date {
  display: inline-block;
}

.p-archive__categories {
  display: flex;
  flex-wrap: wrap;
  gap: calc(8 * var(--to-rem));
}

.p-archive__category {
  display: inline-block;
  padding: calc(4 * var(--to-rem)) calc(12 * var(--to-rem));
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-size: calc(11 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive__category {
    font-size: calc(12 * var(--to-rem));
  }
}

.p-archive__excerpt {
  color: var(--color-text);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-archive__excerpt {
    font-size: calc(16 * var(--to-rem));
  }
}

.p-archive__pagination {
  margin-block-start: calc(48 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive__pagination {
    margin-block-start: calc(60 * var(--to-rem));
  }
}

.p-archive__empty {
  padding-block: calc(60 * var(--to-rem));
  color: var(--color-text);
  font-size: calc(16 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-archive__empty {
    padding-block: calc(80 * var(--to-rem));
    font-size: calc(18 * var(--to-rem));
  }
}

.p-single__back {
  margin-block-start: calc(48 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-single__back {
    margin-block-start: calc(60 * var(--to-rem));
  }
}

.p-archive--works .p-archive__link {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  padding: 0;
  border: none;
  border-radius: 12px;
  box-shadow: 0 calc(2 * var(--to-rem)) calc(8 * var(--to-rem)) oklch(from var(--color-black) l c h/8%);
  background-color: var(--color-white);
  text-decoration: none;
}

.p-archive--works .p-archive__thumbnail {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  margin-block-end: 0;
  border-radius: 12px 12px 0 0;
}

.p-archive--works .p-archive__thumbnail img {
  transition: scale 0.5s ease;
}

@media (any-hover: hover) {
  .p-archive--works .p-archive__link:has(.p-archive__thumbnail):hover .p-archive__thumbnail img {
    scale: 1.1;
  }
}
.p-archive--works .p-archive__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: calc(12 * var(--to-rem));
  padding: calc(20 * var(--to-rem));
}

.p-archive--works .p-archive__meta {
  display: flex;
  flex-wrap: wrap;
  gap: calc(12 * var(--to-rem));
  align-items: center;
  margin-block-end: calc(8 * var(--to-rem));
  color: var(--color-text);
  font-size: calc(12 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive--works .p-archive__meta {
    font-size: calc(14 * var(--to-rem));
  }
}

.p-archive--works .p-archive__date {
  display: inline-block;
}

.p-archive--works .p-archive__category {
  display: inline-block;
  padding: calc(4 * var(--to-rem)) calc(12 * var(--to-rem));
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-size: calc(11 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive--works .p-archive__category {
    font-size: calc(12 * var(--to-rem));
  }
}

.p-archive--works .p-archive__item-title {
  margin: 0;
  margin-block-end: calc(8 * var(--to-rem));
  color: var(--color-text);
  font-size: calc(16 * var(--to-rem));
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-archive--works .p-archive__item-title {
    margin-block-end: calc(12 * var(--to-rem));
    font-size: calc(18 * var(--to-rem));
    line-height: 1.6;
  }
}

.p-archive--works .p-archive__excerpt {
  display: -webkit-box;
  overflow: hidden;
  margin-block-start: 0;
  color: var(--color-text);
  font-size: calc(13 * var(--to-rem));
  line-height: 1.7;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 767px) {
  .p-archive--works .p-archive__excerpt {
    font-size: calc(14 * var(--to-rem));
    line-height: 1.8;
  }
}

.p-archive--works .p-archive__client,
.p-archive--works .p-archive__period {
  display: flex;
  gap: calc(8 * var(--to-rem));
  align-items: center;
  color: var(--color-text);
  font-size: calc(12 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive--works .p-archive__client,
  .p-archive--works .p-archive__period {
    font-size: calc(14 * var(--to-rem));
  }
}

.p-archive--works .p-archive__client-label,
.p-archive--works .p-archive__period-label {
  font-weight: 500;
}

.p-archive--works .p-archive__technologies {
  display: flex;
  flex-wrap: wrap;
  gap: calc(8 * var(--to-rem));
  margin-block-start: calc(12 * var(--to-rem));
}

.p-archive--works .p-archive__technology {
  display: inline-block;
  padding: calc(4 * var(--to-rem)) calc(12 * var(--to-rem));
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-size: calc(11 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive--works .p-archive__technology {
    font-size: calc(12 * var(--to-rem));
  }
}

.p-campaign-banner {
  padding-block: 2.75rem 5.25rem;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-campaign-banner {
    padding-block: 2rem 1.5rem;
  }
}

.p-campaign-banner__link {
  display: block;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  .p-campaign-banner__link {
    border-radius: 0.5rem;
  }
}

.p-campaign-banner__image {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.p-card-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc(320 * var(--to-rem)), 1fr));
  gap: calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-card-list {
    gap: calc(32 * var(--to-rem));
  }
}

.p-column-list {
  padding-block: 3rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-column-list {
    padding-block: 2.5rem 3.75rem;
  }
}

.p-column-list__filter {
  margin-block-end: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-column-list__filter {
    margin-block-end: 1.75rem;
  }
}

.p-column-list__filter-title {
  position: relative;
  margin: 0;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-column-list__filter-title {
    padding-inline-start: 0.75rem;
    font-size: 1.0625rem;
    line-height: 1.4;
  }
}

.p-column-list__filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin: 1.125rem 0 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-column-list__filter-list {
    gap: 0.5rem;
    margin-block-start: 0.75rem;
  }
}

.p-column-list__filter-item {
  margin: 0;
}

.p-column-list__filter-link {
  display: inline-flex;
  padding: 0.5625rem 1.125rem;
  border: 0.0625rem solid color-mix(in srgb, var(--color-border) 80%, var(--color-white));
  border-radius: 100vmax;
  background: var(--color-white);
  color: color-mix(in srgb, var(--color-text) 78%, var(--color-white));
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: border-color var(--duration), color var(--duration), background-color var(--duration), transform var(--duration);
}
@media screen and (max-width: 767px) {
  .p-column-list__filter-link {
    padding: 0.4375rem 0.875rem;
    font-size: 0.75rem;
  }
}
@media (any-hover: hover) {
  .p-column-list__filter-link:hover {
    opacity: 1;
    border-color: var(--color-primary);
    color: var(--color-primary);
  }
}

.p-column-list__filter-link.is-active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}

.p-column-list__container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .p-column-list__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .p-column-list__container {
    grid-template-columns: 1fr;
    gap: 1.125rem;
  }
}

.p-column-list__item {
  margin: 0;
}

.p-column-list__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: var(--color-text);
  text-decoration: none;
}
.p-column-list__card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 0.25rem;
}
@media (any-hover: hover) {
  .p-column-list__card:hover .p-column-list__image img {
    transform: scale(1.06);
  }
}

.p-column-list__visual {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0.5rem;
  background-color: #ddd;
}

.p-column-list__image {
  display: block;
}
.p-column-list__image img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.p-column-list__shade {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 45%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.2) 65%, transparent 100%);
  pointer-events: none;
}

.p-column-list__more {
  position: absolute;
  right: 0.875rem;
  bottom: 0.875rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  pointer-events: none;
}

.p-column-list__more-icon {
  display: block;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='33' viewBox='0 0 33 33'%3E%3Ccircle cx='16.5' cy='16.5' r='16' fill='none' stroke='%23fff' stroke-miterlimit='10'/%3E%3Cpolyline points='15.74 13.03 19.26 16.5 15.74 19.97' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-column-list__more-text {
  color: var(--color-white);
  font-size: 0.875rem;
  font-family: var(--ff-en);
  font-weight: 400;
  letter-spacing: 0.06em;
}

.p-column-list__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-block-start: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-column-list__meta {
    gap: 0.25rem;
    margin-block-start: 0.75rem;
  }
}

.p-column-list__date {
  font-size: 0.9375rem;
  font-weight: 500;
  font-family: var(--ff-en);
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.p-column-list__title {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-overflow: ellipsis;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 767px) {
  .p-column-list__title {
    font-size: 0.875rem;
  }
}

.p-column-list__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 0.625rem;
}

.p-column-list__tag {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

.p-column-list__pagination {
  --_pagination-bg: var(--color-white);
  --_pagination-text: var(--color-text);
  --_pagination-text-hover: var(--color-text);
  --_pagination-bg-hover: oklch(from var(--color-gray) l c h / 50%);
  --_pagination-active-bg: var(--color-black);
  --_pagination-active-text: var(--color-white);
  --_pagination-border: var(--color-gray);
  --_pagination-border-hover: var(--color-text);
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-column-list__pagination {
    margin-block-start: 2.5rem;
  }
}

.p-column-list__empty {
  padding: 3.75rem;
  background-color: var(--color-white);
  color: var(--color-border-gray);
  font-size: 1rem;
  text-align: center;
}

.p-column-list__empty p {
  margin: 0;
}

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

.p-company-greeting__body {
  display: grid;
  grid-template-columns: 26.4375rem minmax(0, 1fr);
  gap: 3.75rem;
}
@media screen and (max-width: 1023px) {
  .p-company-greeting__body {
    grid-template-columns: 22.5rem minmax(0, 1fr);
    gap: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-company-greeting__body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.p-company-greeting__figure {
  margin-block-start: 3.5rem;
  aspect-ratio: 423/317;
  overflow: hidden;
  border-radius: 0.5rem;
}

.p-company-greeting__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.p-company-greeting__content {
  display: flex;
  flex-direction: column;
  gap: 1.1875rem;
}

.p-company-greeting__label {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-en);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  text-transform: uppercase;
}
.p-company-greeting__label::before {
  content: "";
  flex-shrink: 0;
  width: 2.5rem;
  height: 1px;
  background-color: currentcolor;
}

.p-company-greeting__label + .p-company-greeting__title-line {
  margin-block-start: 0.5rem;
}

.p-company-greeting__title-line {
  margin-block-start: 0.5rem;
  color: var(--color-primary);
  font-feature-settings: "palt";
  font-size: clamp(1.875rem, 2.4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.46;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-company-greeting__title-line {
    margin-block-start: 1rem;
    font-size: 1.625rem;
  }
}

.p-company-greeting__copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.p-company-greeting__text {
  margin: 0;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: max(1rem, 8px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-company-greeting__text {
    font-size: max(0.9375rem, 8px);
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
}
.p-company-greeting__text + .p-company-greeting__text {
  margin-block-start: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-company-greeting__text + .p-company-greeting__text {
    margin-block-start: 0.75rem;
  }
}

.p-company-greeting__signature {
  margin: 0;
  color: var(--color-text);
  font-feature-settings: "palt";
  text-align: end;
  font-size: max(1.125rem, 8px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-company-greeting__signature {
    font-size: max(1rem, 8px);
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
}

.p-company-history {
  padding-block: 3.5rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-company-history {
    padding-block: 3.75rem 2.5rem;
  }
}

.p-company-history__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-company-history__inner {
    gap: 1.125rem;
  }
}

.p-company-history__head {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-company-history__title {
  margin: 0;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1.57;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-company-history__title {
    width: 100%;
    font-size: 1.1875rem;
    text-align: start;
  }
}

.p-company-history__list {
  position: relative;
  padding-block: 4.5rem;
  list-style: none;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-company-history__list {
    padding-block: 2.5rem;
  }
}
.p-company-history__list::before {
  content: "";
  position: absolute;
  top: 0;
  right: calc(100% - 11.25rem);
  width: 3px;
  height: 100%;
  translate: -50% 0;
  background-color: #e8e4dc;
}
@media screen and (max-width: 767px) {
  .p-company-history__list::before {
    right: calc(100% - 1.25rem);
  }
}

.p-company-history__item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-company-history__item {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    width: 100%;
  }
}
.p-company-history__item + .p-company-history__item {
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-company-history__item + .p-company-history__item {
    align-items: flex-start;
    margin-block-start: 1.875rem;
  }
}

.p-company-history__date {
  flex: 0 0 10.5625rem;
  margin: 0;
  padding-inline-end: 1.75rem;
  font-feature-settings: "palt";
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  text-align: end;
}
@media screen and (max-width: 767px) {
  .p-company-history__date {
    flex: auto;
    width: 100%;
    padding: 0.25rem 0;
    background-color: var(--color-base);
    text-align: start;
    font-size: max(0.875rem, 8px);
    font-weight: 700;
    letter-spacing: 0.05em;
  }
}

.p-company-history__dot {
  flex-shrink: 0;
  width: 0.9375rem;
  height: 0.9375rem;
  margin-block-start: 0.25rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-company-history__dot {
    position: absolute;
    top: 2.5rem;
    right: calc(100% - 1.4375rem);
    width: 0.6875rem;
    height: 0.6875rem;
    margin-block-start: 0.25rem;
  }
}

.p-company-history__text {
  flex: 1;
  margin: 0;
  margin-inline-start: 3.5rem;
  padding: 0;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-company-history__text {
    margin-inline-start: 2rem;
    font-size: max(0.875rem, 8px);
    font-weight: 500;
    letter-spacing: 0.05em;
  }
}

.p-company-links {
  position: relative;
  padding-block: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-company-links {
    padding-block: 3rem 4rem;
  }
}
.p-company-links::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 76.0416666667%;
  height: 30.4375rem;
  background-color: #f4f4f4;
}
@media screen and (max-width: 767px) {
  .p-company-links::before {
    top: 0rem;
    height: 100%;
  }
}

.p-company-links__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 1.25rem;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .p-company-links__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.p-company-links__card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem 1.25rem;
  min-width: 0;
  padding: 1.75rem 1.75rem 1.75rem 1.5rem;
  border: 1px solid hsl(0, 0%, 82%);
  border-radius: 0.5rem;
  background-color: var(--color-white);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.08);
  color: var(--color-text);
  font-feature-settings: "palt";
  text-align: start;
  text-decoration: none;
  transition: border-color var(--duration) ease, box-shadow var(--duration) ease, transform var(--duration) ease;
}
@media screen and (max-width: 1023px) {
  .p-company-links__card {
    gap: 1.25rem;
    padding: 1.375rem 1.375rem 1.375rem 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-company-links__card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.375rem 3.5rem 1.375rem 1.25rem;
  }
}
@media (any-hover: hover) {
  .p-company-links__card:hover {
    opacity: 1;
    border-color: var(--color-primary);
  }
  .p-company-links__card:hover .p-company-links__arrow {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
  }
  .p-company-links__card:hover .p-company-links__arrow::after {
    border-block-start-color: var(--color-white);
    border-inline-end-color: var(--color-white);
  }
}
.p-company-links__card:focus-visible {
  outline: 0.125rem solid var(--color-primary);
  outline-offset: 0.1875rem;
}

.p-company-links__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
}
@media screen and (max-width: 1023px) {
  .p-company-links__icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-company-links__icon {
    position: absolute;
    top: 2rem;
    left: 1.25rem;
    width: 2rem;
    height: 2rem;
  }
}
.p-company-links__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-company-links__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.p-company-links__label {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-en);
  font-feature-settings: "palt";
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-transform: uppercase;
}
@media screen and (max-width: 1023px) {
  .p-company-links__label {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-company-links__label {
    margin-inline-start: 3rem;
    font-size: 1.125rem;
  }
}
.p-company-links__label::before {
  content: "";
  flex-shrink: 0;
  width: 2.5rem;
  height: 1px;
  background-color: currentcolor;
}
@media screen and (max-width: 767px) {
  .p-company-links__label::before {
    width: 1.75rem;
  }
}

.p-company-links__title {
  margin: 0;
  color: var(--color-primary);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-company-links__title {
    margin-inline-start: 3rem;
    font-size: 1.0625rem;
  }
}

.p-company-links__desc {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-block-start: 0.5rem;
}

.p-company-links__desc-line {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.05em;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-company-links__desc-line {
    font-size: 0.8125rem;
    line-height: 1.6;
  }
}

.p-company-links__arrow {
  position: relative;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  margin-inline-start: auto;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  background-color: transparent;
  transition: background-color var(--duration) ease, border-color var(--duration) ease;
}
@media screen and (max-width: 1023px) {
  .p-company-links__arrow {
    width: 2rem;
    height: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-company-links__arrow {
    position: absolute;
    bottom: 1.25rem;
    right: 1.125rem;
    margin-inline-start: 0;
  }
}
.p-company-links__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-block-start: 2px solid var(--color-primary);
  border-inline-end: 2px solid var(--color-primary);
  translate: calc(-50% - 1px) -50%;
  rotate: 45deg;
  transition: border-color var(--duration) ease;
}

.p-company-overview {
  padding-block: 3.5rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-company-overview {
    padding-block: 2.5rem 0;
  }
}

.p-company-overview__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-company-overview__inner {
    gap: 1.125rem;
  }
}

.p-company-overview__head {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-company-overview__title {
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1.57;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-company-overview__title {
    font-size: 1.1875rem;
    text-align: left;
  }
}

.p-company-overview__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  color: var(--color-text);
}

.p-company-overview__label {
  width: 15.625rem;
  padding: 1.25rem 1.25rem 1.3125rem;
  font-feature-settings: "palt";
  font-weight: 700;
  line-height: 1.5;
  text-align: start;
  letter-spacing: 0.1em;
  vertical-align: top;
  border-block-end: 1px solid #ccc;
  font-size: max(1rem, 8px);
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-company-overview__label {
    display: block;
    width: 100%;
    padding: 0;
    border-block-end: 0;
    font-size: max(0.9375rem, 8px);
    font-weight: 700;
    letter-spacing: 0.05em;
  }
}

.p-company-overview__value {
  padding: 1.25rem 1.25rem 1.3125rem;
  font-feature-settings: "palt";
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  text-align: start;
  letter-spacing: 0.1em;
  vertical-align: top;
  border-block-end: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .p-company-overview__value {
    display: block;
    width: 100%;
    margin-block-start: 0.5rem;
    padding: 0;
    border-block-end: 0;
    font-size: max(0.9375rem, 8px);
    font-weight: 400;
    letter-spacing: 0.05em;
  }
}

.p-company-overview__value-line {
  margin: 0;
}
.p-company-overview__value-line + .p-company-overview__value-line {
  margin-block-start: 0.25rem;
}

@media screen and (max-width: 767px) {
  .p-company-overview__row {
    display: block;
    padding-block: 0.75rem;
    border-block-end: 1px solid #ccc;
  }
  .p-company-overview__row:last-child {
    border-block-end: 0;
  }
}

.p-company-overview__row:last-child .p-company-overview__label,
.p-company-overview__row:last-child .p-company-overview__value {
  border-block-end: 0;
}

@media screen and (max-width: 767px) {
  .p-company-overview__row:last-child {
    border-block-end: 0;
  }
}
.p-company-overview__map {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/1;
  background-color: var(--color-gray);
  border-radius: 0.75rem;
  overflow: hidden;
  margin-block-start: 1.5rem;
}

.p-company-overview__iframe {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.p-concept-flow {
  padding-block: 3.125rem 5rem;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-concept-flow {
    padding-block: 3.5rem 3rem;
  }
}

.p-concept-flow__intro {
  box-sizing: border-box;
  width: min(100%, 114.25rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-concept-flow__intro {
    padding-inline: 1.25rem;
  }
}

.p-concept-flow__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
}

.p-concept-flow__title {
  margin: 0;
  font-size: clamp(2.5rem, 3.6vw, 3.125rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-concept-flow__title {
    font-size: 1.75rem;
  }
}

.p-concept-flow__sub {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.12em;
  font-family: var(--ff-en);
  text-transform: uppercase;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-concept-flow__sub {
    font-size: 1rem;
  }
}

.p-concept-flow__lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-block: 1.5rem 0;
  margin-inline: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-concept-flow__lead {
    gap: 1rem;
    margin-block-start: 1.125rem;
  }
}

.p-concept-flow__lead-text {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-concept-flow__lead-text {
    font-size: 0.8125rem;
    text-align: left;
  }
}

.p-concept-flow__slider-bleed {
  margin-block: 2.375rem 0;
  margin-inline: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
  padding-inline: 0;
}
@media screen and (max-width: 767px) {
  .p-concept-flow__slider-bleed {
    margin-block-start: 2.5rem;
  }
}

.p-concept-flow__swiper-container {
  position: relative;
  box-sizing: border-box;
  width: 100%;
}

.p-concept-flow__swiper {
  overflow: hidden;
}

.p-concept-flow__list {
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 3;
}

.p-concept-flow__slide {
  flex-basis: 50rem;
}
@media screen and (max-width: 1023px) {
  .p-concept-flow__slide {
    flex-basis: 70%;
  }
}

.p-concept-flow__slide-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-inline: auto;
}

.p-concept-flow__media {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 0.75rem;
  aspect-ratio: 16/10;
  background-color: #d8d8d8;
}
@media screen and (max-width: 767px) {
  .p-concept-flow__media {
    border-radius: 0.5rem;
  }
}

.p-concept-flow__badge {
  position: absolute;
  top: 1.375rem;
  left: 1.1875rem;
  z-index: 2;
  padding: 0.5rem 1.375rem;
  border-radius: 0.25rem;
  background-color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--ff-en);
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-concept-flow__badge {
    top: 0.625rem;
    left: 0.625rem;
    padding: 0.3125rem 0.625rem;
    font-size: 0.6875rem;
  }
}

.p-concept-flow__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.p-concept-flow__slide-title {
  margin-block: 1.75rem 0;
  margin-inline: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  text-align: center;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-concept-flow__slide-title {
    margin-block-start: 1.25rem;
    font-size: 1rem;
  }
}

.p-concept-flow__slide-text {
  margin-block: 1rem 0;
  margin-inline: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2.14;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  text-align: left;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-concept-flow__slide-text {
    margin-block-start: 0.75rem;
    font-size: 0.8125rem;
  }
}

.p-concept-flow__button-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% calc(-50% - 5rem);
  z-index: 1;
  width: min(100%, 60rem);
  margin-inline: auto;
}
@media screen and (max-width: 1023px) {
  .p-concept-flow__button-wrap {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-concept-flow__button-wrap {
    top: 50%;
  }
}

.p-concept-flow__swiper-button-prev,
.p-concept-flow__swiper-button-next {
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  width: 3.125vw;
  height: 7.8125vw;
  border: none;
  background-color: #f4f4f4;
  color: var(--color-text);
  padding: 0;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-concept-flow__swiper-button-prev,
  .p-concept-flow__swiper-button-next {
    width: 8.5333333333vw;
    height: 23.4666666667vw;
  }
}
.p-concept-flow__swiper-button-prev::after,
.p-concept-flow__swiper-button-next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.4375rem;
  height: 0.4375rem;
  border-top: 2px solid currentcolor;
  border-right: 2px solid currentcolor;
}
@media screen and (max-width: 767px) {
  .p-concept-flow__swiper-button-prev::after,
  .p-concept-flow__swiper-button-next::after {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.p-concept-flow__swiper-button-prev.swiper-button-disabled,
.p-concept-flow__swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
@media (any-hover: hover) {
  .p-concept-flow__swiper-button-prev:hover,
  .p-concept-flow__swiper-button-next:hover {
    opacity: 0.9;
  }
}

.p-concept-flow__swiper-button-prev {
  left: 0;
  border-radius: 0 0.75rem 0.75rem 0;
}
.p-concept-flow__swiper-button-prev::after {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.p-concept-flow__swiper-button-next {
  right: 0;
  border-radius: 0.75rem 0 0 0.75rem;
}
.p-concept-flow__swiper-button-next::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.p-concept-intro {
  padding-block: 5.375rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-concept-intro {
    padding-block: 2.5rem 3.75rem;
  }
}

.p-concept-intro__title {
  font-size: clamp(3rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-concept-intro__title {
    font-size: 2rem;
  }
}
.p-concept-intro__title--small {
  zoom: 0.7;
}

.p-concept-intro__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-block-start: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-concept-intro__content {
    gap: 1.25rem;
    margin-block-start: 1.875rem;
  }
}

.p-concept-intro__content-text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.67;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-concept-intro__content-text {
    font-size: 1rem;
  }
}

.p-concept-mv {
  position: relative;
  z-index: 0;
  width: 100%;
  padding-block-start: var(--header-height);
  height: 48.125vw;
}
@media screen and (max-width: 767px) {
  .p-concept-mv {
    height: max(100svh, 28.125rem);
  }
}

.p-concept-mv__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #2a2419;
  pointer-events: none;
}

.p-concept-mv__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.p-concept-mv__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: inherit;
}
@media screen and (max-width: 767px) {
  .p-concept-mv__inner {
    padding-block: 2rem 2.5rem;
  }
}

.p-concept-mv__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  translate: -9.375vw -2.6041666667vw;
  max-width: 56.25rem;
  margin: 0;
  color: var(--color-white);
  font-family: var(--ff-base);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-concept-mv__title {
    translate: 0 -21.3333333333vw;
    max-width: 100%;
  }
}

.p-concept-mv__title-line {
  display: block;
  font-size: 2.0833333333vw;
  font-weight: 900;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-concept-mv__title-line {
    font-size: min(5.6vw, 1.3125rem);
  }
}

.p-concept-mv__title-line--emphasis {
  translate: 0.3125vw 0;
  margin-block-start: 2.0833333333vw;
  font-size: 3.2291666667vw;
}
@media screen and (max-width: 767px) {
  .p-concept-mv__title-line--emphasis {
    translate: 1.6vw 0;
    margin-block-start: 6.4vw;
    font-size: min(8.5333333333vw, 2rem);
  }
}

.p-concept-mv__cross {
  display: inline-block;
  margin-inline: 1.0416666667vw 1.0416666667vw;
  width: 2.8645833333vw;
  height: 2.8645833333vw;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 55.71 55.71'%3E%3Cline x1='.35' y1='.35' x2='55.35' y2='55.35' stroke='%23fff'/%3E%3Cline x1='55.35' y1='.35' x2='.35' y2='55.35' stroke='%23fff'/%3E%3C/svg%3E");
}
@media screen and (max-width: 767px) {
  .p-concept-mv__cross {
    margin-inline: min(4.2666666667vw, 1rem) min(4.2666666667vw, 1rem);
    width: min(6.4vw, 1.5rem);
    height: min(6.4vw, 1.5rem);
  }
}

.p-concept-mv__title-line--display {
  font-size: 7.9166666667vw;
  line-height: 1.1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-concept-mv__title-line--display {
    font-size: min(21.3333333333vw, 5rem);
  }
}

.image-concept-mv__image01 {
  position: absolute;
  top: 5.5729166667vw;
  left: 57.7083333333vw;
  width: 11.71875vw;
  height: 11.71875vw;
  object-fit: cover;
  object-position: center center;
}
@media screen and (max-width: 767px) {
  .image-concept-mv__image01 {
    top: 18.6666666667vw;
    left: auto;
    right: 10.6666666667vw;
    width: 29.8666666667vw;
    height: 29.8666666667vw;
  }
}

.image-concept-mv__image02 {
  position: absolute;
  top: 26.40625vw;
  left: 3.75vw;
  width: 18.2291666667vw;
  height: 18.2291666667vw;
  object-fit: cover;
  object-position: center center;
}
@media screen and (max-width: 767px) {
  .image-concept-mv__image02 {
    top: auto;
    bottom: 29.3333333333vw;
    left: 2.6666666667vw;
    width: 46.6666666667vw;
    height: 46.6666666667vw;
  }
}

.image-concept-mv__image03 {
  position: absolute;
  top: 42.4479166667vw;
  left: 76.3541666667vw;
  width: 18.2291666667vw;
  height: 26.0416666667vw;
  object-fit: cover;
  object-position: center center;
}
@media screen and (max-width: 767px) {
  .image-concept-mv__image03 {
    top: auto;
    bottom: -21.3333333333vw;
    left: auto;
    right: 5.3333333333vw;
    width: 31.2vw;
    height: 44.5333333333vw;
  }
}

.p-concept-overview {
  position: relative;
}

.p-concept-overview__wrap {
  position: relative;
}

.p-concept-overview__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("../images/bg_concept_overview_media.webp") no-repeat center bottom/cover;
}

.p-concept-overview__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.p-concept-overview__stack {
  position: relative;
  z-index: 1;
  padding-block: 4.6875rem 0;
}
@media screen and (max-width: 767px) {
  .p-concept-overview__stack {
    padding-block: 3rem 0;
  }
}

.p-concept-overview__lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-concept-overview__lead {
    gap: 1.75rem;
  }
}

.p-concept-overview__catch {
  margin: 0;
  max-width: 56.25rem;
  font-size: clamp(1.75rem, 3vw, 3.5625rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-concept-overview__catch {
    font-size: 1.875rem;
  }
}

.p-concept-overview__brand {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 3.125rem;
  width: 100%;
  max-width: 57.5rem;
}
@media screen and (max-width: 767px) {
  .p-concept-overview__brand {
    align-items: center;
    gap: 1rem;
  }
}

.p-concept-overview__brand-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  max-width: 23.75rem;
}
@media screen and (max-width: 767px) {
  .p-concept-overview__brand-unit {
    max-width: 100%;
  }
}

.p-concept-overview__brand-word {
  margin: 0;
  font-size: clamp(2.75rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1;
  font-family: var(--ff-en);
  color: #626262;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-concept-overview__brand-word {
    font-size: 10.1333333333vw;
  }
}

.p-concept-overview__brand-note {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-concept-overview__brand-note {
    font-size: 0.75rem;
  }
}

.p-concept-overview__brand-cross {
  flex-shrink: 0;
  align-self: center;
  margin-block-start: 0.5rem;
  width: 6.75rem;
  height: 6.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 107.9 107.9'%3E%3Cline x1='.2' y1='.2' x2='107.7' y2='107.7' stroke='%23626262' stroke-width='.57'/%3E%3Cline x1='107.7' y1='.2' x2='.2' y2='107.7' stroke='%23626262' stroke-width='.57'/%3E%3C/svg%3E");
}
@media screen and (max-width: 767px) {
  .p-concept-overview__brand-cross {
    margin-block-start: 0;
    width: 14.9333333333vw;
    height: 14.9333333333vw;
  }
}

.p-concept-overview__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-block-start: 2.625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-concept-overview__feature {
    margin-block-start: 3rem;
  }
}

.p-concept-overview__feature-title {
  margin: 0;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-concept-overview__feature-title {
    font-size: 1.5rem;
  }
}

.p-concept-overview__feature-text {
  max-width: 45rem;
  margin-block-start: 0.625rem;
  margin-inline: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.09em;
  font-feature-settings: "palt";
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-concept-overview__feature-text {
    margin-block-start: 1rem;
    font-size: 0.9375rem;
    text-align: left;
  }
}

.p-concept-overview__circle-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2rem;
  width: 100%;
  max-width: 45.125rem;
  margin-block-start: 0.875rem;
  margin-inline: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-concept-overview__circle-list {
    align-items: center;
    gap: 0.25rem 0.5rem;
    margin-block-start: 2rem;
  }
}

.p-concept-overview__circle-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 12.5rem;
  max-width: 17.5rem;
  min-height: 12.5rem;
  margin: 0;
  padding: 1.25rem;
  border: 2px solid #1d50a2;
  border-radius: 50%;
  aspect-ratio: 1/1;
  background-color: rgba(255, 255, 255, 0.72);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  text-align: center;
  color: #1d50a2;
}
@media screen and (max-width: 767px) {
  .p-concept-overview__circle-item {
    flex: 0 0 40vw;
    max-width: auto;
    min-height: auto;
    font-size: min(3.7333333333vw, 1.25rem);
  }
}

.p-concept-overview__card-bar {
  position: relative;
  z-index: 2;
  margin-block-start: 3.6875rem;
  padding-block-end: 5.1875rem;
}
@media screen and (max-width: 767px) {
  .p-concept-overview__card-bar {
    margin-block-start: 7.4666666667vw;
    padding-block-end: 3.75rem;
  }
}

.p-concept-overview__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 27.5vw);
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  border-radius: 0.875rem;
  background-color: var(--color-base);
  box-shadow: 0 0.75rem 2.5rem rgba(30, 30, 30, 0.12);
}
@media screen and (max-width: 767px) {
  .p-concept-overview__card {
    grid-template-columns: 1fr;
  }
}

.p-concept-overview__card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  padding: 3.5625rem 2.5rem 3rem 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-concept-overview__card-body {
    width: 100%;
    padding: 2rem 1.25rem;
  }
}

.p-concept-overview__badge {
  display: inline-block;
  padding: 0.8125rem 1.5rem;
  border-radius: 0.25rem;
  background-color: #1d50a2;
  font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-concept-overview__badge {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.5rem 0.5rem;
    font-size: 1rem;
  }
}

.p-concept-overview__card-title {
  margin-block-start: 0.75rem;
  font-size: clamp(1.625rem, 2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-concept-overview__card-title {
    font-size: 1.625rem;
  }
}

.p-concept-overview__card-foot {
  margin-block-start: 1.125rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-concept-overview__card-foot {
    margin-block-start: 0.375rem;
    font-size: 0.9375rem;
  }
}

.p-concept-overview__card-visual {
  position: relative;
  min-height: 17.5rem;
  background-color: var(--color-gray);
}
@media screen and (max-width: 767px) {
  .p-concept-overview__card-visual {
    width: 100%;
    min-height: 15rem;
  }
}
.p-concept-overview__card-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.4) 20%, transparent 40%, transparent 100%);
}
@media screen and (max-width: 767px) {
  .p-concept-overview__card-visual::before {
    background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.4) 20%, transparent 40%, transparent 100%);
  }
}

.p-concept-overview__card-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.p-concept-pace {
  padding-block: 7.375rem 4rem;
  background-color: var(--color-base);
}
@media screen and (max-width: 1366px) {
  .p-concept-pace {
    padding-block: 2.5rem 0;
  }
}

.p-concept-pace__intro {
  text-align: center;
}

.p-concept-pace__title {
  margin: 0;
  font-size: clamp(2.5rem, 3.4vw, 4rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-concept-pace__title {
    font-size: 1.875rem;
  }
}
.p-concept-pace__title--small {
  zoom: 0.7;
}

.p-concept-pace__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-block-start: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-concept-pace__body {
    gap: 0.5rem;
    margin-block-start: 1.75rem;
  }
}

.p-concept-pace__text {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-concept-pace__text {
    font-size: 0.9375rem;
    text-align: left;
  }
}

.p-concept-pace__accent {
  font-size: 1.5rem;
  line-height: 1.7;
  font-weight: 700;
  color: var(--color-primary);
}
@media screen and (max-width: 1366px) {
  .p-concept-pace__accent {
    font-size: 1.125rem;
  }
}

.p-concept-pace__visual {
  width: 100%;
  background-color: #f2f2f2;
  margin-block-start: 2.1875rem;
  padding-block: 3.5rem 4.25rem;
}
@media screen and (max-width: 767px) {
  .p-concept-pace__visual {
    padding-block: 2.5rem 3.5rem;
  }
}

.p-concept-pace__visual-inner {
  box-sizing: border-box;
  width: min(100%, 114.25rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-concept-pace__visual-inner {
    width: min(100%, 37.5rem);
    margin-inline: auto;
    padding-inline: 1.25rem;
  }
}

.p-concept-pace__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 0.125rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-concept-pace__list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-concept-pace__list > li {
  margin: 0;
}

.p-concept-pace__card {
  position: relative;
  display: block;
  margin: 0;
  overflow: hidden;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-concept-pace__card {
    border-radius: 0.625rem;
  }
}

.p-concept-pace__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 862/430;
  overflow: hidden;
  background-color: #d0d0d0;
}
.p-concept-pace__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.p-concept-pace__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.2) 42%, transparent 72%);
}

.p-concept-pace__caption {
  position: absolute;
  inset-inline: 1rem;
  bottom: 1.75rem;
  z-index: 2;
  margin: 0;
  font-size: clamp(1.25rem, 1.7vw, 1.625rem);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  text-align: center;
  color: var(--color-white);
}
@media screen and (max-width: 1366px) {
  .p-concept-pace__caption {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 767px) {
  .p-concept-pace__caption {
    inset-inline: 0.75rem;
    bottom: 1rem;
    font-size: 0.75rem;
  }
}

.p-concept-performance {
  padding-block: 7.625rem 0;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-concept-performance {
    padding-block: 3.5rem 0;
  }
}

.p-concept-performance__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-concept-performance__heading-image {
  width: min(100%, 31.6875rem);
}
@media screen and (max-width: 767px) {
  .p-concept-performance__heading-image {
    width: 64vw;
  }
}

.p-concept-performance__heading-img {
  display: block;
  width: 100%;
  height: auto;
}

.p-concept-performance__formula {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 72.1875rem;
  margin-block-start: 1.25rem;
}
@media screen and (max-width: 1366px) {
  .p-concept-performance__formula {
    width: 100%;
    margin-block-start: 2.0833333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-concept-performance__formula {
    flex-direction: column;
    gap: 3.2vw;
  }
}

.p-concept-performance__formula-item {
  min-width: 0;
}

.p-concept-performance__op {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-concept-performance__op {
    height: 2.125rem;
    font-size: 2rem;
  }
}

.p-concept-performance__op-icon {
  display: block;
  width: 2.125rem;
  height: 2.125rem;
}
@media screen and (max-width: 1366px) {
  .p-concept-performance__op-icon {
    width: 2.65625vw;
    height: 2.65625vw;
  }
}
@media screen and (max-width: 767px) {
  .p-concept-performance__op-icon {
    width: 2.125rem;
    height: 2.125rem;
  }
}

.p-concept-performance__op-icon--eq {
  width: 2.125rem;
  height: 1.0625rem;
}
@media screen and (max-width: 1366px) {
  .p-concept-performance__op-icon--eq {
    width: 2.65625vw;
    height: 1.3541666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-concept-performance__op-icon--eq {
    width: 2.125rem;
    height: 1.0625rem;
    rotate: 90deg;
  }
}

.p-concept-performance__house {
  position: relative;
  z-index: 0;
  width: 19.5rem;
  box-sizing: border-box;
  padding: 5.5625rem 0 1.875rem;
  text-align: center;
}
@media screen and (max-width: 1366px) {
  .p-concept-performance__house {
    width: 24.375vw;
    padding: 6.9791666667vw 0 2.34375vw;
  }
}
@media screen and (max-width: 767px) {
  .p-concept-performance__house {
    width: 64vw;
    padding: 18.6666666667vw 0 8vw;
  }
}

.p-concept-performance__house::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 19.5rem;
  height: 16.5rem;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 313.21 264.26'%3E%3Cpolyline points='1 264.26 1 83.45 156.87 1.13 312.75 83.45' fill='none' stroke='%231e1e1e' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  pointer-events: none;
}
@media screen and (max-width: 1366px) {
  .p-concept-performance__house::before {
    width: 24.375vw;
    height: 20.625vw;
  }
}
@media screen and (max-width: 767px) {
  .p-concept-performance__house::before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58.6666666667vw;
    height: auto;
    aspect-ratio: 312/264;
  }
}

.p-concept-performance__house-title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.73;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  color: var(--color-text);
}
@media screen and (max-width: 1366px) {
  .p-concept-performance__house-title {
    font-size: 2.34375vw;
  }
}
@media screen and (max-width: 767px) {
  .p-concept-performance__house-title {
    font-size: 4.2666666667vw;
  }
}

.p-concept-performance__house-text {
  position: relative;
  z-index: 1;
  margin-block: 0.875rem 0;
  margin-inline: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  color: var(--color-text);
}
@media screen and (max-width: 1366px) {
  .p-concept-performance__house-text {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 767px) {
  .p-concept-performance__house-text {
    margin-block-start: 0.625rem;
    font-size: 3.4666666667vw;
  }
}

.p-concept-performance__standard {
  width: 100%;
  margin-block-start: 2.625rem;
  padding: 3rem 1.875rem 1.6875rem;
  background-color: #f4f4f4;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-concept-performance__standard {
    margin-block-start: 1.625rem;
    padding: 1.75rem 1.125rem 1.125rem;
  }
}

.p-concept-performance__standard-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-concept-performance__standard-inner {
    gap: 1.75rem;
  }
}

.p-concept-performance__standard-lead {
  position: relative;
  margin: 0;
  padding-inline: 3.75rem;
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  text-align: center;
  color: var(--color-text);
}
@media screen and (max-width: 1366px) {
  .p-concept-performance__standard-lead {
    padding-inline: 4.6875vw;
    font-size: 2.7083333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-concept-performance__standard-lead {
    padding-inline: 16vw;
    font-size: 6.4vw;
    line-height: 1.4;
  }
}

.p-concept-performance__standard-lead-mark {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-inline: 0.875rem;
  flex-shrink: 0;
  width: 1.8125rem;
  height: 3rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 29.72 48.02'%3E%3Cline x1='28.86' y1='47.51' x2='.86' y2='.51' stroke='%231e1e1e' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
@media screen and (max-width: 1366px) {
  .p-concept-performance__standard-lead-mark {
    margin-inline: 1.0416666667vw;
    width: 2.34375vw;
    height: 3.75vw;
  }
}
@media screen and (max-width: 767px) {
  .p-concept-performance__standard-lead-mark {
    margin-inline: 2.6666666667vw;
    width: 3.8666666667vw;
    height: auto;
    aspect-ratio: 29/48;
  }
}

.p-concept-performance__standard-lead-mark--right {
  scale: -1 1;
  right: 0;
  left: auto;
}

.p-concept-performance__standard-lead-accent {
  color: var(--color-primary);
}

.p-concept-performance__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9375rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .p-concept-performance__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1458333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-concept-performance__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.625rem;
  }
}

.p-concept-performance__grid > li {
  margin: 0;
}

.p-concept-performance__cell {
  position: relative;
  display: block;
  margin: 0;
  overflow: hidden;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-concept-performance__cell {
    border-radius: 0.375rem;
  }
}

.p-concept-performance__cell-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 324/270;
  overflow: hidden;
}

.p-concept-performance__cell-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.p-concept-performance__cell-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.2) 45%, transparent 100%);
}

.p-concept-performance__cell-label {
  position: absolute;
  inset-inline: 0.5rem;
  bottom: 1.6875rem;
  z-index: 2;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  text-align: center;
  color: var(--color-white);
}
@media screen and (max-width: 1366px) {
  .p-concept-performance__cell-label {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 767px) {
  .p-concept-performance__cell-label {
    bottom: 0.625rem;
    font-size: 0.75rem;
  }
}

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

.p-contact__form {
  margin-block-start: 4rem;
}

.p-contact__title {
  display: grid;
  place-items: center;
}

.p-cta {
  position: relative;
  background-color: #2c221a;
  background-image: url("../images/bg_cta.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-cta {
    background-image: url("../images/bg_cta_sp.webp");
  }
}
.p-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.52);
  pointer-events: none;
}

.p-cta__inner {
  position: relative;
  z-index: 1;
}

.p-cta__layout {
  display: grid;
  grid-template-columns: minmax(0, min(25.5208333333vw, 30.625rem)) minmax(0, 1fr);
  gap: 2.5rem 3.5rem;
  align-items: center;
  padding-block: 4.125rem 4.375rem;
}
@media screen and (max-width: 1023px) {
  .p-cta__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-block: 3.5rem 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__layout {
    gap: 1.25rem;
    padding-block: 2.5rem 2.5rem;
  }
}

.p-cta__head {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-cta__head {
    gap: 0.875rem;
  }
}

.p-cta__head-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.p-cta__icon {
  flex-shrink: 0;
  width: min(2.8645833333vw, 3.4375rem);
  height: auto;
  aspect-ratio: 55/44;
  translate: 0 0.25rem;
}
@media screen and (max-width: 1023px) {
  .p-cta__icon {
    width: 3.4375rem;
    translate: 0 0.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__icon {
    width: 2.5rem;
  }
}
.p-cta__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-cta__heading {
  margin: 0;
  color: var(--color-white);
}

.p-cta__en {
  display: block;
  font-size: min(4.1666666667vw, 5rem);
  font-weight: 700;
  font-family: var(--ff-en);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
@media screen and (max-width: 1023px) {
  .p-cta__en {
    font-size: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__en {
    font-size: 2.75rem;
  }
}

.p-cta__ja {
  display: inline-block;
  margin-block-start: 0.75rem;
  padding-inline-start: 3.6458333333vw;
  font-size: min(1.0416666667vw, 1.25rem);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1023px) {
  .p-cta__ja {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__ja {
    display: block;
    margin-block-start: 0rem;
    padding-inline-start: 3.25rem;
    font-size: 0.875rem;
  }
}

.p-cta__columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .p-cta__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .p-cta__columns {
    grid-template-columns: 1fr;
    width: min(100%, 20rem);
    margin-inline: auto;
  }
}

.p-cta__column {
  margin: 0;
  padding: 0.625vw 1.0416666667vw;
  text-align: center;
}
.p-cta__column:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 1023px) {
  .p-cta__column {
    padding: 1.5rem 1rem;
  }
  .p-cta__column:not(:last-child) {
    border-right: none;
  }
  .p-cta__column:nth-child(2n-1) {
    border-right: 1px solid rgba(255, 255, 255, 0.22);
  }
  .p-cta__column:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__column {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    align-items: start;
    column-gap: 0.875rem;
    row-gap: 0.5rem;
    padding-block: 1.25rem;
    padding-inline: 0;
    text-align: start;
  }
  .p-cta__column:nth-child(2n-1) {
    border-right: none;
  }
  .p-cta__column:nth-child(-n+2) {
    border-bottom: none;
  }
  .p-cta__column:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }
}

.p-cta__column-title {
  margin: 0;
  color: var(--color-white);
  font-size: min(1.0416666667vw, 1.25rem);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1023px) {
  .p-cta__column-title {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__column-title {
    position: relative;
    z-index: 0;
    grid-column: 1;
    grid-row: 1;
    font-size: 0.9375rem;
  }
}

.p-cta__thumb {
  display: grid;
  place-items: center;
  margin-inline: auto;
  overflow: hidden;
  width: 100%;
  min-height: min(5.2083333333vw, 6.25rem);
}
@media screen and (max-width: 1023px) {
  .p-cta__thumb {
    min-height: 6.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__thumb {
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    grid-column: 2;
    grid-row: 1/-1;
    align-self: stretch;
    margin-inline: 0;
    min-height: 0;
    width: auto;
  }
}
.p-cta__thumb img {
  display: block;
  width: fit-content;
  margin-inline: auto;
  height: fit-content;
  object-fit: contain;
}

.p-cta__thumb--01 img {
  width: min(4.0625vw, 4.875rem);
  height: auto;
  aspect-ratio: 78/71;
}
@media screen and (max-width: 1023px) {
  .p-cta__thumb--01 img {
    width: 4.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__thumb--01 img {
    width: auto;
    height: auto;
    max-width: 4.5rem;
    max-height: 100%;
    margin-inline: 0;
  }
}

.p-cta__thumb--02 img {
  width: min(6.875vw, 8.25rem);
  height: auto;
  aspect-ratio: 132/80;
}
@media screen and (max-width: 1023px) {
  .p-cta__thumb--02 img {
    width: 8.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__thumb--02 img {
    width: auto;
    height: auto;
    max-width: 5.75rem;
    max-height: 100%;
    margin-inline: 0;
  }
}

.p-cta__thumb--03 img {
  width: min(4.53125vw, 5.4375rem);
  height: auto;
  aspect-ratio: 87/80;
}
@media screen and (max-width: 1023px) {
  .p-cta__thumb--03 img {
    width: 5.4375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__thumb--03 img {
    width: auto;
    height: auto;
    max-width: 4.75rem;
    max-height: 100%;
    margin-inline: 0;
  }
}

.p-cta__thumb--04 img {
  width: min(7.65625vw, 9.1875rem);
  height: auto;
  aspect-ratio: 147/98;
}
@media screen and (max-width: 1023px) {
  .p-cta__thumb--04 img {
    width: 9.1875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__thumb--04 img {
    width: auto;
    height: auto;
    max-width: 6.25rem;
    max-height: 100%;
    margin-inline: 0;
  }
}

.p-cta__desc {
  color: var(--color-white);
  font-size: min(0.7291666667vw, 0.875rem);
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1023px) {
  .p-cta__desc {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__desc {
    position: relative;
    z-index: 0;
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    align-self: start;
    font-size: 0.75rem;
  }
}

.p-cta__link {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.375rem;
  min-width: min(100%, 15rem);
  margin-block-start: 0.875rem;
  padding: 1rem 1.25rem;
  border-radius: 62.4375rem;
  background-color: var(--color-white);
  color: var(--color-primary);
  font-size: min(0.7291666667vw, 0.875rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background-color var(--duration) ease, color var(--duration) ease, box-shadow var(--duration) ease;
}
@media screen and (max-width: 1023px) {
  .p-cta__link {
    font-size: 0.75rem;
    padding: 0.75rem 1rem;
    margin-block-start: 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__link {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    margin: 0;
    width: auto;
    height: auto;
    min-width: 0;
    max-width: none;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: transparent;
    font-size: 0;
    line-height: 0;
    text-indent: -9999px;
    overflow: hidden;
    white-space: nowrap;
    transition: none;
  }
  .p-cta__link::after {
    display: none;
  }
  .p-cta__link:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: -0.25rem;
  }
}
.p-cta__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: min(1.0416666667vw, 1.25rem);
  translate: 0 -50%;
  flex-shrink: 0;
  width: min(0.2604166667vw, 0.3125rem);
  height: min(0.4166666667vw, 0.5rem);
  background-color: var(--color-primary);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4.53' height='7.95' viewBox='0 0 4.53 7.95'%3E%3Cpolyline points='.5 .5 4.03 3.97 .5 7.45' fill='none' stroke='%2315c' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition: background-color var(--duration) ease;
}
@media screen and (max-width: 1023px) {
  .p-cta__link::after {
    width: 0.25rem;
    height: 0.375rem;
    right: 1rem;
  }
}
.p-cta__link:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 0.1875rem;
}
@media (any-hover: hover) and (min-width: 768px) {
  .p-cta__link:hover {
    opacity: 1;
    background-color: var(--color-primary);
    color: var(--color-white);
  }
  .p-cta__link:hover::after {
    background-color: var(--color-white);
  }
}

.p-decision {
  background-color: var(--color-base);
  padding-block: 4.125rem 3rem;
}
@media screen and (max-width: 767px) {
  .p-decision {
    padding-block: 3.75rem 2.5rem;
  }
}

.p-decision__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-decision__header {
    gap: 0.625rem;
  }
}

.p-decision__title {
  margin: 0;
  font-size: clamp(1.75rem, 3.4vw, 4rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-decision__title {
    font-size: 2rem;
  }
}

.p-decision__title--small {
  zoom: 0.7;
}

.p-decision__lead {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-decision__lead {
    font-size: 0.9375rem;
  }
}

.p-decision__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(100%, 70.4375rem);
  margin-block: 3.5rem 0;
  margin-inline: auto;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-decision__list {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-block-start: 1.875rem;
  }
}

.p-decision__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-decision__bubble-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-block-end: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-decision__bubble-wrap {
    padding-block-end: 1.25rem;
  }
}

.p-decision__bubble {
  position: relative;
  width: 100%;
  padding: 1.5rem 1.375rem 1.75rem;
  border-radius: 0.5rem;
  background-color: #e8eef9;
}
@media screen and (max-width: 767px) {
  .p-decision__bubble {
    max-width: 25rem;
    padding: 1.25rem 1.125rem 1.5rem;
  }
}

.p-decision__bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.5rem 1.1875rem 0 1.1875rem;
  border-color: #e8eef9 transparent transparent transparent;
}
@media screen and (max-width: 767px) {
  .p-decision__bubble::after {
    border-width: 1.25rem 0.9375rem 0 0.9375rem;
  }
}

.p-decision__bubble-text {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
  text-align: center;
  color: #004bb1;
}
@media screen and (max-width: 767px) {
  .p-decision__bubble-text {
    font-size: 1rem;
  }
}

.p-decision__figure {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 13.9375rem;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-decision__figure {
    min-height: 6.9375rem;
  }
}

.p-decision__figure--01 img {
  width: 12.125rem;
  aspect-ratio: 388/330;
}
@media screen and (max-width: 767px) {
  .p-decision__figure--01 img {
    width: 9.375rem;
  }
}

.p-decision__figure--02 img {
  width: 13.25rem;
  aspect-ratio: 212/202;
}
@media screen and (max-width: 767px) {
  .p-decision__figure--02 img {
    width: 10.625rem;
  }
}

.p-decision__figure--03 img {
  width: 15.6875rem;
  aspect-ratio: 251/202;
}
@media screen and (max-width: 767px) {
  .p-decision__figure--03 img {
    width: 12.5rem;
  }
}

.p-decision__image {
  display: block;
  width: 100%;
  height: auto;
}

.p-decision__caption {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  text-align: center;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-decision__caption {
    font-size: 1rem;
  }
}

.p-dev-notice {
  padding-block: calc(24 * var(--to-rem));
  background-color: #fff3cd;
}
@media screen and (max-width: 767px) {
  .p-dev-notice {
    padding-block: calc(32 * var(--to-rem));
  }
}

.p-dev-notice__inner {
  max-width: calc(var(--inner) + var(--padding-inner) * 2);
}

.p-dev-notice__content {
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
  color: var(--color-text);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-dev-notice__content {
    gap: calc(20 * var(--to-rem));
    font-size: calc(16 * var(--to-rem));
  }
}

.p-dev-notice__title {
  color: var(--color-text);
  font-size: calc(18 * var(--to-rem));
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-dev-notice__title {
    font-size: calc(20 * var(--to-rem));
  }
}

.p-dev-notice__text code {
  padding-block: calc(2 * var(--to-rem));
  padding-inline: calc(6 * var(--to-rem));
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--color-primary);
  font-family: "Courier New", Courier, monospace;
  font-size: calc(13 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-dev-notice__text code {
    font-size: calc(14 * var(--to-rem));
  }
}

.p-dev-notice__list {
  display: flex;
  flex-direction: column;
  gap: calc(12 * var(--to-rem));
  margin: 0;
  padding-inline-start: calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-dev-notice__list {
    gap: calc(16 * var(--to-rem));
    padding-inline-start: calc(32 * var(--to-rem));
  }
}

.p-dev-notice__item {
  display: flex;
  flex-direction: column;
  gap: calc(4 * var(--to-rem));
  line-height: 1.8;
}

.p-dev-notice__item strong {
  color: var(--color-primary);
  font-weight: 700;
}

.p-dev-notice__item code {
  padding-block: calc(2 * var(--to-rem));
  padding-inline: calc(6 * var(--to-rem));
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--color-primary);
  font-family: "Courier New", Courier, monospace;
  font-size: calc(13 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-dev-notice__item code {
    font-size: calc(14 * var(--to-rem));
  }
}

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

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

.p-error__title {
  color: var(--color-text);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-error__title {
    font-size: 1.5rem;
  }
}

.p-error__content {
  max-width: 40rem;
  margin-inline: auto;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-error__content {
    font-size: 0.875rem;
  }
}

.p-error__content p + p {
  margin-block-start: 1.5rem;
}

.p-event-list {
  padding-block: 3rem 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-event-list {
    padding-block: 2.5rem 3.75rem;
  }
}

.p-event-list__title {
  margin: 0;
}

.p-event-list__filter {
  margin-block-start: 1.75rem;
}

.p-event-list__filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-event-list__filter-link {
  display: inline-flex;
  padding: 0.5625rem 1.125rem;
  border: 0.0625rem solid color-mix(in srgb, var(--color-border) 80%, var(--color-white));
  border-radius: 100vmax;
  background: var(--color-white);
  color: color-mix(in srgb, var(--color-text) 78%, var(--color-white));
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: border-color var(--duration), color var(--duration), background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-event-list__filter-link {
    padding: 0.4375rem 0.875rem;
    font-size: 0.75rem;
  }
}
@media (any-hover: hover) {
  .p-event-list__filter-link:hover {
    opacity: 1;
    border-color: var(--color-primary);
    color: var(--color-primary);
  }
}

.p-event-list__filter-link.is-active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}

.p-event-list__container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .p-event-list__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .p-event-list__container {
    grid-template-columns: 1fr;
    gap: 1.125rem;
    margin-block-start: 0;
  }
}

.p-event-list__item {
  margin: 0;
}

.p-event-list__link {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
  background-color: var(--color-white);
  box-shadow: 0 0.125rem 0.75rem rgba(30, 30, 30, 0.07), 0 0.0625rem 0.1875rem rgba(30, 30, 30, 0.04);
  color: inherit;
  text-decoration: none;
  transition: box-shadow var(--duration) ease;
}
.p-event-list__link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 0.25rem;
}
@media (any-hover: hover) {
  .p-event-list__link:hover {
    opacity: 1;
    box-shadow: 0 0.75rem 2rem rgba(30, 30, 30, 0.12), 0 0.25rem 0.625rem rgba(30, 30, 30, 0.06);
  }
  .p-event-list__link:hover .p-event-list__image-wrap img {
    transform: scale(1.05);
  }
}

.p-event-list__head {
  position: relative;
  padding: 0.375rem 0.375rem 0;
}

.p-event-list__image-wrap {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 525/300;
  background-color: #f0f0f0;
}
.p-event-list__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.p-event-list__body {
  padding: 1.375rem 1.5rem 1.3125rem;
}

.p-event-list__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem 0.75rem;
}

.p-event-list__category {
  display: inline-block;
  min-width: 5.625rem;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  background-color: #ffa500;
  color: var(--color-black);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
}

.p-event-list__info-range {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
}

.p-event-list__card-title {
  margin-block-start: 0.5rem;
  margin-inline: 0;
  color: var(--color-black);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .p-event-list__card-title {
    font-size: 1rem;
  }
}

.p-event-list__info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  min-height: 4.875rem;
  margin-block-start: 0.875rem;
  padding: 0.875rem 1.125rem;
  border-radius: 0.75rem;
  background-color: #f0f0f0;
}

.p-event-list__info-date {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.p-event-list__info-label {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-event-list__info-label {
    font-size: 0.875rem;
    line-height: 1.4;
  }
}

.p-event-list__info-count {
  display: flex;
  align-items: flex-end;
  gap: 0.1875rem;
}

.p-event-list__count-digit {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 1.8125rem;
  height: 3.125rem;
  padding: 0.375rem 0;
  border-radius: 0.25rem;
  background-color: #d32f2f;
  color: var(--color-white);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-event-list__count-digit {
    height: 2.1875rem;
    font-size: 1.25rem;
  }
}

.p-event-list__count-unit {
  margin-inline-start: 0.125rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.p-event-list__info-ended {
  display: block;
  width: 100%;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
}

.p-event-list__cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 1.1875rem 1.25rem;
  border-radius: 0 0 0.5rem 0.5rem;
  background-color: #1557c0;
  color: var(--color-white);
}

.p-event-list__cta-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.p-event-list__cta-icon {
  position: absolute;
  top: 50%;
  right: 1.375rem;
  translate: 0 -50%;
  width: 2rem;
  height: 2rem;
  margin-inline-start: auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ccircle cx='16' cy='16' r='16' fill='%23fff'/%3E%3Cpolyline points='15.24 12.53 18.76 16 15.24 19.47' fill='none' stroke='%2315c' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-event-list__pagination {
  margin-block-start: 2.5rem;
}

.p-event-list__empty {
  margin-block-start: 5rem;
  text-align: center;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-event-list__empty {
    margin-block-start: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-event-single {
    padding-block-end: 2.5rem;
  }
}

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

.p-event-single__terms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 0.75rem;
}

.p-event-single__term {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--color-text);
  border-radius: 100vmax;
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
}
.p-event-single__term::before {
  content: "#";
}

.p-event-single__title {
  margin-block-start: 0.5rem;
  border-block-end: 0;
  font-feature-settings: "palt";
  font-size: clamp(2.25rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-event-single__title {
    font-size: 1.625rem;
    text-align: left;
  }
}
.p-event-single__title--small {
  zoom: 0.7;
}

.p-event-single__meta {
  overflow: hidden;
  margin-block-start: 1.5rem;
  border: 1px solid #dcdde2;
  border-radius: 0.5rem;
  background-color: var(--color-white);
}

.p-event-single__meta-item {
  display: grid;
  grid-template-columns: 8.75rem 1fr;
  align-items: stretch;
  border-block-start: 1px solid #ececf1;
}
.p-event-single__meta-item:first-child {
  border-block-start: 0;
}
@media screen and (max-width: 767px) {
  .p-event-single__meta-item {
    grid-template-columns: 6.875rem 1fr;
  }
}

.p-event-single__meta-label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin: 0;
  padding: 1rem 1.25rem;
  border-inline-end: 1px solid #ececf1;
  background-color: #f7f7f9;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-event-single__meta-label {
    padding: 0.875rem 0.75rem;
    font-size: 0.8125rem;
  }
}

.p-event-single__meta-label::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-event-single__meta-label--period::before {
  background-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20aria-hidden='true'%3e%3ccircle%20cx='12'%20cy='12'%20r='8.5'%20stroke='%231155cc'%20stroke-width='1.5'%20fill='none'/%3e%3cpath%20d='M12%207v6l4%202'%20stroke='%231155cc'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'%20fill='none'/%3e%3c/svg%3e");
}

.p-event-single__meta-label--location::before {
  background-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20aria-hidden='true'%3e%3cpath%20d='M12%2021s7-4.35%207-10a7%207%200%201%200-14%200c0%205.65%207%2010%207%2010z'%20stroke='%231155cc'%20stroke-width='1.5'%20stroke-linejoin='round'%20fill='none'/%3e%3ccircle%20cx='12'%20cy='11'%20r='2.25'%20stroke='%231155cc'%20stroke-width='1.5'%20fill='none'/%3e%3c/svg%3e");
}

.p-event-single__meta-value {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 1rem 1.25rem;
  color: var(--color-text);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-event-single__meta-value {
    padding: 0.875rem 0.75rem;
    font-size: 0.875rem;
  }
}

.p-event-single__entry {
  margin-block-start: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-event-single__entry {
    margin-block-start: 1rem;
  }
}

.p-event-single__entry-link {
  display: block;
  padding: 1.125rem 1.25rem;
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1rem;
  text-decoration: none;
  transition: background-color var(--duration) ease, border-color var(--duration) ease, color var(--duration) ease;
}
@media screen and (max-width: 767px) {
  .p-event-single__entry-link {
    padding: 0.875rem 0;
    font-size: 0.9375rem;
  }
}
@media (any-hover: hover) {
  .p-event-single__entry-link:hover {
    opacity: 1;
    background-color: var(--color-base);
    border-color: var(--color-primary);
    color: var(--color-primary);
  }
}
.p-event-single__entry-link:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 0.125rem;
}

.p-event-single__entry-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-inline: 2.5rem 2.75rem;
  gap: 0.5rem 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-event-single__entry-inner {
    padding-inline: 2.25rem 2.5rem;
  }
}

.p-event-single__entry-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: var(--color-text, #333);
}

.p-event-single__entry-icon-svg {
  display: block;
  width: 1rem;
  height: 1rem;
}

.p-event-single__entry-benefit-text {
  flex: 1 1 17.5rem;
  max-width: 100%;
  margin: 0;
  font-feature-settings: "palt";
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-event-single__entry-benefit-text {
    font-size: 1rem;
  }
}

.p-event-single__entry-benefit-text-strong {
  zoom: 1.3;
}

.p-event-single__entry-arrow {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  translate: 0 -50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ccircle cx='16' cy='16' r='16' fill='%23fff'/%3E%3Cpolyline points='15.24 12.53 18.76 16 15.24 19.47' fill='none' stroke='%2315c' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-event-single__entry-arrow {
    right: 0.5rem;
    width: 1.75rem;
    height: 1.75rem;
  }
}

.p-event-single__status-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  min-height: 4.875rem;
  margin-block-start: 1rem;
  padding: 0.875rem 1.125rem;
  border-radius: 0.75rem;
  background-color: #f0f0f0;
}
@media screen and (max-width: 767px) {
  .p-event-single__status-wrap {
    flex-wrap: wrap;
  }
}

.p-event-single__status-live {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0.75rem 1rem;
}

.p-event-single__status-label {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-event-single__status-label {
    font-size: 0.875rem;
    line-height: 1.4;
  }
}

.p-event-single__status-count {
  display: flex;
  align-items: flex-end;
  gap: 0.1875rem;
}

.p-event-single__status-digit {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 1.8125rem;
  height: 3.125rem;
  padding: 0.375rem 0;
  border-radius: 0.25rem;
  background-color: #d32f2f;
  color: var(--color-white);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-event-single__status-digit {
    height: 2.1875rem;
    font-size: 1.25rem;
  }
}

.p-event-single__status-unit {
  margin-inline-start: 0.125rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.p-event-single__status-ended {
  display: block;
  width: 100%;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
}

.p-event-single__hero {
  overflow: hidden;
  margin: 2rem 0 0;
  border-radius: 0.5rem;
}
.p-event-single__hero img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: contain;
}

.p-event-single__highlights {
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-event-single__highlights {
    margin-block-start: 2.5rem;
  }
}

.p-event-single__section-title {
  margin: 0;
  color: var(--color-text);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-event-single__section-title {
    font-size: 1.375rem;
  }
}

.p-event-single__highlight-list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-event-single__highlight-list {
    gap: 2.5rem;
    margin-block-start: 1.625rem;
  }
}

.p-event-single__highlight-item {
  margin: 0;
}

.p-event-single__highlight-flex {
  position: relative;
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-event-single__highlight-flex {
    flex-direction: column;
    gap: 0rem;
  }
}

.p-event-single__highlight-item:nth-child(even) .p-event-single__highlight-flex {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-event-single__highlight-item:nth-child(even) .p-event-single__highlight-flex {
    flex-direction: column;
  }
}

.p-event-single__highlight-body-panel {
  z-index: 1;
  flex: 1 1 0;
  min-width: 0;
  padding: 2.875rem 3.5rem 2.5rem 2.75rem;
}
@media screen and (max-width: 767px) {
  .p-event-single__highlight-body-panel {
    width: 100%;
    padding: 2.25rem 1.25rem 1.75rem;
  }
}

.p-event-single__highlight-bg {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 0;
  width: 70.0810185185%;
  background-color: #f0f0f0;
}
@media screen and (max-width: 767px) {
  .p-event-single__highlight-bg {
    width: 100%;
    border-radius: 0.75rem;
  }
}

.p-event-single__highlight-item:nth-child(even) .p-event-single__highlight-bg {
  inset: 0 0 0 auto;
}

.p-event-single__highlight-body {
  position: relative;
  z-index: 1;
}

.p-event-single__highlight-index {
  position: absolute;
  top: -1.875rem;
  right: -1.875rem;
  z-index: -1;
  color: var(--color-white);
  font-family: var(--ff-en);
  font-size: 6.875rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-event-single__highlight-index {
    top: -0.875rem;
    right: 0.25rem;
    font-size: 4rem;
  }
}

.p-event-single__highlight-item--no-image .p-event-single__highlight-bg {
  width: 100%;
  inset: 0;
}

.p-event-single__highlight-image {
  position: relative;
  z-index: 2;
  flex: 0 0 28.75rem;
  overflow: hidden;
  margin: 0;
  border-radius: 0.75rem;
  transform: translateY(1.875rem);
}
@media screen and (max-width: 1023px) {
  .p-event-single__highlight-image {
    flex: 0 0 22.5rem;
  }
}
.p-event-single__highlight-image img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 779/550;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-event-single__highlight-image {
    flex: none;
    width: 100%;
    border-radius: 0 0 0.75rem 0.75rem;
    transform: translateY(0);
  }
}

.p-event-single__highlight-heading {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1.375rem, 2.6vw, 1.75rem);
  font-weight: 700;
  line-height: 1.67;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-event-single__highlight-heading {
    font-size: 1.25rem;
  }
}

.p-event-single__highlight-description {
  margin: 1.25rem 0 0;
  color: var(--color-text);
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-event-single__highlight-description {
    margin-block-start: 1rem;
    font-size: 0.875rem;
  }
}

.p-event-single__map {
  margin-block-start: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-event-single__map {
    margin-block-start: 2.5rem;
  }
}

.p-event-single__map-title {
  text-align: center;
}

.p-event-single__map-frame {
  overflow: hidden;
  margin-block-start: 2.5rem;
  border-radius: 0.5rem;
  border: 1px solid #d9d9d9;
}
.p-event-single__map-frame iframe {
  display: block;
  width: 100%;
  height: 30rem;
}
@media screen and (max-width: 767px) {
  .p-event-single__map-frame {
    margin-block-start: 1.5rem;
  }
  .p-event-single__map-frame iframe {
    height: 22.5rem;
  }
}

.p-event-single__content {
  margin-block-start: 3rem;
}

.p-event-single__flow {
  margin-block-start: 3.5rem;
  margin-block-end: 1rem;
}
@media screen and (max-width: 767px) {
  .p-event-single__flow {
    margin-block-start: 2.5rem;
  }
}

.p-event-single__flow-title {
  margin: 0 0 2rem;
  color: var(--color-text, #333);
  font-feature-settings: "palt";
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-event-single__flow-title {
    margin-block-end: 1.5rem;
    font-size: 1.375rem;
  }
}

.p-event-single__flow-track {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  justify-content: center;
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-event-single__flow-track {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-block-start: 1.5rem;
  }
}

.p-event-single__flow-step {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  max-width: 15rem;
}
@media screen and (max-width: 767px) {
  .p-event-single__flow-step {
    flex: 0 1 auto;
    width: 100%;
    max-width: 17.5rem;
  }
}
.p-event-single__flow-step:not(:first-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  flex-shrink: 0;
  width: 1.8125rem;
  height: auto;
  translate: -1.0625rem -50%;
  aspect-ratio: 29/38;
  background: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_2'%20data-name='レイヤー%202'%20xmlns='http://www.w3.org/2000/svg'%20width='28.08'%20height='38.01'%20viewBox='0%200%2028.08%2038.01'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%2315c;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='_背景'%20data-name='背景'%3e%3cpolygon%20class='cls-1'%20points='28.08%2019%2012.02%200%2012.02%205.58%200%205.58%200%2032.43%2012.02%2032.43%2012.02%2038.01%2028.08%2019'/%3e%3c/g%3e%3c/svg%3e") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-event-single__flow-step:not(:first-child)::after {
    top: 0;
    left: 50%;
    translate: -50% calc(-50% - 0.75rem);
    rotate: 90deg;
  }
}

.p-event-single__flow-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  min-height: 15rem;
  padding: 1.25rem 0.875rem 1.125rem;
  border: 1px solid #ccc;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-event-single__flow-card {
    min-height: 0;
    padding: 1.125rem 0.875rem 1rem;
  }
}

.p-event-single__flow-card-title {
  margin: 0;
  color: var(--color-text, #333);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-event-single__flow-card-title {
    font-size: 1rem;
  }
}

.p-event-single__flow-card-icon {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  margin-block: 0.875rem;
}

.p-event-single__flow-card-icon-img {
  display: block;
  width: 3.75rem;
  height: 3.75rem;
  object-fit: contain;
}

.p-event-single__flow-card-body {
  width: 100%;
}

.p-event-single__flow-card-line {
  margin: 0;
  color: var(--color-text, #333);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
}
.p-event-single__flow-card-line + .p-event-single__flow-card-line {
  margin-block-start: 0.125rem;
}

.p-event-single__form {
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-event-single__form {
    margin-block-start: 2.5rem;
  }
}

.p-event-single__form-title {
  margin: 0 0 2rem;
  color: var(--color-text, #333);
  font-feature-settings: "palt";
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-event-single__form-title {
    margin-block-end: 1.5rem;
    font-size: 1.375rem;
  }
}

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

.p-example-list {
  padding-block: 3rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-example-list {
    padding-block: 2.5rem 3.75rem;
  }
}

.p-example-list__filter {
  margin-block-end: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-example-list__filter {
    margin-block-end: 1.75rem;
  }
}

.p-example-list__filter-title {
  position: relative;
  margin: 0;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-example-list__filter-title {
    padding-inline-start: 0.75rem;
    font-size: 1.0625rem;
    line-height: 1.4;
  }
}

.p-example-list__filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-example-list__filter-list {
    gap: 0.5rem;
  }
}

.p-example-list__filter-item {
  margin: 0;
}

.p-example-list__filter-link {
  display: inline-flex;
  padding: 0.5625rem 1.125rem;
  border: 0.0625rem solid color-mix(in srgb, var(--color-border) 80%, var(--color-white));
  border-radius: 100vmax;
  background: var(--color-white);
  color: color-mix(in srgb, var(--color-text) 78%, var(--color-white));
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: border-color var(--duration), color var(--duration), background-color var(--duration), transform var(--duration);
}
@media screen and (max-width: 767px) {
  .p-example-list__filter-link {
    padding: 0.4375rem 0.875rem;
    font-size: 0.75rem;
  }
}
@media (any-hover: hover) {
  .p-example-list__filter-link:hover {
    opacity: 1;
    border-color: var(--color-primary);
    color: var(--color-primary);
  }
}

.p-example-list__filter-link.is-active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}

.p-example-list__container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .p-example-list__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .p-example-list__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1rem;
  }
}
@media screen and (max-width: 600px) {
  .p-example-list__container {
    grid-template-columns: 1fr;
    gap: 1.125rem;
  }
}

.p-example-list__item {
  margin: 0;
}

.p-example-list__card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  height: 100%;
  color: var(--color-text);
  text-decoration: none;
}
.p-example-list__card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 0.25rem;
}
@media (any-hover: hover) {
  .p-example-list__card:hover .p-example-list__image img {
    transform: scale(1.06);
  }
}

.p-example-list__visual {
  position: relative;
  display: block;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 0.75rem;
  background-color: #ddd;
}

.p-example-list__image {
  display: block;
  height: 100%;
}
.p-example-list__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.p-example-list__shade {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  pointer-events: none;
}

.p-example-list__more {
  position: absolute;
  right: 0.875rem;
  bottom: 0.875rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  pointer-events: none;
}

.p-example-list__more-icon {
  display: block;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='33' viewBox='0 0 33 33'%3E%3Ccircle cx='16.5' cy='16.5' r='16' fill='none' stroke='%23fff' stroke-miterlimit='10'/%3E%3Cpolyline points='15.74 13.03 19.26 16.5 15.74 19.97' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-example-list__more-text {
  color: var(--color-white);
  font-size: 0.875rem;
  font-family: var(--ff-en);
  font-weight: 400;
  letter-spacing: 0.06em;
}

.p-example-list__meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  grid-template-rows: auto auto auto;
  align-items: center;
  gap: 0.625rem 0.5rem;
  margin-block-start: 0.875rem;
  padding-inline: 0.5rem;
}

.p-example-list__title {
  order: 1;
  grid-column: 1/-1;
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-overflow: ellipsis;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.p-example-list__property-name {
  order: 2;
  grid-column: 1;
  margin: 0;
  font-size: max(0.75rem, 8px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: color-mix(in srgb, var(--color-text) 78%, var(--color-white));
}

.p-example-list__specs {
  order: 3;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
  grid-column: 2/4;
  justify-content: flex-end;
  width: auto;
}

.p-example-list__floor-area {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0.3125rem 0.75rem;
  border: 1px solid var(--color-text);
  border-radius: 0.25rem;
  font-size: max(0.75rem, 8px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

.p-example-list__price {
  margin: 0;
  font-size: max(1.125rem, 8px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

.p-example-list__tags {
  order: 4;
  grid-column: 1/-1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 0.625rem;
}

.p-example-list__tag {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: color-mix(in srgb, var(--color-text) 75%, var(--color-white));
}

.p-example-list__pagination {
  margin-block-start: 3rem;
}

.p-example-list__empty {
  padding: 3.75rem;
  background-color: var(--color-white);
  color: var(--color-border-gray);
  font-size: 1rem;
  text-align: center;
}

.p-example-list__empty p {
  margin: 0;
}

.p-example-catalog {
  margin-block-start: 4.5rem;
  margin-block-end: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-example-catalog {
    margin-block-start: 3rem;
  }
}

.p-example-catalog__box {
  display: grid;
  grid-template-columns: 1fr 31.4091680815%;
  gap: 3rem;
  align-items: center;
  padding: 0.625rem;
  border: 1px solid #d2d2d2;
  border-radius: 0.75rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-example-catalog__box {
    grid-template-columns: 1fr;
    gap: 1rem;
    border-radius: 1rem;
    align-items: stretch;
  }
}

.p-example-catalog__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 1.25rem 0 1.25rem 2.25rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-example-catalog__content {
    padding: 1rem 1rem;
  }
}

.p-example-catalog__sub {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin: 0;
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
.p-example-catalog__sub::before {
  content: "";
  flex-shrink: 0;
  width: 2.5rem;
  height: 1px;
  background-color: currentcolor;
}
@media screen and (max-width: 767px) {
  .p-example-catalog__sub::before {
    width: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-example-catalog__sub {
    font-size: 1.125rem;
  }
}

.p-example-catalog__title {
  margin: 0;
  margin-block-start: 0.5rem;
  color: var(--color-text, #333);
  font-feature-settings: "palt";
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-example-catalog__title {
    margin-block-start: 0.5rem;
    font-size: 1.5rem;
    line-height: 1.35;
  }
}

.p-example-catalog__title-line {
  display: block;
}

.p-example-catalog__cta.p-top-showroom__cta {
  margin-block-start: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-example-catalog__cta.p-top-showroom__cta {
    width: 100%;
    margin-block-start: 1rem;
  }
}

.p-example-catalog__media {
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
}
@media screen and (max-width: 767px) {
  .p-example-catalog__media {
    order: -1;
    aspect-ratio: 3/2;
  }
}

.p-example-catalog__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.p-example-single__terms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 0.75rem;
}

.p-example-single__term {
  display: inline-block;
  padding-block: 0.25rem;
  padding-inline: 0.75rem;
  border: 1px solid var(--color-text);
  border-radius: 100vmax;
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-example-single__term:hover {
    opacity: 0.8;
  }
}
.p-example-single__term::before {
  content: "#";
}

.p-example-single__title {
  margin-block-start: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-example-single__title {
    margin-block-start: 0.75rem;
    font-size: 1.625rem;
  }
}

.p-example-single__specs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem 1rem;
  margin-block-start: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-example-single__specs {
    margin-block-start: 1rem;
  }
}

.p-example-single__property-name {
  margin: 0;
  font-size: max(0.875rem, 8px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-example-single__property-name {
    font-size: max(0.8125rem, 8px);
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.04em;
  }
}

.p-example-single__specs-tail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-example-single__specs-tail {
    margin-inline-start: 0;
    width: 100%;
  }
}

.p-example-single__floor-area {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0.3125rem 0.75rem;
  border: 1px solid var(--color-text);
  border-radius: 0.25rem;
  font-size: max(0.75rem, 8px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

.p-example-single__price {
  margin: 0;
  font-size: max(1.125rem, 8px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-example-single__price {
    font-size: max(1rem, 8px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}

.p-example-single__gallery {
  margin-block-start: 2rem;
  margin-inline: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .p-example-single__gallery {
    margin-block-start: 1.75rem;
  }
}

.p-example-single__swiper-container {
  position: relative;
}

.p-example-single__swiper-view {
  position: relative;
}

.p-example-single__swiper {
  overflow: hidden;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-example-single__swiper {
    border-radius: 0.75rem;
  }
}

.p-example-single__slide {
  height: auto;
  scale: 0.8;
  transition: scale 0.5s ease;
}
.p-example-single__slide.swiper-slide-active {
  scale: 1;
}

.p-example-single__figure {
  margin: 0;
}

.p-example-single__slide-image {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.p-example-single__pagination {
  position: static;
  margin-block-start: 1rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-example-single__pagination {
    margin-block-start: 0.75rem;
  }
}
.p-example-single__pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  margin: 0 0.25rem;
  background-color: var(--color-border);
  opacity: 1;
}
.p-example-single__pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.p-example-single__swiper-button-prev,
.p-example-single__swiper-button-next {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 3rem;
  height: 7.5rem;
  border: none;
  background-color: var(--color-white);
  color: var(--color-text);
  padding: 0;
  cursor: pointer;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-example-single__swiper-button-prev,
  .p-example-single__swiper-button-next {
    width: 2.25rem;
    height: 4.5rem;
  }
}
.p-example-single__swiper-button-prev::after,
.p-example-single__swiper-button-next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 2px solid currentcolor;
  border-right: 2px solid currentcolor;
}
.p-example-single__swiper-button-prev.swiper-button-disabled,
.p-example-single__swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
@media (any-hover: hover) {
  .p-example-single__swiper-button-prev:hover,
  .p-example-single__swiper-button-next:hover {
    opacity: 0.9;
  }
}

.p-example-single__swiper-button-prev {
  left: 0;
  border-radius: 0 0.75rem 0.75rem 0;
}
.p-example-single__swiper-button-prev::after {
  transform: translate(-40%, -50%) rotate(-135deg);
}

.p-example-single__swiper-button-next {
  right: 0;
  border-radius: 0.75rem 0 0 0.75rem;
}
.p-example-single__swiper-button-next::after {
  transform: translate(-60%, -50%) rotate(45deg);
}

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

.p-features-intro {
  padding-block: 5.5rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-features-intro {
    padding-block: 2rem 0;
  }
}

.p-features-intro__title {
  margin: 0;
  font-feature-settings: "palt";
  font-size: clamp(2.5rem, 3vw, 3.125rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-features-intro__title {
    font-size: 1.875rem;
    text-align: left;
  }
}
.p-features-intro__title--small {
  zoom: 0.7;
}

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

.p-features-intro__lead-text {
  margin: 0;
  font-feature-settings: "palt";
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.67;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-features-intro__lead-text {
    font-size: 0.9375rem;
    text-align: left;
  }
}
.p-features-intro__lead-text + .p-features-intro__lead-text {
  margin-block-start: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-features-intro__lead-text + .p-features-intro__lead-text {
    margin-block-start: 1.375rem;
  }
}

.p-features-intro__about-card {
  display: grid;
  grid-template-columns: 1fr 31.4091680815%;
  gap: 3rem;
  align-items: flex-start;
  margin-block-start: 4.5rem;
  padding: 0.625rem;
  border: 1px solid #d2d2d2;
  border-radius: 0.75rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-features-intro__about-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-block-start: 3rem;
    border-radius: 1rem;
  }
}

.p-features-intro__about-body {
  padding: 1.25rem 0 1.25rem 2.25rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-features-intro__about-body {
    padding: 1rem 1rem;
  }
}

.p-features-intro__about-label {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-en);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  text-transform: uppercase;
}
.p-features-intro__about-label::before {
  content: "";
  flex-shrink: 0;
  width: 2.5rem;
  height: 1px;
  background-color: currentcolor;
}

.p-features-intro__about-heading {
  margin: 0;
  margin-block-start: 0.5rem;
  color: var(--color-primary);
  font-feature-settings: "palt";
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.46;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-features-intro__about-heading {
    margin-block-start: 0.5rem;
    font-size: 1.375rem;
  }
}

.p-features-intro__about-copy {
  margin-block-start: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-features-intro__about-copy {
    margin-block-start: 0.5rem;
  }
}

.p-features-intro__about-text {
  margin: 0;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.87;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-features-intro__about-text {
    font-size: 0.9375rem;
  }
}
.p-features-intro__about-text + .p-features-intro__about-text {
  margin-block-start: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-features-intro__about-text + .p-features-intro__about-text {
    margin-block-start: 1rem;
  }
}

.p-features-intro__about-benefits {
  margin-block-start: 1.0625rem;
  padding-block-end: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-features-intro__about-benefits {
    margin-block-start: 1rem;
    padding-block-end: 0;
  }
}

.p-features-intro__about-benefit + .p-features-intro__about-benefit {
  margin-block-start: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-features-intro__about-benefit + .p-features-intro__about-benefit {
    margin-block-start: 1.375rem;
  }
}

.p-features-intro__about-benefit-title {
  margin: 0;
  color: var(--color-primary);
  font-feature-settings: "palt";
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-features-intro__about-benefit-title {
    font-size: 1rem;
  }
}

.p-features-intro__about-benefit-text {
  margin: 0;
  margin-block-start: 0rem;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-features-intro__about-benefit-text {
    font-size: 0.8125rem;
  }
}

.p-features-intro__about-media {
  overflow: hidden;
  height: 100%;
}

.p-features-intro__about-image {
  display: block;
  width: 100%;
}

.p-features-reasons {
  padding-block: 4.5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-features-reasons {
    padding-block: 2.5rem 0;
  }
}

.p-features-reasons__header {
  text-align: center;
}

.p-features-reasons__kicker {
  margin: 0;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: clamp(1.5rem, 3vw, 2.375rem);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-features-reasons__kicker {
    font-size: 0.9375rem;
  }
}
.p-features-reasons__kicker + .c-section-heading {
  margin-block-start: 0.125rem;
}

.p-features-reasons__kicker-strong {
  color: var(--color-primary);
}

@media screen and (max-width: 767px) {
  .p-features-reasons__header .c-section-heading {
    margin-block-start: 1.25rem;
  }
}

.p-features-reasons__subtitle {
  margin: 0;
  margin-block-start: 0.875rem;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-features-reasons__subtitle {
    margin-block-start: 1.125rem;
    font-size: 0.8125rem;
  }
}

.p-features-reasons__block {
  margin-block-start: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-features-reasons__block {
    margin-block-start: 2.25rem;
  }
}
.p-features-reasons__block + .p-features-reasons__block {
  margin-block-start: 6.75rem;
}
@media screen and (max-width: 767px) {
  .p-features-reasons__block + .p-features-reasons__block {
    margin-block-start: 3.75rem;
  }
}

.p-features-reasons__flex {
  position: relative;
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-features-reasons__flex {
    flex-direction: column;
    gap: 2rem;
  }
}

.p-features-reasons__block:nth-of-type(odd) .p-features-reasons__flex .p-features-reasons__body-panel,
.p-features-reasons__block:nth-of-type(even) .p-features-reasons__flex .p-features-reasons__body-panel {
  flex: 1 1 0;
}

.p-features-reasons__block:nth-of-type(even) .p-features-reasons__flex {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-features-reasons__block:nth-of-type(even) .p-features-reasons__flex {
    flex-direction: column;
  }
}

.p-features-reasons__body-panel {
  z-index: 1;
  min-width: 0;
  padding: 3.375rem 5rem 3rem 4rem;
}
@media screen and (max-width: 1366px) {
  .p-features-reasons__body-panel {
    padding: 3.375rem 2.5rem 3rem 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-features-reasons__body-panel {
    z-index: auto;
    padding: 2.5rem 1.25rem 0;
  }
}

.p-features-reasons__bg {
  position: absolute;
  z-index: 0;
  width: 70.0810185185%;
  background-color: #f0f0f0;
}
@media screen and (max-width: 767px) {
  .p-features-reasons__bg {
    width: 100%;
    border-radius: 0 0 0.75rem 0.75rem;
  }
}

.p-features-reasons__block:nth-of-type(odd) .p-features-reasons__bg {
  inset: 0;
}

.p-features-reasons__block:nth-of-type(even) .p-features-reasons__bg {
  inset: 0 0 0 auto;
}

.p-features-reasons__body-inner {
  position: relative;
  z-index: 1;
}

.p-features-reasons__index {
  position: absolute;
  top: -0.5rem;
  right: -2.5rem;
  z-index: -1;
  left: auto;
  color: var(--color-white);
  font-family: var(--ff-en);
  font-size: 8.75rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-features-reasons__index {
    top: -1rem;
    right: 0.5rem;
    font-size: 4.375rem;
  }
}

.p-features-reasons__heading {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: clamp(1.375rem, 2.6vw, 1.875rem);
  font-weight: 700;
  line-height: 1.67;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-features-reasons__heading {
    font-size: 1.25rem;
  }
}

.p-features-reasons__text {
  margin: 0;
  margin-block-start: 1.25rem;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-features-reasons__text {
    margin-block-start: 1.25rem;
    font-size: 0.9375rem;
  }
}

.p-features-reasons__list {
  margin: 0;
  margin-block-start: 2.375rem;
  padding: 1.75rem 1.5rem 2rem;
  border: 1px solid #e8e8e8;
  border-radius: 0.5rem;
  list-style: none;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-features-reasons__list {
    margin-block-start: 1.5rem;
    padding: 1.375rem 1.125rem;
    border-radius: 0.75rem;
  }
}

.p-features-reasons__item {
  display: flex;
  gap: 0.25rem;
  align-items: flex-start;
}
.p-features-reasons__item + .p-features-reasons__item {
  margin-block-start: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-features-reasons__item + .p-features-reasons__item {
    margin-block-start: 1rem;
  }
}

.p-features-reasons__check {
  display: block;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-block-start: 0.25rem;
}

.p-features-reasons__item-body {
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-features-reasons__item-body {
    font-size: 0.8125rem;
  }
}

.p-features-reasons__item-label {
  color: var(--color-primary);
  font-weight: 700;
}

.p-features-reasons__media {
  position: relative;
  z-index: 2;
  flex: 0 0 40.5729166667vw;
  height: auto;
  min-width: 0;
  aspect-ratio: 779/550;
  transform: translateY(3rem);
}
@media screen and (max-width: 767px) {
  .p-features-reasons__media {
    transform: translateY(0);
  }
}

.p-features-reasons__image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.875rem;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-features-reasons__image {
    border-radius: 0 0 0.75rem 0.75rem;
    box-shadow: none;
  }
}

.p-features-reasons__block--zeh-vent {
  position: relative;
  padding: 3.25rem 3.875rem 3.75rem;
  background-color: var(--color-gray);
}
@media screen and (max-width: 767px) {
  .p-features-reasons__block--zeh-vent {
    padding: 2.5rem 1.25rem 2.75rem;
  }
}
.p-features-reasons__block--zeh-vent .p-features-reasons__vent-inner {
  width: min(100%, 80.3125rem);
  margin-inline: auto;
}
.p-features-reasons__block--zeh-vent .p-features-reasons__vent-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 1.5rem;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .p-features-reasons__block--zeh-vent .p-features-reasons__vent-head {
    grid-template-columns: 1fr;
  }
}
.p-features-reasons__block--zeh-vent .p-features-reasons__vent-head-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-inline-size: 0;
}
@media screen and (max-width: 767px) {
  .p-features-reasons__block--zeh-vent .p-features-reasons__vent-head-main {
    gap: 0.75rem;
  }
}
.p-features-reasons__block--zeh-vent .p-features-reasons__vent-title {
  margin: 0;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-weight: 700;
  letter-spacing: 0.05em;
}
.p-features-reasons__block--zeh-vent .p-features-reasons__vent-title-line {
  display: block;
  font-size: clamp(1.25rem, 2vw, 1.875rem);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-features-reasons__block--zeh-vent .p-features-reasons__vent-title-line {
    font-size: 1.375rem;
  }
}
.p-features-reasons__block--zeh-vent .p-features-reasons__vent-title-em {
  display: block;
  margin-block-start: 0.25rem;
  font-size: clamp(0.125rem, 2vw, 1.875rem);
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .p-features-reasons__block--zeh-vent .p-features-reasons__vent-title-em {
    font-size: 1.375rem;
  }
}
.p-features-reasons__block--zeh-vent .p-features-reasons__vent-lead {
  margin: 0;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-features-reasons__block--zeh-vent .p-features-reasons__vent-lead {
    font-size: 0.9375rem;
  }
}
.p-features-reasons__block--zeh-vent .p-features-reasons__vent-index {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--ff-en);
  font-size: 8.75rem;
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: 0;
  pointer-events: none;
  user-select: none;
}
@media screen and (max-width: 767px) {
  .p-features-reasons__block--zeh-vent .p-features-reasons__vent-index {
    position: absolute;
    top: -1rem;
    right: 0.5rem;
    z-index: -1;
    font-size: 4.375rem;
    white-space: nowrap;
  }
}
.p-features-reasons__block--zeh-vent .p-features-reasons__vent-diagram {
  margin-block-start: 2rem;
  padding: 1.125rem 1.5rem 1.25rem;
  border-radius: 0.75rem;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-features-reasons__block--zeh-vent .p-features-reasons__vent-diagram {
    margin-block-start: 1rem;
    padding: 0.5rem;
    border-radius: 0.625rem;
  }
}
.p-features-reasons__block--zeh-vent .p-features-reasons__vent-diagram-image {
  display: block;
  inline-size: 100%;
  block-size: auto;
  border-radius: 0.5rem;
}
.p-features-reasons__block--zeh-vent .p-features-reasons__vent-bottom {
  display: grid;
  grid-template-columns: 1fr min(49rem, 100%);
  gap: 2rem 5.625rem;
  align-items: start;
  margin-block-start: 1.25rem;
}
@media screen and (max-width: 1366px) {
  .p-features-reasons__block--zeh-vent .p-features-reasons__vent-bottom {
    grid-template-columns: 1fr min(31.25rem, 100%);
    gap: 2rem 3.75rem;
    align-items: start;
    margin-block-start: 1.25rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-features-reasons__block--zeh-vent .p-features-reasons__vent-bottom {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.875rem;
    align-items: start;
    margin-block-start: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-features-reasons__block--zeh-vent .p-features-reasons__vent-bottom {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-block-start: 1rem;
  }
}
.p-features-reasons__block--zeh-vent .p-features-reasons__vent-body {
  margin: 0;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-features-reasons__block--zeh-vent .p-features-reasons__vent-body {
    font-size: 0.875rem;
  }
}
.p-features-reasons__block--zeh-vent .p-features-reasons__vent-aside {
  padding: 1.75rem 1.5rem 1.5rem;
  border: 1px solid #e8e8e8;
  border-radius: 0.75rem;
  background-color: var(--color-base);
  box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 767px) {
  .p-features-reasons__block--zeh-vent .p-features-reasons__vent-aside {
    padding: 1.375rem 1.125rem 1.5rem;
  }
}
.p-features-reasons__block--zeh-vent .p-features-reasons__vent-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-features-reasons__block--zeh-vent .p-features-reasons__vent-list {
    gap: 0.75rem;
  }
}
.p-features-reasons__block--zeh-vent .p-features-reasons__vent-item {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
}
.p-features-reasons__block--zeh-vent .p-features-reasons__vent-check {
  display: block;
  flex-shrink: 0;
  inline-size: 1rem;
  block-size: 1rem;
  margin-block-start: 0.125rem;
}
.p-features-reasons__block--zeh-vent .p-features-reasons__vent-item-text {
  font-feature-settings: "palt";
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-features-reasons__block--zeh-vent .p-features-reasons__vent-item-text {
    font-size: 0.8125rem;
  }
}

.p-features {
  position: relative;
  padding-block: 7.1875rem 3rem;
}
@media screen and (max-width: 767px) {
  .p-features {
    padding-block: 3rem 1.5rem;
  }
}
.p-features::before {
  content: "";
  position: absolute;
  top: 3rem;
  left: 0;
  z-index: -1;
  width: 81.25%;
  height: 30.4375rem;
  background-color: #f4f4f4;
}
@media screen and (max-width: 767px) {
  .p-features::before {
    top: 0rem;
    height: 100%;
  }
}

.p-features__head {
  display: inline-flex;
  max-width: 100%;
  margin: 0;
}

.p-features__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.375rem;
  margin-block: 2.875rem 0;
  margin-inline: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-features__list {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-block-start: 1.75rem;
  }
}

.p-features__item {
  margin: 0;
}

.p-features__card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0.5rem;
  color: var(--color-white);
  text-decoration: none;
}
.p-features__card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 0.25rem;
}
@media (any-hover: hover) {
  .p-features__card:hover {
    opacity: 1;
  }
  .p-features__card:hover .p-features__image img {
    transform: scale(1.06);
  }
}

.p-features__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
  border-radius: inherit;
  background-color: #c8c8c8;
}

.p-features__image {
  display: block;
  width: 100%;
  height: 100%;
}
.p-features__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.p-features__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.p-features__shade--sub {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.32) 52%, transparent 100%);
}

.p-features__card--sub {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 26.875rem;
  padding: 1.75rem 4.0625rem 1.75rem 1.375rem;
}
@media screen and (max-width: 1023px) {
  .p-features__card--sub {
    padding: 1.75rem 3.125rem 1.75rem 1.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-features__card--sub {
    min-height: 13.4375rem;
    padding: 1.5rem 1.125rem 1.125rem;
  }
}

.p-features__body--sub {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
}

.p-features__sub-meta {
  font-size: 0.75rem;
  font-family: var(--ff-en);
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-features__sub-meta {
    font-size: 0.6875rem;
  }
}

.p-features__sub-catch {
  margin-block-start: 0.75rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-features__sub-catch {
    font-size: 0.8125rem;
  }
}

.p-features__sub-title {
  margin-block-start: 0rem;
  font-size: 1.625rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-features__sub-title {
    font-size: 1.0625rem;
  }
}

.p-features__arrow {
  position: absolute;
  right: 1.875rem;
  bottom: 1.625rem;
  z-index: 2;
  display: block;
  width: 2rem;
  height: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='33' viewBox='0 0 33 33'%3E%3Ccircle cx='16.5' cy='16.5' r='16' fill='none' stroke='%23fff' stroke-miterlimit='10'/%3E%3Cpolyline points='15.74 13.03 19.26 16.5 15.74 19.97' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  .p-features__arrow {
    right: 1.375rem;
    bottom: 1.125rem;
    width: 1.75rem;
    height: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-features__arrow {
    right: 1.125rem;
    bottom: 1.125rem;
    width: 1.75rem;
    height: 1.75rem;
  }
}

.p-footer {
  padding-block: 6.875rem 6.5rem;
  background-color: #1a1a1a;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-block: 3rem 2.5rem;
  }
}

.p-footer__inner {
  min-width: 0;
}

.p-footer__flex {
  display: flex;
  justify-content: space-between;
  gap: 2rem 5rem;
}
@media screen and (max-width: 1023px) {
  .p-footer__flex {
    gap: 2rem 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__flex {
    flex-direction: column;
    gap: 3.75rem;
  }
}

.p-footer__brand {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1 0 21.5625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__brand {
    flex: auto;
  }
}

.p-footer__tagline {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.09em;
}

.p-footer__company {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.p-footer__company-name {
  display: inline-block;
  margin-inline-start: 0.25rem;
  font-size: 1.375rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-footer__company-name {
    font-size: 1.25rem;
  }
}

.p-footer__address {
  margin-block-start: 1.875rem;
  font-style: normal;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 767px) {
  .p-footer__address {
    font-size: 0.8125rem;
    line-height: 1.75;
  }
}

.p-footer__address-line {
  margin: 0;
}

.p-footer__tel {
  color: inherit;
  text-decoration: none;
}

@media (any-hover: hover) {
  .p-footer__tel:hover {
    text-decoration: underline;
  }
}
.p-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 1.625rem;
  margin-block-start: 2.625rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-footer__social {
    margin-block-start: 1.25rem;
    gap: 1rem;
  }
}

.p-footer__social-link {
  display: block;
  line-height: 0;
  transition: opacity var(--duration) ease;
}
.p-footer__social-link img {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
}
@media (any-hover: hover) {
  .p-footer__social-link:hover {
    opacity: 0.7;
  }
}

.p-footer__nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 2rem 3.125vw;
  padding-inline-end: 0.625vw;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-wrapper {
    flex-direction: column;
  }
}

.p-footer__heading {
  padding-block-end: 1.25rem;
  padding-inline-end: 1.0416666667vw;
  border-block-end: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-footer__heading {
    padding-block-end: 0.625rem;
    padding-inline-end: 0;
    font-size: 1rem;
  }
}

.p-footer__heading-link {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--duration) ease;
}
@media (any-hover: hover) {
  .p-footer__heading-link:hover {
    opacity: 1;
    text-decoration: underline;
  }
}

.p-footer__list {
  margin-block-start: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-footer__list {
    margin-block-start: 0.625rem;
  }
}

.p-footer__item + .p-footer__item {
  margin-block-start: 0.3125rem;
}

.p-footer__link {
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.05em;
  text-decoration: none;
  opacity: 0.92;
  transition: opacity var(--duration) ease;
}
@media screen and (max-width: 767px) {
  .p-footer__link {
    font-size: 0.75rem;
  }
}

@media (any-hover: hover) {
  .p-footer__link:hover {
    opacity: 1;
    text-decoration: underline;
  }
}
.p-footer__split {
  display: flex;
  justify-content: space-between;
  gap: 2.625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__split {
    justify-content: flex-start;
    gap: 16vw;
  }
}

.p-footer__list--half .p-footer__item + .p-footer__item {
  margin-block-start: 0.3125rem;
}

.p-footer__copyright {
  margin-block-start: 2.8125rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    padding-block-start: 1.25rem;
    font-size: 0.75rem;
  }
}

.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-red);
  --_form-color-accent: var(--color-primary);
  --_form-color-border: var(--color-border);
  --_form-color-primary: var(--color-primary);
}
.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;
}

body[class*=confirm] .p-form__label {
  margin-block-start: 0;
}

.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: 17.5rem;
  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: var(--fw-medium);
  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: var(--fw-medium);
  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__people {
  display: flex;
  gap: 16px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-form__people {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
  }
}

.p-form__people-label {
  white-space: nowrap;
}

.p-form__people-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.p-form__people-item:not(:last-child)::after {
  content: "/";
  display: inline-block;
  margin-inline-start: 6px;
  color: var(--_form-color-text);
}

.p-form__people-unit {
  white-space: nowrap;
}

.p-form__data-flex {
  display: flex;
  align-items: stretch;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-form__data-flex {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.p-form__data-flex > * {
  flex: 1 1 0;
  min-width: 0;
  max-width: 100%;
}

.p-form--confirm .p-form__data-flex > * {
  flex: none;
}

.p-form__input,
.p-form__select,
.p-form__textarea,
.p-form__date {
  width: 100%;
  min-width: 0;
  padding: 1rem 1.25rem;
  border: 1px solid var(--_form-color-border);
  border-radius: 0.25rem;
  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,
  .p-form__date {
    padding: 0.875rem 1.25rem;
  }
}

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

.p-form__input:focus,
.p-form__select:focus,
.p-form__textarea:focus,
.p-form__date: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),
.p-form__date: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,
.p-form__date.is-error {
  border-color: var(--_form-color-badge-bg);
}

.p-form__select {
  position: relative;
  padding-inline-end: 3rem;
  cursor: pointer;
  appearance: none;
}

.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--confirm .p-form__select-wrap::after {
  content: none;
}

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

.p-form__radio-group {
  display: flex;
  flex-direction: column;
  gap: 2rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-form__radio-group {
    flex-flow: row wrap;
    gap: 0.5rem;
  }
}

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

.p-form__radio 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;
  appearance: none;
  transition: border-color 0.2s ease;
}

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

.p-form__radio 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) {
  border-color: var(--_form-color-accent);
  opacity: 0.5;
}

.p-form__radio 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;
  user-select: none;
}

.p-form__sub {
  margin-top: 1rem;
  padding: 1rem;
  background: #f7f7f7;
  border: 1px solid #ddd;
}

.p-form__sub-label {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.p-form__note {
  font-size: 0.75rem;
}

.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;
  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;
  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: var(--fw-medium);
}
.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;
  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__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 .wpcf7-list-item-label,
.p-form__radio .wpcf7-li label {
  color: var(--_form-color-text);
  font-size: 1rem;
  line-height: 1.5;
  user-select: none;
}

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

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

.flatpickr-calendar {
  z-index: 100050;
}

.flatpickr-wrapper {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
}

.flatpickr-input {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}

.p-header {
  width: 100%;
  height: var(--header-height);
  transition: background-color var(--duration) ease, box-shadow var(--duration) ease;
}
@media screen and (max-width: 1023px) {
  .p-header {
    height: var(--header-height);
  }
}

.p-header.is-scrolled {
  background-color: var(--color-base);
  box-shadow: 0 1px 0 rgba(30, 30, 30, 0.08);
}
.p-header.is-scrolled .p-header__logo-text {
  color: var(--color-text);
}
.p-header.is-scrolled .p-header__nav-item:not(.p-header__nav-item--materials):not(.p-header__nav-item--contact) > a,
.p-header.is-scrolled .p-header__nav-item--mega > .p-header__mega-trigger {
  color: var(--color-text);
}
.p-header.is-scrolled .p-header__nav-item.p-header__nav-item--materials a,
.p-header.is-scrolled .p-header__nav-item.p-header__nav-item--contact a {
  color: var(--color-white);
}
.p-header.is-scrolled .p-header__logo-img--light {
  display: none;
}
.p-header.is-scrolled .p-header__logo-img--dark {
  display: block;
}

.p-header__inner {
  display: flex;
  justify-content: space-between;
  height: inherit;
  padding-inline-start: clamp(1.25rem, 2.3cqi, 2.6875rem);
}

.p-header__logo {
  display: flex;
  align-items: center;
  height: inherit;
}

.p-header__logo a {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: clamp(124px, 11.7cqi, 216px);
}
@media screen and (max-width: 767px) {
  .p-header__logo a {
    width: 10.625rem;
  }
}

.p-header__logo-text {
  color: var(--color-white);
  font-size: clamp(8px, 0.76cqi, 0.875rem);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 767px) {
  .p-header__logo-text {
    font-size: 0.6875rem;
  }
}

.p-header__logo-mark {
  display: block;
  width: 100%;
  line-height: 0;
}

.p-header__logo-img {
  display: block;
  width: 13.5rem;
  height: 1.75rem;
  object-fit: contain;
}

.p-header__logo-img--dark {
  display: none;
}

.p-header__nav {
  position: relative;
  container-type: inline-size;
  display: block;
  flex: 1;
  height: inherit;
}
@media screen and (max-width: 1023px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__nav-list {
  display: flex;
  justify-content: flex-end;
  height: inherit;
}

.p-header__nav-item {
  height: inherit;
}

.p-header__nav-item > a {
  display: flex;
  align-items: center;
  height: inherit;
  padding-block: 0;
  padding-inline: clamp(10px, 0.95cqi, 16px);
  color: var(--color-white);
  font-size: clamp(10px, 0.97cqi, 15px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1366px) {
  .p-header__nav-item > a {
    padding-inline: clamp(8px, 0.87cqi, 16px);
  }
}

.p-header__nav-item.p-header__nav-item.p-header__nav-item--materials,
.p-header__nav-item.p-header__nav-item--contact {
  display: flex;
  align-items: center;
}

.p-header__nav-item.p-header__nav-item--materials {
  padding-inline-start: clamp(1.3125rem, 2.5cqi, 2.625rem);
}
@media screen and (max-width: 1366px) {
  .p-header__nav-item.p-header__nav-item--materials {
    padding-inline-start: clamp(0.625rem, 1.2cqi, 2.625rem);
  }
}

.p-header__nav-item.p-header__nav-item--materials a {
  display: flex;
  align-items: center;
  position: relative;
  padding-inline: clamp(0.75rem, 1.18cqi, 1rem);
  background-color: var(--color-text);
  color: var(--color-white);
  font-size: clamp(10px, 0.97cqi, 15px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
  text-align: center;
  gap: clamp(0.625rem, 2cqi, 2rem);
}
@media screen and (max-width: 1366px) {
  .p-header__nav-item.p-header__nav-item--materials a {
    gap: clamp(0.5rem, 1.4cqi, 2rem);
  }
}
.p-header__nav-item.p-header__nav-item--materials a img {
  width: clamp(3.75rem, 5.8cqi, 5.625rem);
  margin-block-start: auto;
  height: auto;
  aspect-ratio: 90/74;
}

.p-header__nav-item.p-header__nav-item--contact a {
  display: flex;
  align-items: center;
  position: relative;
  padding-inline: clamp(1rem, 1.5cqi, 1.5rem) 0;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: clamp(10px, 0.97cqi, 15px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
  gap: clamp(0.5rem, 0.77cqi, 0.9375rem);
}
.p-header__nav-item.p-header__nav-item--contact a img {
  margin-block-start: auto;
  width: clamp(5.375rem, 8.3cqi, 8.125rem);
  height: auto;
  aspect-ratio: 130/80;
}

.p-header__nav-item-text {
  display: block;
  text-align: start;
}

.p-header__nav-item--mega {
  position: relative;
  z-index: 2;
}

.p-header__nav-item--mega > .p-header__mega-trigger {
  position: relative;
  display: flex;
  align-items: center;
  height: inherit;
  margin: 0;
  padding-block: 0;
  padding-inline: clamp(10px, 0.95cqi, 16px);
  border: none;
  background: none;
  color: var(--color-white);
  font-family: inherit;
  font-size: clamp(10px, 0.97cqi, 15px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
  cursor: default;
}
@media screen and (max-width: 1366px) {
  .p-header__nav-item--mega > .p-header__mega-trigger {
    padding-inline: clamp(8px, 0.87cqi, 16px);
  }
}
.p-header__nav-item--mega > .p-header__mega-trigger::after {
  content: "";
  position: absolute;
  right: clamp(10px, 0.95cqi, 16px);
  bottom: 0;
  left: clamp(10px, 0.95cqi, 16px);
  height: 3px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--duration) ease;
}

@media (any-hover: hover) {
  .p-header__nav-item--mega:hover > .p-header__mega-trigger::after,
  .p-header__nav-item--mega:focus-within > .p-header__mega-trigger::after {
    transform: scaleX(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-header__nav-item--mega > .p-header__mega-trigger::after {
    transition-duration: 0.01ms;
  }
}
.p-header__mega {
  position: fixed;
  top: var(--header-height);
  left: 50%;
  translate: -50% 0;
  z-index: 90;
  width: min(90%, 75rem);
  margin-inline: auto;
  padding-block: 2.25rem 2.75rem;
  padding-inline: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--duration) ease, visibility var(--duration) ease;
  pointer-events: none;
  background-color: #141819;
  background-image: url("../images/bg_header_mega_concept.webp");
  background-position: center;
  background-size: cover;
}

.p-header__mega::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(10, 14, 18, 0.74);
  pointer-events: none;
}

@media (any-hover: hover) {
  .p-header__nav-item--mega:hover .p-header__mega,
  .p-header__nav-item--mega:focus-within .p-header__mega {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}
.p-header__mega-inner {
  position: relative;
  z-index: 1;
}

.p-header__mega-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block-end: 1.125rem;
  margin-block-end: 1.125rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  color: inherit;
  text-decoration: none;
}
.p-header__mega-head:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 0.25rem;
}

.p-header__mega-head-text {
  flex: 1 1 auto;
}

.p-header__mega-en {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--ff-en);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.p-header__mega-title {
  display: block;
  margin: 0.375rem 0 0;
  color: var(--color-white);
  font-size: clamp(1.0625rem, 1.35cqi, 1.375rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.p-header__mega-top {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  translate: 0 0;
  transition: translate calc(var(--duration) * 1.15) cubic-bezier(0.22, 1, 0.36, 1);
}

.p-header__mega-top .p-header__mega-icon {
  width: 2.25rem;
  height: 2.25rem;
  background-color: rgba(255, 255, 255, 0.06);
  transition: background-color calc(var(--duration) * 1.15) cubic-bezier(0.22, 1, 0.36, 1);
}

@media (any-hover: hover) {
  .p-header__mega-head:hover .p-header__mega-top {
    translate: 0.5rem 0;
  }
  .p-header__mega-head:hover .p-header__mega-top .p-header__mega-icon {
    background-color: rgba(255, 255, 255, 0.14);
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-header__mega-top {
    transition-duration: 0.01ms;
  }
  .p-header__mega-top .p-header__mega-icon {
    transition-duration: 0.01ms;
  }
}
@media (prefers-reduced-motion: reduce) and (any-hover: hover) {
  .p-header__mega-head:hover .p-header__mega-top {
    translate: 0 0;
  }
}
.p-header__mega-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  gap: 0 clamp(1.75rem, 4cqi, 3.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-header__mega-item {
  min-width: 0;
}

.p-header__mega-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.5rem;
  padding-block: 0.875rem;
  padding-inline: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--color-white);
  font-size: clamp(0.8125rem, 1.05cqi, 1rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: opacity calc(var(--duration) * 1.15) cubic-bezier(0.22, 1, 0.36, 1);
}
.p-header__mega-link:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 0.25rem;
}

.p-header__mega-link-text {
  flex: 1 1 auto;
  min-width: 0;
}

.p-header__mega-link .p-header__mega-icon {
  translate: 0 0;
  transition: translate calc(var(--duration) * 1.15) cubic-bezier(0.22, 1, 0.36, 1), background-color calc(var(--duration) * 1.15) cubic-bezier(0.22, 1, 0.36, 1), border-color calc(var(--duration) * 1.15) cubic-bezier(0.22, 1, 0.36, 1);
}

@media (any-hover: hover) {
  .p-header__mega-link:hover .p-header__mega-icon {
    translate: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.65);
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-header__mega-link .p-header__mega-icon {
    transition-duration: 0.01ms;
  }
}
@media (prefers-reduced-motion: reduce) and (any-hover: hover) {
  .p-header__mega-link:hover .p-header__mega-icon {
    translate: 0 0;
  }
}
.p-header__mega-icon {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.04);
}

.p-header__mega-icon::after {
  content: "";
  display: block;
  width: 0.375rem;
  height: 0.375rem;
  margin-inline-start: -0.125rem;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: rotate(-45deg);
}

.p-header__hamburger {
  position: relative;
  z-index: 999;
  display: none;
  width: 4rem;
  height: inherit;
  margin: 0;
  padding: 0;
  border: none;
  background-color: var(--color-primary);
  outline: none;
  cursor: pointer;
  transition: background-color var(--duration);
}
@media screen and (max-width: 1023px) {
  .p-header__hamburger {
    display: block;
  }
}

.p-header__hamburger span {
  position: relative;
  left: 50%;
  display: block;
  width: 1.5625rem;
  height: 1px;
  background-color: var(--color-white);
  translate: -50% 0;
  transition: top calc(var(--duration) * 1.67), opacity calc(var(--duration) * 1.67);
}
.p-header__hamburger span:nth-of-type(1) {
  top: -8px;
}
.p-header__hamburger span:nth-of-type(2) {
  top: 0;
}
.p-header__hamburger span:nth-of-type(3) {
  top: 8px;
}

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

.p-header__drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 900;
  display: none;
  overflow-y: auto;
  width: 100%;
  height: 100svh;
  padding: 0;
  background-color: rgba(17, 85, 204, 0.9);
  scrollbar-width: none;
  transform: translateX(100%);
  visibility: hidden;
}
.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;
    transition: transform var(--duration) ease, visibility 0s linear var(--duration);
  }
  .p-header__drawer.is-open {
    visibility: visible;
    transform: translateX(0);
    transition: transform var(--duration) ease, visibility 0s;
  }
}

.p-header__drawer-inner {
  box-sizing: border-box;
  max-width: 35rem;
  min-height: 100%;
  margin-inline: auto;
  padding: 1.25rem 1.5rem 2.5rem;
  padding-bottom: calc(2.5rem + env(safe-area-inset-bottom, 0px));
}
@media screen and (max-width: 767px) {
  .p-header__drawer-inner {
    padding-inline: 1.25rem;
  }
}

.p-header__drawer-head {
  margin-block-end: 1.75rem;
}

.p-header__drawer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
  color: var(--color-white);
  text-decoration: none;
}
.p-header__drawer-brand:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 0.25rem;
}

.p-header__drawer-brand-text {
  margin: 0 0 0.375rem;
  font-size: 0.6875rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.09em;
}

.p-header__drawer-brand-mark {
  display: block;
  line-height: 0;
}

.p-header__drawer-brand-img {
  display: block;
  width: 10.625rem;
  height: auto;
  object-fit: contain;
}

.p-header__drawer-nav {
  container-type: inline-size;
}

.p-header__drawer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-header__drawer-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.p-header__drawer-link {
  display: block;
  padding: 1.125rem 0;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.p-header__drawer-link:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 0.25rem;
}
@media (any-hover: hover) {
  .p-header__drawer-link:hover {
    opacity: 0.92;
  }
}

.p-header__drawer-link--sub {
  padding-block: 0.875rem;
  padding-inline-start: 0.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.45;
  opacity: 0.96;
}

.p-header__drawer-accordion-head {
  display: flex;
  align-items: stretch;
}

.p-header__drawer-link--accordion-main {
  flex: 1 1 auto;
  min-width: 0;
  padding-inline-end: 0.5rem;
}

.p-header__drawer-accordion-toggle {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  color: var(--color-white);
  cursor: pointer;
}
.p-header__drawer-accordion-toggle:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 0.125rem;
}
@media (any-hover: hover) {
  .p-header__drawer-accordion-toggle:hover {
    opacity: 0.92;
  }
}

.p-header__drawer-accordion-icon {
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  margin-block-start: -0.25rem;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: rotate(45deg);
  transition: transform var(--duration) ease;
}

.p-header__drawer-item--accordion.is-open .p-header__drawer-accordion-icon {
  margin-block-start: 0.125rem;
  transform: rotate(-135deg);
}

@media (prefers-reduced-motion: reduce) {
  .p-header__drawer-accordion-icon {
    transition-duration: 0.01ms;
  }
}
.p-header__drawer-accordion-panel {
  padding-block-end: 0.5rem;
}

.p-header__drawer-sublist {
  margin: 0;
  padding: 0 0 0.25rem;
  list-style: none;
}

.p-header__drawer-subitem {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.p-header__drawer-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-block-start: 2rem;
}

.p-header__drawer-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 5.5rem;
  padding: 0.75rem 1rem;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: opacity var(--duration) ease;
}
.p-header__drawer-cta:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 0.125rem;
}
@media (any-hover: hover) {
  .p-header__drawer-cta:hover {
    opacity: 0.92;
  }
}

.p-header__drawer-cta--materials {
  background-color: #1a1a1a;
}

.p-header__drawer-cta--reserve {
  border: 1px solid var(--color-white);
  background-color: transparent;
}

.p-header__drawer-cta-text {
  flex: 1 1 auto;
  text-align: start;
}

.p-header__drawer-cta-thumb {
  flex-shrink: 0;
  line-height: 0;
}

.p-header__drawer-cta-thumb img {
  display: block;
  width: 5.625rem;
  height: auto;
  object-fit: contain;
}

.p-header__drawer-cta--reserve .p-header__drawer-cta-thumb img {
  width: 6.25rem;
}

.p-history {
  padding-block: 1.5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-history {
    padding-block: 1.5rem 2.5rem;
  }
}

.p-history__inner {
  position: relative;
}
.p-history__inner::before {
  content: "";
  position: absolute;
  top: -1.875vw;
  right: 3.9583333333vw;
  z-index: -1;
  width: 39.375rem;
  height: auto;
  aspect-ratio: 630/931;
  background: url("../images/bg_history.webp") no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-history__inner::before {
    top: auto;
    bottom: 0vw;
    right: 7.4666666667vw;
    translate: 0 -50%;
    width: 84vw;
  }
}

.p-history__sub-title {
  position: relative;
  z-index: 4;
  margin-block-start: 3.75rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-history__sub-title {
    margin-block-start: 1.875rem;
    font-size: 1.5rem;
  }
}

.p-history__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.125rem;
  position: relative;
  z-index: 4;
  width: min(100%, 39rem);
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-history__content {
    gap: 1.125rem;
    margin-block-start: 1.875rem;
  }
}

.p-history__content-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-history__content-text {
    font-size: 0.9375rem;
  }
}

@media screen and (max-width: 767px) {
  .p-history__images {
    position: relative;
    margin-block-start: 5rem;
    margin-inline: auto;
    width: 100%;
    height: 101.3333333333vw;
  }
}

.p-history__images-item01 {
  position: absolute;
  top: -3rem;
  right: 1.375rem;
  z-index: 1;
  width: 9.75rem;
  height: auto;
  aspect-ratio: 1;
}
@media screen and (max-width: 1023px) {
  .p-history__images-item01 {
    top: -2.5vw;
    right: 1.1458333333vw;
    width: 8.125vw;
  }
}
@media screen and (max-width: 767px) {
  .p-history__images-item01 {
    top: -6.4vw;
    right: 4.5333333333vw;
    width: 20.8vw;
  }
}

.p-history__images-item02 {
  position: absolute;
  top: 5rem;
  right: 15.8125rem;
  z-index: 3;
  width: 15.625rem;
  height: auto;
  aspect-ratio: 1;
}
@media screen and (max-width: 1023px) {
  .p-history__images-item02 {
    top: 4.1666666667vw;
    right: 13.1770833333vw;
    width: 13.0208333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-history__images-item02 {
    top: 10.6666666667vw;
    right: 50.6666666667vw;
    width: 33.3333333333vw;
  }
}

.p-history__images-item03 {
  position: absolute;
  top: 15.625rem;
  right: 2.6041666667vw;
  z-index: 2;
  width: 21.875rem;
  height: auto;
  aspect-ratio: 350/500;
}
@media screen and (max-width: 1023px) {
  .p-history__images-item03 {
    top: 13.0208333333vw;
    right: 2.6041666667vw;
    width: 18.2291666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-history__images-item03 {
    top: 33.3333333333vw;
    right: 9.8666666667vw;
    width: 46.6666666667vw;
  }
}

.p-maintenance-assurance {
  margin-block-start: 2.125rem;
  padding-block: 5.875rem 5.625rem;
  padding-inline: 0;
  background-color: #f4f4f4;
}
@media screen and (max-width: 767px) {
  .p-maintenance-assurance {
    padding-block: 2.5rem;
  }
}

.p-maintenance-assurance__inner {
  display: flex;
  flex-direction: column;
  gap: 3.375rem;
  align-items: stretch;
  width: min(100%, 81.25rem);
}
@media screen and (max-width: 767px) {
  .p-maintenance-assurance__inner {
    gap: 2.5rem;
  }
}

.p-maintenance-assurance__title {
  margin: 0;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-maintenance-assurance__title {
    font-size: 1.5rem;
    text-align: left;
  }
}

.p-maintenance-assurance__title-accent {
  color: var(--color-primary);
}

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

.p-maintenance-assurance__media {
  width: 53.3333333333%;
  max-width: 100%;
  aspect-ratio: 640/450;
}
@media screen and (max-width: 767px) {
  .p-maintenance-assurance__media {
    flex: none;
    width: 100%;
  }
}

.p-maintenance-assurance__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.25rem;
}

.p-maintenance-assurance__body {
  flex: 1 1 0;
  min-width: 0;
}

.p-maintenance-assurance__lead {
  margin: 0;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-maintenance-assurance__lead {
    font-size: 0.9375rem;
  }
}

.p-maintenance-assurance__panel {
  margin-block-start: 1.5rem;
  padding: 1.375rem 1.5rem 1.5rem;
  border-radius: 0.25rem;
  background-color: var(--color-base);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-maintenance-assurance__panel {
    margin-block-start: 1.25rem;
    padding: 1.125rem 1rem 1.25rem;
  }
}

.p-maintenance-assurance__panel-title {
  margin: 0;
  color: var(--color-primary);
  font-feature-settings: "palt";
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-maintenance-assurance__panel-title {
    font-size: 1rem;
  }
}

.p-maintenance-assurance__panel-line {
  margin-block-start: 0.5rem;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-maintenance-assurance__panel-line {
    font-size: 0.9375rem;
  }
}

.p-maintenance-assurance__closing {
  margin: 0;
  margin-block-start: 1.25rem;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-maintenance-assurance__closing {
    margin-block-start: 1.25rem;
    font-size: 0.9375rem;
  }
}

.p-maintenance-assurance__timeline {
  margin-inline: calc(50% - 50vw);
  margin-block-start: 3.125rem;
  padding-inline: calc(50vw - 50%);
  background-color: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .p-maintenance-assurance__timeline {
    margin-block-start: 1.875rem;
  }
}
.p-maintenance-assurance__timeline + .p-maintenance-assurance__inner {
  margin-block-start: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-maintenance-assurance__timeline + .p-maintenance-assurance__inner {
    margin-block-start: 2.5rem;
  }
}

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

.p-maintenance-assurance__timeline-track {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-maintenance-assurance__timeline-track {
    gap: 0.5rem;
    flex-wrap: wrap;
  }
}

.p-maintenance-assurance__timeline-step {
  position: relative;
  display: flex;
  flex: 1;
  gap: 0.5rem;
  align-items: center;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-maintenance-assurance__timeline-step {
    flex: 0 0 5rem;
    min-width: 3.75rem;
  }
}
.p-maintenance-assurance__timeline-step:not(:first-child)::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: -1rem -50%;
  z-index: 1;
  flex-shrink: 0;
  width: 1.8125rem;
  height: auto;
  aspect-ratio: 29/38;
  background: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_2'%20data-name='レイヤー%202'%20xmlns='http://www.w3.org/2000/svg'%20width='28.08'%20height='38.01'%20viewBox='0%200%2028.08%2038.01'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%2315c;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='_背景'%20data-name='背景'%3e%3cpolygon%20class='cls-1'%20points='28.08%2019%2012.02%200%2012.02%205.58%200%205.58%200%2032.43%2012.02%2032.43%2012.02%2038.01%2028.08%2019'/%3e%3c/g%3e%3c/svg%3e") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-maintenance-assurance__timeline-step:not(:first-child)::after {
    translate: -0.5rem -50%;
    width: 0.875rem;
  }
}

.p-maintenance-assurance__timeline-step-label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  aspect-ratio: 1;
  padding: 0.625rem 0.875rem;
  border-radius: 0.375rem;
  background-color: var(--color-base);
  color: var(--color-primary);
  font-feature-settings: "palt";
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-maintenance-assurance__timeline-step-label {
    font-size: 0.75rem;
  }
}

.p-maintenance-assurance__formula {
  display: flex;
  gap: 1rem 2.3125rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-maintenance-assurance__formula {
    flex-direction: column;
    gap: 1rem 1rem;
  }
}

.p-maintenance-assurance__formula-item {
  flex: 1;
}

.p-maintenance-assurance__house {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 19.5625rem);
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-maintenance-assurance__house {
    width: min(100%, 15rem);
  }
}

.p-maintenance-assurance__house-frame {
  display: block;
  width: 100%;
  height: auto;
}

.p-maintenance-assurance__op {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block-start: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-maintenance-assurance__op {
    margin-block-start: 0;
  }
}

.p-maintenance-assurance__op-icon {
  display: block;
}

.p-maintenance-guarantee {
  padding-block: 1.25rem 4.5rem;
  padding-inline: 0;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-maintenance-guarantee {
    padding-block: 3.5rem 0;
  }
}

.p-maintenance-guarantee__inner {
  text-align: center;
}

.p-maintenance-guarantee__title {
  margin: 0;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1.57;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-maintenance-guarantee__title {
    font-size: 1.375rem;
    text-align: left;
  }
}

.p-maintenance-guarantee__accent {
  color: var(--color-primary);
}

.p-maintenance-guarantee__intro {
  margin: 0;
  margin-block-start: 1.25rem;
  margin-inline: auto;
  max-width: 57.5rem;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-maintenance-guarantee__intro {
    margin-block-start: 1rem;
    font-size: 0.8125rem;
    text-align: left;
  }
}

.p-maintenance-guarantee__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 1.3125rem;
  width: min(100%, 75rem);
  margin-inline: auto;
  margin-block-start: 2.25rem;
  text-align: start;
}
@media screen and (max-width: 767px) {
  .p-maintenance-guarantee__cards {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-block-start: 2.25rem;
  }
}

.p-maintenance-guarantee__card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-maintenance-guarantee__card {
    border-radius: 0.875rem;
  }
}

.p-maintenance-guarantee__media {
  position: relative;
  width: 100%;
  aspect-ratio: 386/200;
  overflow: hidden;
  background-color: var(--color-gray);
}

.p-maintenance-guarantee__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-maintenance-guarantee__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1 1 auto;
  padding: 1.25rem 1.25rem 1.5625rem;
  background-color: #f4f4f4;
}
@media screen and (max-width: 767px) {
  .p-maintenance-guarantee__body {
    padding: 1.375rem 1.125rem 1.5rem;
  }
}

.p-maintenance-guarantee__card-title {
  margin: 0;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-maintenance-guarantee__card-title {
    font-size: 1rem;
  }
}

.p-maintenance-guarantee__card-text {
  margin: 0;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.71;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-maintenance-guarantee__card-text {
    font-size: 0.8125rem;
  }
}

.p-maintenance-guarantee__note {
  margin: 0;
  margin-block-start: 1.625rem;
  margin-inline: auto;
  max-width: 60rem;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-maintenance-guarantee__note {
    margin-block-start: 1.25rem;
    font-size: 0.6875rem;
    text-align: left;
  }
}

.p-maintenance-reform {
  padding-block: 6.125rem 4rem;
  padding-inline: 0;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-maintenance-reform {
    padding-block: 2.5rem 4rem;
  }
}

.p-maintenance-reform__inner {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  width: min(100%, 81.25rem);
}
@media screen and (max-width: 767px) {
  .p-maintenance-reform__inner {
    gap: 1.875rem;
  }
}

.p-maintenance-reform__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16.875rem, 26.375rem);
  gap: 2.5rem 2.875rem;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .p-maintenance-reform__top {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.p-maintenance-reform__body {
  min-width: 0;
}

.p-maintenance-reform__title {
  margin-block-start: 0.625rem;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-maintenance-reform__title {
    font-size: 1.375rem;
    line-height: 1.5;
  }
}

.p-maintenance-reform__title-accent {
  color: var(--color-primary);
}

.p-maintenance-reform__intro {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-block-start: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-maintenance-reform__intro {
    gap: 1rem;
    margin-block-start: 1.375rem;
  }
}

.p-maintenance-reform__intro-text {
  margin: 0;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-maintenance-reform__intro-text {
    font-size: 0.9375rem;
  }
}

.p-maintenance-reform__subsection-head {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-maintenance-reform__subsection-head {
    margin-block-start: 2rem;
  }
}

.p-maintenance-reform__subsection-title {
  flex-shrink: 0;
  margin: 0;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-maintenance-reform__subsection-title {
    font-size: 1rem;
  }
}

.p-maintenance-reform__subsection-rule {
  flex: 1 1 auto;
  min-width: 1.5rem;
  height: 1px;
  background-color: #1e1e1e;
}

.p-maintenance-reform__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-block-start: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-maintenance-reform__features {
    gap: 1.375rem;
    margin-block-start: 1.5rem;
  }
}

.p-maintenance-reform__feature-title {
  margin: 0;
  color: var(--color-primary);
  font-feature-settings: "palt";
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.67;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-maintenance-reform__feature-title {
    font-size: 1rem;
  }
}

.p-maintenance-reform__feature-text {
  margin: 0;
  margin-block-start: 0.625rem;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-maintenance-reform__feature-text {
    margin-block-start: 0.5rem;
    font-size: 0.9375rem;
  }
}

.p-maintenance-reform__media {
  position: relative;
  width: 100%;
  max-width: 26.375rem;
  margin-inline: auto 0;
  aspect-ratio: 422/595;
  border-radius: 0.875rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-maintenance-reform__media {
    max-width: 22.5rem;
    margin-inline: auto;
    aspect-ratio: 3/2;
  }
}

.p-maintenance-reform__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-maintenance-reform__showcase {
  position: relative;
  padding: 0.125rem 2.25rem 1rem;
  border: 1px solid #e8e8ea;
  border-radius: 0.75rem;
  background-color: var(--color-base);
  box-shadow: 0 0.25rem 1.75rem rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 767px) {
  .p-maintenance-reform__showcase {
    padding: 0.75rem 1rem 1.75rem;
  }
}

.p-maintenance-reform__showcase-figure {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  width: min(100%, 54.25rem);
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-maintenance-reform__showcase-figure {
    gap: 0.75rem;
  }
}

.p-maintenance-reform__showcase-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

.p-maintenance-reform__showcase-caption {
  position: absolute;
  inset-inline: 0;
  bottom: 3.1875rem;
  align-self: stretch;
  margin: 0;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-maintenance-reform__showcase-caption {
    bottom: 1.25rem;
    font-size: 0.75rem;
  }
}

.p-materials {
  padding-block: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-materials {
    padding-block: 2.5rem;
  }
}

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

body.page-id-291 .p-materials__form-title,
body.page-id-291 .p-materials__form-list {
  display: none;
}

.p-materials__form-title {
  margin-block: 0 2.5rem;
  color: var(--color-text);
  text-align: center;
  font-size: max(1.25rem, 8px);
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-materials__form-title {
    margin-block-end: 1.75rem;
    font-size: max(1.125rem, 8px);
    font-weight: 700;
    line-height: 1.55;
  }
}

.p-materials__form-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-block-end: 3.5rem;
}
@media screen and (max-width: 1023px) {
  .p-materials__form-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-materials__form-list {
    gap: 0.5rem;
    margin-block-end: 2.5rem;
  }
}

.p-materials__form-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  border: 2px solid transparent;
  border-radius: 0.25rem;
  background-color: var(--color-gray);
  transition: border-color var(--duration) ease, box-shadow var(--duration) ease;
}
.p-materials__form-item:has(.is-documentCheck:checked) {
  border-color: var(--color-accent);
}
.p-materials__form-item:focus-within {
  outline: 2px solid var(--color-primary);
  outline-offset: 0.125rem;
}
@media screen and (max-width: 767px) {
  .p-materials__form-item {
    padding: 0.5rem;
  }
}

.p-materials__form-label {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
  cursor: pointer;
  text-align: center;
}

.p-materials__form-image {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  margin: 0;
  overflow: hidden;
  border-radius: 0.125rem;
  background-color: var(--color-white);
}

.p-materials__form-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.p-materials__form-item-title {
  flex: 1;
  margin: 0;
  color: var(--color-text);
  font-size: max(1rem, 8px);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-materials__form-item-title {
    font-size: max(0.875rem, 8px);
    font-weight: 700;
    line-height: 1.45;
  }
}

.p-materials__form-item-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin: 0;
  margin-block-start: auto;
  padding-block: 0.75rem;
  padding-inline: 1rem;
  border: 1px solid var(--color-border);
  border-radius: 0.375rem;
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: max(0.875rem, 8px);
  font-weight: 700;
  line-height: 1.2;
  transition: background-color var(--duration) ease, color var(--duration) ease, border-color var(--duration) ease;
}
.p-materials__form-item-check::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 0.375rem;
  height: 0.625rem;
  margin-block-end: 0.125rem;
  border-right: 2px solid var(--color-border);
  border-bottom: 2px solid var(--color-border);
  transform: rotate(45deg);
  transition: border-color var(--duration) ease;
}
.p-materials__form-item-check span:nth-child(2) {
  display: none;
}

.p-materials__form-item:has(.is-documentCheck:checked) .p-materials__form-item-check {
  border-color: transparent;
  background-color: var(--color-accent);
  color: var(--color-white);
}
.p-materials__form-item:has(.is-documentCheck:checked) .p-materials__form-item-check::before {
  border-right-color: var(--color-white);
  border-bottom-color: var(--color-white);
}
.p-materials__form-item:has(.is-documentCheck:checked) .p-materials__form-item-check span:nth-child(1) {
  display: none;
}
.p-materials__form-item:has(.is-documentCheck:checked) .p-materials__form-item-check span:nth-child(2) {
  display: inline;
}

@media (any-hover: hover) {
  .p-materials__form-item:not(:has(.is-documentCheck:checked)) .p-materials__form-label:hover .p-materials__form-item-check {
    border-color: var(--color-text);
  }
  .p-materials__form-item:not(:has(.is-documentCheck:checked)) .p-materials__form-label:hover .p-materials__form-item-check::before {
    border-right-color: var(--color-text);
    border-bottom-color: var(--color-text);
  }
}
.p-mv {
  position: relative;
  z-index: -1;
  width: 100%;
  height: 48.125vw;
}
@media screen and (max-width: 767px) {
  .p-mv {
    height: max(100svh, 28.125rem);
  }
}

.p-mv__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.p-mv__title-wrap {
  display: flex;
  align-items: center;
  position: absolute;
  inset: 0;
  z-index: 2;
  container-type: inline-size;
  width: 100%;
  padding-inline-start: 6.7708333333vw;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-mv__title-wrap {
    align-items: flex-start;
    padding-block: 3rem;
    padding-inline: 1.25rem;
  }
}

.p-mv__copy {
  display: flex;
  flex-direction: column;
  gap: 1.4583333333vw;
  width: 100%;
  max-width: 33.3333333333vw;
  padding-block-start: 4.2708333333vw;
  color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .p-mv__copy {
    gap: 5.3333333333vw;
    max-width: min(35rem, 100%);
    margin-inline: auto;
    padding-block-start: 21.3333333333vw;
  }
}

.p-mv__lead {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  padding-block: 0.4166666667vw 0.8333333333vw;
  border-block: 1px solid var(--color-white);
  font-size: 2.6041666667vw;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.17em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-mv__lead {
    font-size: min(6.6666666667vw, 2.5rem);
    padding-block: 1.0666666667vw 2.1333333333vw;
  }
}

.p-mv__headline {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  margin-block-start: 1.3541666667vw;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-mv__headline {
    margin-block-start: 4.2666666667vw;
  }
}

.p-mv__headline-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.0416666667vw;
}

.p-mv__headline-line {
  display: block;
  font-size: 4.6875vw;
  line-height: 1.15;
  letter-spacing: 0.04em;
  white-space: nowrap;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-mv__headline-line {
    font-size: min(12vw, 4.5rem);
  }
}

.p-mv__headline-line-small {
  display: inline-block;
  zoom: 0.7;
  transform-origin: bottom center;
}

.p-mv__headline-line--emphasis {
  font-size: 6.25vw;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .p-mv__headline-line--emphasis {
    font-size: min(16vw, 6rem);
  }
}

.p-mv__headline-line--middle {
  font-size: 4.6875vw;
}
@media screen and (max-width: 767px) {
  .p-mv__headline-line--middle {
    font-size: min(12vw, 4.5rem);
  }
}

.p-mv__mark {
  position: absolute;
  top: -1.4583333333vw;
  right: 0;
  z-index: 2;
  flex-shrink: 0;
  width: 11.9270833333vw;
  height: auto;
  aspect-ratio: 229/156;
}
@media screen and (max-width: 767px) {
  .p-mv__mark {
    width: min(30.5333333333vw, 10.75rem);
  }
}

.p-mv__spec-list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 0.9375vw;
  margin-block-start: 0.8333333333vw;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-mv__spec-list {
    gap: 2.1333333333vw;
    margin-block-start: 6.4vw;
  }
}

.p-mv__spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 25%;
  min-width: 0;
  aspect-ratio: 1/1;
  margin-inline: auto;
  border: 1px solid var(--color-white);
  border-radius: 50%;
  text-align: center;
}

.p-mv__spec-label {
  font-size: 0.78125vw;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-block-start: 1.6666666667vw;
}
@media screen and (max-width: 767px) {
  .p-mv__spec-label {
    font-size: min(2.6666666667vw, 1rem);
    margin-block-start: 2.6666666667vw;
  }
}

.p-mv__spec-value {
  font-size: 1.1458333333vw;
  font-weight: 500;
  line-height: 1.3;
  margin-block-start: 0.625vw;
}
@media screen and (max-width: 767px) {
  .p-mv__spec-value {
    font-size: min(3.7333333333vw, 1.375rem);
    margin-block-start: 2.1333333333vw;
  }
}

.p-mv__spec-value--long {
  margin-block-start: 0.2083333333vw;
}
@media screen and (max-width: 767px) {
  .p-mv__spec-value--long {
    margin-block-start: 0.5333333333vw;
  }
}

.p-mv__video {
  position: fixed;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.p-mv__video::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
.p-mv__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-news-list {
  padding-block: 3rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-news-list {
    padding-block: 2.5rem 3.75rem;
  }
}

.p-news-list__inner {
  display: flex;
  flex-direction: column;
  gap: calc(32 * var(--to-rem));
}

.p-news-list__inner > .p-news-list__title {
  margin-block-end: 0;
}

.p-news-list__container {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: var(--color-white);
}

.p-news-list__item {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.p-news-list__item:not(:last-child) {
  border-bottom: 1px solid var(--color-gray);
}
@media (any-hover: hover) {
  .p-news-list__item:hover {
    background-color: oklch(from var(--color-gray) l c h/50%);
  }
}

.p-news-list__card {
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--to-rem));
  padding: calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-news-list__card {
    gap: calc(12 * var(--to-rem));
    padding: calc(32 * var(--to-rem));
  }
}

.p-news-list__meta {
  display: flex;
  gap: calc(8 * var(--to-rem));
  align-items: center;
  color: var(--color-border-gray);
  font-size: calc(12 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-news-list__meta {
    font-size: calc(14 * var(--to-rem));
  }
}

.p-news-list__separator {
  color: var(--color-border-gray);
}

.p-news-list__content {
  display: flex;
  gap: calc(16 * var(--to-rem));
  justify-content: space-between;
  align-items: center;
}

.p-news-list__main {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: calc(8 * var(--to-rem));
}

.p-news-list__card .p-news-list__title {
  margin: 0;
  color: var(--color-text);
  font-size: calc(16 * var(--to-rem));
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-news-list__card .p-news-list__title {
    font-size: calc(18 * var(--to-rem));
  }
}

.p-news-list__excerpt {
  color: var(--color-border-gray);
  font-size: calc(13 * var(--to-rem));
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-news-list__excerpt {
    font-size: calc(14 * var(--to-rem));
  }
}

.p-news-list__arrow {
  flex-shrink: 0;
  width: calc(20 * var(--to-rem));
  height: calc(20 * var(--to-rem));
  color: var(--color-border-gray);
  transition: color 0.2s ease, transform 0.2s ease;
}
.p-news-list__arrow svg {
  width: 100%;
  height: 100%;
}

.p-news-list__item:hover .p-news-list__arrow {
  color: var(--color-text);
  transform: translateX(calc(4 * var(--to-rem)));
}

.p-news-list__empty {
  padding: calc(60 * var(--to-rem));
  border-radius: 10px;
  box-shadow: 0 1px 3px oklch(from var(--color-black) l c h/10%), 0 1px 2px oklch(from var(--color-black) l c h/10%);
  background-color: var(--color-white);
  color: var(--color-border-gray);
  font-size: calc(16 * var(--to-rem));
  text-align: center;
}

.p-news-list__empty p {
  margin: 0;
}

.p-news-list__pagination {
  --_pagination-bg: var(--color-white);
  --_pagination-text: var(--color-text);
  --_pagination-text-hover: var(--color-text);
  --_pagination-bg-hover: oklch(from var(--color-gray) l c h / 50%);
  --_pagination-active-bg: var(--color-black);
  --_pagination-active-text: var(--color-white);
  --_pagination-border: var(--color-gray);
  --_pagination-border-hover: var(--color-text);
}

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

.p-privacy-policy__intro-text {
  font-size: max(1rem, 8px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__intro-text {
    font-size: max(0.875rem, 8px);
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.04em;
  }
}

.p-privacy-policy__content {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__content {
    margin-block-start: 3rem;
    gap: 1.875rem;
  }
}

.p-privacy-policy__content-item {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.p-privacy-policy__item-title {
  font-size: max(1.25rem, 8px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}
.p-privacy-policy__item-title + * {
  margin-block-start: 0.5rem;
}

.p-privacy-policy__item-text {
  font-size: max(1rem, 8px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__item-text {
    font-size: max(0.875rem, 8px);
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-privacy-policy__num-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  counter-reset: item-list;
  list-style: none;
  margin-block-start: 1rem;
}

.p-privacy-policy__num-list-item {
  position: relative;
  padding-left: 1.5rem;
}
.p-privacy-policy__num-list-item::before {
  content: counter(item-list) ".";
  counter-increment: item-list;
  position: absolute;
  left: 0;
  font-weight: 500;
}

.p-privacy-policy__item-address {
  margin-block-start: 1rem;
}

.p-privacy-policy__button {
  margin-block-start: 3rem;
  text-align: center;
}

.p-reserve-conditions {
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-reserve-conditions {
    margin-block-start: 2.5rem;
  }
}

.p-reserve-conditions__panel {
  padding: 3rem 2.5rem 3.25rem;
  border: 1px solid #dcdde2;
  border-radius: 0.5rem;
  background-color: var(--color-gray);
  box-shadow: 0 0.125rem 0.5rem rgba(30, 30, 30, 0.04);
}
@media screen and (max-width: 767px) {
  .p-reserve-conditions__panel {
    padding: 2rem 1.25rem 2.25rem;
  }
}

.p-reserve-conditions__title {
  margin: 0;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-reserve-conditions__title {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}

.p-reserve-conditions__title-note {
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-reserve-conditions__title-note {
    display: inline-block;
    margin-block-start: 0.25rem;
    font-size: 0.9375rem;
  }
}

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

.p-reserve-conditions__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-reserve-conditions__item {
  position: relative;
  margin: 0;
  padding-inline-start: 1.125rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
.p-reserve-conditions__item::before {
  content: "●";
  position: absolute;
  top: 0.1875rem;
  left: 0;
  font-size: 0.625rem;
  line-height: inherit;
}
.p-reserve-conditions__item + .p-reserve-conditions__item {
  margin-block-start: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-reserve-conditions__item + .p-reserve-conditions__item {
    margin-block-start: 0.625rem;
  }
}

.p-reserve-cta {
  padding-block: 4rem 0;
}
@media screen and (max-width: 767px) {
  .p-reserve-cta {
    padding-block: 2.5rem 0;
  }
}

.p-reserve-cta__link {
  display: block;
  width: fit-content;
  margin-inline: auto;
  padding: 1.125rem 1.25rem;
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1rem;
  text-decoration: none;
  transition: background-color var(--duration) ease, border-color var(--duration) ease, color var(--duration) ease;
}
@media screen and (max-width: 767px) {
  .p-reserve-cta__link {
    padding: 0.875rem 0;
    font-size: 0.9375rem;
  }
}
@media (any-hover: hover) {
  .p-reserve-cta__link:hover {
    opacity: 1;
    background-color: var(--color-base);
    border-color: var(--color-primary);
    color: var(--color-primary);
  }
}
.p-reserve-cta__link:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 0.125rem;
}

.p-reserve-cta__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-inline: 2.5rem 4rem;
  gap: 0.5rem 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-reserve-cta__inner {
    padding-inline: 2.25rem 2.5rem;
  }
}

.p-reserve-cta__text {
  flex: 1 1 17.5rem;
  max-width: 100%;
  margin: 0;
  font-feature-settings: "palt";
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-reserve-cta__text {
    font-size: 1rem;
  }
}

.p-reserve-cta__text-strong {
  zoom: 1.3;
}

.p-reserve-cta__arrow {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  translate: 0 -50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ccircle cx='16' cy='16' r='16' fill='%23fff'/%3E%3Cpolyline points='15.24 12.53 18.76 16 15.24 19.47' fill='none' stroke='%2315c' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-reserve-cta__arrow {
    right: 0.5rem;
    width: 1.75rem;
    height: 1.75rem;
  }
}

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

.p-reserve-flow__title {
  margin: 0 0 2rem;
  color: var(--color-text, #333);
  font-feature-settings: "palt";
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-reserve-flow__title {
    margin-block-end: 1.5rem;
    font-size: 1.375rem;
  }
}

.p-reserve-flow__track {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  justify-content: center;
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-reserve-flow__track {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-block-start: 1.125rem;
  }
}

.p-reserve-flow__step {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  max-width: 15rem;
}
@media screen and (max-width: 767px) {
  .p-reserve-flow__step {
    flex: 0 1 auto;
    width: 100%;
    max-width: 17.5rem;
  }
}
.p-reserve-flow__step:not(:first-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  flex-shrink: 0;
  width: 1.8125rem;
  height: auto;
  translate: -1.0625rem -50%;
  aspect-ratio: 29/38;
  background: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_2'%20data-name='レイヤー%202'%20xmlns='http://www.w3.org/2000/svg'%20width='28.08'%20height='38.01'%20viewBox='0%200%2028.08%2038.01'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%2315c;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='_背景'%20data-name='背景'%3e%3cpolygon%20class='cls-1'%20points='28.08%2019%2012.02%200%2012.02%205.58%200%205.58%200%2032.43%2012.02%2032.43%2012.02%2038.01%2028.08%2019'/%3e%3c/g%3e%3c/svg%3e") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-reserve-flow__step:not(:first-child)::after {
    top: 0;
    left: 50%;
    translate: -50% calc(-50% - 0.75rem);
    rotate: 90deg;
    width: 1.375rem;
  }
}

.p-reserve-flow__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  min-height: 15rem;
  padding: 1.25rem 0.875rem 1.125rem;
  border: 1px solid #ccc;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-reserve-flow__card {
    min-height: 0;
    padding: 1.125rem 0.875rem 1rem;
  }
}

.p-reserve-flow__card-title {
  margin: 0;
  color: var(--color-text, #333);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-reserve-flow__card-title {
    font-size: 1rem;
  }
}

.p-reserve-flow__card-step-label {
  font-family: var(--ff-en);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.p-reserve-flow__card-title-ja {
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
}

.p-reserve-flow__card-step-label + .p-reserve-flow__card-title-ja {
  margin-inline-start: 0.2em;
}

.p-reserve-flow__card-icon {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  margin-block: 0.875rem;
}

.p-reserve-flow__card-icon-img {
  display: block;
  width: 3.75rem;
  height: 3.75rem;
  object-fit: contain;
}

.p-reserve-flow__card-body {
  width: 100%;
}

.p-reserve-flow__card-line {
  margin: 0;
  color: var(--color-text, #333);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
}
.p-reserve-flow__card-line + .p-reserve-flow__card-line {
  margin-block-start: 0.125rem;
}

.p-reserve-form {
  padding-block: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-reserve-form {
    padding-block: 3rem 3.5rem;
  }
}

.p-reserve-form__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-reserve-form__inner {
    gap: 1.125rem;
  }
}

.p-reserve-form__title {
  margin: 0;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-reserve-form__title {
    font-size: 1.375rem;
  }
}

.p-reserve-form__notice {
  width: 100%;
}

.p-reserve-form__notice-box {
  border: 3px solid #e9eeef;
  border-radius: 0.5rem;
  background-color: var(--color-base);
}

.p-reserve-form__notice-body {
  padding: 1.25rem 2.5rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-reserve-form__notice-body {
    padding: 1rem 1.25rem;
  }
}

.p-reserve-form__notice-list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: max(1rem, 8px);
  font-weight: 500;
  line-height: 1.63;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-reserve-form__notice-list {
    font-size: 0.875rem;
    line-height: 1.75;
  }
}

.p-reserve-form__notice-item {
  position: relative;
  margin: 0;
}
.p-reserve-form__notice-item::before {
  content: "※";
  display: inline-block;
  padding-inline-end: 0.5rem;
}

.p-reserve-merits {
  padding-block: 6.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-reserve-merits {
    padding-block: 3rem 0;
  }
}

.p-reserve-merits__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-reserve-merits__inner {
    gap: 1.125rem;
  }
}

.p-reserve-merits__head {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.p-reserve-merits__title {
  margin: 0;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: clamp(1.375rem, 2.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-reserve-merits__title {
    font-size: 1.25rem;
    line-height: 1.55;
  }
}

.p-reserve-merits__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: reserve-merit;
}
@media screen and (max-width: 1023px) {
  .p-reserve-merits__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .p-reserve-merits__list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-reserve-merits__item {
  counter-increment: reserve-merit;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  height: 100%;
  padding: 2rem 1.75rem;
  border: 1px solid #dcdde2;
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.5rem rgba(30, 30, 30, 0.04);
}
@media screen and (max-width: 767px) {
  .p-reserve-merits__item {
    gap: 1rem;
    padding: 1.75rem 1.25rem 2rem;
  }
}

.p-reserve-merits__num {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-reserve-merits__num {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.25rem;
  }
}
.p-reserve-merits__num::before {
  content: counter(reserve-merit);
  translate: 0 -2px;
}

.p-reserve-merits__item-title {
  margin: 0;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-reserve-merits__item-title {
    font-size: 1.0625rem;
    line-height: 1.6;
  }
}

.p-reserve-merits__item-title-line {
  display: block;
}

.p-reserve-merits__media {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 0.5rem;
  aspect-ratio: 318/168;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-reserve-merits__media {
    border-radius: 0.375rem;
  }
}

.p-reserve-merits__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.p-reserve-merits__body {
  width: 100%;
  margin: 0;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-reserve-merits__body {
    font-size: 0.875rem;
    line-height: 1.7;
  }
}

.p-reserve-showcase {
  padding-block: 3.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-reserve-showcase {
    padding-block: 2.5rem 0;
  }
}

.p-reserve-showcase__slider-bleed {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
}

.p-reserve-showcase__swiper-container {
  box-sizing: border-box;
  width: 100%;
  transition-timing-function: linear;
}

.p-reserve-showcase__swiper-container .swiper-wrapper {
  transition-timing-function: linear !important;
}

.p-reserve-showcase__swiper {
  overflow: visible;
}

.p-reserve-showcase__list {
  align-items: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-reserve-showcase__slide {
  width: 21.875rem;
  height: auto;
  aspect-ratio: 3/2;
}
@media screen and (max-width: 767px) {
  .p-reserve-showcase__slide {
    width: 16.25rem;
  }
}

.p-reserve-showcase__slide--01 {
  margin-block-end: 0;
}

.p-reserve-showcase__slide--02 {
  margin-block-end: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-reserve-showcase__slide--02 {
    margin-block-end: 2.25rem;
  }
}

.p-reserve-showcase__slide--03 {
  margin-block-end: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-reserve-showcase__slide--03 {
    margin-block-end: 0.875rem;
  }
}

.p-reserve-showcase__slide--04 {
  margin-block-end: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-reserve-showcase__slide--04 {
    margin-block-end: 1.75rem;
  }
}

.p-reserve-showcase__slide--05 {
  margin-block-end: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-reserve-showcase__slide--05 {
    margin-block-end: 1.25rem;
  }
}

.p-reserve-showcase__slide--06 {
  margin-block-end: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-reserve-showcase__slide--06 {
    margin-block-end: 1.5rem;
  }
}

.p-reserve-showcase__media {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-reserve-showcase__media {
    border-radius: 0.5rem;
  }
}

.p-reserve-showcase__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.p-reserve {
  padding-block: 4.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-reserve {
    padding-block: 3rem 0;
  }
}

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

.p-reserve__promo {
  overflow: hidden;
  border: 1px solid #dcdde2;
  border-radius: 0.5rem;
  background-color: var(--color-white);
  box-shadow: 0 0.125rem 0.75rem rgba(30, 30, 30, 0.06);
}

.p-reserve__promo-intro {
  padding: 3rem 2.5rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-reserve__promo-intro {
    padding: 2rem 1.25rem 1rem;
  }
}

.p-reserve__promo-lead {
  margin: 0 0 0.75rem;
  font-feature-settings: "palt";
  text-align: center;
  font-size: max(1rem, 8px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-reserve__promo-lead {
    margin-block-end: 0.625rem;
    font-size: max(0.875rem, 8px);
    font-weight: 700;
    line-height: 1.55;
  }
}

.p-reserve__promo-title {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  align-items: center;
  margin: 0;
  color: var(--color-text);
  font-feature-settings: "palt";
  text-align: center;
  font-size: clamp(1.625rem, 2.8vw, 2.25rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-reserve__promo-title {
    gap: 0.25rem;
    font-size: 1.375rem;
    line-height: 1.4;
  }
}
.p-reserve__promo-title--small {
  zoom: 0.7;
}

.p-reserve__promo-title-line {
  display: block;
}

.p-reserve__promo-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 1.375rem 2rem;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-reserve__promo-highlight {
    padding: 1.125rem 1.25rem;
    font-size: max(0.9375rem, 8px);
    font-weight: 700;
    line-height: 1.5;
  }
}

.p-reserve__promo-highlight-icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 56' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 52V36H28V56H8C5.75 56 4 54.25 4 52ZM36 56V36H60V52C60 54.25 58.125 56 56 56H36ZM60 16C62.125 16 64 17.875 64 20V30C64 31.125 63 32 62 32H2C0.875 32 0 31.125 0 30V20C0 17.875 1.75 16 4 16H9.5C8.625 14.5 8.25 12.875 8.25 11C8.25 5 13.125 0 19.25 0C24.375 0 27.75 2.75 32.125 8.625C36.375 2.75 39.75 0 45 0C51 0 56 5 56 11C56 12.875 55.5 14.5 54.625 16H60ZM19.125 16H30C23.5 6.5 21.625 6 19.125 6C16.375 6 14.125 8.25 14.125 11C14.125 13.875 16.375 16 19.125 16ZM45 16C47.75 16 50 13.875 50 11C50 8.25 47.75 6 45 6C42.375 6 40.625 6.5 34.125 16H45Z' fill='%23fff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-reserve__promo-highlight-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.p-reserve__promo-highlight-text {
  color: var(--color-white);
  font-feature-settings: "palt";
  font-size: max(1.25rem, 8px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.05em;
  text-align: center;
}
.p-reserve__promo-highlight-text--strong {
  zoom: 1.5;
}

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

.p-sample__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-sample__inner {
    gap: 1rem;
  }
}

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

.p-sample__button-wrap {
  width: min(15rem, 100%);
}
.p-sample__button-wrap > * {
  width: 100%;
}

.p-sample__divider {
  width: 100%;
  height: 1px;
  max-width: 37.5rem;
  margin: 0;
  border: 0;
  background-color: var(--color-gray);
}

.p-sample__bg {
  width: 100%;
  height: 25rem;
  max-width: 37.5rem;
  border-radius: 8px;
  background-image: url("../../images/bg_sample.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-sample__bg {
    height: 18.75rem;
  }
}

.p-sample__image {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 32rem;
  border-radius: 8px;
}

.p-sample__image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-sample p {
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-sample p {
    font-size: 0.875rem;
  }
}

.p-selling-list {
  padding-block: 3rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-selling-list {
    padding-block: 2.5rem 3.75rem;
  }
}

.p-selling-list__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .p-selling-list__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .p-selling-list__list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.p-selling-list__item {
  margin: 0;
}

.p-selling-list__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background-color: var(--color-base);
  color: var(--color-text);
  text-decoration: none;
}
.p-selling-list__card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 0.25rem;
}
@media (any-hover: hover) {
  .p-selling-list__card:hover {
    opacity: 1;
  }
  .p-selling-list__card:hover .p-selling-list__card-image img {
    transform: scale(1.04);
  }
}

.p-selling-list__card-visual {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0.5rem;
  background-color: #ddd;
}

.p-selling-list__card-image {
  display: block;
  aspect-ratio: 1;
}
.p-selling-list__card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.p-selling-list__card-shade {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 2.25rem 1.1979166667vw 1.1458333333vw;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.35) 55%, transparent 100%);
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  .p-selling-list__card-shade {
    padding: 2.25rem 1.4375rem 1.375rem;
  }
}

.p-selling-list__card-shade-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
}

.p-selling-list__card-badge {
  display: inline-block;
  min-width: 4.6875vw;
  padding: 0.0625rem 0.875rem;
  border: 1px solid var(--color-white);
  border-radius: 0.125rem;
  color: var(--color-white);
  font-size: 0.7291666667vw;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-selling-list__card-badge {
    min-width: 5.625rem;
    padding: 0.0625rem 0.875rem;
    font-size: 0.875rem;
  }
}

.p-selling-list__card-price-block {
  display: flex;
  align-items: flex-end;
  gap: 0.3125rem;
}

.p-selling-list__card-price-label {
  display: block;
  color: var(--color-white);
  font-size: 1.0416666667vw;
  font-weight: 900;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1023px) {
  .p-selling-list__card-price-label {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-selling-list__card-price-label {
    font-size: 0.875rem;
  }
}

.p-selling-list__card-price-value {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.125rem 0.375rem;
  margin: 0;
  color: var(--color-white);
  line-height: 1.1;
}

.p-selling-list__card-price-num {
  font-size: 2.6041666667vw;
  font-family: var(--ff-en);
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1023px) {
  .p-selling-list__card-price-num {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-selling-list__card-price-num {
    font-size: 2rem;
  }
}

.p-selling-list__card-price-unit {
  font-size: 1.0416666667vw;
  font-weight: 900;
}
@media screen and (max-width: 1023px) {
  .p-selling-list__card-price-unit {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-selling-list__card-price-unit {
    font-size: 0.875rem;
  }
}

.p-selling-list__card-more {
  position: absolute;
  right: 1.1458333333vw;
  bottom: 1.1458333333vw;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.375rem;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  .p-selling-list__card-more {
    right: 1.375rem;
    bottom: 1.375rem;
  }
}

.p-selling-list__card-more-icon {
  display: block;
  flex-shrink: 0;
  width: 1.71875vw;
  height: 1.71875vw;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='33' viewBox='0 0 33 33'%3E%3Ccircle cx='16.5' cy='16.5' r='16' fill='none' stroke='%23fff' stroke-miterlimit='10'/%3E%3Cpolyline points='15.74 13.03 19.26 16.5 15.74 19.97' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 1023px) {
  .p-selling-list__card-more-icon {
    width: 2.5vw;
    height: 2.5vw;
  }
}
@media screen and (max-width: 767px) {
  .p-selling-list__card-more-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.p-selling-list__card-more-text {
  color: var(--color-white);
  font-size: 0.6770833333vw;
  font-family: var(--ff-en);
  font-weight: 400;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1023px) {
  .p-selling-list__card-more-text {
    font-size: 1.0416666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-selling-list__card-more-text {
    font-size: 0.8125rem;
  }
}

.p-selling-list__card-heading {
  display: -webkit-box;
  margin: 1rem 0 0.875rem;
  padding-inline: 0.125rem;
  overflow: hidden;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.02em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .p-selling-list__card-heading {
    margin-block: 0.75rem 0.625rem;
    font-size: 0.875rem;
  }
}

.p-selling-list__card-meta {
  margin-block-start: auto;
  padding: 0.875rem 0.875rem 1rem;
  border-radius: 0.5rem;
  background-color: var(--color-gray);
}

.p-selling-list__meta-list {
  display: grid;
  gap: 0.125rem;
  margin: 0;
}

.p-selling-list__meta-list .p-selling-list__meta-desc {
  margin-inline-start: 0;
}

.p-selling-list__meta-item {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: 0.5rem;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.p-selling-list__meta-term {
  margin: 0;
  font-weight: 500;
}

.p-selling-list__meta-desc {
  margin: 0;
  color: var(--color-text);
  font-weight: 500;
}

.p-selling-list__pagination {
  margin-block-start: 3rem;
}

.p-selling-list__empty {
  padding: 3.75rem;
  background-color: var(--color-white);
  color: var(--color-border-gray);
  font-size: 1rem;
  text-align: center;
}

.p-selling-list__empty p {
  margin: 0;
}

.p-selling-single__inner {
  padding-block-end: 3rem;
}
@media screen and (max-width: 767px) {
  .p-selling-single__inner {
    padding-block-end: 2.5rem;
  }
}

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

.p-selling-single__badge {
  display: inline-block;
  margin: 0;
  padding: 0.25rem 0.875rem;
  border-radius: 0.125rem;
  border: 1px solid var(--color-text);
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.p-selling-single__title {
  margin: 1rem 0 0;
  padding-block-end: 1rem;
  border-block-end: 1px solid var(--color-text);
  font-feature-settings: "palt";
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-selling-single__title {
    margin-block-start: 0.75rem;
    font-size: 1.625rem;
  }
}

.p-selling-single__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.375rem 0.5rem;
  margin: 1.25rem 0 0;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-selling-single__price {
    justify-content: flex-start;
    margin-block-start: 1rem;
  }
}

.p-selling-single__price-label {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-selling-single__price-label {
    font-size: 1rem;
  }
}

.p-selling-single__price-num {
  font-family: var(--ff-en);
  font-size: 3.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-selling-single__price-num {
    font-size: 1.875rem;
  }
}

.p-selling-single__price-unit {
  font-size: 1.25rem;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .p-selling-single__price-unit {
    font-size: 1rem;
  }
}

.p-selling-single__gallery {
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-selling-single__gallery {
    margin-block-start: 1.75rem;
  }
}

.p-selling-single__swiper-main-wrap {
  position: relative;
}

.p-selling-single__swiper-main {
  overflow: hidden;
  border-radius: 0.5rem;
  background-color: #ddd;
}

.p-selling-single__slide-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  vertical-align: bottom;
}

.p-selling-single__figure {
  margin: 0;
}

.p-selling-single__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 2.75rem;
  height: 5.5rem;
  padding: 0;
  border: none;
  background-color: var(--color-white);
  transform: translateY(-50%);
  cursor: pointer;
  transition: opacity var(--duration);
}
.p-selling-single__nav::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.625rem;
  height: 0.625rem;
  border-block-start: 2px solid var(--color-text);
  border-inline-end: 2px solid var(--color-text);
}
.p-selling-single__nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
@media (any-hover: hover) {
  .p-selling-single__nav:hover {
    opacity: 0.9;
  }
}
@media screen and (max-width: 767px) {
  .p-selling-single__nav {
    width: 2.25rem;
    height: 4rem;
  }
}

.p-selling-single__nav--prev {
  left: 0;
  border-radius: 0 0.5rem 0.5rem 0;
}
.p-selling-single__nav--prev::after {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.p-selling-single__nav--next {
  right: 0;
  border-radius: 0.5rem 0 0 0.5rem;
}
.p-selling-single__nav--next::after {
  transform: translate(-65%, -50%) rotate(45deg);
}

.p-selling-single__swiper-thumbs {
  margin-block-start: 0.75rem;
  overflow: hidden;
}

.p-selling-single__thumb-slide {
  width: 7.5rem;
  height: auto;
  aspect-ratio: 3/2;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity var(--duration), outline var(--duration);
}
.p-selling-single__thumb-slide.swiper-slide-thumb-active {
  opacity: 1;
  border: 1px solid var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-selling-single__thumb-slide {
    width: 4.5rem;
    height: 4.5rem;
  }
}

.p-selling-single__thumb-image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.25rem;
  object-fit: cover;
}

.p-selling-single__features {
  margin-block-start: 3rem;
  padding: 1.75rem 1.5rem;
  border-radius: 0.5rem;
  background-color: var(--color-gray);
}
@media screen and (max-width: 767px) {
  .p-selling-single__features {
    margin-block-start: 2.25rem;
    padding: 1.25rem 1rem;
  }
}

.p-selling-single__features-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-selling-single__features-list {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }
}

.p-selling-single__features-item {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  margin: 0;
}

.p-selling-single__features-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-block-start: 0.125rem;
  background: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='28'%20height='28'%20viewBox='0%200%2028%2028'%20fill='none'%20aria-hidden='true'%3e%3ccircle%20cx='14'%20cy='14'%20r='14'%20fill='%23005bac'%20/%3e%3cpath%20d='M8%2014.5l4%204%208-9'%20stroke='%23fff'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%20/%3e%3c/svg%3e") no-repeat center/contain;
}

.p-selling-single__features-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-selling-single__features-text {
    font-size: 0.8125rem;
  }
}

.p-selling-single__spec {
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-selling-single__spec {
    margin-block-start: 2.5rem;
  }
}

.p-selling-single__spec-title {
  margin: 0 0 1.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-selling-single__spec-title {
    margin-block-end: 1.25rem;
    padding-block-end: 0.75rem;
    font-size: 1.375rem;
    text-align: start;
  }
}

.p-selling-single__table-wrap {
  overflow-x: auto;
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-selling-single__table-wrap {
    overflow-x: visible;
    margin-block-start: 1.125rem;
  }
}

.p-selling-single__table {
  width: 100%;
  min-width: 40rem;
  border-collapse: collapse;
  table-layout: fixed;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-selling-single__table {
    min-width: 100%;
  }
}

.p-selling-single__col-label {
  width: 15%;
}

.p-selling-single__col-value {
  width: 35%;
}

.p-selling-single__label {
  box-sizing: border-box;
  padding: 1rem;
  background-color: #f5f5f5;
  font-feature-settings: "palt";
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  border: 1px solid #ccc;
  vertical-align: top;
  font-size: max(0.875rem, 8px);
  font-weight: 700;
  letter-spacing: 0.05em;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-selling-single__label {
    padding: 0.75rem 0.625rem;
    text-align: start;
    border-block-start: 0;
    font-size: max(0.8125rem, 8px);
    font-weight: 700;
    letter-spacing: 0.05em;
  }
}

.p-selling-single__value {
  box-sizing: border-box;
  padding: 1rem;
  font-feature-settings: "palt";
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.65;
  text-align: start;
  vertical-align: top;
  border: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .p-selling-single__value {
    padding: 0.75rem 0.625rem;
    border-block-start: 0;
    font-size: max(0.8125rem, 8px);
    font-weight: 400;
    letter-spacing: 0.05em;
  }
}

@media screen and (max-width: 767px) {
  .p-selling-single__table,
  .p-selling-single__table tbody {
    display: block;
  }
  .p-selling-single__row {
    display: block;
  }
  .p-selling-single__row:first-child .p-selling-single__label {
    border-block-start: 1px solid #ccc;
  }
  .p-selling-single__row .p-selling-single__label,
  .p-selling-single__row .p-selling-single__value {
    display: block;
    width: 100%;
  }
}
.p-selling-single__traffic-list {
  margin: 0;
  padding-inline-start: 1.125rem;
  list-style: disc;
}

.p-selling-single__traffic-item {
  margin: 0;
  padding: 0;
}
.p-selling-single__traffic-item + .p-selling-single__traffic-item {
  margin-block-start: 0.25rem;
}

.p-selling-single__map {
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-selling-single__map {
    margin-block-start: 2.5rem;
  }
}

.p-selling-single__map-title {
  margin: 0 0 1.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-selling-single__map-title {
    margin-block-end: 1.25rem;
    font-size: 1.375rem;
    text-align: start;
  }
}

.p-selling-single__map-frame {
  overflow: hidden;
  margin-block-start: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #d9d9d9;
}
@media screen and (max-width: 767px) {
  .p-selling-single__map-frame {
    margin-block-start: 1.125rem;
  }
}
.p-selling-single__map-frame iframe {
  display: block;
  width: 100%;
  height: 30rem;
}
@media screen and (max-width: 767px) {
  .p-selling-single__map-frame iframe {
    height: 22.5rem;
  }
}

.p-selling-single__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  justify-content: center;
  margin-block-start: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-selling-single__actions {
    flex-direction: column;
    align-items: center;
    margin-block-start: 2.5rem;
  }
}
.p-selling-single__actions .c-button {
  width: min(100%, 22.5rem);
}

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

.p-single__inner {
  width: min(100%, 68.75rem);
}
@media screen and (max-width: 767px) {
  .p-single__inner {
    width: min(100%, 37.5rem);
  }
}

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

.p-single__subtitle {
  margin-block-end: 0.5rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
}
@media screen and (max-width: 767px) {
  .p-single__subtitle {
    margin-block-end: 0.75rem;
    font-size: 1rem;
  }
}

.p-single__title {
  margin-block-start: 0.75rem;
  color: var(--color-text);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single__title {
    font-size: 2rem;
  }
}

.p-single__summary {
  margin-block-start: 1.5rem;
  padding-block: 1rem;
  padding-inline: 1rem;
  border-radius: 8px;
  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: 2rem;
    padding-block: 1.25rem;
    padding-inline: 1.5rem;
    font-size: 1rem;
  }
}

.p-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-block-start: 1rem;
  color: var(--color-border-gray);
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-single__meta {
    margin-block-start: 1.5rem;
  }
}

.p-single__author {
  display: inline-block;
  color: var(--color-text);
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-single__author {
    font-size: 1rem;
  }
}

.p-single__date {
  display: inline-block;
}

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

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

/* コラムシングル：アーカイブ（p-column-list）とトンマナを揃える */
.p-single--column .p-single__header {
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-single--column .p-single__header {
    margin-block-start: 2.5rem;
  }
}

.p-single--column .p-single__meta {
  gap: 1.25rem;
  margin-block-start: 0;
  color: inherit;
}
@media screen and (max-width: 767px) {
  .p-single--column .p-single__meta {
    gap: 1rem;
  }
}

.p-single--column .p-single__date {
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--ff-en);
  color: #999999;
}
@media screen and (max-width: 767px) {
  .p-single--column .p-single__date {
    font-size: 0.875rem;
  }
}

.p-single--column .p-single__categories {
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-single--column .p-single__categories {
    gap: 0.75rem;
  }
}

.p-single--column .p-single__category {
  border: 1px solid var(--color-text);
  border-radius: 100vmax;
  background-color: transparent;
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 500;
}
.p-single--column .p-single__category::before {
  content: "#";
}

.p-single__thumbnail {
  overflow: hidden;
  margin-block-start: 2rem;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .p-single__thumbnail {
    margin-block-start: 3rem;
  }
}

.p-single__thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  transition: scale 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-single__thumbnail img {
    border-radius: 12px;
  }
}

.p-single__featured-image {
  overflow: hidden;
  margin-block-start: 2rem;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .p-single__featured-image {
    margin-block-start: 3rem;
  }
}

.p-single__featured-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-single__featured-image img {
    border-radius: 12px;
  }
}

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

.p-single__content h2,
.p-single h2 {
  position: relative;
  margin-block-start: 2.5rem;
  padding-inline: 1.25rem;
  padding-block-end: 1.84375rem;
  border-block-end: 1px solid #acacac;
  color: var(--color-text);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 2.18;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-single__content h2,
  .p-single h2 {
    padding-inline: 0.9375rem;
    padding-block-end: 0.9375rem;
    font-size: 1.25rem;
    line-height: 1.8;
  }
}
.p-single__content h2::before,
.p-single h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 15.625rem;
  height: 0.0625rem;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-single__content h2::before,
  .p-single h2::before {
    width: 6.25rem;
  }
}

.p-single__content h3,
.p-single h3 {
  position: relative;
  margin-block-start: 2.1875rem;
  font-size: max(1.25rem, 8px);
  font-weight: 700;
  line-height: 2.4;
  letter-spacing: 0.05em;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-single__content h3,
  .p-single h3 {
    font-size: max(1.125rem, 8px);
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.05em;
    padding-inline: 0.9375rem;
  }
}
.p-single__content h3::before,
.p-single h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 0.1875rem;
  height: 2.625rem;
  border-radius: 100vmax;
  background-color: var(--color-primary);
}

.p-single__content h4,
.p-single h4 {
  margin-block-start: 1.5rem;
  font-size: max(1.125rem, 8px);
  font-weight: 700;
  line-height: 2.67;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-single__content h4,
  .p-single h4 {
    font-size: max(1rem, 8px);
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-single__content p,
.p-single p {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-single__content p,
  .p-single p {
    margin-block-start: 0.5rem;
    font-size: 0.875rem;
  }
}

.p-single__content ul,
.p-single__content ol,
.p-single ul,
.p-single ol {
  margin-block-start: 1rem;
  padding-inline-start: 1.5rem;
  color: var(--color-text);
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-single__content ul,
  .p-single__content ol,
  .p-single ul,
  .p-single ol {
    margin-block-start: 1.25rem;
    padding-inline-start: 2rem;
  }
}

.p-single__content ul,
.p-single ul {
  list-style-type: disc;
}

.p-single__content ol,
.p-single ol {
  list-style-type: decimal;
}

.p-single__content li,
.p-single li {
  margin-block-start: 0.5rem;
  line-height: 1.8;
}

.p-single__content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  transition: opacity var(--duration);
}

.p-single__content a:hover {
  opacity: 0.8;
}

.p-single__content img {
  display: block;
  height: auto;
  max-width: 100%;
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-single__content img {
    margin-block-start: 2rem;
  }
}

.p-single__content figcaption {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-single__content figcaption {
    font-size: 0.75rem;
  }
}

.p-single__content blockquote,
.p-single blockquote {
  margin-block-start: 1.5rem;
  padding-block: 1rem;
  padding-inline: 1.5rem 1.5rem;
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .p-single__content blockquote,
  .p-single blockquote {
    margin-block-start: 2rem;
    padding-block: 1.25rem;
    padding-inline: 2rem 2rem;
  }
}

.p-single__content blockquote p,
.p-single blockquote p {
  margin-block-start: 0;
}

.p-single__content code,
.p-single code {
  padding-block: 0.125rem;
  padding-inline: 0.375rem;
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-primary);
  font-family: monospace;
  font-size: 0.875rem;
}

.p-single__content pre,
.p-single pre {
  overflow-x: auto;
  margin-block-start: 1.5rem;
  padding-block: 1rem;
  padding-inline: 1rem;
  border-radius: 8px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-family: monospace;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single__content pre,
  .p-single pre {
    padding-block: 1.5rem;
    padding-inline: 1.5rem;
  }
}

.p-single__content pre code,
.p-single pre code {
  padding-block: 0;
  padding-inline: 0;
  background-color: transparent;
}

.p-single__content table,
.p-single table {
  width: 100%;
  margin-block-start: 1.5rem;
  border: 0.0625rem solid var(--color-border-gray);
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .p-single__content table,
  .p-single table {
    margin-block-start: 2rem;
  }
}

.p-single__content th,
.p-single__content td,
.p-single th,
.p-single td {
  padding-block: 0.75rem;
  padding-inline: 1rem;
  line-height: 1.6;
  text-align: start;
}
@media screen and (max-width: 767px) {
  .p-single__content th,
  .p-single__content td,
  .p-single th,
  .p-single td {
    padding-block: 1rem;
    padding-inline: 1.25rem;
  }
}

.p-single__content th,
.p-single th {
  background-color: var(--color-gray);
  color: var(--color-text);
  font-weight: var(--fw-bold);
}

.p-single__content td,
.p-single td {
  color: var(--color-text);
}

.p-single__content hr,
.p-single hr {
  margin-block-start: 2rem;
  border: none;
  border-top: 0.0625rem solid var(--color-border-gray);
}
@media screen and (max-width: 767px) {
  .p-single__content hr,
  .p-single hr {
    margin-block-start: 3rem;
  }
}

.p-single__content strong,
.p-single strong {
  color: var(--color-text);
  font-weight: var(--fw-bold);
}

.p-single__content em,
.p-single em {
  font-style: italic;
}

.p-single__content .wp-block-buttons,
.p-single .wp-block-buttons {
  margin-block-start: 1.5rem;
  text-align: center;
}
.p-single__content .wp-block-buttons a,
.p-single .wp-block-buttons a {
  color: var(--color-white);
  text-decoration: none;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-single__content .wp-block-buttons a:hover,
  .p-single .wp-block-buttons a:hover {
    opacity: 0.8;
  }
}

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

.p-single__tag {
  display: inline-block;
  padding-block: 0.25rem;
  padding-inline: 0.75rem;
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-accent);
  font-size: 0.75rem;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-single__tag {
    font-size: 0.875rem;
  }
}

.p-single__tag:hover {
  opacity: 0.8;
}

.p-single__tag--custom {
  color: var(--color-text);
  cursor: default;
}

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

.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.625rem;
  }
}

.p-single__content-pagination-prev {
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-single__content-pagination-prev {
    text-align: center;
  }
}

.p-single__content-pagination-center {
  justify-self: center;
}
@media screen and (max-width: 767px) {
  .p-single__content-pagination-center .c-button02 {
    gap: 0.625rem;
  }
  .p-single__content-pagination-center .c-button02__text {
    font-size: max(0.75rem, 8px);
    font-weight: 500;
    line-height: 18.07;
    letter-spacing: 0.4em;
  }
  .p-single__content-pagination-center .c-button02__arrow {
    width: 0.625rem;
    height: 0.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-single__content-pagination-center {
    justify-self: center;
  }
}

.p-single__content-pagination-next {
  min-width: 0;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-single__content-pagination-next {
    text-align: center;
  }
}

.p-single__content-pagination-link {
  color: var(--color-text);
  text-decoration: none;
  font-size: max(1rem, 8px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-single__content-pagination-link {
    font-size: max(0.75rem, 8px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
}
@media (any-hover: hover) {
  .p-single__content-pagination-link:hover {
    opacity: 0.7;
  }
}

.p-single__content-pagination-button {
  padding: 0.625rem 1.4375rem;
  background-color: var(--color-base);
  border-radius: 100vmax;
  border: 1px solid var(--color-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3.9375rem;
  transition: background-color var(--duration) ease, color var(--duration) ease;
}
@media screen and (max-width: 767px) {
  .p-single__content-pagination-button {
    gap: 1.25rem;
    padding: 0.625rem 1rem;
  }
}
@media (hover: hover) {
  .p-single__content-pagination-button:hover .p-single__content-pagination-button-arrow {
    transform: translateX(0.625rem);
  }
}

.p-single__content-pagination-button-text {
  font-size: max(1rem, 8px);
  font-weight: 500;
  line-height: 1.63;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-single__content-pagination-button-text {
    font-size: max(0.875rem, 8px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
}

.p-single__content-pagination-button-arrow {
  width: 0.5rem;
  height: 0.875rem;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 14' width='8' height='14'%3E%3Cpath d='M1 13l6-6-6-6' fill='none' stroke='%23008ad2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: var(--color-primary);
  transition: transform var(--duration) ease, filter var(--duration) ease;
}

.p-single--post .p-single__related {
  margin-block-start: 3rem;
  padding-block-start: 2rem;
  border-top: 0.0625rem solid var(--color-border-gray);
}
@media screen and (max-width: 767px) {
  .p-single--post .p-single__related {
    margin-block-start: 4rem;
    padding-block-start: 3rem;
  }
}

.p-single--post .p-single__related-title {
  margin-block-end: 1.5rem;
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
}
@media screen and (max-width: 767px) {
  .p-single--post .p-single__related-title {
    margin-block-end: 2rem;
    align-items: start;
  }
}
@media (any-hover: hover) {
  .p-single--post .p-single__related-title:hover {
    opacity: 0.7;
  }
}

.p-single--post .p-single__related-thumbnail {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  background-color: var(--color-gray);
}
@media screen and (max-width: 600px) {
  .p-single--post .p-single__related-thumbnail {
    aspect-ratio: 4/3;
  }
}

.p-single--post .p-single__related-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.p-single--post .p-single__related-date {
  color: var(--color-text);
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-single--post .p-single__related-date {
    font-size: 0.875rem;
  }
}

.p-single--post .p-single__related-item-title {
  margin: 0;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single--post .p-single__related-item-title {
    font-size: 1rem;
  }
}

.p-selling-single__content-pagination.p-single__content-pagination {
  margin-block-start: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-selling-single__content-pagination.p-single__content-pagination {
    margin-block-start: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-selling-single__content-pagination.p-single__content-pagination .p-single__content-pagination-inner {
    padding-inline: 0;
  }
}

.p-solution {
  padding-block: 1.5625rem 0;
}
@media screen and (max-width: 767px) {
  .p-solution {
    padding-block: 0.75rem 0;
  }
}

.p-solution__slider-bleed {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  width: 100%;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
}
.p-solution__swiper-container {
  box-sizing: border-box;
  width: 100%;
  transition-timing-function: linear;
}

.p-solution__swiper-container .swiper-wrapper {
  transition-timing-function: linear !important;
}

.p-solution__swiper {
  overflow: visible;
  padding-block-end: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-solution__swiper {
    padding-block-end: 1.5625rem;
  }
}

.p-solution__list {
  align-items: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-solution__slide {
  height: auto;
}

.p-solution__slide--01 {
  width: 21.875rem;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .p-solution__slide--01 {
    width: 10.9375rem;
  }
}

.p-solution__slide--02 {
  width: 15.625rem;
  aspect-ratio: 250/350;
  margin-block-end: 4.3125rem;
}
@media screen and (max-width: 767px) {
  .p-solution__slide--02 {
    width: 7.8125rem;
    margin-block-end: 2.125rem;
  }
}

.p-solution__slide--03 {
  width: 21.875rem;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .p-solution__slide--03 {
    width: 10.9375rem;
  }
}

.p-solution__slide--04 {
  width: 21.875rem;
  aspect-ratio: 350/250;
  margin-block-end: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-solution__slide--04 {
    width: 10.9375rem;
    margin-block-end: 1.5625rem;
  }
}

.p-solution__slide--05 {
  width: 15.625rem;
  aspect-ratio: 550/350;
  margin-block-end: 4.3125rem;
}
@media screen and (max-width: 767px) {
  .p-solution__slide--05 {
    width: 7.8125rem;
    margin-block-end: 2.125rem;
  }
}

.p-solution__slide--06 {
  width: 17.5rem;
  aspect-ratio: 280/373;
  margin-block-end: -3.125rem;
}
@media screen and (max-width: 767px) {
  .p-solution__slide--06 {
    width: 8.75rem;
    margin-block-end: -1.5625rem;
  }
}

.p-solution__media {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 0.75rem;
}

.p-solution__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.p-solution__panel-wrap {
  margin-block-start: -16rem;
}
@media screen and (max-width: 767px) {
  .p-solution__panel-wrap {
    margin-block-start: -8rem;
  }
}

.p-solution__panel {
  position: relative;
  z-index: 1;
  margin-inline: auto;
  padding-block: 17.3125rem 4.25rem;
  padding-inline: 2.5rem;
  border-radius: 2rem;
  background-color: var(--color-gray);
}
@media screen and (max-width: 767px) {
  .p-solution__panel {
    margin-block-start: -3.5rem;
    padding-block: 8.625rem 3rem;
    padding-inline: 1.25rem;
    border-radius: 0.75rem;
  }
}

.p-solution__panel-inner {
  box-sizing: border-box;
  margin-inline: auto;
  text-align: center;
}

.p-solution__title {
  margin: 0;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-solution__title {
    font-size: 1.375rem;
  }
}

.p-solution__text {
  margin-block: 1.625rem 0;
  margin-inline: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-solution__text {
    margin-block-start: 1.25rem;
    font-size: 1rem;
    line-height: 1.7;
    text-align: left;
  }
}

.p-sp-bottom-nav {
  display: none;
}

@media screen and (max-width: 767px) {
  body.is-sp-bottom-nav-visible:not(.admin-bar) {
    padding-bottom: calc(3.5rem + env(safe-area-inset-bottom, 0px));
  }
  body.is-sp-bottom-nav-visible.admin-bar {
    padding-bottom: calc(3.5rem + env(safe-area-inset-bottom, 0px) + 32px) !important;
  }
}
@media screen and (max-width: 767px) and (max-width: 782px) {
  body.is-sp-bottom-nav-visible.admin-bar {
    padding-bottom: calc(3.5rem + env(safe-area-inset-bottom, 0px) + 46px) !important;
  }
}
@media screen and (max-width: 767px) {
  .p-sp-bottom-nav {
    display: block;
    position: fixed;
    z-index: 800;
    right: 0;
    bottom: 0;
    left: 0;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background-color: var(--color-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -0.25rem 1rem rgba(0, 0, 0, 0.12);
    transform: translateY(100%);
    pointer-events: none;
    transition: transform var(--duration) ease;
  }
  body.is-sp-bottom-nav-visible .p-sp-bottom-nav {
    transform: translateY(0);
    pointer-events: auto;
  }
  body.admin-bar .p-sp-bottom-nav {
    bottom: 32px;
  }
}
@media screen and (max-width: 767px) and (max-width: 782px) {
  body.admin-bar .p-sp-bottom-nav {
    bottom: 46px;
  }
}
.p-sp-bottom-nav__list {
  display: flex;
  max-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-sp-bottom-nav__item {
  flex: 1 1 0;
  margin: 0;
  min-width: 0;
}
.p-sp-bottom-nav__item:nth-child(n+2) {
  border-inline-start: 1px solid rgba(255, 255, 255, 0.12);
}

.p-sp-bottom-nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
  min-height: 3.5rem;
  padding: 0.375rem 0.25rem 0.5rem;
  background-color: transparent;
  color: var(--color-white);
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.p-sp-bottom-nav__link:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: -0.25rem;
}
@media (any-hover: hover) {
  .p-sp-bottom-nav__link:hover {
    color: rgba(255, 255, 255, 0.88);
  }
}

.p-sp-bottom-nav__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 1.75rem;
}

.p-sp-bottom-nav__icon {
  display: block;
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
  color: inherit;
}

.p-sp-bottom-nav__text {
  display: block;
}

.p-staff-list {
  padding-block: 3rem 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-staff-list {
    padding-block: 2.5rem 3.75rem;
  }
}

.p-staff-list__filter {
  margin-block-start: 0.5rem;
}

.p-staff-list__filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-staff-list__filter-link {
  display: inline-flex;
  padding: 0.5625rem 1.125rem;
  border: 0.0625rem solid color-mix(in srgb, var(--color-border) 80%, var(--color-white));
  border-radius: 100vmax;
  background: var(--color-white);
  color: color-mix(in srgb, var(--color-text) 78%, var(--color-white));
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: border-color var(--duration), color var(--duration), background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-staff-list__filter-link {
    padding: 0.4375rem 0.875rem;
    font-size: 0.75rem;
  }
}
@media (any-hover: hover) {
  .p-staff-list__filter-link:hover {
    opacity: 1;
    border-color: var(--color-primary);
    color: var(--color-primary);
  }
}

.p-staff-list__filter-link.is-active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}

.p-staff-list__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1366px) {
  .p-staff-list__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 1023px) {
  .p-staff-list__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .p-staff-list__grid {
    grid-template-columns: 1fr;
    gap: 1.125rem;
    margin-block-start: 1.5rem;
  }
}

.p-staff-list__item {
  margin: 0;
}

.p-staff-list__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
  background-color: var(--color-white);
  box-shadow: 0 0.125rem 0.625rem rgba(30, 30, 30, 0.1);
  color: var(--color-text);
  text-decoration: none;
  transition: box-shadow var(--duration) ease;
}
.p-staff-list__card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 0.25rem;
}
@media (any-hover: hover) {
  .p-staff-list__card:hover {
    opacity: 1;
  }
  .p-staff-list__card:hover .p-staff-list__photo img {
    transform: scale(1.04);
  }
}

.p-staff-list__photo {
  display: block;
  overflow: hidden;
  aspect-ratio: 420/380;
}
.p-staff-list__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.p-staff-list__body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.1875rem 1.25rem 2.8125rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-staff-list__body {
    padding: 0.875rem 2.5rem 1rem 0.75rem;
  }
}

.p-staff-list__dept {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  text-align: center;
}

.p-staff-list__name-en {
  margin-block-start: 0.625rem;
  padding-inline: 2.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--ff-en);
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-staff-list__name-en {
    margin-block-start: 0.5rem;
    padding-inline: 0;
    font-size: 1.125rem;
  }
}

.p-staff-list__dept + .p-staff-list__name-ja {
  margin-block-start: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-staff-list__dept + .p-staff-list__name-ja {
    margin-block-start: 0.5rem;
  }
}

.p-staff-list__name-ja {
  margin-block-start: 0rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-staff-list__name-ja {
    font-size: 0.8125rem;
  }
}

.p-staff-list__arrow {
  position: absolute;
  top: 50%;
  right: 1.875rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  background-color: var(--color-white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpolyline points='3.5 2 6.5 5 3.5 8' fill='none' stroke='%231155cc' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.625rem 0.625rem;
  transform: translateY(-50%);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-staff-list__arrow {
    right: 0.5rem;
    width: 1.75rem;
    height: 1.75rem;
  }
}

.p-staff-list__pagination {
  margin-block-start: 2.5rem;
}

.p-staff-list__empty {
  margin-block-start: 5rem;
  text-align: center;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-staff-list__empty {
    margin-block-start: 2.5rem;
    font-size: 0.875rem;
    line-height: 1.7;
  }
}

.p-staff-list__empty p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
}

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

.p-staff-single__hero {
  display: grid;
  grid-template-columns: minmax(0, 25rem) minmax(0, 1fr);
  gap: 2.5rem 3rem;
  align-items: start;
}
@media screen and (max-width: 1023px) {
  .p-staff-single__hero {
    grid-template-columns: minmax(0, 18.75rem) minmax(0, 1fr);
    gap: 2.5rem 1.5rem;
    align-items: start;
  }
}
@media screen and (max-width: 767px) {
  .p-staff-single__hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.p-staff-single__visual {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 25rem;
  height: 100%;
  border-radius: 0.5rem;
  background-color: #ccc;
}
@media screen and (max-width: 767px) {
  .p-staff-single__visual {
    max-width: 100%;
  }
}

.p-staff-single__visual--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-staff-single__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-staff-single__placeholder-label {
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  color: #6b7280;
  text-align: center;
}

.p-staff-single__aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}

.p-staff-single__identity {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
  margin-block-start: 1rem;
}
@media screen and (max-width: 767px) {
  .p-staff-single__identity {
    margin-block-start: 0.5rem;
  }
}

.p-staff-single__name-en {
  margin: 0;
  font-feature-settings: "palt";
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-staff-single__name-en {
    font-size: 1.625rem;
  }
}

.p-staff-single__name-ja {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.p-staff-single__identity:not(:has(.p-staff-single__name-en)) .p-staff-single__name-ja {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-staff-single__identity:not(:has(.p-staff-single__name-en)) .p-staff-single__name-ja {
    font-size: 1.375rem;
  }
}

.p-staff-single__panel {
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
  border: 1px solid #ddd;
  border-radius: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-staff-single__panel {
    padding: 1.5rem 1.25rem;
  }
}

.p-staff-single__dept-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin: 0;
  padding: 0.25rem 0.75rem;
  border-radius: 100vmax;
  border: 1px solid currentColor;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-text);
  text-decoration: none;
}

.p-staff-single__profile {
  margin: 0;
}

.p-staff-single__profile-title {
  margin-block-start: 1.5rem;
  padding-block-end: 0.5rem;
  border-block-end: 1px solid var(--color-primary);
  font-feature-settings: "palt";
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-staff-single__profile-title {
    margin-block-start: 1rem;
    padding-block-end: 0.5rem;
    font-size: 1rem;
  }
}

.p-staff-single__profile-row {
  display: grid;
  grid-template-columns: minmax(5rem, 10rem) 1fr;
  gap: 0.75rem 1.5rem;
  padding-block: 0.875rem;
  border-block-end: 1px solid #ddd;
}
@media screen and (max-width: 1023px) {
  .p-staff-single__profile-row {
    grid-template-columns: minmax(3.75rem, 7.5rem) 1fr;
    gap: 0.75rem 1.5rem;
    padding-block: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-staff-single__profile-row {
    grid-template-columns: 1fr;
    gap: 0.375rem;
    padding-block: 0.75rem;
  }
}
.p-staff-single__profile-row:last-child {
  padding-block-end: 0;
}

.p-staff-single__profile-row:last-child {
  border-block-end: 0;
}

.p-staff-single__profile-term {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.p-staff-single__profile-desc {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #111;
}
@media screen and (max-width: 767px) {
  .p-staff-single__profile-desc {
    font-size: 0.9375rem;
  }
}

.p-staff-single__block {
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-staff-single__block {
    margin-block-start: 2.5rem;
  }
}

.p-staff-single__block-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-staff-single__block-title {
    font-size: 1.5rem;
  }
}

.p-staff-single__block-title-icon {
  display: block;
  width: 2rem;
  height: 2rem;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: var(--color-text);
}

.p-staff-single__block-title-icon--philosophy {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 40.62 49.99' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='16.43' y1='22.08' x2='24.19' y2='22.08' stroke='%231e1e1e' fill='none'/%3E%3Cpolyline points='16.43 13.43 20.31 9.48 20.31 22.08' stroke='%231e1e1e' fill='none'/%3E%3Cpath d='M36.79,16.27c0,1.67-2.16,2.98-2.65,4.49-.51,1.56.45,3.89-.5,5.19-.96,1.31-3.47,1.12-4.78,2.08-1.3.95-1.89,3.4-3.45,3.91-1.51.49-3.42-1.14-5.09-1.14s-3.58,1.63-5.09,1.14c-1.56-.51-2.15-2.96-3.45-3.91-1.32-.96-3.83-.76-4.78-2.08-.95-1.3,0-3.63-.5-5.19-.49-1.51-2.65-2.82-2.65-4.49s2.16-2.98,2.65-4.49c.51-1.56-.45-3.89.5-5.19.96-1.32,3.47-1.12,4.78-2.08,1.3-.95,1.89-3.4,3.45-3.91,1.51-.49,3.42,1.14,5.09,1.14s3.58-1.63,5.09-1.14c1.56.51,2.15,2.96,3.45,3.91,1.32.96,3.83.76,4.78,2.08.95,1.3,0,3.63.5,5.19.49,1.51,2.65,2.82,2.65,4.49Z' stroke='%231e1e1e' fill='none'/%3E%3Ccircle cx='20.31' cy='16.27' r='10.66' stroke='%231e1e1e' fill='none'/%3E%3Cpath d='M32.4,26.8c-1.15.44-2.63.56-3.54,1.23-1.3.95-1.89,3.4-3.45,3.91-1.18.38-2.6-.52-3.96-.93l7.4,17.69,3.18-7.6,7.67,3.15-7.3-17.44Z' stroke='%231e1e1e' fill='none'/%3E%3Cpath d='M15.22,31.94c-1.56-.51-2.15-2.96-3.45-3.91-.91-.66-2.39-.78-3.54-1.23L.93,44.24l7.67-3.15,3.18,7.6,7.4-17.69c-1.36.42-2.78,1.31-3.96.93Z' stroke='%231e1e1e' fill='none'/%3E%3C/svg%3E");
}

.p-staff-single__block-title-icon--message {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 43 44.79' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23fff' stroke-linejoin='round'%3E%3Cpolygon points='42.5 .5 .5 24.63 13.9 30.88 42.5 .5'/%3E%3Cpolygon points='17.48 32.67 42.5 .5 35.35 39.82 17.48 32.67'/%3E%3Cpolyline points='13.9 30.88 17.48 44.29 17.48 32.67'/%3E%3Cline x1='22.84' y1='35.35' x2='17.48' y2='44.29'/%3E%3C/svg%3E");
}

.p-staff-single__block-title-text {
  flex: 1;
  min-width: 0;
}

.p-staff-single__text {
  margin-block-start: 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.875rem;
  letter-spacing: 0.05em;
}

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

.p-staff-single .p-single__content-pagination {
  margin-block-start: 4rem;
}
@media screen and (max-width: 767px) {
  .p-staff-single .p-single__content-pagination {
    margin-block-start: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-staff-single .p-single__content-pagination .p-single__content-pagination-inner {
    padding-inline: 0;
  }
}

.p-techno-freedom {
  padding-block: 5.5rem 5.375rem;
}
@media screen and (max-width: 767px) {
  .p-techno-freedom {
    padding-block: 4rem 5rem;
  }
}

.p-techno-freedom__header {
  text-align: center;
}

.p-techno-freedom__title {
  margin: 0;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: clamp(1.75rem, 2vw, 2.375rem);
  font-weight: 700;
  line-height: 1.58;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-techno-freedom__title {
    font-size: 1.375rem;
  }
}

.p-techno-freedom__title-strong {
  color: var(--color-primary);
}

.p-techno-freedom__lead {
  margin-block-start: 1.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-techno-freedom__lead {
    margin-block-start: 1.75rem;
  }
}

.p-techno-freedom__lead-text {
  margin: 0;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2.14;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-techno-freedom__lead-text {
    font-size: 0.875rem;
    line-height: 1.7;
    text-align: left;
  }
}

.p-techno-freedom__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 0;
  margin-block-start: 2.5rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .p-techno-freedom__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .p-techno-freedom__list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-block-start: 2.5rem;
  }
}

.p-techno-freedom__item {
  margin: 0;
}

.p-techno-freedom__card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.p-techno-freedom__media {
  overflow: hidden;
  background-color: #e8e8e8;
}

.p-techno-freedom__image {
  display: block;
  width: 100%;
  aspect-ratio: 285/200;
  object-fit: cover;
}

.p-techno-freedom__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 1rem 1.125rem 1.625rem;
  background-color: var(--color-gray);
}
@media screen and (max-width: 767px) {
  .p-techno-freedom__body {
    padding: 1.125rem 1rem 1.25rem;
  }
}

.p-techno-freedom__card-title {
  margin: 0;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-techno-freedom__card-title {
    font-size: 0.9375rem;
  }
}

.p-techno-freedom__text {
  margin: 0;
  margin-block-start: 0.75rem;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.71;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-techno-freedom__text {
    font-size: 0.8125rem;
    margin-block-start: 0.625rem;
  }
}

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

.p-techno-freedom__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 32.5rem);
  padding: 1rem 2.5rem 1rem 2rem;
  border: 1px solid var(--color-black);
  border-radius: 0.25rem;
  background-color: var(--color-white);
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  transition: background-color var(--duration) ease, color var(--duration) ease, border-color var(--duration) ease;
}
@media screen and (max-width: 767px) {
  .p-techno-freedom__button {
    padding: 0.875rem 2.25rem 0.875rem 1.75rem;
    font-size: 0.8125rem;
  }
}
.p-techno-freedom__button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 0.25rem;
}
@media (any-hover: hover) {
  .p-techno-freedom__button:hover {
    opacity: 1;
    border-color: var(--color-black);
    background-color: var(--color-black);
    color: var(--color-white);
  }
}

.p-thanks {
  margin-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-thanks {
    margin-block: 2.5rem;
  }
}

.p-thanks__title {
  font-size: max(1.5rem, 8px);
  font-weight: 700;
  line-height: 1.67;
  letter-spacing: 0em;
  text-align: center;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-thanks__title {
    font-size: max(1.25rem, 8px);
    font-weight: 700;
    line-height: 1.67;
    letter-spacing: 0em;
  }
}

.p-thanks__text {
  margin-block-start: 1.5rem;
  text-align: center;
  font-size: max(1rem, 8px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-thanks__text {
    font-size: max(0.875rem, 8px);
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-thanks__notice {
  margin-block-start: 2.5rem;
  padding: 2.5rem 2.25rem;
  border: 1px solid var(--color-text);
  background-color: var(--color-white);
  color: var(--color-text);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-thanks__notice {
    margin-block-end: 2.5rem;
    padding: 1.75rem 1.25rem;
  }
}

.p-thanks__notice-text {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-thanks__notice-text {
    font-size: 0.875rem;
    line-height: 1.85;
    text-align: left;
  }
}

.p-thanks__notice--reserve {
  text-align: center;
}

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

.p-thanks__notice-head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin: 0;
}

.p-thanks__notice-head-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
.p-thanks__notice-head-icon img {
  display: block;
  width: 1.375rem;
  height: 1.375rem;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-thanks__notice-head-icon img {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.p-thanks__notice--reserve .p-thanks__notice-title {
  margin: 0;
  font-size: max(1.125rem, 8px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-thanks__notice--reserve .p-thanks__notice-title {
    font-size: max(1.0625rem, 8px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.02em;
  }
}

.p-thanks__notice--reserve .p-thanks__notice-head + .p-thanks__notice-text {
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-thanks__notice--reserve .p-thanks__notice-head + .p-thanks__notice-text {
    margin-block-start: 1.25rem;
  }
}

.p-thanks__notice--reserve .p-thanks__notice-subtitle {
  margin: 1.5rem 0 0;
  color: var(--color-text);
  font-size: max(0.9375rem, 8px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-thanks__notice--reserve .p-thanks__notice-subtitle {
    margin-block-start: 1.25rem;
    font-size: max(0.875rem, 8px);
    font-weight: 500;
    line-height: 1.9;
    letter-spacing: 0.05em;
  }
}

.p-thanks__notice--reserve .p-thanks__notice-conditions-title {
  max-width: 55rem;
  margin: 1.75rem auto 0;
  text-align: left;
  font-size: max(1rem, 8px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-thanks__notice--reserve .p-thanks__notice-conditions-title {
    margin-block-start: 1.5rem;
    font-size: max(0.9375rem, 8px);
    font-weight: 700;
    line-height: 1.65;
    letter-spacing: 0.02em;
  }
}

.p-thanks__notice--reserve .p-thanks__notice-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 55rem;
  margin: 0.75rem auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.p-thanks__notice--reserve .p-thanks__notice-item {
  position: relative;
  margin: 0;
  padding-inline-start: 1.35em;
  color: var(--color-text);
  text-align: left;
  font-size: max(0.875rem, 8px);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.02em;
}
.p-thanks__notice--reserve .p-thanks__notice-item::before {
  content: "◎";
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-thanks__notice--reserve .p-thanks__notice-item {
    padding-inline-start: 1.3em;
    font-size: max(0.8125rem, 8px);
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.02em;
  }
}

.p-thanks__notice-tel {
  margin: 1.25rem 0 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-thanks__notice-tel {
    margin-block-start: 1rem;
  }
}

.p-thanks__notice-tel-row {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  max-width: 100%;
  text-align: start;
}
@media screen and (max-width: 767px) {
  .p-thanks__notice-tel-row {
    gap: 0.625rem 0.875rem;
  }
}

.p-thanks__notice-tel-icon {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  margin-block-start: 0.125rem;
}
.p-thanks__notice-tel-icon img {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-thanks__notice-tel-icon img {
    width: 1rem;
    height: 1rem;
  }
}

.p-thanks__notice-tel-body {
  flex: 1;
  min-width: 0;
  max-width: 100%;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-thanks__notice-tel-body {
    font-size: 0.875rem;
  }
}

.p-thanks__notice-tel-label {
  font-weight: 700;
}

.p-thanks__notice-tel-link {
  color: var(--color-text);
  text-decoration: none;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-thanks__notice-tel-link:hover {
    opacity: 0.75;
  }
}

.p-thanks__notice-tel-hours {
  font-weight: 500;
  white-space: normal;
}

.p-thanks__button {
  margin-block-start: 5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-thanks__button {
    margin-block-start: 2.5rem;
  }
}

.p-top-about {
  position: relative;
  overflow: clip;
  padding-block: 6.25rem 5rem;
  background-color: var(--color-base);
}
@media screen and (max-width: 1023px) {
  .p-top-about {
    padding-block: 3.75rem 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about {
    padding-block: 2.5rem 0rem;
  }
}

.p-top-about__map-wrap {
  position: absolute;
  top: 50%;
  right: 11.875rem;
  z-index: 1;
  width: 32.8125vw;
  max-height: 90%;
  translate: 0 calc(-50% - 0.375rem);
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  .p-top-about__map-wrap {
    width: min(39.375rem, 100%);
    right: 3.75rem;
    translate: 0 calc(-50% - 12.5rem);
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__map-wrap {
    top: 35%;
    width: min(70vw, 22.5rem);
    opacity: 0.85;
  }
}

.p-top-about__map {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.p-top-about__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 121.875rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 1023px) {
  .p-top-about__inner {
    width: min(100%, 50rem);
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__inner {
    padding-inline: 1.25rem;
  }
}

.p-top-about__layout {
  display: grid;
  grid-template-columns: minmax(8.125vw, 1.1fr) minmax(18.2291666667vw, 27.1875vw) minmax(8.125vw, 1.1fr);
  align-items: flex-start;
  gap: 2rem 1.5rem;
}
@media screen and (max-width: 1023px) {
  .p-top-about__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.p-top-about__photos {
  position: relative;
  min-height: 42.2916666667vw;
}
@media screen and (max-width: 1023px) {
  .p-top-about__photos {
    min-height: 28.75rem;
    max-width: 25rem;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__photos {
    min-height: 18.75rem;
  }
}

@media screen and (max-width: 1023px) {
  .p-top-about__photos--left {
    order: 2;
    max-width: none;
    margin-inline: calc(-50vw + 50%);
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__photos--left {
    width: min(100%, 25rem);
    margin-inline: auto;
  }
}

@media screen and (max-width: 1023px) {
  .p-top-about__photos--right {
    order: 3;
    max-width: none;
    margin-inline: calc(-50vw + 50%);
    margin-block-start: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__photos--right {
    width: min(100%, 25rem);
    margin-inline: auto;
    margin-block-start: 0;
  }
}

.p-top-about__figure {
  margin: 0;
  border-radius: 0.75rem;
  overflow: hidden;
}
.p-top-about__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top-about__figure--01 {
  position: absolute;
  top: 0.625vw;
  right: 2.2916666667vw;
  z-index: 2;
  width: 8.125vw;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1023px) {
  .p-top-about__figure--01 {
    top: 0.625vw;
    right: 6.25vw;
    width: 9.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__figure--01 {
    right: 1.875rem;
    width: 4.875rem;
  }
}

.p-top-about__figure--02 {
  position: absolute;
  top: 8.2291666667vw;
  left: 1.0416666667vw;
  z-index: 1;
  width: 18.2291666667vw;
  aspect-ratio: 7/10;
}
@media screen and (max-width: 1023px) {
  .p-top-about__figure--02 {
    top: 15.1041666667vw;
    left: 11.9791666667vw;
    width: 16.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__figure--02 {
    top: 5rem;
    left: 0rem;
    width: 10.9375rem;
  }
}

.p-top-about__figure--03 {
  position: absolute;
  bottom: 2.8645833333vw;
  right: 4.1666666667vw;
  z-index: 3;
  width: 13.0208333333vw;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1023px) {
  .p-top-about__figure--03 {
    bottom: 2.8645833333vw;
    right: 15.625vw;
    width: 15.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__figure--03 {
    bottom: 3.75rem;
    right: 0rem;
    width: 7.8125rem;
  }
}

.p-top-about__figure--04 {
  position: absolute;
  top: 7.875rem;
  left: 4.4791666667vw;
  z-index: 2;
  width: 6.0416666667vw;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1023px) {
  .p-top-about__figure--04 {
    top: 6.5625vw;
    left: 4.4791666667vw;
    width: 7.25rem;
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__figure--04 {
    top: 2.5rem;
    left: 0.625rem;
    width: 3.625rem;
  }
}

.p-top-about__figure--05 {
  position: absolute;
  top: 2.625rem;
  right: -0.15625vw;
  z-index: 2;
  width: 18.2291666667vw;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1023px) {
  .p-top-about__figure--05 {
    top: -2.1875vw;
    right: 0.5208333333vw;
    width: 21.875rem;
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__figure--05 {
    top: -2.5rem;
    right: 0rem;
    width: 11.875rem;
  }
}

.p-top-about__figure--06 {
  position: absolute;
  bottom: 1.5rem;
  right: 11.4583333333vw;
  z-index: 3;
  width: 13.0208333333vw;
  height: auto;
  aspect-ratio: 5/7;
}
@media screen and (max-width: 1023px) {
  .p-top-about__figure--06 {
    bottom: 0vw;
    right: 36.4583333333vw;
    width: 15.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__figure--06 {
    right: 10rem;
    width: 7.8125rem;
  }
}

.p-top-about__content {
  margin-block-start: 5.375rem;
}
@media screen and (max-width: 1023px) {
  .p-top-about__content {
    order: 1;
    margin-block-start: 0;
  }
}

.p-top-about__title {
  width: 26.5104166667vw;
  height: 9.5833333333vw;
  margin-inline: auto;
}
@media screen and (max-width: 1023px) {
  .p-top-about__title {
    width: min(31.8125rem, 100%);
    height: auto;
  }
}

.p-top-about__catch {
  margin-block-start: 1.4583333333vw;
  margin-inline: 0;
  color: var(--color-black);
  font-size: 3.28125vw;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-align: start;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1023px) {
  .p-top-about__catch {
    width: min(31.8125rem, 100%);
    margin-inline: auto;
    font-size: 3.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__catch {
    margin-block: 1.25rem 1.5rem;
    font-size: min(10vw, 2.875rem);
  }
}

.p-top-about__catch--small {
  zoom: 0.8;
}

.p-top-about__body {
  max-width: 29.1666666667vw;
  margin-inline: auto;
  margin-block-start: 1.6666666667vw;
  text-align: left;
}
@media screen and (max-width: 1023px) {
  .p-top-about__body {
    max-width: min(31.8125rem, 100%);
    margin-inline: auto;
    margin-block-start: 2rem;
  }
}

.p-top-about__text {
  margin: 0;
  font-feature-settings: "palt";
  color: var(--color-text);
  font-size: 0.9375vw;
  font-weight: 500;
  line-height: 2.27;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1023px) {
  .p-top-about__text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__text {
    font-size: 0.9375rem;
  }
}
.p-top-about__text + .p-top-about__text {
  margin-block-start: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__text + .p-top-about__text {
    margin-block-start: 1.5rem;
  }
}

.p-top-banner {
  position: relative;
  padding-block: 3.75rem;
  background-color: #f4f4f4;
}
@media screen and (max-width: 767px) {
  .p-top-banner {
    padding-block: 1.875rem;
  }
}

.p-top-banner__swiper-container {
  position: relative;
}

.p-top-banner__swiper {
  max-width: calc(100% - 7.2916666667vw);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-banner__swiper {
    max-width: 100%;
  }
}

.p-top-banner__swiper-container--static .p-top-banner__swiper {
  max-width: min(100%, 75rem);
  margin-inline: auto;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .p-top-banner__swiper-container--static .p-top-banner__swiper {
    max-width: 35rem;
    padding-inline: 1.25rem;
    margin-inline: auto;
  }
}

.p-top-banner__swiper-wrapper--static {
  display: grid;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  margin: 0;
  transform: none !important;
}
@media screen and (max-width: 767px) {
  .p-top-banner__swiper-wrapper--static {
    gap: 1rem;
  }
}

.p-top-banner__swiper-container--count-1 .p-top-banner__swiper-wrapper--static {
  grid-template-columns: minmax(0, min(27.9166666667vw, 33.5rem));
}
@media screen and (max-width: 767px) {
  .p-top-banner__swiper-container--count-1 .p-top-banner__swiper-wrapper--static {
    grid-template-columns: minmax(0, 100%);
  }
}

.p-top-banner__swiper-container--count-2 .p-top-banner__swiper-wrapper--static {
  grid-template-columns: repeat(2, minmax(0, min(27.9166666667vw, 33.5rem)));
}
@media screen and (max-width: 767px) {
  .p-top-banner__swiper-container--count-2 .p-top-banner__swiper-wrapper--static {
    grid-template-columns: minmax(0, 100%);
  }
}

.p-top-banner__swiper-wrapper--static .p-top-banner__swiper-slide {
  width: auto;
  flex-basis: auto;
}
@media screen and (max-width: 767px) {
  .p-top-banner__swiper-wrapper--static .p-top-banner__swiper-slide {
    width: 100%;
  }
}

.p-top-banner__swiper-slide {
  flex-basis: min(27.9166666667vw, 33.5rem);
  flex-grow: 0;
}
@media screen and (max-width: 767px) {
  .p-top-banner__swiper-slide {
    flex-basis: 64vw;
  }
}

.p-top-banner__swiper-slide a {
  display: block;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

.p-top-banner__swiper-slide img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.p-top-banner__swiper-button-prev,
.p-top-banner__swiper-button-next {
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  width: 3.125vw;
  height: 7.8125vw;
  border: none;
  background-color: var(--color-white);
  color: var(--color-text);
  padding: 0;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top-banner__swiper-button-prev,
  .p-top-banner__swiper-button-next {
    width: 8vw;
    height: 18.6666666667vw;
  }
}
.p-top-banner__swiper-button-prev::after,
.p-top-banner__swiper-button-next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 2px solid currentcolor;
  border-right: 2px solid currentcolor;
}
@media screen and (max-width: 767px) {
  .p-top-banner__swiper-button-prev::after,
  .p-top-banner__swiper-button-next::after {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.p-top-banner__swiper-button-prev.swiper-button-disabled,
.p-top-banner__swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
@media (any-hover: hover) {
  .p-top-banner__swiper-button-prev:hover,
  .p-top-banner__swiper-button-next:hover {
    opacity: 0.9;
  }
}

.p-top-banner__swiper-button-prev {
  left: 0;
  border-radius: 0 0.75rem 0.75rem 0;
}
.p-top-banner__swiper-button-prev::after {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.p-top-banner__swiper-button-next {
  right: 0;
  border-radius: 0.75rem 0 0 0.75rem;
}
.p-top-banner__swiper-button-next::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.p-top-column {
  padding-block: 2.5rem 6.5625rem;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-top-column {
    padding-block: 3rem 3.5rem;
  }
}

.p-top-column__title {
  margin: 0;
}

.p-top-column__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2.3125rem;
  margin-block-start: 2.5rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1366px) {
  .p-top-column__list {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-top-column__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-column__list {
    grid-template-columns: 1fr;
    margin-block-start: 1.75rem;
  }
  .p-top-column__list .p-top-column__item:nth-child(n+4) {
    display: none;
  }
}

.p-top-column__empty {
  margin-block-start: 2.5rem;
  padding-block: 0.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-top-column__empty {
    margin-block-start: 1.75rem;
  }
}

.p-top-column__empty-text {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-top-column__empty-text {
    font-size: 0.9375rem;
  }
}

.p-top-column__item {
  margin: 0;
}

.p-top-column__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background-color: var(--color-base);
  color: var(--color-text);
  text-decoration: none;
}
.p-top-column__card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 0.25rem;
}
@media (any-hover: hover) {
  .p-top-column__card:hover .p-top-column__image img {
    transform: scale(1.06);
  }
}

.p-top-column__visual {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0.5rem;
  background-color: #ddd;
}

.p-top-column__image {
  display: block;
  aspect-ratio: 3/2;
}
.p-top-column__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.p-top-column__shade {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 45%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.2) 65%, transparent 100%);
  pointer-events: none;
}

.p-top-column__more {
  position: absolute;
  right: 0.875rem;
  bottom: 0.875rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  pointer-events: none;
}

.p-top-column__more-icon {
  display: block;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='33' viewBox='0 0 33 33'%3E%3Ccircle cx='16.5' cy='16.5' r='16' fill='none' stroke='%23fff' stroke-miterlimit='10'/%3E%3Cpolyline points='15.74 13.03 19.26 16.5 15.74 19.97' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-top-column__more-text {
  color: var(--color-white);
  font-size: 0.875rem;
  font-family: var(--ff-en);
  font-weight: 400;
  letter-spacing: 0.06em;
}

.p-top-column__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-block-start: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-column__meta {
    gap: 0.25rem;
    margin-block-start: 0.75rem;
  }
}

.p-top-column__date {
  font-size: 0.9375rem;
  font-weight: 500;
  font-family: var(--ff-en);
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.p-top-column__heading {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.04em;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .p-top-column__heading {
    font-size: 0.875rem;
  }
}

.p-top-column__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 0.625rem;
}

.p-top-column__tag {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

.p-top-column__button-wrap {
  margin-block-start: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-column__button-wrap {
    margin-block-start: 2rem;
  }
}

.p-top-estate {
  padding-block: 7.375rem 6.625rem;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-top-estate {
    padding-block: 2.5rem 1.25rem;
  }
}

.p-top-estate__title {
  margin: 0;
}

.p-top-estate__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem 1.125rem;
  margin: 1.875rem 0 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .p-top-estate__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .p-top-estate__list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-block-start: 1.75rem;
  }
  .p-top-estate__list .p-top-estate__item:nth-child(n+4) {
    display: none;
  }
}

.p-top-estate__empty {
  margin-block-start: 1.875rem;
  padding-block: 0.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-top-estate__empty {
    margin-block-start: 1.75rem;
  }
}

.p-top-estate__empty-text {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-top-estate__empty-text {
    font-size: 0.9375rem;
  }
}

.p-top-estate__item {
  margin: 0;
}

.p-top-estate__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background-color: var(--color-base);
  color: var(--color-text);
  text-decoration: none;
}
.p-top-estate__card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 0.25rem;
}
@media (any-hover: hover) {
  .p-top-estate__card:hover {
    opacity: 1;
  }
  .p-top-estate__card:hover .p-top-estate__card-image img {
    transform: scale(1.04);
  }
}

.p-top-estate__card-visual {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0.5rem;
  background-color: #ddd;
}

.p-top-estate__card-image {
  display: block;
  aspect-ratio: 1;
}
.p-top-estate__card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.p-top-estate__card-shade {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 2.25rem 1.1979166667vw 1.1458333333vw;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.35) 55%, transparent 100%);
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  .p-top-estate__card-shade {
    padding: 2.25rem 1.4375rem 1.375rem;
  }
}

.p-top-estate__card-shade-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
}

.p-top-estate__card-badge {
  display: inline-block;
  min-width: 4.6875vw;
  padding: 0.0625rem 0.875rem;
  border: 1px solid var(--color-white);
  border-radius: 0.125rem;
  color: var(--color-white);
  font-size: 0.7291666667vw;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-top-estate__card-badge {
    min-width: 5.625rem;
    padding: 0.0625rem 0.875rem;
    font-size: 0.875rem;
  }
}

.p-top-estate__card-price-block {
  display: flex;
  align-items: flex-end;
  gap: 0.3125rem;
}

.p-top-estate__card-price-label {
  display: block;
  color: var(--color-white);
  font-size: 1.0416666667vw;
  font-weight: 900;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1023px) {
  .p-top-estate__card-price-label {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-estate__card-price-label {
    font-size: 0.875rem;
  }
}

.p-top-estate__card-price-value {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.125rem 0.375rem;
  margin: 0;
  color: var(--color-white);
  line-height: 1.1;
}

.p-top-estate__card-price-num {
  font-size: 2.6041666667vw;
  font-family: var(--ff-en);
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1023px) {
  .p-top-estate__card-price-num {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-estate__card-price-num {
    font-size: 2rem;
  }
}

.p-top-estate__card-price-unit {
  font-size: 1.0416666667vw;
  font-weight: 900;
}
@media screen and (max-width: 1023px) {
  .p-top-estate__card-price-unit {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-estate__card-price-unit {
    font-size: 0.875rem;
  }
}

.p-top-estate__card-more {
  position: absolute;
  right: 1.1458333333vw;
  bottom: 1.1458333333vw;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.375rem;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  .p-top-estate__card-more {
    right: 1.375rem;
    bottom: 1.375rem;
  }
}

.p-top-estate__card-more-icon {
  display: block;
  flex-shrink: 0;
  width: 1.71875vw;
  height: 1.71875vw;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='33' viewBox='0 0 33 33'%3E%3Ccircle cx='16.5' cy='16.5' r='16' fill='none' stroke='%23fff' stroke-miterlimit='10'/%3E%3Cpolyline points='15.74 13.03 19.26 16.5 15.74 19.97' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 1023px) {
  .p-top-estate__card-more-icon {
    width: 2.5vw;
    height: 2.5vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-estate__card-more-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.p-top-estate__card-more-text {
  color: var(--color-white);
  font-size: 0.6770833333vw;
  font-family: var(--ff-en);
  font-weight: 400;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1023px) {
  .p-top-estate__card-more-text {
    font-size: 1.0416666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-estate__card-more-text {
    font-size: 0.8125rem;
  }
}

.p-top-estate__card-heading {
  margin: 1rem 0 0.875rem;
  padding-inline: 0.125rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .p-top-estate__card-heading {
    margin-block: 0.75rem 0.625rem;
    font-size: 0.875rem;
  }
}

.p-top-estate__card-meta {
  margin-block-start: auto;
  padding: 0.875rem 0.875rem 1rem;
  border-radius: 0.5rem;
  background-color: var(--color-gray);
}

.p-top-estate__meta-list {
  display: grid;
  gap: 0.125rem;
  margin: 0;
}

.p-top-estate__meta-list .p-top-estate__meta-desc {
  margin-inline-start: 0;
}

.p-top-estate__meta-item {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.5rem;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.p-top-estate__meta-term {
  margin: 0;
  font-weight: 500;
}

.p-top-estate__meta-desc {
  margin: 0;
  color: var(--color-text);
  font-weight: 500;
}

.p-top-estate__button-wrap {
  margin-block-start: 2.3125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-estate__button-wrap {
    margin-block-start: 2rem;
  }
}

.p-top-event {
  padding-block: 1.125rem 5.75rem;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-top-event {
    padding-block: 1.125rem 3rem;
  }
}

.p-top-event__inner {
  width: min(100%, 114.25rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-event__inner {
    padding-inline: 1.25rem;
  }
}

.p-top-event__content {
  margin-block-start: 2rem;
  margin-inline: calc(-50vw + 50%);
}

.p-top-event__swiper-container {
  position: relative;
}

.p-top-event__swiper {
  max-width: calc(100% - 10vw);
  overflow: hidden;
}

.p-top-event__swiper .swiper-wrapper {
  align-items: stretch;
}

.p-top-event__item.swiper-slide {
  align-self: stretch;
  height: auto;
}

.p-top-event__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-top-event__empty {
  box-sizing: border-box;
  width: min(100%, 114.25rem);
  margin-inline: auto;
  padding-block: 1.5rem 0.75rem;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-event__empty {
    padding-block: 1.25rem 0.5rem;
    padding-inline: 1.25rem;
  }
}

.p-top-event__empty-text {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-top-event__empty-text {
    font-size: 1rem;
  }
}

.p-top-event__item {
  display: flex;
  height: auto;
}

.p-top-event__link {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: 0.5rem;
  background-color: var(--color-white);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
  color: inherit;
  text-decoration: none;
}
.p-top-event__link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 0.25rem;
}
@media (any-hover: hover) {
  .p-top-event__link:hover {
    opacity: 1;
  }
  .p-top-event__link:hover .p-top-event__image-wrap img {
    transform: scale(1.05);
  }
}

.p-top-event__head {
  position: relative;
  padding: 0.375rem 0.375rem 0;
}

.p-top-event__image-wrap {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 525/300;
  background-color: #f0f0f0;
}
.p-top-event__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.p-top-event__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  padding: 1.375rem 1.5rem 1.3125rem;
}

.p-top-event__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem 0.75rem;
}

.p-top-event__category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  min-width: 5.625rem;
  border-radius: 0.25rem;
  background-color: #ffa500;
  color: var(--color-black);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
}

.p-top-event__info-range {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
}

.p-top-event__card-title {
  margin-block-start: 0.5rem;
  margin-block-end: 0.875rem;
  margin-inline: 0;
  color: var(--color-black);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.p-top-event__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-block-start: auto;
  min-height: 4.875rem;
  padding: 0.875rem 1.125rem;
  border-radius: 0.75rem;
  background-color: #f0f0f0;
}
@media screen and (max-width: 1366px) {
  .p-top-event__info {
    gap: 0.5rem 0.75rem;
    padding: 0.625rem 0.75rem;
  }
}

.p-top-event__info-date {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.p-top-event__info-label {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1366px) {
  .p-top-event__info-label {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-event__info-label {
    font-size: 0.875rem;
    line-height: 1.4;
  }
}

.p-top-event__info-wd {
  font-size: 0.92em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-top-event__info-wd {
    font-size: 0.875rem;
    line-height: 1.4;
  }
}

.p-top-event__info-count {
  display: flex;
  align-items: flex-end;
  gap: 0.1875rem;
}

.p-top-event__count-digit {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 1.8125rem;
  height: 3.125rem;
  padding: 0.375rem 0;
  border-radius: 0.25rem;
  background-color: #d32f2f;
  color: var(--color-white);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 1366px) {
  .p-top-event__count-digit {
    min-width: 1.5rem;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-event__count-digit {
    font-size: 1.25rem;
    height: 2.1875rem;
  }
}

.p-top-event__count-unit {
  margin-inline-start: 0.125rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1366px) {
  .p-top-event__count-unit {
    font-size: 0.875rem;
  }
}

.p-top-event__cta {
  display: flex;
  position: relative;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 1.1875rem 1.25rem 1.1875rem 1.25rem;
  border-radius: 0 0 0.5rem 0.5rem;
  background-color: #1557c0;
  color: var(--color-white);
}

.p-top-event__cta-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.p-top-event__cta-icon {
  position: absolute;
  right: 1.375rem;
  top: 50%;
  translate: 0 -50%;
  width: 2rem;
  height: 2rem;
  margin-inline-start: auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ccircle cx='16' cy='16' r='16' fill='%23fff'/%3E%3Cpolyline points='15.24 12.53 18.76 16 15.24 19.47' fill='none' stroke='%2315c' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-top-event__button-wrap {
  margin-block-start: 2.875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-event__button-wrap {
    padding-inline: 1.25rem;
    margin-block-start: 1.5rem;
  }
}

.p-top-event__swiper-button-prev,
.p-top-event__swiper-button-next {
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  width: 3.125vw;
  height: 7.8125vw;
  border: none;
  background-color: #f4f4f4;
  color: var(--color-text);
  padding: 0;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top-event__swiper-button-prev,
  .p-top-event__swiper-button-next {
    width: 8vw;
    height: 18.6666666667vw;
  }
}
.p-top-event__swiper-button-prev::after,
.p-top-event__swiper-button-next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 2px solid currentcolor;
  border-right: 2px solid currentcolor;
}
@media screen and (max-width: 767px) {
  .p-top-event__swiper-button-prev::after,
  .p-top-event__swiper-button-next::after {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.p-top-event__swiper-button-prev.swiper-button-disabled,
.p-top-event__swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
@media (any-hover: hover) {
  .p-top-event__swiper-button-prev:hover,
  .p-top-event__swiper-button-next:hover {
    opacity: 0.9;
  }
}

.p-top-event__swiper-button-prev {
  left: 0;
  border-radius: 0 0.75rem 0.75rem 0;
}
.p-top-event__swiper-button-prev::after {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.p-top-event__swiper-button-next {
  right: 0;
  border-radius: 0.75rem 0 0 0.75rem;
}
.p-top-event__swiper-button-next::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.p-top-features {
  padding-block: 4.0625rem 3rem;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-top-features {
    padding-block: 3rem 1.5rem;
  }
}

.p-top-features__head {
  display: inline-flex;
  max-width: 100%;
  margin: 0;
}

.p-top-features__title {
  margin: 0;
}

.p-top-features__grid {
  display: grid;
  gap: 0.375rem;
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-features__grid {
    gap: 1rem;
    margin-block-start: 1.75rem;
  }
}

.p-top-features__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.375rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-top-features__list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.p-top-features__item {
  margin: 0;
}

.p-top-features__card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0.5rem;
  color: var(--color-white);
  text-decoration: none;
}
.p-top-features__card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 0.25rem;
}
@media (any-hover: hover) {
  .p-top-features__card:hover {
    opacity: 1;
  }
  .p-top-features__card:hover .p-top-features__image img {
    transform: scale(1.06);
  }
}

.p-top-features__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
  border-radius: inherit;
  background-color: #c8c8c8;
}

.p-top-features__image {
  display: block;
  width: 100%;
  height: 100%;
}
.p-top-features__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.p-top-features__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.p-top-features__shade--lead {
  background: rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .p-top-features__shade--lead {
    background: rgba(0, 0, 0, 0.3);
  }
}

.p-top-features__shade--sub {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.32) 52%, transparent 100%);
}

.p-top-features__card--lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 29.375rem;
  padding: 2.75rem 3rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-features__card--lead {
    min-height: 18.75rem;
    padding: 1.75rem 1.25rem 1.75rem;
  }
}
.p-top-features__card--lead .p-top-features__image img {
  object-position: center right;
}

.p-top-features__body--lead {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  translate: -10.9375rem 0.9375rem;
  width: min(100%, 38.75rem);
}
@media screen and (max-width: 1366px) {
  .p-top-features__body--lead {
    translate: -7.8125rem 0.9375rem;
    width: min(100%, 38.75rem);
  }
}
@media screen and (max-width: 1023px) {
  .p-top-features__body--lead {
    translate: -0.9375rem 0.9375rem;
    width: min(100%, 38.75rem);
  }
}
@media screen and (max-width: 767px) {
  .p-top-features__body--lead {
    translate: 0 0;
    width: 100%;
  }
}

.p-top-features__lead-title {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-top-features__lead-title {
    font-size: 1.25rem;
  }
}

.p-top-features__lead-text {
  margin-block-start: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-top-features__lead-text {
    margin-block-start: 0.75rem;
    font-size: 0.8125rem;
  }
}

.p-top-features__more {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: calc(100% - 0.625rem);
  margin-block-start: 1.8125rem;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-top-features__more {
    margin-block-start: 1.25rem;
  }
}

.p-top-features__more-line {
  display: block;
  flex-grow: 1;
  width: 7.5rem;
  height: 1px;
  background-color: var(--color-white);
  opacity: 0.9;
}

.p-top-features__more-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.p-top-features__more-text {
  font-size: 0.875rem;
  font-family: var(--ff-en);
  font-weight: 400;
}

.p-top-features__more-icon {
  display: block;
  flex-shrink: 0;
  width: 2.0625rem;
  height: 2.0625rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='33' viewBox='0 0 33 33'%3E%3Ccircle cx='16.5' cy='16.5' r='16' fill='none' stroke='%23fff' stroke-miterlimit='10'/%3E%3Cpolyline points='15.74 13.03 19.26 16.5 15.74 19.97' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-top-features__card--sub {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 26.875rem;
  padding: 1.75rem 4.0625rem 1.75rem 1.375rem;
}
@media screen and (max-width: 1023px) {
  .p-top-features__card--sub {
    padding: 1.75rem 3.125rem 1.75rem 1.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-features__card--sub {
    min-height: 13.4375rem;
    padding: 1.5rem 1.125rem 1.125rem;
  }
}

.p-top-features__body--sub {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
}

.p-top-features__sub-meta {
  font-size: 0.75rem;
  font-family: var(--ff-en);
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-top-features__sub-meta {
    font-size: 0.6875rem;
  }
}

.p-top-features__sub-catch {
  margin-block-start: 0.75rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-top-features__sub-catch {
    font-size: 0.8125rem;
  }
}

.p-top-features__sub-title {
  margin-block-start: 0rem;
  font-size: 1.625rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-top-features__sub-title {
    font-size: 1.0625rem;
  }
}

.p-top-features__arrow {
  position: absolute;
  right: 1.875rem;
  bottom: 1.625rem;
  z-index: 2;
  display: block;
  width: 2rem;
  height: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='33' viewBox='0 0 33 33'%3E%3Ccircle cx='16.5' cy='16.5' r='16' fill='none' stroke='%23fff' stroke-miterlimit='10'/%3E%3Cpolyline points='15.74 13.03 19.26 16.5 15.74 19.97' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  .p-top-features__arrow {
    right: 1.375rem;
    bottom: 1.125rem;
    width: 1.75rem;
    height: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-features__arrow {
    right: 1.125rem;
    bottom: 1.125rem;
    width: 1.75rem;
    height: 1.75rem;
  }
}

.p-top-showroom {
  position: relative;
  padding-block: 4.875rem 7.375rem;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-top-showroom {
    padding-block: 3rem 3.5rem;
  }
}
.p-top-showroom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 81.25vw;
  height: calc(100% - 11.5rem);
  background-color: #f4f4f4;
}

.p-top-showroom__inner {
  position: relative;
  z-index: 1;
}
.p-top-showroom__title {
  margin: 0;
}

.p-top-showroom__layout {
  display: grid;
  grid-template-columns: minmax(0, 29.6875vw) minmax(0, 1fr);
  gap: 3rem 3.5rem;
  margin-block-start: 3.375rem;
  margin-inline: 0 calc(50% - 50vw);
  align-items: start;
}
@media screen and (max-width: 1366px) {
  .p-top-showroom__layout {
    grid-template-columns: minmax(0, 23.125rem) minmax(0, 1fr);
    gap: 2rem 2.5rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-top-showroom__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-showroom__layout {
    gap: 2.25rem;
    margin-block-start: 1.75rem;
    margin-inline: 0;
  }
}

.p-top-showroom__content {
  min-width: 0;
}

.p-top-showroom__heading {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .p-top-showroom__heading {
    margin-block-end: 1.25rem;
    font-size: 1.125rem;
  }
}

.p-top-showroom__list {
  margin-block-start: 2.5rem;
  padding-inline-start: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-showroom__list {
    padding-inline-start: 0;
  }
}

.p-top-showroom__item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.75rem 0.75rem;
  margin: 0;
  padding-block: 1.375rem;
  border-bottom: 1px solid #d2d2d2;
}
@media screen and (max-width: 767px) {
  .p-top-showroom__item {
    gap: 0.625rem 0.875rem;
    padding-block: 0.875rem;
  }
}
.p-top-showroom__item:last-child {
  border-bottom: none;
}

.p-top-showroom__icon {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  margin-block-start: 0.125rem;
}
.p-top-showroom__icon img {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-top-showroom__icon img {
    zoom: 0.8;
  }
}

.p-top-showroom__label {
  flex: 0 0 5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top-showroom__label {
    flex-basis: 5.5rem;
    font-size: 0.875rem;
  }
}

.p-top-showroom__value {
  flex: 1;
  min-width: 10rem;
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.p-top-showroom__value a {
  color: inherit;
  text-decoration: none;
}
@media (any-hover: hover) {
  .p-top-showroom__value a:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 767px) {
  .p-top-showroom__value {
    flex-basis: 100%;
    padding-inline-start: 3rem;
    font-size: 0.875rem;
  }
}

.p-top-showroom__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: min(100%, 22.5rem);
  margin-block-start: 1.6875rem;
  padding: 0.9375rem 1.5rem;
  border: 1px solid var(--color-primary);
  border-radius: 100vmax;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  transition: background-color var(--duration) ease, box-shadow var(--duration) ease;
}
@media screen and (max-width: 767px) {
  .p-top-showroom__cta {
    display: flex;
    margin-block-start: 1.75rem;
    margin-inline: auto;
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
  }
}
.p-top-showroom__cta:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 0.25rem;
}
@media (any-hover: hover) {
  .p-top-showroom__cta:hover {
    opacity: 1;
    background-color: var(--color-base);
    color: var(--color-primary);
  }
}

.p-top-showroom__cta-icon {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  display: block;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ccircle cx='16' cy='16' r='16' fill='%23fff'/%3E%3Cpolyline points='15.24 12.53 18.76 16 15.24 19.47' fill='none' stroke='%2315c' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-top-showroom__cta-icon {
    right: 0.75rem;
    width: 2rem;
    height: 2rem;
  }
}

.p-top-showroom__map {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/1;
  background-color: var(--color-gray);
}

.p-top-showroom__iframe {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.p-top-staff {
  padding-block: 5.25rem 7rem;
  position: relative;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-top-staff {
    padding-block: 3rem 3.5rem;
  }
}

.p-top-staff__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: min(38.375rem, 100%);
  z-index: 0;
  overflow: hidden;
  background-image: url("../images/bg_top_staff.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-top-staff__bg {
    height: min(18.75rem, 100%);
  }
}
.p-top-staff__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.p-top-staff__hero-inner {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  width: min(100%, 114.25rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-staff__hero-inner {
    padding-inline: 1.25rem;
  }
}

.p-top-staff__title .c-top-title__sub,
.p-top-staff__title .c-top-title__main {
  color: var(--color-white);
}

.p-top-staff__title .c-top-title__main::before {
  color: var(--color-white);
}

.p-top-staff__slider-bleed {
  position: relative;
  z-index: 3;
  width: 100vw;
  margin-block-start: 5.375rem;
  margin-inline: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .p-top-staff__slider-bleed {
    margin-block-start: 2.5rem;
  }
}

.p-top-staff__empty {
  box-sizing: border-box;
  width: min(100%, 114.25rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
  padding-block: 0.5rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-staff__empty {
    padding-inline: 1.25rem;
    padding-block: 0.25rem 1.25rem;
  }
}

.p-top-staff__empty-text {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-staff__empty-text {
    font-size: 0.9375rem;
  }
}

.p-top-staff__swiper-container {
  box-sizing: border-box;
  width: 100%;
}

.p-top-staff__swiper {
  overflow: hidden;
}

.p-top-staff__swiper-wrapper {
  margin: 0;
  padding: 0;
  list-style: none;
  transition-timing-function: linear !important;
}

.p-top-staff__slide {
  width: 26.25rem;
  height: auto;
  padding-block-end: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-staff__slide {
    width: 15rem;
  }
}

.p-top-staff__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
  background-color: var(--color-white);
  box-shadow: 0 0.125rem 0.625rem rgba(30, 30, 30, 0.1);
  color: var(--color-text);
  text-decoration: none;
  transition: box-shadow var(--duration) ease;
}
.p-top-staff__card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 0.25rem;
}
@media (any-hover: hover) {
  .p-top-staff__card:hover {
    opacity: 1;
  }
  .p-top-staff__card:hover .p-top-staff__photo img {
    transform: scale(1.04);
  }
}

.p-top-staff__photo {
  display: block;
  overflow: hidden;
  aspect-ratio: 420/380;
}
.p-top-staff__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.p-top-staff__body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.1875rem 1.25rem 2.8125rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-staff__body {
    padding: 0.875rem 2.5rem 1rem 0.75rem;
  }
}

.p-top-staff__dept {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  text-align: center;
}

.p-top-staff__name-en {
  margin-block-start: 0.625rem;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--ff-en);
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-top-staff__name-en {
    margin-block-start: 0.5rem;
    font-size: 1.125rem;
  }
}

.p-top-staff__name-ja {
  margin-block-start: 0rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-staff__name-ja {
    font-size: 0.8125rem;
  }
}

.p-top-staff__arrow {
  position: absolute;
  top: 50%;
  right: 1.875rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  background-color: var(--color-white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpolyline points='3.5 2 6.5 5 3.5 8' fill='none' stroke='%231155cc' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.625rem 0.625rem;
  transform: translateY(-50%);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-top-staff__arrow {
    right: 0.5rem;
    width: 1.75rem;
    height: 1.75rem;
  }
}

.p-top-staff__button-wrap {
  margin-block-start: 1.4375rem;
  text-align: center;
}

.p-top-works {
  position: relative;
  overflow-x: hidden;
  padding-block: 4.6875rem 3.6875rem;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-top-works {
    padding-block: 3rem 4rem;
  }
}
.p-top-works::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 81.25vw;
  height: 100%;
  background-color: #f4f4f2;
}

.p-top-works__inner {
  position: relative;
  z-index: 1;
}

.p-top-works__scroll-bleed {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
  margin-block-start: 1.875rem;
  --works-scroll-bleed-start: max(
    1.25rem,
    calc((min(100vw, 100%) - 114.25rem) / 2 + 3.125rem)
  );
  padding-inline-start: var(--works-scroll-bleed-start);
  padding-inline-end: 0;
}
@media screen and (max-width: 767px) {
  .p-top-works__scroll-bleed {
    margin-block-start: 1.75rem;
    width: min(100%, 37.5rem);
    margin-inline: auto;
    --works-scroll-bleed-start: 1.25rem;
    padding-inline-start: 1.25rem;
    padding-inline-end: 1.25rem;
  }
}

.p-top-works__scroll {
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-works__scroll {
    height: auto !important;
    max-height: none !important;
    min-height: 0;
    overflow: visible !important;
  }
  .p-top-works__scroll .simplebar-wrapper,
  .p-top-works__scroll .simplebar-content-wrapper {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }
  .p-top-works__scroll .simplebar-mask,
  .p-top-works__scroll .simplebar-offset {
    position: static !important;
    overflow: visible !important;
    width: auto !important;
    height: auto !important;
  }
}
.p-top-works__scroll .simplebar-content-wrapper {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
}
@media screen and (max-width: 767px) {
  .p-top-works__scroll .simplebar-content-wrapper {
    overflow: visible !important;
    touch-action: auto;
    overscroll-behavior-x: auto;
  }
}
.p-top-works__scroll .simplebar-content {
  display: block;
  padding-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top-works__scroll .simplebar-content {
    display: block;
    padding-bottom: 0;
  }
}
.p-top-works__scroll .simplebar-track.simplebar-horizontal {
  bottom: -3.25rem;
  left: calc(50% - var(--works-scroll-bleed-start) / 2);
  right: auto;
  transform: translateX(-50%);
  width: min(100%, 50rem);
  height: 0.625rem;
  margin-block-start: 3.25rem;
  margin-inline: auto;
  border-radius: 0.375rem;
  background-color: #e0e0e0;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .p-top-works__scroll .simplebar-track.simplebar-horizontal {
    display: none !important;
  }
}
.p-top-works__scroll .simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  top: 0;
  bottom: 0;
  min-height: 0.5rem;
}
.p-top-works__scroll .simplebar-track.simplebar-horizontal .simplebar-scrollbar::before {
  inset: 0.0625rem;
  border-radius: 0.3125rem;
  background-color: #1a1a1a;
  opacity: 1;
}
.p-top-works__scroll .simplebar-track.simplebar-vertical {
  width: 0;
  visibility: hidden;
  pointer-events: none;
}

.p-top-works__list {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  width: max-content;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-top-works__list {
    flex-direction: column;
    gap: 1.75rem;
    width: 100%;
    max-width: 100%;
  }
  .p-top-works__list .p-top-works__card:nth-child(n+4) {
    display: none;
  }
}
.p-top-works__list:has(.p-top-works__list--empty) {
  width: auto;
}

.p-top-works__list--empty {
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 50rem;
  margin: 0;
  padding-block: 1.75rem 1.25rem;
  padding-inline: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-works__list--empty {
    max-width: 100%;
    padding-block: 1.5rem 1rem;
  }
}

.p-top-works__empty-text {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-top-works__empty-text {
    font-size: 0.9375rem;
  }
}

.p-top-works__card {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 26.25rem;
  height: 34.375rem;
  overflow: hidden;
  border-radius: 0.75rem;
  color: var(--color-white);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-top-works__card {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    flex-shrink: 1;
    width: 100%;
    max-width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 0;
    color: var(--color-text);
  }
}
.p-top-works__card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 0.25rem;
}
@media (hover: hover) {
  .p-top-works__card:hover {
    opacity: 1;
  }
}

.p-top-works__card-image {
  position: absolute;
  inset: 0;
}
.p-top-works__card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
@media screen and (max-width: 767px) {
  .p-top-works__card-image {
    position: relative;
    inset: auto;
    grid-row: 1;
    grid-column: 1;
    z-index: 0;
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
    border-radius: 0.75rem;
  }
  .p-top-works__card-image img {
    height: 100%;
  }
}
@media (any-hover: hover) {
  .p-top-works__card:hover .p-top-works__card-image img {
    transform: scale(1.03);
  }
}

.p-top-works__card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background-color: rgba(0, 0, 0, 0.55);
  text-align: center;
  opacity: 0;
  transition: opacity var(--duration) ease;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-top-works__card-overlay {
    position: static;
    inset: auto;
    grid-row: 2;
    grid-column: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0.625rem 0.5rem;
    padding: 0.875rem 0.5rem 0.5rem;
    background-color: transparent;
    text-align: left;
    opacity: 1;
    pointer-events: auto;
    transition: none;
  }
}

.p-top-works__card:hover .p-top-works__card-overlay {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .p-top-works__card:hover .p-top-works__card-overlay,
  .p-top-works__card:focus-within .p-top-works__card-overlay {
    opacity: 1;
  }
}
.p-top-works__card-catch {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-top-works__card-catch {
    grid-column: 1/-1;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-text);
  }
}

.p-top-works__card-loc {
  margin-block: 0.625rem 0;
  margin-inline: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-top-works__card-loc {
    grid-column: 1;
    margin-block: 0;
    font-size: 0.75rem;
    color: var(--color-text);
  }
}

.p-top-works__card-tsubo {
  display: inline-block;
  margin-block-start: 0.875rem;
  padding: 0.375rem 1rem;
  border: 1px solid var(--color-white);
  border-radius: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-top-works__card-tsubo {
    grid-column: 2;
    margin-block-start: 0;
    padding: 0.3125rem 0.75rem;
    border: 1px solid var(--color-text);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: 0.04em;
  }
}

.p-top-works__card-price {
  margin-block: 0.875rem 0;
  margin-inline: 0;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-top-works__card-price {
    grid-column: 3;
    margin-block-start: 0;
    font-size: 1.125rem;
    line-height: 1.4;
    color: var(--color-text);
    letter-spacing: 0.02em;
  }
}

.p-top-works__card-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 3rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-top-works__card-bottom {
    position: relative;
    grid-row: 1;
    grid-column: 1;
    align-self: end;
    justify-self: stretch;
    width: 100%;
    padding: 2.5rem 0.75rem 0.75rem;
    border-radius: 0 0 0.75rem 0.75rem;
  }
}

.p-top-works__card-more {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
}

.p-top-works__card-more-icon {
  display: block;
  width: 2.0625rem;
  height: 2.0625rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='33' viewBox='0 0 33 33'%3E%3Ccircle cx='16.5' cy='16.5' r='16' fill='none' stroke='%23fff' stroke-miterlimit='10'/%3E%3Cpolyline points='15.74 13.03 19.26 16.5 15.74 19.97' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-top-works__card-more-text {
  font-size: 0.875rem;
  font-family: var(--ff-en);
  font-weight: 400;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-top-works__card-more-text {
    color: var(--color-base);
  }
}

.p-top-works__button-wrap {
  margin-block-start: 5.875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-works__button-wrap {
    margin-block-start: 2.25rem;
  }
}

.p-under-mv {
  position: relative;
  height: 31.25rem;
}
@media screen and (max-width: 767px) {
  .p-under-mv {
    height: 18.75rem;
  }
}

.p-under-mv__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #2a2419;
  pointer-events: none;
}

.p-under-mv__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.p-under-mv__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  translate: 0 0.625rem;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: inherit;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-under-mv__inner {
    padding-block: 2rem 2.5rem;
  }
}

.p-under-mv__title {
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-under-mv__title {
    font-size: 6.4vw;
  }
}

.p-under-mv__lead {
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-under-mv__lead {
    font-size: 3.7333333333vw;
  }
}

.p-zeh-cost-merit {
  margin-block-start: -1.25rem;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-zeh-cost-merit {
    margin-block-start: 2.5rem;
  }
}

.p-zeh-cost-merit__kicker {
  padding-inline: 3.125rem;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: clamp(1.125rem, 2vw, 2.375rem);
  font-weight: 700;
  line-height: 1.57;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-zeh-cost-merit__kicker {
    padding-inline: 1.25rem;
    font-size: 1.5rem;
  }
}

.p-zeh-cost-merit__accent {
  color: var(--color-primary);
}

.p-zeh-cost-merit__iceberg {
  position: relative;
  min-block-size: 64.375rem;
  overflow: hidden;
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-zeh-cost-merit__iceberg {
    margin-block-start: 1.25rem;
    min-block-size: 40rem;
  }
}

.p-zeh-cost-merit__iceberg-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
@media screen and (max-width: 767px) {
  .p-zeh-cost-merit__iceberg-bg {
    object-position: 24% center;
  }
}

.p-zeh-cost-merit__iceberg-inner {
  position: relative;
  z-index: 1;
  padding-block: 5rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-zeh-cost-merit__iceberg-inner {
    padding-block: 2.5rem 5.5rem;
  }
}

.p-zeh-cost-merit__iceberg-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  grid-template-areas: "initial-label initial-desc" "running-label running-list";
  gap: 10rem 9.5rem;
  width: min(100%, 67.5rem);
  margin-inline: auto;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-zeh-cost-merit__iceberg-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "initial-label" "running-label" "initial-desc" "running-list";
    row-gap: 1rem;
  }
}

.p-zeh-cost-merit__ice-label {
  margin: 0;
  font-feature-settings: "palt";
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 0.5rem rgba(0, 0, 0, 0.35);
}

.p-zeh-cost-merit__ice-label--initial {
  grid-area: initial-label;
  align-self: end;
  font-size: 2.5rem;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-zeh-cost-merit__ice-label--initial {
    align-self: start;
    font-size: 1.5rem;
  }
}

.p-zeh-cost-merit__ice-label--initial-small {
  zoom: 0.7;
}

.p-zeh-cost-merit__ice-label--running {
  grid-area: running-label;
  align-self: start;
  margin-block-start: 7.5rem;
  font-size: 2.5rem;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-zeh-cost-merit__ice-label--running {
    margin-block-start: 5.5rem;
    font-size: 1.5rem;
  }
}

.p-zeh-cost-merit__ice-label--running-small {
  zoom: 0.7;
}

.p-zeh-cost-merit__ice-desc {
  margin: 0;
  font-feature-settings: "palt";
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 0.375rem rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 767px) {
  .p-zeh-cost-merit__ice-desc {
    margin-block-start: 2rem;
    font-size: 1.125rem;
  }
}

.p-zeh-cost-merit__ice-desc--initial {
  grid-area: initial-desc;
  align-self: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-zeh-cost-merit__ice-desc--initial {
    align-self: start;
  }
}

.p-zeh-cost-merit__ice-list {
  grid-area: running-list;
  align-self: start;
  margin: 0;
  margin-block-start: 1.75rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-zeh-cost-merit__ice-list {
    margin-block-start: 0.75rem;
  }
}

.p-zeh-cost-merit__ice-item {
  padding-block: 2rem;
  border-block-end: 1px solid rgba(255, 255, 255, 0.45);
}
.p-zeh-cost-merit__ice-item:first-child {
  padding-block-start: 0;
}
.p-zeh-cost-merit__ice-item:last-child {
  border-block-end: none;
  padding-block-end: 0;
}
@media screen and (max-width: 767px) {
  .p-zeh-cost-merit__ice-item {
    padding-block: 0.75rem 0.875rem;
  }
}

.p-zeh-cost-merit__ice-term {
  margin: 0;
  font-feature-settings: "palt";
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-zeh-cost-merit__ice-term {
    font-size: 0.9375rem;
  }
}

.p-zeh-cost-merit__ice-detail {
  margin: 0;
  margin-block-start: 0.375rem;
  font-feature-settings: "palt";
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.67;
  letter-spacing: 0.05em;
  opacity: 0.95;
}
@media screen and (max-width: 767px) {
  .p-zeh-cost-merit__ice-detail {
    font-size: 0.8125rem;
  }
}

.p-zeh-cost-merit__float-wrap {
  position: relative;
  z-index: 2;
  margin-block-start: -7.9375rem;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-zeh-cost-merit__float-wrap {
    margin-block-start: -2.5rem;
    padding-inline: 1.25rem;
  }
}

.p-zeh-cost-merit__float-card {
  max-width: 75rem;
  margin-inline: auto;
  padding: 1.75rem 2.5rem 2.5rem;
  border-radius: 0.75rem;
  background-color: var(--color-base);
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.12);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-zeh-cost-merit__float-card {
    padding: 1.375rem 1.25rem 1.625rem;
    border-radius: 0.875rem;
  }
}

.p-zeh-cost-merit__float-lead {
  margin: 0;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-zeh-cost-merit__float-lead {
    font-size: 1.25rem;
    line-height: 1.6;
  }
}

.p-zeh-cost-merit__float-strong {
  color: var(--color-primary);
  font-feature-settings: "palt";
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-zeh-cost-merit__float-strong {
    font-size: 1.75rem;
    line-height: 1.45;
  }
}

.p-zeh-cost-merit__merits {
  padding-block: 4.5rem 2.5rem;
  padding-inline: 0;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-zeh-cost-merit__merits {
    padding-block: 2.5rem 4rem;
  }
}

.p-zeh-cost-merit__merits-inner {
  text-align: center;
}

.p-zeh-cost-merit__title {
  margin: 0;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-zeh-cost-merit__title {
    font-size: 1.625rem;
    text-align: left;
  }
}

.p-zeh-cost-merit__lead {
  margin: 0;
  margin-block-start: 1.25rem;
  margin-inline: auto;
  max-width: 57.5rem;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2.145;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-zeh-cost-merit__lead {
    margin-block-start: 1rem;
    font-size: 0.8125rem;
    text-align: left;
  }
}

.p-zeh-cost-merit__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem 1.3125rem;
  width: min(100%, 75rem);
  margin-inline: auto;
  margin-block-start: 2rem;
  text-align: start;
}
@media screen and (max-width: 767px) {
  .p-zeh-cost-merit__cards {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-block-start: 2.25rem;
  }
}

.p-zeh-cost-merit__card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background-color: #f8f8f8;
  box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 767px) {
  .p-zeh-cost-merit__card {
    border-radius: 0.875rem;
  }
}

.p-zeh-cost-merit__card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 386/200;
  overflow: hidden;
  background-color: var(--color-gray);
}

.p-zeh-cost-merit__card-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-zeh-cost-merit__card-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1 auto;
  padding: 1rem 1.25rem 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-zeh-cost-merit__card-body {
    padding: 1.25rem 1.125rem 1.5rem;
  }
}

.p-zeh-cost-merit__card-title {
  margin: 0;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-zeh-cost-merit__card-title {
    font-size: 1rem;
  }
}

.p-zeh-cost-merit__card-text {
  margin: 0;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.71;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-zeh-cost-merit__card-text {
    font-size: 0.8125rem;
  }
}

.p-zeh-cost-merit__action {
  margin-block-start: 2.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-zeh-cost-merit__action {
    margin-block-start: 2.5rem;
  }
}

.p-zeh-cvalue {
  display: flex;
  flex-direction: column;
  width: min(100%, 75rem);
  margin-block-start: 3.875rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-zeh-cvalue {
    margin-block-start: 2.5rem;
  }
}

.p-zeh-cvalue__catch {
  margin: 0;
  color: var(--color-primary);
  font-feature-settings: "palt";
  font-size: clamp(1.25rem, 2vw, 1.875rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-zeh-cvalue__catch {
    font-size: 1.375rem;
    text-align: left;
  }
}

.p-zeh-cvalue__intro {
  margin-block-start: 1.375rem;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-zeh-cvalue__intro {
    font-size: 0.9375rem;
    text-align: left;
  }
}

.p-zeh-cvalue__panel {
  margin-block-start: 2.125rem;
  padding: 3.125rem 4.25rem 3.75rem;
  border: 1px solid #e8e8e8;
  border-radius: 0.75rem;
  background-color: var(--color-base);
  box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 767px) {
  .p-zeh-cvalue__panel {
    padding-block: 1.75rem 2rem;
    padding-inline: 1.125rem;
    border-radius: 1rem;
  }
}

.p-zeh-cvalue__stack {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-zeh-cvalue__stack {
    gap: 2.25rem;
  }
}

.p-zeh-cvalue__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.p-zeh-cvalue__pill {
  width: 100%;
  margin: 0;
  padding: 1.25rem 1.75rem;
  border-radius: 62.4375rem;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-zeh-cvalue__pill {
    padding-block: 0.625rem 0.5rem;
    padding-inline: 1.25rem;
    font-size: 1rem;
  }
}

.p-zeh-cvalue__copy {
  margin-block-start: 1.875rem;
  max-inline-size: 56.25rem;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.67;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-zeh-cvalue__copy {
    font-size: 1rem;
    line-height: 1.8;
    text-align: start;
  }
}

.p-zeh-cvalue__media {
  align-self: stretch;
  inline-size: 100%;
}

.p-zeh-cvalue__infographic-flex {
  display: flex;
  justify-content: center;
  gap: 5.5rem;
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-zeh-cvalue__infographic-flex {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.p-zeh-cvalue__infographic-flex2 {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-block-start: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-zeh-cvalue__infographic-flex2 {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.p-zeh-cvalue__media--formula {
  width: min(100%, 32.6875rem);
  height: auto;
  aspect-ratio: 523/111;
  margin-block-start: 2.5rem;
  margin-inline: auto;
}

.p-zeh-cvalue__media--cvalue {
  width: min(100%, 59.375rem);
  height: auto;
  aspect-ratio: 950/178;
  margin-block-start: 2.875rem;
  margin-inline: auto;
}

.p-zeh-cvalue__media--infographic {
  width: min(100%, 50.625rem);
  height: auto;
  aspect-ratio: 810/312;
  margin-block-start: 1.375rem;
  margin-inline: auto;
}

.p-zeh-cvalue__media--postcard {
  width: min(100%, 28rem);
  height: auto;
  aspect-ratio: 448/185;
}

.p-zeh-cvalue__media--postcard2 {
  width: min(100%, 27.8125rem);
  height: auto;
  aspect-ratio: 445/182;
}

.p-zeh-cvalue__media--graph {
  width: min(100%, 66.25rem);
  height: auto;
  aspect-ratio: 1060/449;
  margin-block-start: 1.875rem;
  margin-inline: auto;
}

.p-zeh-cvalue__media--dispose {
  width: min(100%, 56.5625rem);
  height: auto;
  aspect-ratio: 905/241;
  margin-block-start: 2.625rem;
  margin-inline: auto;
}

.p-zeh-cvalue__media--airtight {
  width: min(100%, 32.5rem);
  height: auto;
  aspect-ratio: 520/417;
}

.p-zeh-cvalue__infographic-title {
  margin-block-start: 3rem;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-zeh-cvalue__infographic-title {
    margin-block-start: 2.25rem;
    font-size: 1.25rem;
    text-align: start;
  }
}

.p-zeh-cvalue__image {
  display: block;
  inline-size: 100%;
  block-size: auto;
}

.p-zeh-ua {
  margin-block-start: 5.625rem;
  width: min(100%, 75rem);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-zeh-ua {
    margin-block-start: 2.8125rem;
  }
}

.p-zeh-ua__catch {
  margin: 0;
  color: var(--color-primary);
  font-feature-settings: "palt";
  font-size: clamp(1.5rem, 2.1vw, 1.875rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-zeh-ua__catch {
    font-size: 1.375rem;
    text-align: left;
  }
}

.p-zeh-ua__content {
  margin-block-start: 2rem;
  padding: 0.75rem 3.75rem 4rem;
  border-radius: 0.75rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-zeh-ua__content {
    margin-block-start: 1.5rem;
    padding-block: 0.75rem 1.25rem;
    padding-inline: 1.25rem;
  }
}

.p-zeh-ua__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.p-zeh-ua__panel {
  width: min(100%, 66.25rem);
  margin-inline: auto;
  margin-block-start: 1.5rem;
  border-radius: 0.75rem;
  background-color: var(--color-gray);
}
@media screen and (max-width: 767px) {
  .p-zeh-ua__panel {
    margin-block-start: 2rem;
    border-radius: 1rem;
  }
}

.p-zeh-ua__panel-inner {
  padding-block: 3.75rem 4.375rem;
  padding-inline: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-zeh-ua__panel-inner {
    padding-block: 1.75rem 2rem;
    padding-inline: 1.25rem;
  }
}

.p-zeh-ua__grid {
  display: grid;
  grid-template-columns: 1fr minmax(18.75rem, 29.0625rem);
  gap: 2.5rem 3rem;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .p-zeh-ua__grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .p-zeh-ua__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    align-items: start;
  }
}

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

.p-zeh-ua__subheading {
  margin: 0;
  color: var(--color-primary);
  font-feature-settings: "palt";
  font-size: clamp(1rem, 1.4vw, 1.375rem);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-zeh-ua__subheading {
    font-size: 1rem;
  }
}

.p-zeh-ua__body {
  margin: 0;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-zeh-ua__body {
    font-size: 0.9375rem;
    line-height: 1.8;
  }
}

.p-zeh-ua__formula {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 1023px) {
  .p-zeh-ua__formula {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .p-zeh-ua__formula {
    gap: 0.75rem;
  }
}

.p-zeh-ua__formula-prefix {
  flex-shrink: 0;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-zeh-ua__formula-prefix {
    font-size: 1.125rem;
  }
}

.p-zeh-ua__fraction {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  min-inline-size: 0;
}
@media screen and (max-width: 767px) {
  .p-zeh-ua__fraction {
    gap: 0.75rem;
  }
}

.p-zeh-ua__fraction-num,
.p-zeh-ua__fraction-den {
  display: block;
  max-inline-size: 100%;
  padding-inline: 1rem;
  color: var(--color-primary);
  font-feature-settings: "palt";
  font-size: clamp(1.25rem, 1.8vw, 1.875rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-zeh-ua__fraction-num,
  .p-zeh-ua__fraction-den {
    padding-inline: 0.5rem;
    font-size: 1.125rem;
    text-align: center;
  }
}

.p-zeh-ua__fraction-line {
  display: block;
  align-self: stretch;
  border-block-end: 1px solid var(--color-text);
}

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

html.has-scroll-observer .js-scroll.u-scroll-reveal {
  opacity: 0;
  transform: translateY(0.625rem);
  transition: opacity 0.32s cubic-bezier(0.33, 1, 0.68, 1), transform 0.32s cubic-bezier(0.33, 1, 0.68, 1);
}

html.has-scroll-observer .js-scroll.u-scroll-reveal.is-show {
  opacity: 1;
  transform: translateY(0);
}

html.has-scroll-observer .js-scroll.u-scroll-reveal--smooth {
  transform: translateY(1.75rem);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  html.has-scroll-observer .js-scroll.u-scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@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;
}