@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-background: #f7f8fa;
  --color-text: #2f2d2e;
  --color-white: #fff;
  --color-black: #000;
  --color-gray100: #eff1f3;
  --color-gray300: #cccccc;
  --color-gray500: #9ea4b5;
  --color-gray600: #61707d;
  --color-gray900: #2f2d2e;
  --color-accent: #af1b3f;
  --color-primary: #5b85aa;
  --color-primary-mid: #7aadda;
  --color-secondary: #a5915b;
  --color-line: #46ac68;
  --color-orange: #de8430;
  /* font-family */
  --ff-base: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  --ff-en: "Inter", 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 <= 767px) {
  :root {
    --header-height: 60px;
  }
}

/*! 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 {
  font-size: 100%;
}
@media screen and (max-width: 1307px) and (min-width: 390px) {
  html {
    font-size: max(16 / 1308 * 100vw, 10px);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: clamp(8px, 16 / 390 * 100vw, 20px);
  }
}

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

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

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

: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-columns-layout {
  display: grid;
  grid-template-columns: 17.375rem 1fr;
  gap: 2.5rem;
  padding-block: 5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .l-columns-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding-block: 3.5rem;
  }
  .l-columns-layout > .l-main {
    order: -1;
  }
}

.l-columns-layout .l-main,
.l-columns-layout .l-sidebar {
  min-width: 0;
}

.l-columns-layout > .l-sidebar {
  align-self: start;
}
.l-columns-layout > .l-sidebar .c-sidebar {
  inset-block-start: calc(var(--header-height) + 1rem);
}
@media screen and (max-width: 767px) {
  .l-columns-layout > .l-sidebar .c-sidebar {
    inset-block-start: auto;
  }
}

/* 画面上部に固定（inset:0 だと全画面になってしまうため top/左右のみ） */
.l-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: var(--z-index-header);
  width: 100%;
}

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

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

.l-wrapper {
  margin-block-start: var(--header-height);
}
@media screen and (max-width: 767px) {
  .l-wrapper {
    margin-block-start: var(--header-height);
  }
}

.c-accent-title {
  display: flex;
  position: relative;
  align-items: flex-start;
  box-sizing: border-box;
  width: 100%;
  min-height: 3.8125rem;
  padding: 0.8125rem 1.75rem;
  border-radius: 0.125rem;
  background-color: rgba(91, 133, 170, 0.1);
}
@media screen and (max-width: 767px) {
  .c-accent-title {
    gap: 1.125rem;
    width: 100%;
    min-height: 0;
    padding: 0.15625rem 1.75rem;
  }
}

.c-accent-title__accent {
  position: absolute;
  top: 0;
  left: 0;
  flex-shrink: 0;
  width: 0.625rem;
  height: 100%;
  border-radius: 0.125rem 0 0 0.125rem;
  background-color: var(--color-primary);
}
.c-accent-title__text {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  color: var(--color-text);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-accent-title__text {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3333333333;
  }
}

.c-accent-title--small .c-accent-title__text {
  font-size: 1.5rem;
  line-height: 1.3333333333;
}
@media screen and (max-width: 767px) {
  .c-accent-title--small .c-accent-title__text {
    font-size: 1.25rem;
    line-height: 1.4;
  }
}

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

.c-breadcrumb__inner {
  width: min(100%, 87.5rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__inner {
    width: fit-content;
    margin-inline: 0;
    padding-inline: 1.25rem;
  }
}

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

.c-breadcrumb__item {
  display: inline-flex;
  align-items: 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 0.25rem;
  flex-shrink: 0;
}

.c-breadcrumb__link {
  min-width: 0;
  color: var(--color-primary);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media (any-hover: hover) {
  .c-breadcrumb__link:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 0.125rem;
  }
}

.c-button {
  position: relative;
  display: inline-block;
  padding: 0.875rem 3.75rem;
  border: 1px solid currentcolor;
  background-color: var(--color-white);
  color: var(--color-black);
  font-size: 0.9375rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.c-button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 2px solid var(--color-black);
  border-right: 2px solid var(--color-black);
  translate: 0 -50%;
  rotate: 45deg;
  transition: rotate 0.3s, translate 0.3s;
}
@media (any-hover: hover) {
  .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);
}
.c-button[data-color=black]::before {
  border-top: 2px solid currentcolor;
  border-right: 2px solid currentcolor;
}

.c-floating-cta {
  display: none;
}
@media (width >= 768px) {
  .c-floating-cta {
    position: fixed;
    right: 0.625rem;
    bottom: 0.625rem;
    z-index: var(--z-index-overlay);
    display: block;
  }
}
.c-floating-cta.is-closed {
  display: none;
}

.is-floating-cta-closed .c-floating-cta {
  display: none;
}

.c-floating-cta__frame {
  position: relative;
  padding: 0.5rem;
  border-radius: 0.375rem;
  background-color: rgba(255, 255, 255, 0.6);
}
@supports (backdrop-filter: blur(7px)) {
  .c-floating-cta__frame {
    backdrop-filter: blur(7px);
  }
}

.c-floating-cta__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .c-floating-cta__close:hover {
    opacity: 0.75;
  }
}
.c-floating-cta__close:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.c-floating-cta__close-icon {
  position: relative;
  display: block;
  width: 1.28125rem;
  height: 1.28125rem;
}

.c-floating-cta__close-icon::before,
.c-floating-cta__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.8125rem;
  height: 0.0625rem;
  background-color: var(--color-white);
}

.c-floating-cta__close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.c-floating-cta__close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.c-floating-cta__stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 14.125rem;
}

.c-floating-cta__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media (hover: hover) {
  .c-floating-cta__card:hover {
    opacity: 1;
  }
}

.c-floating-cta__card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 10.625rem;
  row-gap: 0.5rem;
}

.c-floating-cta__card--line {
  padding-block: 1.25rem;
  background-color: var(--color-line);
}
.c-floating-cta__card--line .c-floating-cta__btn {
  border: 0.0625rem solid transparent;
  background-color: var(--color-white);
  color: var(--color-line);
  text-box: trim-both text;
}
@media (any-hover: hover) {
  .c-floating-cta__card--line:hover .c-floating-cta__btn {
    border: 0.0625rem solid var(--color-white);
    background-color: transparent;
    color: var(--color-white);
  }
}

.c-floating-cta__card--mail {
  padding-block: 1.1875rem;
  background-color: var(--color-primary);
}
.c-floating-cta__card--mail .c-floating-cta__btn {
  column-gap: 0.625rem;
  padding-block: 0.875rem;
  border: 0.0625rem solid var(--color-primary);
  background-color: var(--color-white);
  color: var(--color-primary);
  text-box: trim-both text;
}
@media (any-hover: hover) {
  .c-floating-cta__card--mail:hover .c-floating-cta__btn {
    border: 0.0625rem solid var(--color-white);
    background-color: transparent;
    color: var(--color-white);
  }
}

.c-floating-cta__lead {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.25rem;
}

.c-floating-cta__lead-text {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  white-space: nowrap;
}

.c-floating-cta__card--line .c-floating-cta__lead-text {
  color: var(--color-white);
}

.c-floating-cta__card--mail .c-floating-cta__lead-text {
  color: var(--color-white);
  letter-spacing: 0.05em;
}

.c-floating-cta__lead-icon {
  display: block;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  object-fit: contain;
}

.c-floating-cta__card--mail .c-floating-cta__lead-icon {
  width: 0.9739375rem;
  height: 0.9739375rem;
  filter: brightness(0) invert(1);
}

.c-floating-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.25rem;
  box-sizing: border-box;
  width: 100%;
  padding-block: 0.8125rem;
  padding-inline: 0.75rem;
  border-radius: 100vmax;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 0.8;
  white-space: nowrap;
  text-box: trim-both text;
  transition: border-color var(--duration), color var(--duration), background-color var(--duration);
}

.c-floating-cta__btn-arrow {
  display: block;
  flex-shrink: 0;
  width: 0.375rem;
  height: 0.375rem;
  background-color: currentcolor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8' fill='none'%3E%3Cpath d='M2.63131 0.798889C2.63131 1.2401 2.98898 1.59778 3.43018 1.59778H5.27242L0.233991 6.63616C-0.0779971 6.94816 -0.0779971 7.45401 0.233991 7.76601C0.545975 8.078 1.05181 8.078 1.3638 7.76601L6.40222 2.72758V4.56981C6.40222 5.01101 6.75991 5.3687 7.20111 5.3687C7.64231 5.3687 8 5.01101 8 4.56981V0.798889C8 0.587013 7.91585 0.383813 7.76603 0.233989C7.61621 0.0841707 7.41297 0 7.20111 0H3.43018C2.98898 0 2.63131 0.357679 2.63131 0.798889Z' fill='white'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.c-global-sp-nav {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-global-sp-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: calc(var(--z-index-header) + 1);
    display: block;
    pointer-events: none;
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
    transition: transform 0.38s cubic-bezier(0.33, 1, 0.68, 1), visibility 0.38s linear;
  }
}
@media screen and (max-width: 767px) {
  .c-global-sp-nav.is-visible {
    pointer-events: auto;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
}
@media screen and (prefers-reduced-motion: reduce) and (max-width: 767px) {
  .c-global-sp-nav {
    transition: none;
  }
}

@media screen and (max-width: 767px) {
  .c-global-sp-nav__inner {
    padding-top: 1px;
    padding-bottom: env(safe-area-inset-bottom, 1px);
    background-color: #767676;
  }
}

@media screen and (max-width: 767px) {
  .c-global-sp-nav__list {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    column-gap: 1px;
  }
}

@media screen and (max-width: 767px) {
  .c-global-sp-nav__item {
    display: flex;
    flex: 1 1 0;
    min-width: 0;
    background-color: var(--color-white);
  }
}

@media screen and (max-width: 767px) {
  .c-global-sp-nav__link {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 4.700875rem;
    padding: 0.9375rem 0.5rem;
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.05em;
    text-align: center;
    text-decoration: none;
    transition: opacity var(--duration);
  }
}
@media screen and (max-width: 767px) and (any-hover: hover) {
  .c-global-sp-nav__link:hover {
    opacity: 0.88;
  }
}

@media screen and (max-width: 767px) {
  .c-global-sp-nav__link--line {
    row-gap: 0.2785625rem;
    color: var(--color-line);
  }
}

@media screen and (max-width: 767px) {
  .c-global-sp-nav__link--mail {
    row-gap: 0.13rem;
  }
}

@media screen and (max-width: 767px) {
  .c-global-sp-nav__link--tel {
    row-gap: 0.3481875rem;
  }
}

@media screen and (max-width: 767px) {
  .c-global-sp-nav__icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    color: inherit;
  }
}

@media screen and (max-width: 767px) {
  .c-global-sp-nav__icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

@media screen and (max-width: 767px) {
  .c-global-sp-nav__icon-svg {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .c-global-sp-nav__label {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  body.has-global-sp-nav {
    padding-bottom: calc(4.700875rem + 1px + env(safe-area-inset-bottom, 0px));
  }
}

@media screen and (max-width: 767px) {
  body.is-drawer-open {
    padding-block-end: 0;
  }
}

.c-items-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  width: min(23.5rem, 100%);
  padding: 2.5rem;
  border-radius: 0.375rem;
  background-color: var(--color-white);
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.06);
  color: inherit;
  text-decoration: none;
  transition: box-shadow var(--duration), opacity var(--duration);
}
@media (width >= 768px) {
  .c-items-card {
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .c-items-card {
    align-items: stretch;
    width: 100%;
    max-width: auto;
    height: auto;
    min-height: 15.5rem;
    margin-inline: auto;
    padding: 1.25rem 1rem;
    border-radius: 0.17875rem;
    box-shadow: 0 0 0.476625rem rgba(0, 0, 0, 0.06);
  }
}
@media (any-hover: hover) {
  .c-items-card:hover {
    opacity: 1;
    box-shadow: 0 0 36px 4px rgba(91, 133, 170, 0.3);
  }
  .c-items-card:hover .c-items-card__media img {
    transform: scale(1.05);
  }
}

.c-items-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-start;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-items-card__body {
    gap: 0.375rem;
  }
}

.c-items-card .c-items-card__tags {
  margin: 0;
}

.c-items-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-items-card__tags {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0.25rem;
    align-items: flex-start;
  }
}

.c-items-card__brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0.25rem;
  border-radius: 0.25rem;
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-items-card__brand-badge {
    min-height: 1.125rem;
    border-radius: 0.125rem;
    font-size: max(0.5rem, 10px);
    font-weight: 700;
    line-height: 1;
  }
}

.c-items-card__brand-badge--amway {
  background-color: var(--c-items-card-brand-badge-bg, #064382);
}

.c-items-card__brand-badge--nuskin {
  background-color: var(--c-items-card-brand-badge-bg, #008fbf);
}

.c-items-card__brand-badge--fordays {
  background-color: var(--c-items-card-brand-badge-bg, #00862b);
}

.c-items-card__brand-badge--mikiprune {
  background-color: var(--c-items-card-brand-badge-bg, #7f6c87);
}

.c-items-card__brand-badge--other {
  background-color: var(--c-items-card-brand-badge-bg, #9ea4b5);
}

.c-items-card__category-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 1.5rem;
  padding: 0.125rem 0.25rem;
  border: 1px solid var(--color-gray500);
  border-radius: 0.25rem;
  background-color: var(--color-white);
  color: var(--color-gray500);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-items-card__category-tag {
    min-height: 1.125rem;
    border-radius: 0.125rem;
    font-size: max(0.5rem, 8.5px);
    font-weight: 500;
    line-height: normal;
    white-space: normal;
    text-align: left;
  }
}

.c-items-card__media {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 12.5rem;
  height: 12.5rem;
  margin-block-end: 1.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-items-card__media {
    width: 8.25rem;
    max-width: 100%;
    height: 6rem;
    margin-block-end: 0.7149375rem;
    margin-inline: auto;
  }
}
.c-items-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--duration);
}

.c-items-card__product-title {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  text-overflow: ellipsis;
  line-height: 1.3;
  letter-spacing: 0.05em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 767px) {
  .c-items-card__product-title {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.05em;
  }
}

.c-items-card__product-title--emphasis {
  font-weight: 700;
}

.c-items-card__price {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
  margin-block-start: auto;
}
@media screen and (max-width: 767px) {
  .c-items-card__price {
    gap: 0.125rem;
  }
}

.c-items-card__price-label {
  margin: 0;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.75rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-items-card__price-label {
    margin-block-end: 0;
    color: var(--color-text);
    font-size: 0.5rem;
    font-weight: 400;
    line-height: 1.5;
  }
}

.c-items-card__price-value {
  margin: 0;
  color: #b95069;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.75rem;
}
@media screen and (max-width: 767px) {
  .c-items-card__price-value {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 0.746;
  }
}

.c-items-card__price-value--text {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-items-card__price-value--text {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 0.746;
    letter-spacing: 0.05em;
  }
}

.c-items-card__price-num {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.c-items-card__price-yen {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
}
@media screen and (max-width: 767px) {
  .c-items-card__price-yen {
    font-size: 0.625rem;
    font-weight: 700;
    line-height: 1.3428;
  }
}

.c-page-hero {
  --c-page-hero-min-height: 18.75rem;
  --c-page-hero-min-height-sp: 12.5rem;
  position: relative;
  z-index: 0;
  min-height: var(--c-page-hero-min-height);
  overflow: hidden;
  background-color: var(--color-gray500);
}
@media screen and (max-width: 767px) {
  .c-page-hero {
    min-height: var(--c-page-hero-min-height-sp);
  }
}

.c-page-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  box-sizing: border-box;
  min-height: var(--c-page-hero-min-height);
  padding-block: 2rem;
}
@media screen and (max-width: 767px) {
  .c-page-hero__inner {
    z-index: 1;
    min-height: var(--c-page-hero-min-height-sp);
    padding-block: 1.5rem 2rem;
  }
}

.c-page-hero__en {
  margin: 0;
  color: var(--color-white);
  font-family: var(--ff-en);
  font-size: 1.75rem;
  font-weight: 200;
  line-height: normal;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-page-hero__en {
    font-size: 1.25rem;
  }
}

.c-page-hero__title {
  margin: 0;
  color: var(--color-white);
  font-size: 3rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-page-hero__title {
    font-size: 1.75rem;
  }
}

.c-page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: var(--c-page-hero-min-height);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .c-page-hero__media {
    min-height: var(--c-page-hero-min-height-sp);
  }
}

.c-page-hero__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/**
 * ページネーション共通コンポーネント
 *
 * 親（プロジェクト）から上書きする場合:
 *   - 呼び出し元で親クラスで wrap する（例: <div class="p-archive__pagination">...</div>）
 *   - プロジェクトの SCSS ではその wrapper クラスに --_pagination-* を設定する
 *   - 親の CSS ファイルに c-pagination のクラス名は書かない（コンポーネントのカプセル化）
 *
 * 上書き可能な変数: --_pagination-bg, --_pagination-text, --_pagination-text-hover,
 *   --_pagination-bg-hover, --_pagination-active-bg, --_pagination-active-text,
 *   --_pagination-border, --_pagination-border-hover
 */
.c-pagination {
  /* 色（ローカル変数。親の wrapper で上書き可能） */
  --_pagination-bg: var(--color-transparent, transparent);
  --_pagination-text: var(--color-gray600);
  --_pagination-text-hover: var(--color-primary, #5b85aa);
  --_pagination-bg-hover: var(--color-transparent, transparent);
  --_pagination-active-bg: var(--color-transparent, transparent);
  --_pagination-active-text: var(--color-primary, #5b85aa);
  --_pagination-border: var(--color-gray200, #e5e7eb);
  --_pagination-border-hover: var(--color-gray200, #e5e7eb);
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-pagination {
    gap: 1rem;
  }
}

.c-pagination__item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 1.5rem;
  min-width: 2.75rem;
  padding: 0 0.75rem;
  background-color: var(--_pagination-bg);
  color: var(--_pagination-text);
  font-size: 1.25rem;
  font-weight: 400;
  font-family: var(--ff-en);
  line-height: normal;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
@media screen and (max-width: 767px) {
  .c-pagination__item {
    min-width: 2.5rem;
    font-size: 1rem;
  }
}
@media (any-hover: hover) {
  .c-pagination__item:hover:not([data-state=current]) {
    border-color: var(--_pagination-border-hover);
    background-color: var(--_pagination-bg-hover);
    color: var(--_pagination-text-hover);
  }
}

.c-pagination__item[data-state=current] {
  position: relative;
  color: var(--_pagination-active-text);
}
.c-pagination__item[data-state=current]::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background-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] {
  position: relative;
  box-sizing: border-box;
  width: 3.375rem;
  min-width: 3.375rem;
  height: 3.375rem;
  padding: 0;
  border: 2px solid var(--color-gray500);
  border-radius: 50%;
  color: var(--color-gray500);
  font-weight: 500;
  transition: color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}
@media screen and (max-width: 767px) {
  .c-pagination__item[data-state=prev],
  .c-pagination__item[data-state=next] {
    width: 2.5rem;
    min-width: 2.5rem;
    height: 2.5rem;
  }
}
.c-pagination__item[data-state=prev]::after,
.c-pagination__item[data-state=next]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1rem;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.28857 0.292937C7.89805 0.683462 7.89804 1.31662 8.28856 1.70713L9.91914 3.33772L1.00004 3.3377C0.44775 3.3377 9.7538e-06 3.78544 4.96486e-06 4.33773C-4.51818e-06 4.89002 0.447712 5.33774 1 5.33773L9.91913 5.33771L8.28855 6.96829C7.89804 7.35881 7.89804 7.992 8.28855 8.38251C8.67906 8.77302 9.31225 8.77302 9.70277 8.38251L13.0405 5.04482C13.228 4.85728 13.3334 4.60295 13.3334 4.33773C13.3334 4.07252 13.228 3.81813 13.0405 3.6306L9.70277 0.292918C9.31226 -0.0975933 8.6791 -0.0975842 8.28857 0.292937Z' fill='%239EA4B5'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.28857 0.292937C7.89805 0.683462 7.89804 1.31662 8.28856 1.70713L9.91914 3.33772L1.00004 3.3377C0.44775 3.3377 9.7538e-06 3.78544 4.96486e-06 4.33773C-4.51818e-06 4.89002 0.447712 5.33774 1 5.33773L9.91913 5.33771L8.28855 6.96829C7.89804 7.35881 7.89804 7.992 8.28855 8.38251C8.67906 8.77302 9.31225 8.77302 9.70277 8.38251L13.0405 5.04482C13.228 4.85728 13.3334 4.60295 13.3334 4.33773C13.3334 4.07252 13.228 3.81813 13.0405 3.6306L9.70277 0.292918C9.31226 -0.0975933 8.6791 -0.0975842 8.28857 0.292937Z' fill='%239EA4B5'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .c-pagination__item[data-state=prev]::after,
  .c-pagination__item[data-state=next]::after {
    width: 0.875rem;
    height: 0.875rem;
  }
}
@media (any-hover: hover) {
  .c-pagination__item[data-state=prev]:hover:not([aria-disabled=true]):not([data-state=current]),
  .c-pagination__item[data-state=next]:hover:not([aria-disabled=true]):not([data-state=current]) {
    border-color: var(--_pagination-text-hover);
    color: var(--_pagination-text-hover);
  }
}

.c-pagination__item[data-state=prev]::after {
  transform: translate(-50%, -50%) scaleX(-1);
}

.c-pagination__item[data-state=prev][aria-disabled=true],
.c-pagination__item[data-state=next][aria-disabled=true] {
  opacity: 0.6;
  cursor: not-allowed;
  color: var(--color-gray500);
}
@media (any-hover: hover) {
  .c-pagination__item[data-state=prev][aria-disabled=true]:hover,
  .c-pagination__item[data-state=next][aria-disabled=true]:hover {
    border-color: var(--color-gray500);
    background-color: var(--color-white);
    color: var(--color-gray500);
    opacity: 0.6;
  }
}

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

.c-section-title {
  display: grid;
  gap: 0.5rem;
  justify-items: center;
  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__main {
  order: 2;
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-base);
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 0.9722222222;
  letter-spacing: 0.05em;
  text-transform: none;
}
@media screen and (max-width: 767px) {
  .c-section-title__main {
    font-size: 1.75rem;
    line-height: 1.35;
  }
}

.c-section-title__sub {
  order: 1;
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-en);
  font-size: 1.25rem;
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: none;
}
@media screen and (max-width: 767px) {
  .c-section-title__sub {
    font-size: 1rem;
  }
}

.c-section-title__lead {
  margin-block-start: 3.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-section-title__lead {
    margin-block-start: 1.5rem;
  }
}

.c-section-title--white .c-section-title__main,
.c-section-title--white .c-section-title__sub,
.c-section-title--white .c-section-title__lead {
  color: var(--color-white);
}

.c-sidebar {
  box-sizing: border-box;
  width: 100%;
  padding-inline: 0;
}
@media screen and (max-width: 767px) {
  .c-sidebar {
    display: flex;
    flex-direction: column-reverse;
    gap: 4rem;
    width: min(100%, 560px);
    margin-block-start: 2.25rem;
    margin-inline: auto;
  }
}

.c-sidebar__inner {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  box-sizing: border-box;
  width: 100%;
  max-width: 15.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .c-sidebar__inner {
    max-width: 16.875rem;
  }
}

.c-sidebar__widgets {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  background-color: var(--color-gray100);
  padding: 2rem 0.9375rem;
}

.c-sidebar__widget {
  margin: 0;
}

.c-sidebar__widget-title,
.c-sidebar__title {
  margin: 0;
  color: var(--color-gray900);
  font-size: 1rem;
  font-weight: 700;
  line-height: normal;
}

.c-sidebar__title--has-tags {
  margin: 0;
}

.c-sidebar__section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-block-start: 0.5rem;
}

.c-sidebar__section--index {
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-sidebar__section--index {
    display: none;
  }
}

.c-sidebar__section--achievements {
  gap: 1rem;
}

.c-sidebar__section--brands {
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .c-sidebar__section--brands {
    display: none;
  }
}

.c-sidebar__brands-top {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.c-sidebar__index-list {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-sidebar__index-item {
  margin: 0;
}

.c-sidebar__index-link {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.5rem;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  padding: 0.5rem 0.625rem 0.5rem 2.5rem;
  border-radius: 0;
  background-color: var(--color-white);
  color: var(--color-primary);
  text-decoration: none;
  transition: background-color var(--duration), color var(--duration);
}
@media (any-hover: hover) {
  .c-sidebar__index-link:hover {
    opacity: 1;
    background-color: var(--color-primary);
    color: var(--color-white);
  }
}
.c-sidebar__index-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.c-sidebar__index-item--current .c-sidebar__index-link {
  background-color: var(--color-primary);
  color: var(--color-white);
  pointer-events: none;
}

.c-sidebar__index-no {
  flex-shrink: 0;
  color: inherit;
  font-family: var(--ff-en);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: normal;
}

.c-sidebar__index-text {
  flex: 1 1 auto;
  min-width: 0;
  color: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: normal;
}

.c-sidebar__lead-heading {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  color: var(--color-gray900);
}

.c-sidebar__lead-line {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: normal;
}

.c-sidebar__lead-strong {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: normal;
}

.c-sidebar__stats {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-sidebar__stat-icon-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.c-sidebar__ctas {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  margin: 0.5rem 0 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .c-sidebar__ctas {
    display: none;
  }
}

.c-sidebar__ctas .c-sidebar__line {
  margin-block-start: 0;
}

.c-sidebar__line {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  padding: 0.71875rem 1.1858125rem;
  border: 1px solid var(--color-line);
  border-radius: 1.517875rem;
  background-color: var(--color-line);
  text-decoration: none;
  color: var(--color-white);
  margin-block-start: 0.5rem;
  transition: opacity var(--duration), background-color var(--duration), color var(--duration), border-color var(--duration);
}
@media (any-hover: hover) {
  .c-sidebar__line:hover {
    opacity: 1;
    border-color: var(--color-line);
    background-color: var(--color-white);
    color: var(--color-line);
  }
  .c-sidebar__line:hover .c-sidebar__line-arrow-wrap {
    background-color: var(--color-line);
  }
}
.c-sidebar__line:focus-visible {
  outline: 2px solid var(--color-line);
  outline-offset: 2px;
}

.c-sidebar__mail {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  padding: 0.84375rem 1.1858125rem;
  border: 1px solid var(--color-primary);
  border-radius: 1.5409375rem;
  background-color: var(--color-primary);
  text-decoration: none;
  color: #f7f9f4;
  margin: 0;
  transition: background-color var(--duration), color var(--duration), border-color var(--duration);
}
@media (any-hover: hover) {
  .c-sidebar__mail:hover {
    background-color: var(--color-white);
    border-color: var(--color-primary);
    color: var(--color-primary);
  }
  .c-sidebar__mail:hover .c-sidebar__line-arrow-wrap--on-primary {
    background-color: var(--color-primary);
  }
  .c-sidebar__mail:hover .c-sidebar__line-ico--mail {
    background-color: var(--color-primary);
  }
}
.c-sidebar__mail:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.c-sidebar__mail .c-sidebar__line-label {
  font-size: 0.9375rem;
}

.c-sidebar__mail .c-sidebar__line-ico {
  width: 1rem;
  height: 1rem;
}

.c-sidebar__line-ico--mail {
  display: block;
  width: 1rem;
  height: 1rem;
  object-fit: contain;
  background-color: var(--color-white);
  transition: background-color var(--duration);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 13 13' fill='none'%3E%3Cg clip-path='url(%23clip0_9861_10127)'%3E%3Cpath d='M2.69815 3.80913L6.40464 6.98689C6.4424 7.01927 6.50715 7.01927 6.54491 6.98689L10.2514 3.80913M1.72701 2.1582H11.2225C11.5786 2.1582 11.87 2.44954 11.87 2.80563V9.49566C11.87 10.2078 11.2873 10.7905 10.5751 10.7905H2.37443C1.66227 10.7905 1.07959 10.2078 1.07959 9.49566V2.80563C1.07959 2.44954 1.37093 2.1582 1.72701 2.1582Z' stroke='%23F7F9F4' stroke-width='0.971133' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_9861_10127'%3E%3Crect width='12.9484' height='12.9484' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.c-sidebar__line-arrow-wrap--on-primary {
  background-color: var(--color-white);
  transition: background-color var(--duration);
}

.c-sidebar__tel {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--color-primary);
  text-decoration: none;
}

.c-sidebar__tel-body {
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  min-height: auto;
  padding: 0.40625rem 1.25rem;
  border: 1px solid var(--color-primary);
  border-radius: 1.5409375rem;
  background-color: var(--color-white);
  color: var(--color-primary);
  transition: background-color var(--duration), border-color var(--duration);
}

.c-sidebar__tel:hover .c-sidebar__tel-body,
.c-sidebar__tel:focus-visible .c-sidebar__tel-body {
  background-color: #f4f4f4;
}

.c-sidebar__tel:focus-visible .c-sidebar__tel-body {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.c-sidebar__tel-lead {
  margin: 0;
  color: var(--color-primary);
  font-size: 0.5625rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.027em;
  text-align: center;
}

.c-sidebar__tel-lead-prefix,
.c-sidebar__tel-lead-time {
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
}

.c-sidebar__tel-lead-time {
  font-family: var(--ff-en);
}

.c-sidebar__tel-dial-row {
  display: flex;
  flex-flow: row nowrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
}

.c-sidebar__tel-ico {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1rem;
}

.c-sidebar__tel-ico-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.c-sidebar__tel-num {
  color: inherit;
  font-family: var(--ff-en);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.9px;
}

.c-sidebar__line-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100%;
  max-width: 12.6785625rem;
  margin-inline: auto;
  gap: 0;
}

.c-sidebar__line-main {
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.5356875rem;
  align-items: center;
  min-width: 0;
}

.c-sidebar__line-ico {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
}

.c-sidebar__line-ico-img {
  display: block;
  width: 1.625rem;
  height: 1.5625rem;
  object-fit: contain;
  transition: filter var(--duration);
}

.c-sidebar__line-label {
  min-width: 0;
  color: inherit;
  font-family: var(--ff-base);
  font-size: 0.892875rem;
  font-weight: 700;
  line-height: 1;
  text-align: start;
  white-space: nowrap;
}

.c-sidebar__line-arrow-wrap {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-white);
  transition: background-color var(--duration);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8' fill='none'%3E%3Cpath d='M2.63131 0.798889C2.63131 1.2401 2.98898 1.59778 3.43018 1.59778H5.27242L0.233991 6.63616C-0.0779971 6.94816 -0.0779971 7.45401 0.233991 7.76601C0.545975 8.078 1.05181 8.078 1.3638 7.76601L6.40222 2.72758V4.56981C6.40222 5.01101 6.75991 5.3687 7.20111 5.3687C7.64231 5.3687 8 5.01101 8 4.56981V0.798889C8 0.587013 7.91585 0.383813 7.76603 0.233989C7.61621 0.0841707 7.41297 0 7.20111 0H3.43018C2.98898 0 2.63131 0.357679 2.63131 0.798889Z' fill='white'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.c-sidebar__brand-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: flex-end;
  justify-content: flex-start;
}

.c-sidebar__tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.375rem;
  max-width: 12.375rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-sidebar__tag {
  display: inline-flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  padding: 0.3125rem;
  border: 1px solid var(--color-gray300);
  border-radius: 0.25rem;
  background-color: var(--color-white);
  color: var(--color-gray600);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--duration), border-color var(--duration), background-color var(--duration);
}
@media (any-hover: hover) {
  .c-sidebar__tag:hover {
    opacity: 1;
    color: var(--color-white);
    border-color: var(--color-primary);
    background-color: var(--color-primary);
  }
  .c-sidebar__tag:hover .c-sidebar__tag-note {
    color: var(--color-primary);
  }
}

.c-sidebar__tag-note {
  margin: 0;
  color: var(--color-gray900);
  font-size: 0.6875rem;
  line-height: normal;
  white-space: nowrap;
}

.c-sidebar__text {
  margin: 0;
  color: var(--color-gray600);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: normal;
}

.c-sidebar__disclaimer {
  margin: 0;
  color: #aaaaaa;
  font-size: 0.625rem;
  line-height: normal;
}

.c-sidebar__widgets .widget_text p {
  margin: 0;
  color: var(--color-gray600);
  font-size: 0.875rem;
  line-height: 1.5;
}

.c-sidebar__aside-posts {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  box-sizing: border-box;
  width: 100%;
  margin-block-start: 2.25rem;
}
@media screen and (max-width: 767px) {
  .c-sidebar__aside-posts {
    margin-block-start: 0;
  }
}

.c-sidebar__post-section {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  width: 100%;
}

.c-sidebar__post-section-title {
  margin: 0;
  color: var(--color-gray900);
  font-size: 1rem;
  font-weight: 700;
  line-height: normal;
}

.c-sidebar__post-list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-sidebar__post-item {
  margin: 0;
  border-block-end: 1px solid var(--color-gray500);
}

.c-sidebar__post-link {
  display: flex;
  flex-flow: row nowrap;
  gap: 1.3125rem;
  justify-content: flex-start;
  align-items: flex-start;
  box-sizing: border-box;
  padding-block: 0.9375rem;
  color: inherit;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .c-sidebar__post-link:hover {
    opacity: 0.82;
  }
}
.c-sidebar__post-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.c-sidebar__post-thumb-holder {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  width: 5rem;
  height: 5rem;
  border-radius: 0.25rem;
}

.c-sidebar__post-thumb-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: var(--color-gray100);
}

.c-sidebar__post-thumb-img--empty {
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-gray300);
}

.c-sidebar__post-copy {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  min-width: 0;
}

.c-sidebar__post-cat {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  align-self: flex-start;
  overflow: hidden;
  box-sizing: border-box;
  min-height: 1.0625rem;
  padding: 0.25rem;
  border-radius: 0.125rem;
  background-color: var(--c-sidebar-post-cat-bg, var(--color-primary));
  color: var(--color-white);
}

.c-sidebar__post-cat-text {
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.1;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.c-sidebar__post-title {
  margin: 0;
  color: #2f3034;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.05em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.p-access {
  padding-block: 7.5rem;
  background-color: var(--color-background);
}
@media screen and (max-width: 767px) {
  .p-access {
    padding-block: 5rem;
  }
}

.p-access__inner {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-access__inner {
    gap: 2.5rem;
  }
}

.p-access__head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-sizing: border-box;
  width: 100%;
  max-width: 31.4375rem;
}

.p-access__en {
  margin: 0;
  color: var(--color-gray900);
  font-family: var(--ff-en);
  font-weight: 200;
  font-size: max(1.25rem, 8px);
  letter-spacing: 0.05em;
}

.p-access__title {
  margin: 0;
  color: var(--color-gray900);
  font-weight: 500;
  font-size: max(2.25rem, 8px);
  font-weight: 500;
  line-height: 0.9722222222;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-access__title {
    font-size: max(1.75rem, 8px);
    font-weight: 500;
    line-height: 1.2142857143;
    letter-spacing: 0.05em;
  }
}

.p-access__map {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 75.5rem;
  aspect-ratio: 2.1963636364;
}

.p-access__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.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-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-before-sell {
  position: relative;
  padding-block: 7.5rem;
  background: url("../images/bg_before-sell.webp") no-repeat center center/cover;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-before-sell {
    padding-block: 3.5rem;
  }
}

.p-before-sell__inner {
  display: flex;
  flex-direction: column;
  gap: 2.6875rem;
}

.p-before-sell__top {
  display: flex;
  flex-direction: column;
  gap: 5.125rem;
}
@media screen and (max-width: 767px) {
  .p-before-sell__top {
    gap: 2.5rem;
  }
}

.p-before-sell__catch {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  width: 100%;
}

.p-before-sell__catch-text {
  position: relative;
  margin: 0;
  max-width: 47.5rem;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 0.875;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-before-sell__catch-text {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.75rem;
    line-height: 1.4;
  }
}
.p-before-sell__catch-text::before {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
}

.p-before-sell__lead-block {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-before-sell__lead-block {
    gap: 1.5rem;
  }
}

.p-before-sell__lead-block .c-section-title {
  gap: 0.25rem;
}

.p-before-sell__intro {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.p-before-sell__intro-text {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.p-before-sell__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
  justify-items: center;
}
@media screen and (max-width: 767px) {
  .p-before-sell__cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-before-sell__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 24.3125rem;
  padding-block: 2.5rem;
  padding-inline: 0;
  border-radius: 0.375rem;
  background-color: var(--color-white);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.06);
}

.p-before-sell__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 1.25rem;
  font-family: var(--ff-en), var(--ff-base);
  font-size: 1.3125rem;
  font-weight: 500;
  line-height: 1;
  color: var(--color-white);
}

.p-before-sell__badge--1 {
  background-color: var(--color-primary);
}

.p-before-sell__badge--2 {
  background-color: #4a9a8a;
}

.p-before-sell__badge--3 {
  background-color: #b08040;
}

.p-before-sell__illu {
  position: relative;
  display: flex;
  justify-content: center;
  overflow: visible;
  width: 100%;
  margin-block-start: 1.25rem;
}

.p-before-sell__illu--1 {
  width: 6.5625rem;
}

.p-before-sell__illu--2 {
  width: 10.3125rem;
  translate: -1.0625rem 0;
}

.p-before-sell__illu--3 {
  width: 11.9375rem;
}

.p-before-sell__illu img {
  display: block;
  width: 100%;
  height: auto;
}

.p-before-sell__card-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  width: 100%;
  margin-block-start: 1.25rem;
  padding-inline: 2.5rem;
  box-sizing: border-box;
}

.p-before-sell__card-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.p-before-sell__card-title--1 {
  color: var(--color-primary);
}

.p-before-sell__card-title--2 {
  color: #4a9a8a;
}

.p-before-sell__card-title--3 {
  letter-spacing: 0.05em;
  color: #b08040;
}

.p-before-sell__card-text {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--color-gray900);
}

.p-business {
  padding-block: 7.5rem 0;
  background-color: var(--color-background);
}
@media screen and (max-width: 767px) {
  .p-business {
    padding-block: 5rem 0;
  }
}

.p-business__inner {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-business__inner {
    gap: 2.5rem;
  }
}

.p-business__head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-sizing: border-box;
  width: 100%;
  max-width: 31.4375rem;
}

.p-business__en {
  margin: 0;
  color: var(--color-gray900);
  font-family: var(--ff-en);
  font-weight: 200;
  font-size: max(1.25rem, 8px);
  letter-spacing: 0.05em;
}

.p-business__title {
  margin: 0;
  color: var(--color-gray900);
  font-weight: 500;
  font-size: max(2.25rem, 8px);
  font-weight: 500;
  line-height: 0.9722222222;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-business__title {
    font-size: max(1.75rem, 8px);
    font-weight: 500;
    line-height: 1.2142857143;
    letter-spacing: 0.05em;
  }
}

.p-business__list {
  display: flex;
  flex-flow: row nowrap;
  gap: 1.25rem;
  align-items: stretch;
  box-sizing: border-box;
  width: 100%;
  max-width: 69rem;
  margin: 0;
  padding: 0;
  padding-inline-start: 13rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-business__list {
    flex-direction: column;
    max-width: none;
    padding-inline-start: 0;
  }
}

.p-business__item {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-business__item {
    flex: 0 0 auto;
  }
}

.p-business__card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  padding: 2.5rem;
  border-radius: 0.375rem;
  background-color: var(--color-white);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.06);
}

.p-business__icon-wrap {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
}

.p-business__icon-wrap--delivery {
  width: 5rem;
  height: 4rem;
}

.p-business__icon-wrap--square {
  width: 4rem;
  height: 4rem;
}

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

.p-business__card-title {
  margin: 0;
  padding-block: 0.375rem 0.0625rem;
  color: var(--color-gray900);
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
  font-size: max(1.25rem, 8px);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.05em;
}

.p-business__card-desc {
  width: 100%;
  margin: 0;
  color: #666666;
  font-weight: 500;
  text-align: left;
  font-size: max(0.9375rem, 8px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.p-business__card-desc-line {
  margin: 0;
}

.p-business__card-desc-line + .p-business__card-desc-line {
  margin-block-start: 0;
}

.p-buyback-items {
  padding-block: 7.5rem;
  background-color: var(--color-gray100);
}
@media screen and (max-width: 767px) {
  .p-buyback-items {
    padding-block: 3.5rem;
  }
}

.p-buyback-items__inner {
  display: flex;
  flex-direction: column;
}

.p-buyback-items__header {
  margin-block-end: 5rem;
}
@media screen and (max-width: 767px) {
  .p-buyback-items__header {
    margin-block-end: 2.5rem;
  }
}

.p-buyback-items__brands {
  display: flex;
  flex-direction: column;
  gap: 10rem;
}
@media screen and (max-width: 767px) {
  .p-buyback-items__brands {
    gap: 3.5rem;
  }
}

.p-buyback-items__brand-foot {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-buyback-items__brand-foot {
    margin-block-start: 1.40625rem;
  }
}

.p-buyback-items__more {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--color-gray600);
  font-family: var(--ff-base);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-buyback-items__more {
    font-size: 0.9375rem;
    line-height: 1.5;
    letter-spacing: 0.45px;
  }
}
@media (any-hover: hover) {
  .p-buyback-items__more:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 0.25rem;
  }
}

.p-buyback-items__more-icon {
  display: block;
  flex-shrink: 0;
  width: 0.625rem;
  height: 0.625rem;
  background-color: currentcolor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8' fill='none'%3E%3Cpath d='M2.63131 0.798889C2.63131 1.2401 2.98898 1.59778 3.43018 1.59778H5.27242L0.233991 6.63616C-0.0779971 6.94816 -0.0779971 7.45401 0.233991 7.76601C0.545975 8.078 1.05181 8.078 1.3638 7.76601L6.40222 2.72758V4.56981C6.40222 5.01101 6.75991 5.3687 7.20111 5.3687C7.64231 5.3687 8 5.01101 8 4.56981V0.798889C8 0.587013 7.91585 0.383813 7.76603 0.233989C7.61621 0.0841707 7.41297 0 7.20111 0H3.43018C2.98898 0 2.63131 0.357679 2.63131 0.798889Z' fill='white'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.p-buyback-items__catalog {
  margin-block-start: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-buyback-items__catalog {
    margin-block-start: 0.5rem;
  }
}
@media (width >= 768px) {
  .p-buyback-items__catalog {
    width: 100%;
  }
}

@media (width >= 768px) {
  .p-buyback-items__catalog[data-only-device=md] .p-buyback-items__grid-item:nth-child(n+10) {
    display: none;
  }
}
.p-buyback-items__catalog--slider {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-buyback-items__catalog--slider {
    display: block;
    width: 100vw;
    margin-top: 0.5rem;
    margin-inline: calc(50% - 50vw);
    overflow: hidden;
  }
}

.p-buyback-items__catalog--slider .swiper {
  overflow: hidden;
  width: 100%;
  padding-inline: 1.25rem;
}

.p-buyback-items__catalog--slider .swiper-slide {
  height: auto;
}

.p-buyback-items__catalog--slider .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 0.6875rem;
  padding-bottom: 0;
}

.p-buyback-items__catalog--slider .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  margin: 0 0.25rem;
  background-color: var(--color-gray300);
  opacity: 1;
}

.p-buyback-items__catalog--slider .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.p-buyback-items__grid {
  display: grid;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(3, minmax(0, 23.5rem));
  gap: 2.5rem;
  justify-content: center;
}

.p-buyback-items__grid--sp-slide {
  display: grid;
  box-sizing: border-box;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  width: 100%;
}

.p-buyback-items__grid--sp-slide .p-buyback-items__grid-item {
  display: flex;
}

.p-buyback-items__grid--sp-slide .c-items-card {
  flex: 1 1 auto;
  width: 100%;
}

.p-buyback-items__grid-item {
  display: block;
  min-width: 0;
}
@media (width >= 768px) {
  .p-buyback-items__grid-item {
    height: 100%;
  }
}

.p-buyback-items__footer-text {
  margin: 5rem 0 0;
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-buyback-items__footer-text {
    margin-block-start: 2.5rem;
    font-size: 0.9375rem;
    text-align: left;
  }
}

.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-commitment {
  padding-block: 7.5rem;
  background-color: var(--color-background);
}
@media screen and (max-width: 767px) {
  .p-commitment {
    padding-block: 5rem;
  }
}

.p-commitment__inner {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-commitment__inner {
    gap: 2.5rem;
  }
}

.p-commitment__head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-sizing: border-box;
  width: 100%;
  max-width: 31.4375rem;
}

.p-commitment__en {
  margin: 0;
  color: var(--color-gray900);
  font-family: var(--ff-en);
  font-weight: 200;
  font-size: max(1.25rem, 8px);
  letter-spacing: 0.05em;
}

.p-commitment__title {
  margin: 0;
  color: var(--color-gray900);
  font-weight: 500;
  font-size: max(2.25rem, 8px);
  font-weight: 500;
  line-height: 0.9722222222;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-commitment__title {
    font-size: max(1.75rem, 8px);
    font-weight: 500;
    line-height: 1.2142857143;
    letter-spacing: 0.05em;
  }
}

.p-commitment__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-sizing: border-box;
  width: 100%;
  max-width: 69rem;
  padding-inline-start: 13rem;
}
@media screen and (max-width: 767px) {
  .p-commitment__body {
    max-width: none;
    padding-inline-start: 0;
  }
}

.p-commitment__row {
  display: flex;
  flex-flow: row nowrap;
  gap: 1.25rem;
  align-items: stretch;
  box-sizing: border-box;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-commitment__row {
    flex-direction: column;
  }
}

.p-commitment__card {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  box-sizing: border-box;
  min-width: 0;
  min-height: 18rem;
  padding: 2.5rem 2.3125rem;
  border-radius: 0.375rem;
  background-color: var(--color-white);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 767px) {
  .p-commitment__card {
    flex: 0 0 auto;
    min-height: 0;
  }
}

.p-commitment__icon-wrap {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  height: 3.125rem;
  width: 5.1875rem;
  max-width: 100%;
}

.p-commitment__icon {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.p-commitment__card-title {
  width: 100%;
  margin: 0;
  padding-block: 0.4375rem 0;
  color: var(--color-secondary);
  font-weight: 700;
  text-align: center;
  font-size: max(1.25rem, 8px);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.05em;
}

.p-commitment__card-desc {
  width: 100%;
  margin: 0;
  color: #666666;
  font-weight: 500;
  text-align: left;
  font-size: max(0.9375rem, 8px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.p-commitment__card-desc--small {
  font-size: max(0.8125rem, 8px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0em;
}

.p-commitment__card-desc-line {
  margin: 0;
}

.p-commitment__card-desc-line + .p-commitment__card-desc-line {
  margin-block-start: 0;
}

.p-company {
  padding-block: 7.5rem 0;
  background-color: var(--color-background);
}
@media screen and (max-width: 767px) {
  .p-company {
    padding-block: 5rem 0;
  }
}

.p-company__inner {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-company__inner {
    gap: 2.5rem;
  }
}

.p-company__head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-sizing: border-box;
  width: 100%;
  max-width: 31.4375rem;
}

.p-company__en {
  margin: 0;
  color: var(--color-gray900);
  font-family: var(--ff-en);
  font-weight: 200;
  font-size: max(1.25rem, 8px);
  letter-spacing: 0.05em;
}

.p-company__title {
  margin: 0;
  color: var(--color-gray900);
  font-weight: 500;
  font-size: max(2.25rem, 8px);
  font-weight: 500;
  line-height: 0.9722222222;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-company__title {
    font-size: max(1.75rem, 8px);
    font-weight: 500;
    line-height: 1.2142857143;
    letter-spacing: 0.05em;
  }
}

.p-company__overview {
  box-sizing: border-box;
  width: 100%;
  max-width: 69rem;
  padding-inline-start: 13rem;
}
@media screen and (max-width: 767px) {
  .p-company__overview {
    max-width: none;
    padding-inline-start: 0;
  }
}

.p-company__dl {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.p-company__group {
  display: grid;
  grid-template-columns: 15rem minmax(0, 1fr);
  column-gap: 1.25rem;
  box-sizing: border-box;
  padding-block-end: 1rem;
  margin-block-end: 1.25rem;
  border-block-end: 1px solid var(--color-gray300);
}
@media screen and (max-width: 767px) {
  .p-company__group {
    grid-template-columns: 1fr;
    row-gap: 0.5rem;
    padding-block-end: 0.75rem;
    margin-block-end: 1rem;
  }
}

.p-company__group:last-child {
  margin-block-end: 0;
}

.p-company__term {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: max(1.25rem, 8px);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-company__term {
    grid-column: 1;
    grid-row: 1;
    font-size: max(1.125rem, 8px);
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.05em;
  }
}

.p-company__desc {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  color: var(--color-gray900);
  font-size: max(1rem, 8px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-company__desc {
    grid-column: 1;
    grid-row: 2;
    font-size: max(0.9375rem, 8px);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
}

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

.p-company__desc-line + .p-company__desc-line {
  margin-block-start: 0;
}

.p-contact {
  padding-block: 4.5rem;
}

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

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

.p-cta {
  position: relative;
  overflow: hidden;
  padding-block: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-cta {
    padding-block: 3.5rem;
  }
}

.p-cta__bg {
  position: absolute;
  inset: 0;
  background: url("../images/bg_cta.webp") no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-cta__bg {
    background-image: url("../images/bg_cta_sp.webp");
  }
}

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

.p-cta__head {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-cta__head {
    gap: 1.5rem;
  }
}

.p-cta__title {
  margin: 0;
  color: var(--color-white);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 0.875;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-cta__title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.25;
  }
}

.p-cta__lead {
  margin: 0;
  color: var(--color-white);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-cta__lead {
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.03em;
  }
}

.p-cta__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.375rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-cta__links {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

.p-cta__link {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  align-items: center;
  justify-content: center;
  min-height: 10rem;
  padding: 1.6875rem 1.625rem;
  border-radius: 0.4375rem;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-cta__link {
    gap: 0.25rem;
    min-height: 4rem;
    padding: 0.84375rem 1.6875rem;
    border-radius: 100vmax;
  }
}
@media (any-hover: hover) {
  .p-cta__link:hover {
    opacity: 1;
  }
  .p-cta__link:hover .p-cta__link-main {
    background: transparent;
  }
}

.p-cta__link--line {
  background: var(--color-line);
}
@media (any-hover: hover) {
  .p-cta__link--line:hover .p-cta__link-main {
    border: 0.0625rem solid var(--color-white);
    color: var(--color-white);
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .p-cta__link--line:hover .p-cta__link-main {
    border: 0;
    color: var(--color-white);
  }
}

.p-cta__link--mail {
  background: var(--color-primary);
}
@media (any-hover: hover) {
  .p-cta__link--mail:hover .p-cta__link-main {
    border: 0.0625rem solid var(--color-white);
    color: var(--color-white);
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .p-cta__link--mail:hover .p-cta__link-main {
    border: 0;
    color: var(--color-white);
  }
}

.p-cta__link--tel {
  gap: 1.0625rem;
  min-height: auto;
  padding-block: 2.0625rem;
  background: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-cta__link--tel {
    gap: 0.25rem;
    min-height: 4rem;
    padding-block: 0.84375rem;
    padding-inline: 2.5rem;
  }
}
@media (any-hover: hover) {
  .p-cta__link--tel:hover {
    opacity: 0.92;
  }
}

.p-cta__tel-hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-cta__tel-hours {
    justify-content: center;
    line-height: 1;
  }
}

.p-cta__tel-hours-image {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.3125rem;
  height: 1.25rem;
}

.p-cta__tel-hours-icon {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.p-cta__tel-hours-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  color: var(--color-primary);
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-cta__tel-hours-inner {
    gap: 0.5rem;
  }
}

.p-cta__tel-hours-label {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-cta__tel-hours-label {
    font-size: 0.75rem;
    line-height: 1;
    letter-spacing: 0.05em;
  }
}

.p-cta__tel-hours-time {
  font-family: var(--ff-en);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-cta__tel-hours-time {
    font-size: 0.75rem;
    line-height: 1;
    letter-spacing: 0.05em;
  }
}

.p-cta__tel-middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-cta__tel-middle {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.125rem;
  }
}

.p-cta__tel-middle-start {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-cta__tel-middle-start {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .p-cta__tel-middle-start .p-cta__tel-hours-image {
    display: inline-flex;
    width: 1.25rem;
    height: 1.1875rem;
  }
}

.p-cta__tel-arrow {
  flex-shrink: 0;
  width: 0.625rem;
  height: 0.625rem;
  background-color: var(--color-primary);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8' fill='none'%3E%3Cpath d='M2.63131 0.798889C2.63131 1.2401 2.98898 1.59778 3.43018 1.59778H5.27242L0.233991 6.63616C-0.0779971 6.94816 -0.0779971 7.45401 0.233991 7.76601C0.545975 8.078 1.05181 8.078 1.3638 7.76601L6.40222 2.72758V4.56981C6.40222 5.01101 6.75991 5.3687 7.20111 5.3687C7.64231 5.3687 8 5.01101 8 4.56981V0.798889C8 0.587013 7.91585 0.383813 7.76603 0.233989C7.61621 0.0841707 7.41297 0 7.20111 0H3.43018C2.98898 0 2.63131 0.357679 2.63131 0.798889Z' fill='white'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.p-cta__tel-catch {
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-cta__tel-catch {
    font-size: 1rem;
    line-height: 1;
    text-align: start;
  }
}

.p-cta__tel-dial {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-cta__tel-dial {
    display: none;
  }
}

.p-cta__tel-dial-mark {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.4375rem;
  height: 1.5625rem;
}

.p-cta__tel-dial-mark-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.p-cta__tel-dial-num {
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-cta__tel-dial-num {
    font-size: 1.375rem;
  }
}

.p-cta__link-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-cta__link-top {
    width: 100%;
  }
}

.p-cta__link-icon-wrap--sub {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-cta__link-icon-wrap--sub {
    display: none;
  }
}

.p-cta__link-icon {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.p-cta__link-icon-wrap--main {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-cta__link-icon-wrap--main {
    display: inline-flex;
  }
}

.p-cta__link-sub {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: left;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-cta__link-sub {
    width: 100%;
    font-size: 0.75rem;
    line-height: 1;
    letter-spacing: 0.05em;
    text-align: center;
    white-space: nowrap;
  }
}

.p-cta__link-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4375rem;
  width: 100%;
  max-width: 20rem;
  min-height: 4.25rem;
  padding: 1.3125rem 1.25rem;
  border: 0.0625rem solid var(--color-white);
  border-radius: 2.125rem;
  background: var(--color-white);
  box-sizing: border-box;
  transition: border-color var(--duration), color var(--duration), background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-cta__link-main {
    justify-content: center;
    max-width: none;
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    gap: 1.25rem;
  }
}

.p-cta__link-main-body {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-cta__link-main-body {
    min-width: 0;
  }
}

.p-cta__link--line .p-cta__link-main {
  color: var(--color-line);
}
@media screen and (max-width: 767px) {
  .p-cta__link--line .p-cta__link-main {
    color: var(--color-white);
  }
}

.p-cta__link--mail .p-cta__link-main {
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-cta__link--mail .p-cta__link-main {
    color: #f7f9f4;
  }
}

.p-cta__link-label {
  color: currentcolor;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: normal;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-cta__link-label {
    font-size: 1rem;
  }
}

.p-cta__link-label-text--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-cta__link-label-text--sp {
    display: inline;
  }
}

@media screen and (max-width: 767px) {
  .p-cta__link-label-text--pc {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .p-cta__link--line .p-cta__link-icon-wrap--main {
    width: 1.25rem;
    height: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-cta__link--mail .p-cta__link-icon-wrap--main {
    width: 1.25rem;
    height: 1rem;
  }
}

.p-cta__link-arrow {
  display: block;
  flex-shrink: 0;
  width: 0.64375rem;
  height: 0.64375rem;
  background-color: currentcolor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8' fill='none'%3E%3Cpath d='M2.63131 0.798889C2.63131 1.2401 2.98898 1.59778 3.43018 1.59778H5.27242L0.233991 6.63616C-0.0779971 6.94816 -0.0779971 7.45401 0.233991 7.76601C0.545975 8.078 1.05181 8.078 1.3638 7.76601L6.40222 2.72758V4.56981C6.40222 5.01101 6.75991 5.3687 7.20111 5.3687C7.64231 5.3687 8 5.01101 8 4.56981V0.798889C8 0.587013 7.91585 0.383813 7.76603 0.233989C7.61621 0.0841707 7.41297 0 7.20111 0H3.43018C2.98898 0 2.63131 0.357679 2.63131 0.798889Z' fill='white'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
@media screen and (max-width: 767px) {
  .p-cta__link-arrow {
    width: 0.5rem;
    height: 0.5rem;
  }
}

.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: 7.5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-error {
    padding-block: 3.75rem 6.25rem;
  }
}

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

.p-error__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  text-align: center;
}

.p-error__code {
  display: block;
  width: 100%;
  max-width: 23rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-error__code {
    max-width: 15rem;
  }
}

.p-error__magnify {
  display: block;
  width: 11.875rem;
  height: 11.875rem;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-error__magnify {
    width: 7.5rem;
    height: 7.5rem;
  }
}

.p-error__title {
  margin: 0;
  color: var(--color-gray900);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-error__title {
    font-size: 1.5rem;
  }
}

.p-error__message {
  max-width: 36.3125rem;
  width: 100%;
  font-size: max(1rem, 8px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--color-gray900);
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-error__message {
    font-size: max(0.9375rem, 8px);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
}

.p-error__p {
  margin: 0;
}

.p-error__p + .p-error__p {
  margin-block-start: 0;
}

.p-error__form {
  max-width: 28.5rem;
  width: 100%;
}

.p-error__form-inner {
  display: flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  min-height: 3.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid #5b5b5b;
  border-radius: 2.5rem;
  background-color: var(--color-base);
  gap: 0.5rem;
}

.p-error__label {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.p-error__input {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--color-gray900);
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
}
@media screen and (max-width: 767px) {
  .p-error__input {
    font-size: 1rem;
  }
}

.p-error__input::placeholder {
  color: #7e7f83;
}

.p-error__search-btn {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--color-gray600);
  line-height: 0;
  background: transparent;
  cursor: pointer;
}

.p-error__search-icon {
  display: block;
  width: 1.0625rem;
  height: 1.0625rem;
}

.p-error__nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-error__nav-wrap {
    gap: 2.5rem;
  }
}

.p-error__section {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-error__section {
    gap: 2rem;
  }
}

.p-error__list {
  display: grid;
  grid-template-rows: repeat(2, fit-content(100%));
  grid-template-columns: repeat(5, fit-content(100%));
  margin: 0;
  margin-inline: auto;
  padding: 0;
  list-style: none;
  row-gap: 4.125rem;
  column-gap: 4.125rem;
}
@media screen and (max-width: 767px) {
  .p-error__list {
    width: 100%;
    grid-template-columns: repeat(2, fit-content(100%));
    row-gap: 1rem;
    column-gap: 1.5rem;
  }
}

.p-error__list-brands {
  display: grid;
  grid-template-rows: repeat(2, fit-content(100%));
  grid-template-columns: repeat(4, fit-content(100%));
  margin: 0;
  margin-inline: auto;
  padding: 0;
  list-style: none;
  row-gap: 4.125rem;
  column-gap: 4.125rem;
}
@media screen and (max-width: 767px) {
  .p-error__list-brands {
    width: 100%;
    grid-template-columns: repeat(2, fit-content(100%));
    row-gap: 1rem;
    column-gap: 2.5rem;
  }
}

.p-error__item--wide {
  grid-column: 1;
}

.p-error__link {
  font-size: max(1.25rem, 8px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-gray600);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-error__link {
    font-size: max(0.875rem, 8px);
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
}
@media (any-hover: hover) {
  .p-error__link:hover {
    text-decoration: underline;
  }
}

.p-error__to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9375rem 2.5rem;
  font-size: max(1.375rem, 8px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-gray600);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-error__to-top {
    font-size: max(1rem, 8px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.03em;
  }
}
@media (any-hover: hover) {
  .p-error__to-top:hover {
    text-decoration: underline;
  }
}

.p-faq__section {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.p-faq {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-faq {
    width: min(100%, 560px);
    margin-inline: auto;
    gap: 2.5rem;
  }
}

.p-faq__section {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-faq__section {
    gap: 1.5rem;
  }
}

.p-faq__head {
  padding: 1rem;
  border-bottom: 2px solid var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-faq__head {
    padding: 0.5rem;
  }
}

.p-faq__head-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.p-faq__num {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: #7aadda;
  color: var(--color-white);
  font-family: var(--ff-en);
  font-size: max(1rem, 8px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
}

.p-faq__title {
  margin: 0;
  color: var(--color-primary);
  font-size: max(2.25rem, 8px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-faq__title {
    font-size: max(1.5rem, 8px);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0em;
  }
}

.p-faq__body {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.p-faq__pair {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.p-faq__question {
  display: flex;
  flex-shrink: 0;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.4375rem 1.875rem 1.4375rem 1.5rem;
  background-color: #ebf3fa;
}

.p-faq__q-mark {
  flex-shrink: 0;
  width: 2.0625rem;
  margin: 0;
  padding: 0;
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: max(1.75rem, 8px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-faq__q-mark {
    font-size: max(1.25rem, 8px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
  }
}

.p-faq__q-text {
  flex: 1;
  margin: 0;
  color: var(--color-gray900);
  font-size: max(1.25rem, 8px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-faq__q-text {
    padding-block-start: 0.125rem;
    font-size: max(1rem, 8px);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
}

.p-faq__answer {
  display: flex;
  gap: 1.4375rem;
  align-items: flex-start;
  padding-inline-start: 1.5rem;
}

.p-faq__a-mark {
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  color: var(--color-gray600);
  font-family: var(--ff-en);
  font-size: max(1.5rem, 8px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-faq__a-mark {
    font-size: max(1.25rem, 8px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
  }
}

.p-faq__a-text {
  flex: 1;
  min-width: 0;
}

.p-faq__a-paragraph {
  margin: 0;
  color: var(--color-gray900);
  font-size: max(1rem, 8px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-faq__a-paragraph {
    font-size: max(0.9375rem, 8px);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
}

.p-faq__a-paragraph + .p-faq__a-paragraph {
  margin-block-start: 0.5rem;
}

.p-footer {
  position: relative;
  padding-block: 4.875rem 4.625rem;
  overflow: clip;
  color: var(--color-white);
  background-color: var(--color-gray600);
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-block: 3.5rem 3.5rem;
  }
}

.p-footer__inner {
  position: relative;
  z-index: 1;
  padding-inline: 2.5rem 2.4375rem;
}

.p-footer__main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  column-gap: 2.5rem;
  row-gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__main {
    flex-direction: column;
    align-items: stretch;
    row-gap: 0;
  }
}

.p-footer__brand {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-footer__brand {
    order: 2;
    margin-block-start: 3.5rem;
  }
}

.p-footer__brand-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 0.25rem;
  color: inherit;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-footer__brand-link:hover {
    opacity: 0.9;
  }
}

.p-footer__brand-logo {
  display: block;
  width: auto;
  max-width: 9.3125rem;
  height: auto;
}

.p-footer__nav {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2.5rem;
  align-items: start;
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    order: 1;
    flex: none;
    width: 100%;
    max-width: 21.375rem;
    margin-block-start: 0;
    margin-inline: auto;
    column-gap: 0;
  }
}

.p-footer__cluster--brands {
  grid-column: 1;
}

@media (width >= 768px) {
  .p-footer__cluster--guide {
    display: contents;
  }
}

@media (width >= 768px) {
  .p-footer__cluster--guide > .p-footer__toggle {
    display: none;
  }
}

@media (width >= 768px) {
  .p-footer__cluster--guide > .p-footer__toggle-head {
    display: none;
  }
}

@media (width >= 768px) {
  .p-footer__guide-cols {
    display: contents;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__guide-cols {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    padding-inline-start: 0;
    padding-block: 1.5rem;
  }
}

.p-footer__col {
  min-width: 8.9375rem;
}

.p-footer__col--price {
  grid-column: 2;
}
@media screen and (max-width: 767px) {
  .p-footer__col--price {
    grid-column: auto;
  }
}

.p-footer__col--know {
  grid-column: 3;
}
@media screen and (max-width: 767px) {
  .p-footer__col--know {
    grid-column: auto;
  }
}

.p-footer__col--contact {
  grid-column: 4;
}
@media screen and (max-width: 767px) {
  .p-footer__col--contact {
    display: none;
  }
}

.p-footer__col--company {
  grid-column: 5;
}
@media screen and (max-width: 767px) {
  .p-footer__col--company {
    grid-column: auto;
  }
}

.p-footer__toggle-head {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  padding-inline: 0;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-footer__toggle-head {
    display: flex;
  }
}

.p-footer__toggle-title {
  flex: 1 1 auto;
  max-width: 15.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.p-footer__toggle-icon {
  --footer-icon-after-rotate: 0deg;
  position: relative;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
}

.p-footer__toggle:checked + .p-footer__toggle-head .p-footer__toggle-icon {
  --footer-icon-after-rotate: 90deg;
}

.p-footer__toggle-icon::before,
.p-footer__toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--color-white);
}

.p-footer__toggle-icon::before {
  width: 0.625rem;
  height: 0.125rem;
  transform: translate(-50%, -50%);
}

.p-footer__toggle-icon::after {
  width: 0.125rem;
  height: 0.625rem;
  transform: translate(-50%, -50%) rotate(var(--footer-icon-after-rotate));
  transition: transform 0.3s ease;
  transform-origin: center;
}

@media (prefers-reduced-motion: reduce) {
  .p-footer__toggle-icon::after {
    transition: none;
  }
}
@media (width >= 768px) {
  .p-footer__cluster-body {
    display: contents;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__cluster-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease-out;
    border-block-start: 1px solid var(--color-gray500);
  }
}

.p-footer__cluster-inner {
  min-height: 0;
  overflow: hidden;
}
@media (width >= 768px) {
  .p-footer__cluster-inner {
    display: contents;
    overflow: visible;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__cluster-inner {
    box-sizing: border-box;
    padding-inline: 1.4375rem;
    background-color: var(--color-gray550);
  }
}

@media screen and (max-width: 767px) {
  #p-footer-brands:checked ~ .p-footer__cluster-body,
  #p-footer-guide:checked ~ .p-footer__cluster-body {
    grid-template-rows: 1fr;
  }
}
@media screen and (prefers-reduced-motion: reduce) and (max-width: 767px) {
  .p-footer__cluster-body {
    transition: none;
  }
}
.p-footer__list {
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
  min-width: 8.9375rem;
  list-style: none;
}

@media screen and (max-width: 767px) {
  .p-footer__cluster--brands .p-footer__list {
    padding-block: 1.5rem;
    padding-inline-start: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__cluster-inner .p-footer__list {
    row-gap: 2rem;
  }
}

.p-footer__link {
  color: var(--color-white);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-footer__link {
    color: var(--color-gray100);
    font-size: 0.875rem;
  }
}
@media (any-hover: hover) {
  .p-footer__link:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 0.25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__cluster-inner .p-footer__link {
    font-size: 0.9375rem;
    line-height: normal;
    font-feature-settings: "palt" 1;
  }
}

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

.p-footer__legal-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  column-gap: 1.625rem;
  row-gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-footer__legal-list {
    justify-content: flex-start;
    column-gap: 1.5rem;
    row-gap: 1rem;
  }
}

.p-footer__legal-link {
  color: var(--color-white);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity var(--duration), text-decoration var(--duration);
}
@media screen and (max-width: 767px) {
  .p-footer__legal-link {
    color: var(--color-gray100);
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
  }
}
@media (any-hover: hover) {
  .p-footer__legal-link:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 0.25rem;
  }
}

.p-footer__copyright {
  margin: 0;
  margin-block-start: 1.5rem;
  color: var(--color-gray300);
  font-family: var(--ff-en), var(--ff-base);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: end;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    margin-block-start: 5rem;
    text-align: center;
  }
}

.p-footer__top {
  position: absolute;
  right: 0.875rem;
  bottom: 0.8125rem;
  z-index: calc(var(--z-index-header) - 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 0.1875rem;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0.875rem 0.5rem;
  border-radius: 4.375rem;
  background-color: rgba(255, 255, 255, 0.7);
  color: var(--color-primary);
  text-decoration: none;
  transition: translate var(--duration);
}
@media screen and (max-width: 767px) {
  .p-footer__top {
    right: 1rem;
    bottom: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.625rem 0.375rem;
    border-radius: 3.125rem;
    row-gap: 0.125rem;
  }
}
@media (any-hover: hover) {
  .p-footer__top:hover {
    translate: 0 -0.5rem;
  }
}

.p-footer__top-icon {
  display: block;
  width: 0.875rem;
  height: 0.4375rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='9' viewBox='0 0 16 9' fill='none'%3E%3Cpath d='M7.12552 0.867532L7.64328 1.33862C7.63831 1.34409 7.63325 1.34947 7.62811 1.35477L7.12552 0.867532ZM7.50244 0.699218V1.39922V0.699218ZM7.87936 0.867532L7.37678 1.35477C7.37163 1.34947 7.36658 1.34409 7.3616 1.33862L7.87936 0.867532ZM15.005 7.21198L15.4923 7.71457L14.4871 8.68905L13.9999 8.18646L14.5024 7.69922L15.005 7.21198ZM0.502441 7.69922L-0.000147283 7.21198L6.62293 0.380291L7.12552 0.867532L7.62811 1.35477L1.00503 8.18646L0.502441 7.69922ZM7.12552 0.867532L6.60776 0.396443C6.72033 0.272715 6.85755 0.17275 7.01166 0.103935L7.29708 0.743103L7.5825 1.38227C7.60695 1.37135 7.62739 1.35608 7.64328 1.33862L7.12552 0.867532ZM7.29708 0.743103L7.01166 0.103935C7.16583 0.0350919 7.33293 -0.000781536 7.50244 -0.000781536V0.699218V1.39922C7.53067 1.39922 7.55799 1.39322 7.5825 1.38227L7.29708 0.743103ZM7.50244 0.699218V-0.000781536C7.67195 -0.000781536 7.83906 0.0350919 7.99322 0.103935L7.70781 0.743103L7.42239 1.38227C7.4469 1.39322 7.47421 1.39922 7.50244 1.39922V0.699218ZM7.70781 0.743103L7.99322 0.103935C8.14733 0.172751 8.28455 0.272717 8.39712 0.396443L7.87936 0.867532L7.3616 1.33862C7.37749 1.35608 7.39794 1.37135 7.42239 1.38227L7.70781 0.743103ZM7.87936 0.867532L8.38195 0.38029L15.005 7.21198L14.5024 7.69922L13.9999 8.18646L7.37678 1.35477L7.87936 0.867532Z' fill='%235B85AA'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-footer__top-icon {
    width: 0.625rem;
    height: 0.3125rem;
  }
}

.p-footer__top-text {
  font-family: var(--ff-en);
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-footer__top-text {
    font-size: 0.5rem;
    letter-spacing: 0.05em;
  }
}

.p-footer--simple {
  padding-block: 1.25rem;
  padding-inline: 3.125rem;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .p-footer--simple {
    padding-block: 1.25rem;
    padding-inline: 1.25rem;
  }
}

.p-footer__simple-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 1.5rem;
  column-gap: 2.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-footer__simple-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.p-footer__simple-brand {
  flex-shrink: 0;
}

.p-footer__simple-brand-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-footer__simple-brand-link:hover {
    opacity: 0.9;
  }
}

.p-footer__simple-brand-logo {
  display: block;
  width: auto;
  max-width: 9.3125rem;
  height: auto;
}

.p-footer__simple-aside {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 3.375rem;
  row-gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer__simple-aside {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    column-gap: 0;
    row-gap: 1rem;
  }
}

.p-footer__simple-nav {
  flex-shrink: 0;
}

.p-footer__simple-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 1.625rem;
  row-gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-footer__simple-list {
    flex-direction: column;
    align-items: flex-start;
    column-gap: 1.5rem;
    row-gap: 0.75rem;
  }
}

.p-footer__simple-link {
  color: var(--color-white);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.05em;
  text-decoration: none;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-footer__simple-link {
    white-space: normal;
  }
}
@media (any-hover: hover) {
  .p-footer__simple-link:hover {
    text-decoration: underline;
    text-underline-offset: 0.25rem;
  }
}

.p-footer__simple-copy {
  margin: 0;
  flex-shrink: 0;
  color: var(--color-gray300);
  font-family: var(--ff-en), var(--ff-base);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.05em;
  font-feature-settings: "palt" 1;
}

.p-form.p-form--satei-products {
  max-width: none;
  margin: 0;
}

.p-form.p-form--satei-products > * {
  margin-block-start: 0;
}

.p-form.p-form--satei-products > *:nth-last-child(2) {
  margin-block-start: 0;
}

.p-form.p-form--satei-products fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.p-form.p-form--satei-products .p-form__accordion-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-inline-size: 0;
}

.p-form.p-form--satei-products .p-form__accordion-head {
  margin: 0;
}

.p-form.p-form--satei-products .p-form__accordion-trigger {
  display: flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  inline-size: 100%;
  min-block-size: 2.5rem;
  padding-block: 0.5rem;
  padding-inline: 1.5rem 0.625rem;
  border: 0;
  background-color: var(--color-gray500);
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: start;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-form.p-form--satei-products .p-form__accordion-trigger {
    padding-inline-start: 1rem;
    font-size: 1rem;
  }
}
@media (any-hover: hover) {
  .p-form.p-form--satei-products .p-form__accordion-trigger:hover {
    filter: brightness(1.06);
  }
}

.p-form.p-form--satei-products .p-form__accordion-title {
  flex: 1 1 auto;
  min-inline-size: 0;
}

.p-form.p-form--satei-products .p-form__accordion-icon {
  --p-form-satei-icon-after-rotate: 0deg;
  position: relative;
  flex-shrink: 0;
  inline-size: 1.25rem;
  block-size: 1.25rem;
}

.p-form.p-form--satei-products .p-form__accordion-item.is-open .p-form__accordion-icon {
  --p-form-satei-icon-after-rotate: 90deg;
}

.p-form.p-form--satei-products .p-form__accordion-icon::before,
.p-form.p-form--satei-products .p-form__accordion-icon::after {
  content: "";
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  background-color: var(--color-white);
}

.p-form.p-form--satei-products .p-form__accordion-icon::before {
  inline-size: 1.25rem;
  block-size: 0.125rem;
  transform: translate(-50%, -50%);
}

.p-form.p-form--satei-products .p-form__accordion-icon::after {
  inline-size: 0.125rem;
  block-size: 1.25rem;
  transform: translate(-50%, -50%) rotate(var(--p-form-satei-icon-after-rotate));
  transform-origin: center;
  transition: transform 0.3s ease;
}

.p-form.p-form--satei-products .p-form__accordion-panel {
  display: grid;
  box-sizing: border-box;
  grid-template-rows: 0fr;
  padding: 0;
  border: none;
  background-color: transparent;
  transition: grid-template-rows 0.4s ease-out;
}

.p-form.p-form--satei-products .p-form__accordion-item.is-open .p-form__accordion-panel {
  grid-template-rows: 1fr;
}

.p-form.p-form--satei-products .p-form__accordion-panel-inner {
  box-sizing: border-box;
  min-height: 0;
  overflow: hidden;
  background-color: var(--color-gray100);
}

.p-form.p-form--satei-products .p-form__accordion-panel-content {
  padding-block: 2.1875rem 2.75rem;
  padding-inline: 2.5rem;
  background-color: var(--color-gray100);
}
@media screen and (max-width: 767px) {
  .p-form.p-form--satei-products .p-form__accordion-panel-content {
    padding-block: 1.5rem 1.25rem;
    padding-inline: 1rem;
  }
}

.p-form.p-form--satei-products .p-form__row {
  display: grid;
  gap: 1.5rem;
  min-inline-size: 0;
}

.p-form.p-form--satei-products .p-form__row--cols-product-top {
  grid-template-columns: 9.3125rem minmax(0, 1fr);
}
@media screen and (max-width: 767px) {
  .p-form.p-form--satei-products .p-form__row--cols-product-top {
    grid-template-columns: 1fr;
  }
}

.p-form.p-form--satei-products .p-form__row--cols-product-bottom {
  align-items: start;
  margin-block-start: 1.75rem;
  grid-template-columns: 9.6875rem 16.5625rem 5.75rem;
}
@media screen and (max-width: 767px) {
  .p-form.p-form--satei-products .p-form__row--cols-product-bottom {
    margin-block-start: 1.25rem;
    grid-template-columns: 1fr;
  }
}

.p-form.p-form--satei-products .p-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  min-inline-size: 0;
}

.p-form.p-form--satei-products .p-form__label {
  justify-content: flex-start;
  min-width: unset;
  margin-block-start: 0;
  color: var(--color-gray900);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.p-form.p-form--satei-products .p-form__input,
.p-form.p-form--satei-products .p-form__select {
  box-sizing: border-box;
  inline-size: 100%;
  padding-block: 0.75rem;
  padding-inline: 1rem;
  border: solid 0.0625rem #9ea8b0;
  border-radius: 0.25rem;
  background-color: var(--color-white);
  color: var(--color-gray900);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.4;
}

.p-form.p-form--satei-products .p-form__row--cols-product-top .p-form__input,
.p-form.p-form--satei-products .p-form__row--cols-product-top .p-form__select {
  min-block-size: 2.8125rem;
}

.p-form.p-form--satei-products .p-form__row--cols-product-bottom .p-form__input,
.p-form.p-form--satei-products .p-form__row--cols-product-bottom .p-form__select {
  min-block-size: 2.6875rem;
}

.p-form.p-form--satei-products .p-form__input::placeholder {
  color: #9e9a9a;
}

/* CF7 と同様のヒント（クライアント側バリデーションで付与した .wpcf7-not-valid-tip） */
.p-form.p-form--satei-products .p-form__field--name .wpcf7-not-valid-tip,
.p-form.p-form--satei-products .p-form__field--brand .wpcf7-not-valid-tip,
.p-form.p-form--satei-products .p-form__field--condition .wpcf7-not-valid-tip,
.p-form.p-form--satei-products .p-form__field--qty .wpcf7-not-valid-tip {
  margin: 0;
  margin-block-start: 0.25rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
}

.p-form.p-form--satei-products .p-form__note {
  margin: 0;
  margin-block-start: 1.875rem;
  color: var(--color-gray900);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-form.p-form--satei-products .p-form__note {
    font-size: 0.875rem;
    text-align: start;
  }
}

.p-form.p-form--satei-products .p-form__remarks {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-block-start: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-form.p-form--satei-products .p-form__remarks {
    margin-block-start: 2rem;
  }
}

.p-form.p-form--satei-products .p-form__remarks-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.875rem;
  color: var(--color-gray900);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-form.p-form--satei-products .p-form__remarks-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9375rem;
  }
}

.p-form.p-form--satei-products .p-form__remarks-label {
  flex-shrink: 0;
  margin: 0;
  font-weight: 700;
  cursor: pointer;
}

.p-form.p-form--satei-products .p-form__remarks-hint {
  flex: 1 1 auto;
  margin: 0;
  font-weight: 400;
}

.p-form.p-form--satei-products .p-form__textarea.p-form__remarks-textarea {
  box-sizing: border-box;
  inline-size: 100%;
  min-block-size: 10.5rem;
  padding-block: 0.75rem;
  padding-inline: 1rem;
  border: solid 0.0625rem #9ea8b0;
  border-radius: 0.25rem;
  background-color: var(--color-white);
  color: var(--color-gray900);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
  resize: vertical;
}

.p-form.p-form--satei-products .p-form__textarea.p-form__remarks-textarea::placeholder {
  color: #9e9a9a;
}

.p-form.p-form--satei-products .p-form__textarea.p-form__remarks-textarea:focus {
  border-color: var(--color-primary);
  outline: solid 0.125rem oklch(from var(--color-primary) l c h/25%);
  outline-offset: 0.125rem;
}

.p-form.p-form--satei-products .p-form__customer {
  display: flex;
  flex-direction: column;
  gap: 1.6875rem;
  margin-block-start: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-form.p-form--satei-products .p-form__customer {
    margin-block-start: 2.5rem;
  }
}

.p-form.p-form--satei-products .p-form__customer-bar {
  display: flex;
  box-sizing: border-box;
  align-items: center;
  min-block-size: 2.5625rem;
  padding-block: 0.5rem;
  padding-inline: 1.5rem;
  background-color: var(--color-gray100);
}

.p-form.p-form--satei-products .p-form__customer-title {
  margin: 0;
  color: var(--color-gray900);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-form.p-form--satei-products .p-form__customer-title {
    font-size: 1.125rem;
  }
}

.p-form.p-form--satei-products .p-form__customer-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.p-form.p-form--satei-products .p-form__customer-label-row {
  display: flex;
  align-items: center;
  gap: 1.0625rem;
}

.p-form.p-form--satei-products .p-form__badge-required {
  display: inline-flex;
  align-items: center;
  padding-block: 0.1875rem;
  padding-inline: 0.625rem;
  border-radius: 0.125rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.p-form.p-form--satei-products .p-form__customer-label {
  flex: 1 1 auto;
  margin: 0;
  padding: 0;
  color: var(--color-gray900);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.p-form.p-form--satei-products .p-form__customer-email {
  box-sizing: border-box;
  inline-size: 100%;
  min-block-size: 2.8125rem;
  padding-block: 0.625rem;
  padding-inline: 1.3125rem;
  border: solid 0.0625rem #9ea8b0;
  border-radius: 0.25rem;
  background-color: var(--color-white);
  color: var(--color-gray900);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
}

.p-form.p-form--satei-products .p-form__customer-email::placeholder {
  color: #9e9a9a;
}

.p-form.p-form--satei-products .p-form__checkbox.p-form__checkbox--satei-remote {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 1.25rem;
  max-inline-size: 100%;
  margin: 0;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-form.p-form--satei-products .p-form__checkbox.p-form__checkbox--satei-remote {
    gap: 0.75rem;
  }
}

.p-form.p-form--satei-products .p-form__checkbox.p-form__checkbox--satei-remote .wpcf7-list-item label {
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-form.p-form--satei-products .p-form__checkbox.p-form__checkbox--satei-remote .wpcf7-list-item label {
    gap: 0.75rem;
  }
}

.p-form.p-form--satei-products .p-form__checkbox.p-form__checkbox--satei-remote input[type=checkbox] {
  flex-shrink: 0;
  margin-inline-end: 0;
  border: 2px solid var(--color-gray500);
}

.p-form.p-form--satei-products .p-form__checkbox.p-form__checkbox--satei-remote .p-form__checkbox-text,
.p-form.p-form--satei-products .p-form__checkbox.p-form__checkbox--satei-remote .wpcf7-list-item-label {
  display: none;
}

.p-form.p-form--satei-products .p-form__input:focus,
.p-form.p-form--satei-products .p-form__customer-email:focus,
.p-form.p-form--satei-products .p-form__select:focus {
  border-color: var(--color-primary);
  outline: solid 0.125rem oklch(from var(--color-primary) l c h/25%);
  outline-offset: 0.125rem;
}

@media (prefers-reduced-motion: reduce) {
  .p-form.p-form--satei-products .p-form__accordion-icon::after {
    transition: none;
  }
  .p-form.p-form--satei-products .p-form__accordion-panel {
    transition: none;
  }
}
.p-form.p-form--satei-products .p-form__check-note {
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.p-form.p-form--satei-products .wpcf7-response-output {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.p-form__select-wrap::after {
  content: "";
  position: absolute;
  top: 1.25rem;
  right: 1rem;
  width: 0.75rem;
  height: 0.4375rem;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%239E9A9A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: 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;
}

.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__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: 500;
}
.p-form__acceptance-text + * {
  display: block;
  margin-block-start: 1rem;
}

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

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

.p-form__acceptance input[type=checkbox] {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  margin-inline-end: 0.5rem;
  border: 2px solid var(--_form-color-border);
  border-radius: 4px;
  cursor: pointer;
  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 {
  margin-block-start: 3.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__submit {
    margin-block-start: 2rem;
  }
}

.p-form__submit-button[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  box-sizing: border-box;
  width: min(100%, 432px);
  padding: 1.3125rem 2.75rem;
  border: 2px solid #efa361;
  border-radius: 100vmax;
  background-color: #efa361;
  color: var(--color-white);
  font-family: inherit;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-form__submit-button[type=submit] {
    font-size: 1.125rem;
  }
}
@media (any-hover: hover) {
  .p-form__submit-button[type=submit]:hover {
    background-color: var(--color-white);
    color: #efa361;
  }
}
.p-form__submit-button[type=submit] + .wpcf7-spinner {
  display: none;
}

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

.wpcf7-not-valid-tip {
  color: #f00;
}

.p-form__select:invalid,
.p-form__select:has(option[value=""]:checked) {
  color: #999;
}

.p-greeting {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  box-sizing: border-box;
  width: min(100%, 81.75rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
  padding-block: 7.5rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-greeting {
    gap: 2.5rem;
    width: min(100%, 600px);
    padding-inline: 1.25rem;
    padding-block: 3.75rem 5rem;
  }
}

.p-greeting__head {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  box-sizing: border-box;
  width: 100%;
  max-width: 31.4375rem;
}

.p-greeting__en {
  margin: 0;
  color: var(--color-gray900);
  font-family: var(--ff-en);
  font-weight: 200;
  font-size: max(1.25rem, 8px);
  letter-spacing: 0.05em;
}

.p-greeting__title {
  margin: 0;
  color: var(--color-gray900);
  font-weight: 500;
  font-size: max(2.25rem, 8px);
  font-weight: 500;
  line-height: 0.9722222222;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-greeting__title {
    font-size: max(1.75rem, 8px);
    font-weight: 500;
    line-height: 1.2142857143;
    letter-spacing: 0.05em;
  }
}

.p-greeting__body {
  display: flex;
  flex-flow: row nowrap;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100%;
  max-width: 68.875rem;
  padding-block: 0.0625rem 1.9375rem;
}
@media screen and (max-width: 767px) {
  .p-greeting__body {
    flex-direction: column;
    gap: 2rem;
    padding-block: 0;
  }
}

.p-greeting__photo-wrap {
  flex-shrink: 0;
  width: 17rem;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-greeting__photo-wrap {
    width: min(100%, 17rem);
    margin-inline: auto;
  }
}

.p-greeting__photo {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 20.25rem;
  border-radius: 0.25rem;
  object-fit: cover;
  object-position: center top;
}

.p-greeting__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 1.5rem;
  box-sizing: border-box;
  width: 100%;
  max-width: 45.4375rem;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-greeting__content {
    max-width: none;
  }
}

.p-greeting__lead {
  margin: 0;
  color: var(--color-gray900);
  font-weight: 500;
  font-feature-settings: "palt" 1;
  font-size: max(1.75rem, 8px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-greeting__lead {
    font-size: max(1.375rem, 8px);
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.05em;
  }
}

.p-greeting__lead-line {
  display: block;
}

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

.p-greeting__paragraph {
  margin: 0;
  color: var(--color-gray900);
  font-size: max(1rem, 8px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-greeting__paragraph {
    font-size: max(0.9375rem, 8px);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
}

.p-greeting__paragraph + .p-greeting__paragraph {
  margin-block-start: 1.75rem;
}

.p-greeting__sign {
  margin: 0;
  color: var(--color-gray900);
  font-weight: 700;
  font-size: max(1rem, 8px);
  font-weight: 700;
  line-height: 1.428125;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-greeting__sign {
    font-size: max(0.9375rem, 8px);
    font-weight: 700;
    line-height: 1.4666666667;
    letter-spacing: 0.03em;
  }
}

.p-header__skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: calc(var(--z-index-header) + 10);
  padding: 0.75rem 1rem;
  border-radius: 0 0 0.25rem 0;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transform: translateY(-120%);
  transition: transform var(--duration);
}
.p-header__skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
}

.p-header {
  height: var(--header-height);
  overflow: visible;
  background-color: var(--color-white);
  box-shadow: none;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: var(--header-height);
  }
}

.p-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  margin-inline: auto;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding-inline: 1.5rem;
  }
}

.p-header__brand {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.p-header__logo {
  margin: 0;
  width: 100%;
  max-width: 9.3125rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    max-width: 9.3125rem;
  }
}

.p-header__logo a {
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo a {
    min-height: 2.5rem;
  }
}

.p-header__logo img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 3rem;
  object-fit: contain;
}

.p-header__nav-cluster {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  column-gap: 3.375rem;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .p-header__nav-cluster {
    display: none;
  }
}

.p-header__nav {
  position: relative;
  flex-shrink: 0;
  height: inherit;
  overflow: visible;
}

.p-header__nav-list {
  display: flex;
  align-items: center;
  height: inherit;
  column-gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-header__nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: inherit;
}

.p-header__nav-mega-head {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
}

.p-header__nav-item > a.p-header__nav-link,
.p-header__nav-mega-head .p-header__nav-link,
.p-header__nav-trigger {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  padding-block: 0.25rem;
  padding-inline: 0;
  color: var(--color-text);
  font-family: var(--ff-base);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03em;
  background-color: transparent;
  cursor: pointer;
  transition: color var(--duration);
}

.p-header__nav-trigger {
  gap: 0;
  border: none;
}

.p-header__nav-caret {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-inline-start: 0;
  color: inherit;
  transition: transform var(--duration);
}

.p-header__nav-caret-inner {
  display: block;
  width: 0.375rem;
  height: 0.375rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-0.125rem);
}

@media (any-hover: hover) and (min-width: 1024px) {
  html:not(.is-header-mega-tap-mode) .p-header__nav-item--mega-caret-down:hover .p-header__nav-caret {
    transform: rotate(180deg);
  }
}

.p-header__nav-link {
  text-decoration: none;
}
@media (any-hover: hover) {
  .p-header__nav-link:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 0.25rem;
  }
}

#mega-brands-link {
  pointer-events: none;
}
#mega-brands-link > * {
  pointer-events: none;
}

@media (any-hover: hover) and (min-width: 1024px) {
  html:not(.is-header-mega-tap-mode) .p-header__nav-item--has-mega:hover #mega-brands-link {
    text-decoration: underline;
    text-underline-offset: 0.25rem;
  }
}
.p-header__actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  column-gap: 2.1875rem;
}

.p-header__contact {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  row-gap: 0.3125rem;
  margin-block-start: 0.1875rem;
}

.p-header__contact-tel {
  display: flex;
  align-items: center;
  column-gap: 0.625rem;
}

.p-header__contact-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.375rem;
  height: 1.5625rem;
}

.p-header__contact-phone-mark {
  display: block;
  width: 2.375rem;
  height: 1.5625rem;
  border-radius: 0.25rem;
  background-color: var(--color-primary);
  position: relative;
}
.p-header__contact-phone-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.625rem;
  height: 0.875rem;
  border: 0.125rem solid var(--color-white);
  border-radius: 0.125rem;
  transform: translate(-50%, -50%);
}

.p-header__tel-num {
  color: var(--color-text);
  font-family: var(--ff-en);
  font-size: 1.75rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.2;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media (any-hover: hover) {
  .p-header__tel-num:hover {
    opacity: 0.85;
  }
}

.p-header__contact-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 0.5rem;
  margin: 0;
  color: var(--color-text);
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
}

.p-header__contact-hours {
  font-weight: 400;
}

.p-header__contact-hours-time {
  font-family: var(--ff-en);
  font-weight: 500;
}

.p-header__contact-24 {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
}

.p-header__contact-mail {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  color: var(--color-text);
}

.p-header__contact-mail-mark {
  display: block;
  position: relative;
  width: 0.75rem;
  height: 0.625rem;
  border: 1px solid currentColor;
  border-radius: 0.0625rem;
}
.p-header__contact-mail-mark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  border-right: 0.3125rem solid transparent;
  border-bottom: 0.25rem solid currentColor;
  border-left: 0.3125rem solid transparent;
  transform: translateX(-50%);
}

.p-header__contact-24-text {
  font-weight: 400;
}

.p-header__contact-24-num {
  font-family: var(--ff-en);
  font-weight: 500;
}

.p-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.125rem;
  padding-block: 0.9375rem;
  padding-inline: 1.4375rem;
  border: 1px solid var(--color-primary);
  border-radius: 2.125rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color var(--duration), color var(--duration);
}
@media (any-hover: hover) {
  .p-header__cta:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
  }
}

.p-header__nav-item--has-mega {
  position: relative;
}
@media (any-hover: hover) and (min-width: 1024px) {
  html:not(.is-header-mega-tap-mode) .p-header__nav-item--has-mega:hover .p-header__mega {
    visibility: visible;
    opacity: 1;
  }
}

html.is-header-mega-tap-mode .p-header__nav-item--has-mega.is-open .p-header__mega {
  visibility: visible;
  opacity: 1;
}

html.is-header-mega-tap-mode .p-header__nav-item--has-mega.is-open .p-header__nav-caret {
  transform: rotate(180deg);
}

html.is-header-mega-tap-mode .p-header__nav-item--has-mega.is-open .p-header__nav-link {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

html.is-header-mega-tap-mode .p-header__nav-mega-head.js-mega-trigger {
  cursor: pointer;
}
.p-header__nav-mega-head.js-mega-trigger:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.p-header__mega {
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 0;
  z-index: calc(var(--z-index-header) + 2);
  box-sizing: border-box;
  width: max-content;
  max-width: 22.5rem;
  padding: 1.5rem;
  border: 1px solid #d9d9d9;
  border-radius: 0.25rem;
  background-color: var(--color-white);
  box-shadow: 0 0.25rem 1rem oklch(from var(--color-black) l c h/10%);
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--duration), visibility var(--duration);
}
@media screen and (max-width: 767px) {
  .p-header__mega {
    display: none;
  }
}

.p-header__mega-list {
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-header__mega-item {
  margin: 0;
}

.p-header__mega-item a {
  display: block;
  width: 100%;
  padding: 0;
  border-bottom: 1px solid transparent;
  color: var(--color-text);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: border-color var(--duration), color var(--duration);
}
@media (any-hover: hover) {
  .p-header__mega-item a:hover {
    border-bottom-color: var(--color-gray900);
    color: var(--color-text);
    opacity: 1;
  }
}

.p-header__mega-item a:focus-visible {
  border-bottom-color: var(--color-gray900);
  outline: none;
}

@media (any-hover: hover) {
  .p-header a:hover {
    opacity: 1;
  }
}

.p-header__hamburger {
  position: relative;
  z-index: calc(var(--z-index-overlay) + 1);
  display: none;
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  color: var(--color-gray900);
  outline: none;
  cursor: pointer;
  transition: translate var(--duration);
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    display: flex;
  }
}
.p-header__hamburger.is-open {
  translate: 0 25px;
}

.p-header__hamburger-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2rem;
}

.p-header__hamburger-bars {
  position: relative;
  width: 2.5rem;
  height: 1rem;
}

.p-header__hamburger-bar {
  position: absolute;
  display: block;
  height: 0.0625rem;
  background-color: currentColor;
  border-radius: 0.0625rem;
  transform-origin: center;
  transition: top var(--duration), right var(--duration), bottom var(--duration), left var(--duration), width var(--duration), opacity var(--duration), transform var(--duration);
}

.p-header__hamburger-bar--1 {
  top: 0;
  left: 0;
  width: 100%;
}

.p-header__hamburger-bar--2 {
  top: calc(50% - 0.0625rem);
  left: 0;
  width: 1.75rem;
  transform-origin: right center;
}

.p-header__hamburger-bar--3 {
  bottom: 0;
  left: 0;
  width: 1.5rem;
}

.p-header__hamburger.is-open .p-header__hamburger-bar--1 {
  top: calc(50% - 0.0625rem);
  right: auto;
  bottom: auto;
  left: 50%;
  width: 2.5rem;
  margin-inline-start: -1.25rem;
  transform: rotate(25deg);
}

.p-header__hamburger.is-open .p-header__hamburger-bar--2 {
  opacity: 0;
  transform: scaleX(0);
  pointer-events: none;
}

.p-header__hamburger.is-open .p-header__hamburger-bar--3 {
  top: calc(50% - 0.0625rem);
  right: auto;
  bottom: auto;
  left: 50%;
  width: 2.5rem;
  margin-inline-start: -1.25rem;
  transform: rotate(-25deg);
}

.p-header__icon-x {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
}

.p-header__icon-x-line {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 1.125rem;
  height: 0.125rem;
  margin-block-start: -0.0625rem;
  margin-inline-start: -0.5625rem;
  background-color: currentColor;
  border-radius: 0.0625rem;
}

.p-header__icon-x-line:first-child {
  transform: rotate(25deg);
}

.p-header__icon-x-line:last-child {
  transform: rotate(-25deg);
}

.p-header__hamburger-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-block-start: 0.125rem;
  font-family: var(--ff-en);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.p-header__hamburger.is-open .p-header__hamburger-label {
  white-space: nowrap;
}

.p-header__hamburger-label-text--close {
  display: none;
}

.p-header__hamburger.is-open .p-header__hamburger-label-text--menu {
  display: none;
}

.p-header__hamburger.is-open .p-header__hamburger-label-text--close {
  display: block;
  font-weight: 400;
}

.p-header__hamburger.is-open .p-header__hamburger-label {
  margin-block-start: 0.25rem;
}

.p-header__drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-index-overlay);
  display: none;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background-color: var(--color-white);
  scrollbar-width: none;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.p-header__drawer::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .p-header__drawer {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .p-header__drawer {
    display: flex;
  }
  .p-header__drawer.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
}

.p-header__drawer-main {
  flex: 1 1 auto;
  min-height: 0;
  padding: 1.5rem;
  overflow-y: auto;
}

.p-header__drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  column-gap: 1rem;
}

.p-header__drawer-logo {
  display: block;
  flex-shrink: 0;
  max-width: 9.3125rem;
}

.p-header__drawer-logo img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.p-header__drawer-close {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  padding: 0;
  border: none;
  background-color: transparent;
  color: var(--color-gray900);
  cursor: pointer;
}

.p-header__drawer-close-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2rem;
}

.p-header__drawer-close-text {
  margin-block-start: 0.125rem;
  font-family: var(--ff-en);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.p-header__drawer-tagline {
  margin: 0.25rem 0 1.25rem;
  color: #666;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.p-header__drawer-nav {
  margin-block-start: 0;
}

.p-header__drawer-section-title {
  margin: 0;
  padding: 1.5rem 0 1rem;
  border-bottom: 1px solid var(--color-gray500);
  color: var(--color-gray500);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

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

.p-header__drawer-item {
  border-bottom: 1px solid var(--color-gray500);
}

.p-header__drawer-item a {
  display: block;
  padding: 1rem 0;
  color: var(--color-text);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-decoration: none;
}
@media (any-hover: hover) {
  .p-header__drawer-item a:hover {
    opacity: 0.85;
  }
}

.p-header__drawer-foot {
  flex-shrink: 0;
  padding: 1.5rem 1.1875rem;
  background-color: var(--color-gray100);
}

.p-header__drawer-foot-lead {
  margin: 0 0 1rem;
  color: var(--color-text);
  font-size: 0.9375rem;
  line-height: 1.5;
  letter-spacing: 0.45px;
}

.p-header__drawer-foot-lead strong {
  font-weight: 700;
}

.p-header__drawer-cta-row {
  display: flex;
  column-gap: 0.5rem;
  align-items: stretch;
}

.p-header__drawer-cta-btn {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 4.6875rem;
  padding: 0.875rem 0.625rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.6px;
  text-align: center;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-header__drawer-cta-btn:hover {
    opacity: 0.92;
  }
}

.p-header__drawer-cta-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
}
.p-header__drawer-cta-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-header__drawer-cta-btn--line {
  flex: 0 0 10.375rem;
  row-gap: 0.2785625rem;
  background-color: var(--color-line);
  color: var(--color-white);
  font-weight: 700;
}

.p-header__drawer-cta-btn--mail {
  row-gap: 0.13rem;
  background-color: var(--color-primary);
  color: var(--color-white);
}

.p-header__drawer-cta-btn--tel {
  row-gap: 0.3481875rem;
  border: 1px solid var(--color-primary);
  background-color: var(--color-white);
  color: var(--color-primary);
}

.p-history {
  padding-block: 7.5rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-history {
    padding-block: 3.75rem 5rem;
  }
}

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

.p-history__head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-sizing: border-box;
  width: 100%;
  max-width: 31.4375rem;
}

.p-history__en {
  margin: 0;
  color: var(--color-gray900);
  font-family: var(--ff-en);
  font-weight: 200;
  font-size: max(1.25rem, 8px);
  letter-spacing: 0.05em;
}

.p-history__title {
  margin: 0;
  color: var(--color-gray900);
  font-weight: 500;
  font-size: max(2.25rem, 8px);
  font-weight: 500;
  line-height: 0.9722222222;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-history__title {
    font-size: max(1.75rem, 8px);
    font-weight: 500;
    line-height: 1.2142857143;
    letter-spacing: 0.05em;
  }
}

.p-history__timeline {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 49rem;
  margin-inline: auto;
  padding-block: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-history__timeline {
    max-width: none;
    margin-inline: 0;
    padding-inline-start: 0.5rem;
  }
}

.p-history__timeline::before {
  position: absolute;
  z-index: 0;
  top: 1.125rem;
  left: 9.375rem;
  translate: 0 0;
  display: block;
  width: 0.125rem;
  height: calc(100% - 3.125rem);
  background-color: var(--color-gray300);
  content: "";
}
@media screen and (max-width: 767px) {
  .p-history__timeline::before {
    top: 1.125rem;
    left: 0.75rem;
    height: calc(100% - 6.25rem);
  }
}

.p-history__list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-history__list {
    gap: 2.5rem;
  }
}

.p-history__item {
  display: flex;
  flex-flow: row nowrap;
  gap: 6.25rem;
  align-items: center;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-history__item {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}

.p-history__meta {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  flex-basis: 9.875rem;
  flex-shrink: 0;
  gap: 3.125rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-history__meta {
    flex-direction: row-reverse;
    flex-basis: auto;
    min-width: 5.5rem;
    gap: 0.75rem;
  }
}

.p-history__year {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--color-primary-mid);
  font-family: var(--ff-en);
  font-weight: 700;
  text-align: right;
  font-size: max(2rem, 8px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-history__year {
    font-size: max(1.5rem, 8px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
  }
}

.p-history__dot {
  display: block;
  flex-shrink: 0;
  width: 0.9375rem;
  height: 0.9375rem;
  border-radius: 50%;
  background-color: var(--color-primary-mid);
}
@media screen and (max-width: 767px) {
  .p-history__dot {
    width: 0.625rem;
    height: 0.625rem;
  }
}

.p-history__text {
  box-sizing: border-box;
  flex: 1 1 auto;
  width: 100%;
  max-width: 30rem;
  margin: 0;
  color: var(--color-gray900);
  font-size: max(1rem, 8px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-history__text {
    max-width: none;
    padding-inline-start: 1.5rem;
    font-size: max(0.9375rem, 8px);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
}

.p-items-archive {
  padding-block: 5rem 7.5rem;
  background-color: #f7f8fa;
}
@media screen and (max-width: 767px) {
  .p-items-archive {
    padding-block: 3.5rem;
  }
}

#items-archive-filter {
  scroll-margin-top: var(--header-height);
}

.p-items-archive__filter-label {
  flex: 1 1 100%;
  margin: 0;
  color: var(--color-text);
  font-size: max(1rem, 8px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-items-archive__filter-label {
    flex-basis: auto;
    font-size: max(0.9375rem, 8px);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
}

.p-items-archive__tabs {
  flex: 1 1 100%;
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-items-archive__tabs {
    margin-block-start: 1rem;
    margin-inline: calc(50% - 50vw);
  }
}

.p-items-archive__tab-list {
  display: flex;
  width: 100%;
  flex-wrap: nowrap;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-items-archive__tab-list {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-inline: 1.25rem;
  }
}

.p-items-archive__tab-item {
  flex: 1 1 0;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-items-archive__tab-item {
    flex: 0 0 auto;
    min-width: fit-content;
  }
}

.p-items-archive__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 3.75rem;
  padding: 1.125rem 0.5rem;
  border-block-end: 0.25rem solid var(--color-gray300);
  color: var(--color-gray900);
  font-size: max(1.5rem, 8px);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0em;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  transition: border-color var(--duration), color var(--duration);
}
.p-items-archive__tab.is-active {
  border-block-end-color: var(--color-primary);
  color: var(--color-primary);
}
@media (any-hover: hover) {
  .p-items-archive__tab:hover:not(.is-active) {
    color: var(--color-primary);
    opacity: 0.92;
  }
}
@media screen and (max-width: 767px) {
  .p-items-archive__tab {
    min-width: fit-content;
    padding: 0.5rem 1rem;
    font-size: max(1.125rem, 8px);
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0em;
  }
}

.p-items-archive__search {
  flex: 0 0 auto;
  width: 100%;
  max-width: 28.5rem;
  margin-inline: auto;
  margin-block-start: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-items-archive__search {
    margin-block-start: 2rem;
  }
}

.p-items-archive__search-inner {
  display: flex;
  box-sizing: border-box;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  border: 1px solid #5b5b5b;
  border-radius: 100vmax;
  background-color: var(--color-white);
}

.p-items-archive__search-label {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
}

.p-items-archive__search-input {
  display: block;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  color: var(--color-gray900);
  caret-color: var(--color-gray900);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.p-items-archive__search-input:focus-visible {
  outline: none;
}
.p-items-archive__search-input::placeholder {
  color: #7e7f83;
  font-size: max(1.125rem, 8px);
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-items-archive__search-input {
    font-size: max(1rem, 8px);
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0em;
  }
  .p-items-archive__search-input::placeholder {
    font-size: max(1rem, 8px);
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0em;
  }
}

.p-items-archive__search-submit {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  appearance: none;
  background-color: transparent;
}

.p-items-archive__search-icon {
  display: block;
  width: 1.0625rem;
  height: 1.0625rem;
  color: var(--color-gray500);
}

.p-items-archive__accent-wrap {
  width: 100%;
  margin-block-start: 3.5rem;
}

.p-items-archive__catalog {
  margin-block-start: 2.5rem;
}

@media screen and (max-width: 767px) {
  .p-items-archive__grid.p-buyback-items__grid {
    justify-content: flex-start;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-items-archive__grid-item {
    display: flex;
  }
}

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

.p-items-archive__pagination {
  --_pagination-bg: var(--color-gray100);
  --_pagination-active-bg: transparent;
  --_pagination-active-text: var(--color-primary);
  --_pagination-text: var(--color-gray600);
  --_pagination-text-hover: var(--color-primary);
  --_pagination-border: var(--color-gray500);
  --_pagination-border-hover: var(--color-primary);
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-items-archive__pagination {
    margin-block-start: 2.5rem;
  }
}

.p-items-archive__empty {
  margin-block-start: 5rem;
  color: var(--color-gray600);
  text-align: center;
  font-size: max(1rem, 8px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-items-archive__empty {
    margin-block-start: 2.5rem;
    font-size: max(0.9375rem, 8px);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
}

.p-items-intro {
  padding-block: 7.5rem 0;
  background-color: #f7f8fa;
}
@media screen and (max-width: 767px) {
  .p-items-intro {
    padding-block: 3.5rem 0;
  }
}

.p-items-intro__entry {
  width: min(100%, 56rem);
}

.p-items-intro__title {
  padding: 1rem 2rem;
  border-inline-start: 0.5625rem solid var(--color-primary);
  background-color: #eff3f7;
  color: var(--color-text);
  font-size: 2.25rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-items-intro__title {
    font-size: 1.375rem;
    letter-spacing: 0.055rem;
  }
}

.p-items-intro__subtitle {
  margin-block-start: 3.5rem;
  padding: 0.75rem 1rem;
  border-inline-start: 0.5rem solid var(--color-primary);
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-items-intro__subtitle {
    margin-block-start: 1.75rem;
    padding: 0.75rem 1rem;
    font-size: 1.125rem;
    letter-spacing: 0.045rem;
  }
}

.p-items-intro__description {
  margin-block-start: 3.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-items-intro__description {
    margin-block-start: 1.25rem;
  }
}

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

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

.p-legal__section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.p-legal__title {
  position: relative;
  display: flex;
  box-sizing: border-box;
  align-items: center;
  width: 100%;
  min-height: 3.8125rem;
  padding: 0.8125rem 1.875rem;
  border-radius: 0.125rem;
  background-color: #eff3f7;
}
@media screen and (max-width: 767px) {
  .p-legal__title {
    min-height: 0;
    padding: 0.625rem 1.25rem;
  }
}

.p-legal__title-accent {
  position: absolute;
  top: 0;
  left: 0;
  flex-shrink: 0;
  width: 0.625rem;
  height: 100%;
  border-radius: 0.125rem 0 0 0.125rem;
  background-color: var(--color-primary);
}

.p-legal__head {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  color: var(--color-gray900);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-legal__head {
    font-size: 1.125rem;
  }
}

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

.p-legal__p {
  margin: 0;
  color: var(--color-gray900);
  font-size: max(1rem, 8px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-legal__p {
    font-size: max(0.9375rem, 8px);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
}

.p-legal__p + .p-legal__p {
  margin-block-start: 0;
}

.p-legal__contact {
  margin: 0;
  color: var(--color-gray900);
  font-style: normal;
  font-size: max(1rem, 8px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-legal__contact {
    font-size: max(0.9375rem, 8px);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
}

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

.p-licenses {
  padding-block: 7.5rem;
  background-color: var(--color-background);
}
@media screen and (max-width: 767px) {
  .p-licenses {
    padding-block: 5rem;
  }
}

.p-licenses__inner {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-licenses__inner {
    gap: 2.5rem;
  }
}

.p-licenses__head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-sizing: border-box;
  width: 100%;
  max-width: 31.4375rem;
}

.p-licenses__en {
  margin: 0;
  color: var(--color-gray900);
  font-family: var(--ff-en);
  font-weight: 200;
  font-size: max(1.25rem, 8px);
  letter-spacing: 0.05em;
}

.p-licenses__title {
  margin: 0;
  color: var(--color-gray900);
  font-weight: 500;
  font-size: max(2.25rem, 8px);
  font-weight: 500;
  line-height: 0.9722222222;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-licenses__title {
    font-size: max(1.75rem, 8px);
    font-weight: 500;
    line-height: 1.2142857143;
    letter-spacing: 0.05em;
  }
}

.p-licenses__body {
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 69rem;
  padding-inline-start: 13rem;
}
@media screen and (max-width: 767px) {
  .p-licenses__body {
    max-width: none;
    padding-inline-start: 0;
  }
}

.p-licenses__card {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  padding: 2.5rem;
  border-radius: 0.375rem;
  background-color: var(--color-white);
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 767px) {
  .p-licenses__card {
    padding: 1.5rem 1.25rem;
  }
}

.p-licenses__card-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  box-sizing: border-box;
  width: 100%;
  max-width: 45.75rem;
}

.p-licenses__card-title {
  margin: 0;
  color: var(--color-primary);
  font-weight: 500;
  font-size: max(1.75rem, 8px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-licenses__card-title {
    font-size: max(1.375rem, 8px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.05em;
  }
}

.p-licenses__card-desc {
  margin: 0;
  color: var(--color-gray900);
  font-weight: 400;
  font-size: max(1rem, 8px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-licenses__card-desc {
    font-size: max(0.9375rem, 8px);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
}

.p-lp-mv {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-lp-mv {
    min-height: 33.75rem;
  }
}

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

.p-lp-mv__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.p-lp-mv__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.p-lp-mv__bg img {
  display: block;
  width: 100%;
  object-position: center bottom;
}

.p-lp-mv__content {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  width: min(100%, 81.75rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
  padding-block-start: 6rem;
  padding-block-end: 3.8125rem;
}
@media screen and (max-width: 767px) {
  .p-lp-mv__content {
    display: flex;
    flex-direction: column;
    width: min(100%, 500px);
    min-height: inherit;
    margin-inline: auto;
    padding-inline: 1.25rem;
    padding-block-start: 1.5rem;
    padding-block-end: 1.5rem;
  }
}

.p-lp-mv__title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 52.5rem;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-lp-mv__title-wrap {
    gap: 0.125rem;
  }
}

.p-lp-mv__main-title {
  margin: 0;
  color: var(--color-gray900);
  font-family: var(--ff-base);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-lp-mv__main-title {
    margin-inline: -1.2820512821vw;
    font-size: min(7.6923076923vw, 2.25rem);
  }
}

.p-lp-mv__title-line {
  display: block;
}

.p-lp-mv__lead {
  width: min(100%, 36.75rem);
  margin-block-start: 2.3125rem;
  color: var(--color-gray900);
  font-family: var(--ff-base);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 767px) {
  .p-lp-mv__lead {
    margin-block-start: 1rem;
  }
}

.p-lp-mv__achievements {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  column-gap: 0.75rem;
  max-width: 42.9375rem;
  margin-block-start: 6.8125rem;
}
@media screen and (max-width: 767px) {
  .p-lp-mv__achievements {
    align-items: flex-start;
    justify-content: center;
    max-width: none;
    width: fit-content;
    column-gap: 0.25rem;
    margin-block-start: auto;
  }
}

.p-lp-mv__achievements--medium .p-lp-mv__achievement-body,
.p-lp-mv__achievements--medium .p-lp-mv__achievement-figure,
.p-lp-mv__achievements--medium .p-lp-mv__achievement-unit,
.p-lp-mv__achievements--medium .p-lp-mv__achievement-suffix,
.p-lp-mv__achievements--medium .p-lp-mv__achievement-yen,
.p-lp-mv__achievements--medium .p-lp-mv__achievement-note {
  color: #654c09;
}

.p-lp-mv__achievements--dark .p-lp-mv__achievement-body,
.p-lp-mv__achievements--dark .p-lp-mv__achievement-figure,
.p-lp-mv__achievements--dark .p-lp-mv__achievement-unit,
.p-lp-mv__achievements--dark .p-lp-mv__achievement-suffix,
.p-lp-mv__achievements--dark .p-lp-mv__achievement-yen,
.p-lp-mv__achievements--dark .p-lp-mv__achievement-note {
  color: #4e2c1c;
}

.p-lp-mv__achievement {
  display: flex;
  align-items: center;
  column-gap: 0.625rem;
  height: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-lp-mv__achievement {
    height: 3.111375rem;
    column-gap: 0.311125rem;
  }
}

.p-lp-mv__achievement--02 {
  column-gap: 0;
}
@media screen and (max-width: 767px) {
  .p-lp-mv__achievement--02 {
    column-gap: 0;
  }
}

.p-lp-mv__achievement--03 {
  column-gap: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-lp-mv__achievement--03 {
    column-gap: 0;
  }
}

.p-lp-mv__achievement-deco {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  width: 2.5625rem;
  height: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-lp-mv__achievement-deco {
    width: 1.254375rem;
    height: 3.111375rem;
  }
}

.p-lp-mv__achievement-deco img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-lp-mv__achievement-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 0.125rem;
  color: var(--color-secondary);
  text-align: center;
  letter-spacing: 0.0625rem;
}
@media screen and (max-width: 767px) {
  .p-lp-mv__achievement-body {
    row-gap: 0.125rem;
    padding-inline: 0.125rem;
    letter-spacing: 0.0311125rem;
  }
}

.p-lp-mv__achievement-body--narrow {
  box-sizing: border-box;
  width: 100%;
  max-width: 8.5rem;
}
@media screen and (max-width: 767px) {
  .p-lp-mv__achievement-body--narrow {
    max-width: 4.2314375rem;
  }
}

.p-lp-mv__achievement-label {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-lp-mv__achievement-label {
    font-size: 0.625rem;
  }
}

.p-lp-mv__achievement-value {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  justify-content: center;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}

.p-lp-mv__achievement-value--wide {
  column-gap: 0;
}

.p-lp-mv__achievement-value--yen {
  align-items: baseline;
}

.p-lp-mv__achievement-figure {
  font-family: "Barlow", var(--ff-en), sans-serif;
  font-size: 2.8125rem;
  font-weight: 600;
  line-height: 1;
  color: var(--color-secondary);
}
@media screen and (max-width: 767px) {
  .p-lp-mv__achievement-figure {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-lp-mv__achievement--03 .p-lp-mv__achievement-figure {
    font-size: 1.400125rem;
  }
}

.p-lp-mv__achievement-figure--hundred {
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  .p-lp-mv__achievement-figure-digit {
    letter-spacing: -0.105rem;
  }
}

.p-lp-mv__achievement-figure-rest {
  letter-spacing: 0;
}

.p-lp-mv__achievement-figure--zero {
  letter-spacing: 0.196875rem;
}
@media screen and (max-width: 767px) {
  .p-lp-mv__achievement-figure--zero {
    letter-spacing: 0.105rem;
  }
}

.p-lp-mv__achievement-unit {
  margin-inline-start: 0.125rem;
  font-family: var(--ff-base);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-secondary);
}
@media screen and (max-width: 767px) {
  .p-lp-mv__achievement-unit {
    font-size: 0.62225rem;
  }
}

.p-lp-mv__achievement-suffix {
  font-family: var(--ff-base);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-secondary);
}
@media screen and (max-width: 767px) {
  .p-lp-mv__achievement-suffix {
    margin-inline-start: 0.0625rem;
    font-size: 0.5rem;
  }
}

.p-lp-mv__achievement-yen {
  margin-inline-start: 0.25rem;
  font-family: var(--ff-base);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-secondary);
}
@media screen and (max-width: 767px) {
  .p-lp-mv__achievement-yen {
    margin-inline-start: 0.0625rem;
    font-size: 0.933375rem;
  }
}

.p-lp-mv__achievement-note {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.34;
  color: var(--color-secondary);
}
@media screen and (max-width: 767px) {
  .p-lp-mv__achievement-note {
    font-size: 0.5rem;
  }
}

.p-lp-mv__cta {
  display: flex;
  align-items: stretch;
  gap: 0.6875rem;
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-lp-mv__cta {
    gap: 0.5rem;
    margin-block-start: 1rem;
  }
}

.p-lp-mv__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 21rem;
  max-width: 100%;
  padding-block: 1.1875rem;
  border: 1px solid var(--color-primary);
  padding-inline: 1.6875rem;
  border-radius: 100vmax;
  text-decoration: none;
  transition: opacity var(--duration), background-color var(--duration), color var(--duration), border-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-lp-mv__cta-btn {
    width: 17.75rem;
    padding-block: 1rem;
    padding-inline: 1.0625rem;
  }
}
@media (any-hover: hover) {
  .p-lp-mv__cta-btn:hover {
    opacity: 1;
    background-color: var(--color-white);
    color: var(--color-primary);
  }
  .p-lp-mv__cta-btn:hover.p-lp-mv__cta-btn--line {
    color: var(--color-line);
  }
  .p-lp-mv__cta-btn:hover.p-lp-mv__cta-btn--line .p-lp-mv__cta-arrow-wrap {
    background-color: var(--color-line);
  }
  .p-lp-mv__cta-btn:hover .p-lp-mv__cta-icon-wrap--mail {
    background-color: var(--color-primary);
  }
  .p-lp-mv__cta-btn:hover .p-lp-mv__cta-arrow-wrap {
    background-color: var(--color-primary);
  }
}

.p-lp-mv__cta-btn--line {
  border-color: var(--color-line);
  background-color: var(--color-line);
  color: var(--color-white);
}

.p-lp-mv__cta-btn--mail {
  background-color: var(--color-primary);
  color: #f7f9f4;
}

.p-lp-mv__cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 17.75rem;
}

.p-lp-mv__cta-main {
  display: flex;
  align-items: center;
  column-gap: 0.75rem;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-lp-mv__cta-main {
    column-gap: 0.3125rem;
  }
}

.p-lp-mv__cta-icon-wrap {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.p-lp-mv__cta-icon-wrap--mail {
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--color-white);
  transition: background-color var(--duration);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 13 13' fill='none'%3E%3Cg clip-path='url(%23clip0_9861_10127)'%3E%3Cpath d='M2.69815 3.80913L6.40464 6.98689C6.4424 7.01927 6.50715 7.01927 6.54491 6.98689L10.2514 3.80913M1.72701 2.1582H11.2225C11.5786 2.1582 11.87 2.44954 11.87 2.80563V9.49566C11.87 10.2078 11.2873 10.7905 10.5751 10.7905H2.37443C1.66227 10.7905 1.07959 10.2078 1.07959 9.49566V2.80563C1.07959 2.44954 1.37093 2.1582 1.72701 2.1582Z' stroke='%23F7F9F4' stroke-width='0.971133' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_9861_10127'%3E%3Crect width='12.9484' height='12.9484' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
@media screen and (max-width: 767px) {
  .p-lp-mv__cta-icon-wrap--mail {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.p-lp-mv__cta-icon {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-lp-mv__cta-icon {
    width: 1rem;
    height: 1rem;
  }
}

.p-lp-mv__cta-label {
  font-family: var(--ff-base);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-lp-mv__cta-label {
    font-size: 0.9375rem;
  }
}

.p-lp-mv__cta-arrow-wrap {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-white);
  transition: background-color var(--duration);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8' fill='none'%3E%3Cpath d='M2.63131 0.798889C2.63131 1.2401 2.98898 1.59778 3.43018 1.59778H5.27242L0.233991 6.63616C-0.0779971 6.94816 -0.0779971 7.45401 0.233991 7.76601C0.545975 8.078 1.05181 8.078 1.3638 7.76601L6.40222 2.72758V4.56981C6.40222 5.01101 6.75991 5.3687 7.20111 5.3687C7.64231 5.3687 8 5.01101 8 4.56981V0.798889C8 0.587013 7.91585 0.383813 7.76603 0.233989C7.61621 0.0841707 7.41297 0 7.20111 0H3.43018C2.98898 0 2.63131 0.357679 2.63131 0.798889Z' fill='white'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
@media screen and (max-width: 767px) {
  .p-lp-mv__cta-arrow-wrap {
    width: 0.375rem;
    height: 0.375rem;
  }
}

.p-lp-mv__cta-arrow {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-mv {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-mv {
    height: auto;
    min-height: 543px;
  }
}

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

.p-mv__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.p-mv__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.p-mv__bg img {
  display: block;
  width: 100%;
}

.p-mv__content {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  width: min(100%, 81.75rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
  padding-block-start: 8.625rem;
  padding-block-end: 2.3125rem;
}
@media screen and (max-width: 767px) {
  .p-mv__content {
    padding-inline: 1.375rem;
    padding-block-start: 6.6875rem;
    padding-block-end: 3rem;
  }
}

.p-mv__title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5625rem;
  max-width: 41.8125rem;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-mv__title-wrap {
    gap: 0.125rem;
  }
}

.p-mv__main-title {
  margin: 0;
  color: var(--color-gray900);
  font-family: var(--ff-base);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-mv__main-title {
    font-size: 2.25rem;
  }
}

.p-mv__title-line {
  display: block;
}

.p-mv__lead {
  margin: 0;
  color: var(--color-primary);
  letter-spacing: 0.08725625rem;
  font-family: var(--ff-base);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-mv__lead {
    font-size: 1.25rem;
    letter-spacing: 0.0625rem;
  }
}

.p-mv__lead-body--kern {
  letter-spacing: -0.2275rem;
}
@media screen and (max-width: 767px) {
  .p-mv__lead-body--kern {
    letter-spacing: -0.1625rem;
  }
}

.p-mv__lead-num {
  font-family: "Barlow", var(--ff-en), sans-serif;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-mv__lead-num {
    font-size: 1.75rem;
  }
}

.p-mv__lead-num-char--kern {
  letter-spacing: -0.09rem;
}
@media screen and (max-width: 767px) {
  .p-mv__lead-num-char--kern {
    letter-spacing: -0.0525rem;
  }
}

.p-mv__lead-accent {
  font-size: 2.25rem;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .p-mv__lead-accent {
    font-size: 1.5rem;
  }
}

.p-mv__lead-period {
  font-size: 2.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-mv__lead-period {
    font-size: 1.5rem;
  }
}

.p-mv__achievements {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  column-gap: 0.75rem;
  max-width: fit-content;
  margin-block-start: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .p-mv__achievements {
    align-items: flex-start;
    justify-content: center;
    max-width: none;
    width: fit-content;
    column-gap: 0.25rem;
    margin-block-start: 2rem;
  }
}

.p-mv__achievement {
  display: flex;
  align-items: center;
  column-gap: 0.625rem;
  height: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-mv__achievement {
    align-items: center;
    height: 3.111375rem;
    column-gap: 0.311125rem;
  }
}

.p-mv__achievement--02 {
  column-gap: 0;
}
@media screen and (max-width: 767px) {
  .p-mv__achievement--02 {
    column-gap: 0;
  }
}

.p-mv__achievement--03 {
  column-gap: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-mv__achievement--03 {
    column-gap: 0;
  }
}

.p-mv__achievement-deco {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  width: 2.5625rem;
  height: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-mv__achievement-deco {
    width: 1.254375rem;
    height: 3.111375rem;
  }
}

.p-mv__achievement-deco img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-mv__achievement-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 0.125rem;
  color: var(--color-secondary);
  text-align: center;
  letter-spacing: 0.0625rem;
}
@media screen and (max-width: 767px) {
  .p-mv__achievement-body {
    row-gap: 0.125rem;
    padding-inline: 0.125rem;
    letter-spacing: 0.0311125rem;
  }
}

.p-mv__achievement-body--narrow {
  box-sizing: border-box;
  width: 100%;
  max-width: 8.5rem;
}
@media screen and (max-width: 767px) {
  .p-mv__achievement-body--narrow {
    max-width: 4.2314375rem;
  }
}

.p-mv__achievement-label {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-mv__achievement-label {
    font-size: 0.625rem;
  }
}

.p-mv__achievement-label--split {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  column-gap: 0;
}

.p-mv__achievement-label-line {
  line-height: 1;
}

.p-mv__achievement-value {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  justify-content: center;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}

.p-mv__achievement-value--wide {
  column-gap: 0;
}

.p-mv__achievement-value--yen {
  align-items: baseline;
}

.p-mv__achievement-figure {
  font-family: "Barlow", var(--ff-en), sans-serif;
  font-size: 2.8125rem;
  font-weight: 600;
  line-height: 1;
  color: var(--color-secondary);
}
@media screen and (max-width: 767px) {
  .p-mv__achievement-figure {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-mv__achievement--03 .p-mv__achievement-figure {
    font-size: 1.400125rem;
  }
}

.p-mv__achievement-figure--hundred {
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  .p-mv__achievement-figure-digit {
    letter-spacing: -0.105rem;
  }
}

.p-mv__achievement-figure-rest {
  letter-spacing: 0;
}

.p-mv__achievement-figure--zero {
  letter-spacing: 0.196875rem;
}
@media screen and (max-width: 767px) {
  .p-mv__achievement-figure--zero {
    letter-spacing: 0.105rem;
  }
}

.p-mv__achievement-figure--tight {
  letter-spacing: -0.196875rem;
}

.p-mv__achievement-unit {
  margin-inline-start: 0.125rem;
  font-family: var(--ff-base);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-secondary);
}
@media screen and (max-width: 767px) {
  .p-mv__achievement-unit {
    font-size: 0.62225rem;
  }
}

.p-mv__achievement-suffix {
  font-family: var(--ff-base);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-secondary);
}
@media screen and (max-width: 767px) {
  .p-mv__achievement-suffix {
    margin-inline-start: 0.0625rem;
    font-size: 0.5rem;
  }
}

.p-mv__achievement-yen {
  margin-inline-start: 0.25rem;
  font-family: var(--ff-base);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-secondary);
}
@media screen and (max-width: 767px) {
  .p-mv__achievement-yen {
    margin-inline-start: 0.0625rem;
    font-size: 0.933375rem;
  }
}

.p-mv__achievement-note {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.34;
  color: var(--color-secondary);
}
@media screen and (max-width: 767px) {
  .p-mv__achievement-note {
    font-size: 0.5rem;
  }
}

.p-mv__cta {
  display: flex;
  align-items: stretch;
  gap: 0.6875rem;
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-mv__cta {
    gap: 0.5rem;
    max-width: 540px;
    margin-block-start: 1.5rem;
  }
}

.p-mv__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 21rem;
  max-width: 100%;
  padding-block: 1.1875rem;
  border: 1px solid var(--color-primary);
  padding-inline: 1.6875rem;
  border-radius: 100vmax;
  text-decoration: none;
  transition: opacity var(--duration), background-color var(--duration), color var(--duration), border-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-mv__cta-btn {
    width: 17.75rem;
    padding-block: 1rem;
    padding-inline: 1.0625rem;
  }
}
@media (any-hover: hover) {
  .p-mv__cta-btn:hover {
    opacity: 1;
    background-color: var(--color-white);
    color: var(--color-primary);
  }
  .p-mv__cta-btn:hover.p-mv__cta-btn--line {
    color: var(--color-line);
  }
  .p-mv__cta-btn:hover.p-mv__cta-btn--line .p-mv__cta-arrow-wrap {
    background-color: var(--color-line);
  }
  .p-mv__cta-btn:hover .p-mv__cta-icon-wrap--mail {
    background-color: var(--color-primary);
  }
  .p-mv__cta-btn:hover .p-mv__cta-arrow-wrap {
    background-color: var(--color-primary);
  }
}

.p-mv__cta-btn--line {
  border-color: var(--color-line);
  background-color: var(--color-line);
  color: var(--color-white);
}

.p-mv__cta-btn--mail {
  background-color: var(--color-primary);
  color: #f7f9f4;
}

.p-mv__cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 17.75rem;
}

.p-mv__cta-main {
  display: flex;
  align-items: center;
  column-gap: 0.75rem;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-mv__cta-main {
    column-gap: 0.3125rem;
  }
}

.p-mv__cta-icon-wrap {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.p-mv__cta-icon-wrap--mail {
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--color-white);
  transition: background-color var(--duration);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 13 13' fill='none'%3E%3Cg clip-path='url(%23clip0_9861_10127)'%3E%3Cpath d='M2.69815 3.80913L6.40464 6.98689C6.4424 7.01927 6.50715 7.01927 6.54491 6.98689L10.2514 3.80913M1.72701 2.1582H11.2225C11.5786 2.1582 11.87 2.44954 11.87 2.80563V9.49566C11.87 10.2078 11.2873 10.7905 10.5751 10.7905H2.37443C1.66227 10.7905 1.07959 10.2078 1.07959 9.49566V2.80563C1.07959 2.44954 1.37093 2.1582 1.72701 2.1582Z' stroke='%23F7F9F4' stroke-width='0.971133' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_9861_10127'%3E%3Crect width='12.9484' height='12.9484' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
@media screen and (max-width: 767px) {
  .p-mv__cta-icon-wrap--mail {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.p-mv__cta-icon {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-mv__cta-icon {
    width: 1rem;
    height: 1rem;
  }
}

.p-mv__cta-label {
  font-family: var(--ff-base);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-mv__cta-label {
    font-size: 0.9375rem;
  }
}

.p-mv__cta-arrow-wrap {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-white);
  transition: background-color var(--duration);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8' fill='none'%3E%3Cpath d='M2.63131 0.798889C2.63131 1.2401 2.98898 1.59778 3.43018 1.59778H5.27242L0.233991 6.63616C-0.0779971 6.94816 -0.0779971 7.45401 0.233991 7.76601C0.545975 8.078 1.05181 8.078 1.3638 7.76601L6.40222 2.72758V4.56981C6.40222 5.01101 6.75991 5.3687 7.20111 5.3687C7.64231 5.3687 8 5.01101 8 4.56981V0.798889C8 0.587013 7.91585 0.383813 7.76603 0.233989C7.61621 0.0841707 7.41297 0 7.20111 0H3.43018C2.98898 0 2.63131 0.357679 2.63131 0.798889Z' fill='white'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
@media screen and (max-width: 767px) {
  .p-mv__cta-arrow-wrap {
    width: 0.375rem;
    height: 0.375rem;
  }
}

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

.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-news-list--column-pickup {
  margin-block-end: 5rem;
}
@media screen and (max-width: 767px) {
  .p-news-list--column-pickup {
    margin-block-end: 2.5rem;
  }
}

.p-news-list--column {
  --p-news-list-cat: var(--color-primary);
}

#column-archive-list {
  scroll-margin-top: var(--header-height);
}

.p-news-list--column .p-news-list__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.p-news-list__list-heading {
  margin: 0;
  color: var(--color-gray900);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.p-news-list__container--column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  background: transparent;
}
@media screen and (max-width: 1023px) {
  .p-news-list__container--column {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-news-list__container--column {
    grid-template-columns: 1fr;
  }
}

.p-news-list--column .p-news-list__item--column {
  display: block;
  border: 0;
  text-decoration: none;
  color: inherit;
  background-color: transparent;
}
@media (any-hover: hover) {
  .p-news-list--column .p-news-list__item--column:hover {
    background-color: transparent;
    opacity: 1;
  }
  .p-news-list--column .p-news-list__item--column:hover .p-news-list__image {
    transform: scale(1.04);
  }
}

.p-news-list--column .p-news-list__card--column {
  --p-news-list-cat: var(--color-primary);
  margin: 0;
  padding: 0;
  background: transparent;
}

.p-news-list__media {
  position: relative;
  width: 100%;
  aspect-ratio: 288/188;
  border-radius: 0.25rem;
  background-color: #eff1f3;
  overflow: hidden;
}

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

.p-news-list__image--placeholder {
  min-height: 100%;
  background-color: var(--color-gray300);
}

.p-news-list__category-badge {
  position: absolute;
  z-index: 2;
  bottom: 4.125rem;
  left: 0.4375rem;
  max-width: calc(100% - 0.875rem);
  padding: 0.25rem;
  border-radius: 0.125rem;
  background-color: var(--p-news-list-cat, var(--color-primary));
  color: var(--color-white);
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.2;
}

.p-news-list__category-badge-text {
  display: block;
  color: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.p-news-list__body {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 3.5625rem;
  padding: 0.375rem 1.5rem;
  background-color: rgba(47, 45, 46, 0.7);
  display: flex;
  align-items: flex-start;
  box-sizing: border-box;
}

.p-news-list__card-title {
  display: -webkit-box;
  margin: 0;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--color-white);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.p-news-list--column .p-news-list__empty--column {
  width: 100%;
}

.p-news-list--column .p-news-list__pagination {
  --_pagination-bg: var(--color-gray100);
  margin-block-start: 2.5rem;
}

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

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

.p-privacy__section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.p-privacy__text {
  margin: 0;
  color: var(--color-gray900);
  font-size: max(1rem, 8px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-privacy__text {
    font-size: max(0.9375rem, 8px);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
}

.p-privacy__list {
  margin: 0;
  padding: 0;
  list-style: disc;
  color: var(--color-gray900);
  font-size: max(1rem, 8px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-privacy__list {
    font-size: max(0.9375rem, 8px);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
}

.p-privacy__item {
  margin-inline-start: 1.5rem;
}

.p-privacy__item + .p-privacy__item {
  margin-block-start: 0.25rem;
}

.p-privacy__subheading {
  font-size: max(1rem, 8px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-privacy__subheading {
    font-size: max(0.9375rem, 8px);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
}

.p-privacy__text + .p-privacy__text {
  margin-block-start: 0;
}

.p-privacy__list + .p-privacy__text {
  margin-block-start: 1rem;
}

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

.p-privacy__text + .p-privacy__list {
  margin-block-start: 0.5rem;
}

.p-privacy__contact {
  margin: 0;
  color: var(--color-gray900);
  font-style: normal;
  font-size: max(1rem, 8px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-privacy__contact {
    font-size: max(0.9375rem, 8px);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
}

@media (any-hover: hover) {
  .p-privacy__contact-link:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 0.25rem;
  }
}

.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-satei-confirm {
  padding-block: 7.5rem 15rem;
}
@media screen and (max-width: 767px) {
  .p-satei-confirm {
    padding-block: 3rem;
  }
}

.p-satei-confirm__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-sizing: border-box;
  width: min(100%, 47.75rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-satei-confirm__inner {
    gap: 1.25rem;
    width: min(100%, 600px);
    padding-inline: 1.25rem;
  }
}

.p-satei-confirm__title {
  margin-block-start: 2rem;
  color: var(--color-gray900);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-satei-confirm__title {
    margin-block-start: 1.25rem;
    font-size: 1.75rem;
  }
}

.p-satei-confirm__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  margin-block-start: 2rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-satei-confirm__list {
    margin-block-start: 1.25rem;
  }
}
.p-satei-confirm__list + .p-satei-confirm__list {
  margin-block-start: 0;
}

.p-satei-confirm__item {
  width: 100%;
}

.p-satei-confirm__panel {
  overflow: clip;
  box-sizing: border-box;
  padding: 1.75rem;
  border-radius: 0.375rem;
  background-color: #eff3f7;
}
@media screen and (max-width: 767px) {
  .p-satei-confirm__panel {
    padding: 1.25rem;
  }
}

.p-satei-confirm__panel-body {
  box-sizing: border-box;
  width: 100%;
  padding: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-satei-confirm__panel-body {
    max-width: none;
  }
}

.p-satei-confirm__heading {
  margin: 0 0 1.5rem;
  color: var(--color-gray900);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .p-satei-confirm__heading {
    font-size: 1.25rem;
    margin-block-end: 0.625rem;
  }
}

.p-satei-confirm__dl {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-satei-confirm__dl {
    gap: 0.625rem;
  }
}

.p-satei-confirm__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.p-satei-confirm__term {
  flex-shrink: 0;
  margin: 0;
  color: #757575;
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .p-satei-confirm__term {
    font-size: 0.9375rem;
  }
}

.p-satei-confirm__desc {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  color: var(--color-gray900);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .p-satei-confirm__desc {
    font-size: 1rem;
  }
}

.p-satei-confirm__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-satei-confirm__foot {
    flex-direction: column;
    align-items: stretch;
  }
}

.p-satei-confirm__send-form {
  margin: 0;
}

.p-satei-confirm__prev {
  color: var(--color-gray600);
  text-decoration: none;
  transition: color var(--duration);
  font-size: max(1.375rem, 8px);
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-satei-confirm__prev {
    text-align: center;
    font-size: max(1.125rem, 8px);
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.05em;
  }
}
@media (any-hover: hover) {
  .p-satei-confirm__prev:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 0.25rem;
  }
}
.p-satei-confirm__prev:focus-visible {
  outline: 0.125rem solid var(--color-primary-mid);
  outline-offset: 0.125rem;
}

.p-satei-confirm__submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: min(100%, 20.1875rem);
  padding: 1.3125rem 2.75rem;
  border: 2px solid #efa361;
  border-radius: 100vmax;
  background-color: #efa361;
  color: var(--color-white);
  text-decoration: none;
  cursor: pointer;
  transition: color var(--duration), background-color 0.3s ease;
  font-size: max(1.375rem, 8px);
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-satei-confirm__submit {
    width: 100%;
    height: auto;
    min-height: 3.5rem;
    padding: 1rem 2rem;
    font-size: max(1.125rem, 8px);
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.05em;
  }
}
@media (any-hover: hover) {
  .p-satei-confirm__submit:hover {
    background-color: var(--color-white);
    color: #efa361;
  }
}
.p-satei-confirm__submit:focus-visible {
  outline: 0.125rem solid var(--color-gray900);
  outline-offset: 0.25rem;
}

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

.p-satei__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  box-sizing: border-box;
  width: min(100%, 47.75rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-satei__inner {
    gap: 2.5rem;
    width: min(100%, 600px);
    padding-inline: 1.25rem;
  }
}

.p-satei__progress {
  display: block;
  width: 100%;
}

.p-satei__progress-list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-satei__progress-segment {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  min-width: 0;
}
.p-satei__progress-segment:last-child {
  flex: 0 0 auto;
}

.p-satei__progress-num {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 0.0625rem solid var(--color-gray900);
  background-color: #fff;
  color: var(--color-gray900);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}
.p-satei__progress-num[aria-current=step] {
  border-color: #7aadda;
  background-color: #7aadda;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-satei__progress-num {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.875rem;
  }
}

.p-satei__progress-line {
  display: block;
  flex: 1 1 auto;
  height: 0.0625rem;
  background-color: var(--color-gray900);
}

.p-satei__title {
  margin: 0;
  color: var(--color-gray900);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-satei__title {
    font-size: 1.75rem;
  }
}

.p-satei__lead {
  display: block;
  width: 100%;
}

.p-satei__lead-paragraph {
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-satei__lead-paragraph {
    font-size: 0.875rem;
  }
}

.p-satei__procedure {
  display: block;
  width: 100%;
}

.p-satei__procedure-title {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-satei__procedure-title {
    margin-block-end: 1.25rem;
    font-size: 1.25rem;
  }
}

.p-satei__procedure-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-block-start: 1.25rem;
}

.p-satei__procedure-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.p-satei__procedure-badge {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #5b85aa;
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}

.p-satei__procedure-text {
  flex: 1 1 auto;
  padding-block-start: 0.25rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-satei__procedure-text {
    font-size: 0.875rem;
  }
}

.p-satei__form {
  display: block;
  width: 100%;
}

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

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

.p-search__intro {
  margin: 0;
  color: var(--color-gray900);
  font-size: max(1rem, 8px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-search__intro {
    font-size: max(0.9375rem, 8px);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
}

.p-search__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  box-sizing: border-box;
  padding: 3.75rem 2rem;
  border-radius: 0.625rem;
  text-align: center;
  color: var(--color-gray500);
  background-color: var(--color-base);
  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%);
  font-size: max(1rem, 8px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-search__empty {
    padding: 2.5rem 1.5rem;
    font-size: max(0.9375rem, 8px);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
}

.p-search__empty-text {
  max-width: 47.5rem;
  margin: 0;
}

.p-search__empty-link {
  font-size: max(1rem, 8px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--color-primary);
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .p-search__empty-link {
    font-size: max(0.9375rem, 8px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.03em;
  }
}
@media (any-hover: hover) {
  .p-search__empty-link:hover {
    text-decoration: none;
  }
}

.p-search-zero {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 2.5rem 2rem;
  border-radius: 0.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-search-zero {
    gap: 0.875rem;
    padding: 1.75rem 0;
  }
}

.p-search-zero__title {
  margin: 0;
  color: var(--color-gray900);
  font-size: max(1.375rem, 8px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-search-zero__title {
    font-size: max(1.125rem, 8px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.03em;
  }
}

.p-search-zero__text {
  margin: 0;
  font-size: max(1rem, 8px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--color-gray600);
}
@media screen and (max-width: 767px) {
  .p-search-zero__text {
    font-size: max(0.9375rem, 8px);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
}

.p-search-zero__form {
  width: 100%;
  max-width: 28.5rem;
}

.p-search-zero__form-inner {
  display: flex;
  box-sizing: border-box;
  align-items: center;
  min-height: 3.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid #5b5b5b;
  border-radius: 2.5rem;
  background-color: var(--color-base);
  gap: 0.5rem;
}

.p-search-zero__label {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.p-search-zero__input {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--color-gray900);
  text-align: left;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
}
@media screen and (max-width: 767px) {
  .p-search-zero__input {
    font-size: 1rem;
  }
}

.p-search-zero__input::placeholder {
  color: #7e7f83;
}

.p-search-zero__search-btn {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--color-gray600);
  line-height: 0;
  background: transparent;
  cursor: pointer;
}

.p-search-zero__search-icon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
}

.p-search-zero__link {
  display: inline-flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  min-width: 13.75rem;
  min-height: 2.75rem;
  padding: 0.5rem 1.25rem;
  border-radius: 62.4375rem;
  font-size: max(0.875rem, 8px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-search-zero__link {
    min-width: 12.5rem;
    min-height: 2.625rem;
    padding: 0.5rem 1rem;
    font-size: max(0.875rem, 8px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.02em;
  }
}
@media (any-hover: hover) {
  .p-search-zero__link:hover {
    color: var(--color-gray900);
    border-color: var(--color-gray900);
  }
}

.p-search__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);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.p-search-results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-search-results {
    gap: 0.75rem;
  }
}

.p-search-results__item {
  margin: 0;
}

.p-search-results__link {
  display: block;
  box-sizing: border-box;
  padding: 1.25rem 1.5rem;
  border-radius: 0.125rem;
  border-inline-start: 0.1875rem solid var(--color-primary);
  text-decoration: none;
  color: inherit;
  background-color: var(--color-gray100);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
@media screen and (max-width: 767px) {
  .p-search-results__link {
    padding: 1rem 1.25rem;
  }
}
@media (any-hover: hover) {
  .p-search-results__link:hover {
    background-color: rgba(91, 133, 170, 0.12);
    box-shadow: inset 0 0 0 1px rgba(91, 133, 170, 0.2);
  }
}

.p-search-results__card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
}

.p-search-results__title {
  margin: 0;
  color: var(--color-gray900);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-search-results__title {
    font-size: 1rem;
  }
}

.p-search-results__link:hover .p-search-results__title {
  color: var(--color-primary);
}

.p-search-results__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.25rem;
  margin: 0;
  font-size: max(0.8125rem, 8px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--color-gray600);
}
@media screen and (max-width: 767px) {
  .p-search-results__meta {
    font-size: max(0.75rem, 8px);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.02em;
  }
}

.p-search-results__date {
  color: inherit;
}

.p-search-results__meta-sep {
  color: var(--color-gray500);
}

.p-search-results__type {
  color: var(--color-primary);
  font-weight: 500;
}

.p-search-results__excerpt {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: max(0.875rem, 8px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--color-gray600);
}
@media screen and (max-width: 767px) {
  .p-search-results__excerpt {
    line-clamp: 2;
    -webkit-line-clamp: 2;
    font-size: max(0.8125rem, 8px);
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.01em;
  }
}

.p-shop {
  padding-block: 7.5rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-shop {
    padding-block: 5rem;
  }
}

.p-shop__inner {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-shop__inner {
    gap: 2.5rem;
  }
}

.p-shop__head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-sizing: border-box;
  width: 100%;
  max-width: 31.4375rem;
}

.p-shop__en {
  margin: 0;
  color: var(--color-gray900);
  font-family: var(--ff-en);
  font-weight: 200;
  font-size: max(1.25rem, 8px);
  letter-spacing: 0.05em;
}

.p-shop__title {
  margin: 0;
  color: var(--color-gray900);
  font-weight: 500;
  font-size: max(2.25rem, 8px);
  font-weight: 500;
  line-height: 0.9722222222;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-shop__title {
    font-size: max(1.75rem, 8px);
    font-weight: 500;
    line-height: 1.2142857143;
    letter-spacing: 0.05em;
  }
}

.p-shop__intro {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 75.5rem;
}

.p-shop__intro-paragraph {
  margin: 0;
  color: var(--color-gray900);
  font-size: max(1rem, 8px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-shop__intro-paragraph {
    font-size: max(0.9375rem, 8px);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
}

.p-shop__visuals {
  display: flex;
  flex-flow: row nowrap;
  gap: 1.25rem;
  justify-content: space-between;
  align-items: flex-end;
  box-sizing: border-box;
  width: 100%;
  max-width: 69rem;
  padding-inline-start: 13rem;
}
@media screen and (max-width: 767px) {
  .p-shop__visuals {
    flex-direction: column;
    align-items: stretch;
    max-width: none;
    padding-inline-start: 0;
  }
}

.p-shop__figure {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  margin: 0;
  border-radius: 0.375rem;
}

.p-shop__figure--main {
  width: 37rem;
  height: 23.125rem;
}
@media screen and (max-width: 767px) {
  .p-shop__figure--main {
    width: 100%;
    height: auto;
    aspect-ratio: 592/370;
  }
}

.p-shop__figure--sub {
  width: 18rem;
  height: 11.25rem;
}
@media screen and (max-width: 767px) {
  .p-shop__figure--sub {
    width: 100%;
    height: auto;
    aspect-ratio: 288/180;
  }
}

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

.p-shop__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-sizing: border-box;
  width: 100%;
  max-width: 69rem;
  padding-inline-start: 13rem;
}
@media screen and (max-width: 767px) {
  .p-shop__details {
    max-width: none;
    padding-inline-start: 0;
  }
}

.p-shop__dl {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.p-shop__group {
  display: grid;
  grid-template-columns: 15rem minmax(0, 1fr);
  column-gap: 1.25rem;
  box-sizing: border-box;
  margin-block-end: 1.25rem;
  padding-block-end: 1rem;
  border-block-end: 1px solid var(--color-gray300);
}
@media screen and (max-width: 767px) {
  .p-shop__group {
    grid-template-columns: 1fr;
    row-gap: 0.5rem;
    margin-block-end: 1rem;
    padding-block-end: 0.75rem;
  }
}

.p-shop__group:last-child {
  margin-block-end: 0;
}

.p-shop__term {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: max(1.25rem, 8px);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-shop__term {
    grid-column: 1;
    grid-row: 1;
    font-size: max(1.125rem, 8px);
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.05em;
  }
}

.p-shop__desc {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  color: var(--color-gray900);
  font-size: max(1rem, 8px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-shop__desc {
    grid-column: 1;
    grid-row: 2;
    font-size: max(0.9375rem, 8px);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
}

.p-shop__cta {
  box-sizing: border-box;
  width: 100%;
  max-width: 69rem;
  padding-inline-start: 13rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-shop__cta {
    max-width: none;
    padding-inline-start: 0;
  }
}

.p-shop__cta-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 21rem;
  max-width: 100%;
  padding-block: 1.1875rem;
  padding-inline: 1.6875rem;
  border: 1px solid var(--color-primary);
  border-radius: 100vmax;
  text-decoration: none;
  transition: opacity var(--duration), background-color var(--duration), color var(--duration), border-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-shop__cta-btn {
    width: 17.75rem;
    padding-block: 0.75rem;
    padding-inline: 1.0625rem;
  }
}
@media (any-hover: hover) {
  .p-shop__cta-btn:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    opacity: 1;
  }
  .p-shop__cta-btn:hover.p-shop__cta-btn--line {
    color: var(--color-line);
  }
  .p-shop__cta-btn:hover.p-shop__cta-btn--line .p-shop__cta-arrow-wrap {
    background-color: var(--color-line);
  }
  .p-shop__cta-btn:hover .p-shop__cta-arrow-wrap {
    background-color: var(--color-primary);
  }
}

.p-shop__cta-btn--line {
  border-color: var(--color-line);
  background-color: var(--color-line);
  color: var(--color-white);
}

.p-shop__cta-btn--primary-fill {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  color: #f7f9f4;
}
@media (any-hover: hover) {
  .p-shop__cta-btn--primary-fill:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
  }
  .p-shop__cta-btn--primary-fill:hover .p-shop__cta-arrow-wrap {
    background-color: var(--color-primary);
  }
  .p-shop__cta-btn--primary-fill:hover .p-shop__cta-icon {
    filter: none;
  }
}

.p-shop__cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 17.75rem;
}

.p-shop__cta-main {
  display: flex;
  column-gap: 0.75rem;
  align-items: center;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-shop__cta-main {
    column-gap: 0.3125rem;
  }
}

.p-shop__cta-icon-wrap {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
}

.p-shop__cta-icon {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-shop__cta-icon {
    width: 1rem;
    height: 1rem;
  }
}

.p-shop__cta-label {
  font-family: var(--ff-base);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-shop__cta-label {
    font-size: 0.9375rem;
  }
}

.p-shop__cta-arrow-wrap {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8' fill='none'%3E%3Cpath d='M2.63131 0.798889C2.63131 1.2401 2.98898 1.59778 3.43018 1.59778H5.27242L0.233991 6.63616C-0.0779971 6.94816 -0.0779971 7.45401 0.233991 7.76601C0.545975 8.078 1.05181 8.078 1.3638 7.76601L6.40222 2.72758V4.56981C6.40222 5.01101 6.75991 5.3687 7.20111 5.3687C7.64231 5.3687 8 5.01101 8 4.56981V0.798889C8 0.587013 7.91585 0.383813 7.76603 0.233989C7.61621 0.0841707 7.41297 0 7.20111 0H3.43018C2.98898 0 2.63131 0.357679 2.63131 0.798889Z' fill='white'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-white);
  transition: background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-shop__cta-arrow-wrap {
    width: 0.375rem;
    height: 0.375rem;
  }
}

.p-single-items {
  padding-block: 5rem 7.5rem;
  padding-inline: 0;
}
@media screen and (max-width: 767px) {
  .p-single-items {
    padding-block: 3.5rem;
    padding-inline: 0;
  }
}

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

.p-single-items__head {
  display: contents;
}

.p-single-items__title {
  margin: 0;
  align-items: baseline;
  color: var(--color-gray900);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.15rem;
}
@media screen and (max-width: 767px) {
  .p-single-items__title {
    font-size: 1.75rem;
    letter-spacing: 0.075rem;
    line-height: 1.25;
  }
}

.p-single-items__title-product {
  display: inline;
}

.p-single-items__title-suffix {
  display: inline;
  white-space: nowrap;
}

.p-single-items__lead {
  margin-block-start: 2.5rem;
  max-width: 100%;
  color: var(--color-gray900);
  font-family: var(--ff-base), var(--ff-en);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single-items__lead {
    margin-block-start: 1.5rem;
    font-size: 0.9375rem;
  }
}

.p-single-items__purchase {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 7rem;
  margin-block-start: 2.5rem;
  margin-inline-end: calc(50% - 50vw);
  padding-inline-end: 5.3125rem;
}
@media screen and (max-width: 767px) {
  .p-single-items__purchase {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
    margin-inline-end: 0;
    margin-block-start: 1.5rem;
    padding-inline-end: 0;
  }
}

.p-single-items__media {
  flex: 0 0 auto;
  width: min(100%, 28.5625rem);
}
@media screen and (max-width: 767px) {
  .p-single-items__media {
    flex: unset;
    width: 100%;
    max-width: 28.5625rem;
    margin-inline: auto;
  }
}

.p-single-items__figure {
  overflow: clip;
  width: min(28.5625rem, 100%);
  aspect-ratio: 1;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-single-items__figure {
    width: 100%;
  }
}

.p-single-items__figure--placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-white);
}

.p-single-items__thumbnail-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-single-items__figure--placeholder .p-single-items__thumbnail-img {
  width: auto;
  height: auto;
  object-fit: contain;
}

.p-single-items__summary {
  display: flex;
  flex-flow: column nowrap;
  gap: 2.25rem;
  width: min(100%, 26.9375rem);
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-single-items__summary {
    width: 100%;
  }
}

.p-single-items__summary-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
}

.p-single-items__product-label {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.075rem;
  color: var(--color-gray900);
}
@media screen and (max-width: 767px) {
  .p-single-items__product-label {
    font-size: 1.125rem;
    letter-spacing: 0.0625rem;
  }
}

.p-single-items__spec-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.p-single-items__spec {
  margin: 0;
  font-family: var(--ff-base), var(--ff-en);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-gray900);
}

.p-single-items__rule {
  display: block;
  width: 100%;
  margin: 0;
  border-inline: none;
  border-block-end: none;
  border-block-start: 0.0625rem solid #cccccc;
}

.p-single-items__price-block {
  display: flex;
  flex-flow: column nowrap;
  gap: 0;
}

.p-single-items__price-caption {
  margin: 0;
  font-family: var(--ff-base), var(--ff-en);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-gray900);
}

.p-single-items__price-body {
  display: flex;
  align-items: center;
}

.p-single-items__price-value {
  margin: 0;
  padding: 0;
  font-family: var(--ff-base), var(--ff-en);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.1rem;
  color: #b95069;
}
@media screen and (max-width: 767px) {
  .p-single-items__price-value {
    font-size: 1.625rem;
    letter-spacing: 0.075rem;
  }
}

.p-single-items__price-value--muted {
  font-size: 1.75rem;
  color: var(--color-gray600);
}

.p-single-items__cta {
  display: flex;
  flex-direction: column;
  gap: 0.6875rem;
  align-items: stretch;
  max-width: 26.75rem;
  padding-inline: 0;
  padding-inline-start: 0;
}
@media screen and (max-width: 767px) {
  .p-single-items__cta {
    max-width: none;
  }
}

.p-single-items__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  padding-block: 1.25rem;
  padding-inline: 1.6875rem;
  border: 1px solid var(--color-primary);
  border-radius: 100vmax;
  text-decoration: none;
  transition: opacity var(--duration), background-color var(--duration), color var(--duration), border-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-single-items__cta-btn {
    padding-block: 0.875rem;
    padding-inline: 1.3125rem;
  }
}
@media (any-hover: hover) {
  .p-single-items__cta-btn:hover {
    opacity: 1;
    background-color: var(--color-white);
    color: var(--color-primary);
  }
  .p-single-items__cta-btn:hover.p-single-items__cta-btn--line {
    color: var(--color-line);
  }
  .p-single-items__cta-btn:hover.p-single-items__cta-btn--line .p-single-items__cta-arrow-wrap {
    background-color: var(--color-line);
  }
  .p-single-items__cta-btn:hover .p-single-items__cta-icon-wrap--mail {
    background-color: var(--color-primary);
  }
  .p-single-items__cta-btn:hover .p-single-items__cta-arrow-wrap {
    background-color: var(--color-primary);
  }
}

.p-single-items__cta-btn--line {
  border-color: var(--color-line);
  background-color: var(--color-line);
  color: var(--color-white);
}

.p-single-items__cta-btn--mail {
  background-color: var(--color-primary);
  color: #f7f9f4;
}

.p-single-items__cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 17.75rem;
}

.p-single-items__cta-main {
  display: flex;
  align-items: center;
  column-gap: 0.75rem;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-single-items__cta-main {
    column-gap: 0.3125rem;
  }
}

.p-single-items__cta-icon-wrap {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.p-single-items__cta-icon-wrap--mail {
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--color-white);
  transition: background-color var(--duration);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 13 13' fill='none'%3E%3Cg clip-path='url(%23clip0_9861_10127)'%3E%3Cpath d='M2.69815 3.80913L6.40464 6.98689C6.4424 7.01927 6.50715 7.01927 6.54491 6.98689L10.2514 3.80913M1.72701 2.1582H11.2225C11.5786 2.1582 11.87 2.44954 11.87 2.80563V9.49566C11.87 10.2078 11.2873 10.7905 10.5751 10.7905H2.37443C1.66227 10.7905 1.07959 10.2078 1.07959 9.49566V2.80563C1.07959 2.44954 1.37093 2.1582 1.72701 2.1582Z' stroke='%23F7F9F4' stroke-width='0.971133' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_9861_10127'%3E%3Crect width='12.9484' height='12.9484' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
@media screen and (max-width: 767px) {
  .p-single-items__cta-icon-wrap--mail {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.p-single-items__cta-icon {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-single-items__cta-icon {
    width: 1rem;
    height: 1rem;
  }
}

.p-single-items__cta-label {
  font-family: var(--ff-base);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-single-items__cta-label {
    font-size: 0.9375rem;
  }
}

.p-single-items__cta-arrow-wrap {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-white);
  transition: background-color var(--duration);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8' fill='none'%3E%3Cpath d='M2.63131 0.798889C2.63131 1.2401 2.98898 1.59778 3.43018 1.59778H5.27242L0.233991 6.63616C-0.0779971 6.94816 -0.0779971 7.45401 0.233991 7.76601C0.545975 8.078 1.05181 8.078 1.3638 7.76601L6.40222 2.72758V4.56981C6.40222 5.01101 6.75991 5.3687 7.20111 5.3687C7.64231 5.3687 8 5.01101 8 4.56981V0.798889C8 0.587013 7.91585 0.383813 7.76603 0.233989C7.61621 0.0841707 7.41297 0 7.20111 0H3.43018C2.98898 0 2.63131 0.357679 2.63131 0.798889Z' fill='white'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
@media screen and (max-width: 767px) {
  .p-single-items__cta-arrow-wrap {
    width: 0.375rem;
    height: 0.375rem;
  }
}

.p-single-items__copy {
  display: flex;
  flex-flow: column nowrap;
  gap: 1rem;
}

.p-single-items__description {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.028125rem;
  color: var(--color-gray900);
}

.p-single-items__related-prices {
  display: flex;
  flex-flow: column nowrap;
  gap: 0;
  margin-block-start: 2.5rem;
}

.p-single-items__related-head {
  padding-block-end: 1.25rem;
  border-block-end-width: 0.0625rem;
  border-block-end-style: solid;
  border-block-end-color: var(--color-gray900);
}

.p-single-items__related-title {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.0875rem;
  color: var(--color-gray900);
}
@media screen and (max-width: 767px) {
  .p-single-items__related-title {
    font-size: 1.375rem;
    letter-spacing: 0.075rem;
  }
}

.p-single-items__table-wrap {
  width: 100%;
}

.p-single-items__table {
  width: 100%;
  border-collapse: collapse;
  border-inline-width: 0.0625rem;
  border-inline-style: solid;
  border-inline-color: var(--color-gray900);
}

.p-single-items__cell {
  box-sizing: border-box;
  width: 50%;
  padding-block: 1rem;
  padding-inline: 1.5rem;
  border-block-end-width: 0.0625rem;
  border-block-end-style: solid;
  border-block-end-color: var(--color-gray900);
  border-inline-end-width: 0;
  font-family: var(--ff-base), "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
  color: var(--color-gray900);
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-single-items__cell {
    font-size: 0.9375rem;
    padding-block: 0.75rem;
    padding-inline: 0.75rem;
    word-break: break-word;
  }
}

.p-single-items__table .p-single-items__cell:first-child {
  border-inline-end-width: 0.0625rem;
  border-inline-end-style: solid;
  border-inline-end-color: var(--color-gray900);
}

.p-single-items__cell--head {
  background-color: rgba(91, 133, 170, 0.1);
  font-weight: 400;
}

.p-single-items__price-cell {
  font-family: var(--ff-en);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  color: #b95069;
}
@media screen and (max-width: 767px) {
  .p-single-items__price-cell {
    font-size: 1.0625rem;
  }
}

.p-single-items__chart-card {
  box-sizing: border-box;
  display: flex;
  flex-flow: column nowrap;
  gap: 0;
  margin-block-start: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-single-items__chart-card {
    width: 100%;
  }
}

.p-single-items__chart-heading {
  margin: 0;
  padding-block-end: 1.375rem;
  font-size: 1.4375rem;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.0703125rem;
  color: var(--color-gray900);
}
@media screen and (max-width: 767px) {
  .p-single-items__chart-heading {
    font-size: 1.0625rem;
    letter-spacing: 0.059375rem;
    line-height: 1.35;
  }
}

.p-single-items__chart-heading-name {
  display: inline;
}

.p-single-items__chart-heading-tail {
  display: inline;
  white-space: nowrap;
}

.p-single-items__chart-body {
  position: relative;
  width: 100%;
  min-height: 12.5rem;
}

.p-single-items__article {
  margin-block-start: 3.5rem;
  display: flex;
  flex-flow: column nowrap;
  gap: 1.5rem;
  width: min(100%, 62.5rem);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-single-items__article {
    margin-block-start: 2.5rem;
  }
}

.p-single-items__blocks {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.p-single-items__blocks.p-single__content {
  margin-block-start: 0;
}

.p-single-items__price-ref-faq {
  width: min(100%, 62.5rem);
  margin-inline: auto;
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-single-items__price-ref-faq {
    margin-block-start: 2rem;
    margin-block-end: 0;
    padding-inline: 1.25rem;
  }
}

.p-single-items__price-ref-faq-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  border-radius: 0.25rem;
  background: #eff3f7;
}

.p-single-items__price-ref-faq-row {
  display: flex;
  gap: 0.5rem;
  width: 100%;
}

.p-single-items__price-ref-faq-row--question {
  align-items: center;
}

.p-single-items__price-ref-faq-row--answer {
  align-items: flex-start;
}

.p-single-items__price-ref-faq-label {
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2;
  color: var(--color-primary);
  white-space: nowrap;
}

.p-single-items__price-ref-faq-question {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
  color: #37556f;
  letter-spacing: 0.04375rem;
}

.p-single-items__price-ref-faq-answer {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-gray900);
  letter-spacing: 0.04375rem;
}

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

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

.l-columns-layout .p-single--column.p-single {
  padding-block: 0;
}
.l-columns-layout .p-single--column > .p-single__inner {
  max-width: 100%;
}

.p-single--column {
  max-width: 100%;
}
.p-single--column > .p-single__inner {
  margin-inline: 0;
  padding-inline: 0;
}

.p-single__intro {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-single__intro {
    gap: 1.5rem;
  }
}

.p-single__subhead {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.p-single--column > .p-single__inner > .p-single__intro > .p-single__header {
  margin-block-start: 0;
}

.p-single--column > .p-single__inner > .p-single__intro > .p-single__header > .p-single__title {
  margin: 0;
}

.p-single--column .p-single__title {
  color: var(--color-text);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.15rem;
}
@media screen and (max-width: 767px) {
  .p-single--column .p-single__title {
    font-size: 1.75rem;
    letter-spacing: 0.075rem;
  }
}

.p-single--column .p-single__subhead .p-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-block-start: 0;
  color: var(--color-gray600);
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
}

.p-single--column .p-single__category {
  padding: 0.375rem;
  border-radius: 0.125rem;
  background-color: var(--p-single-category-bg, #6b7a5f);
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
}

.p-single--column .p-single__thumbnail {
  display: block;
  aspect-ratio: 700/392;
  margin-block-start: 0;
  border-radius: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-single--column .p-single__thumbnail {
    aspect-ratio: 16/9;
  }
}
.p-single--column .p-single__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.25rem;
  object-fit: cover;
}

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

.p-single__back {
  display: flex;
  justify-content: center;
  margin-block-start: 3.5rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-single__back {
    margin-block-start: 2rem;
  }
}

.p-single__back-link {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--color-gray600);
  text-decoration: none;
  font-size: max(1.25rem, 8px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-single__back-link {
    font-size: max(1.125rem, 8px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.05em;
  }
}
@media (any-hover: hover) {
  .p-single__back-link:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 0.25rem;
  }
}
.p-single__back-link:focus-visible {
  outline: 0.125rem solid var(--color-primary);
  outline-offset: 0.25rem;
}

.p-single__back-icon {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 1.4375rem;
  height: 1.4375rem;
  background-image: url("data:image/svg+xml,%3Csvg width='23' height='23' viewBox='0 0 23 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.69183 7.26852C10.0824 7.65905 10.0824 8.29221 9.69185 8.68272L8.06126 10.3133L16.9804 10.3133C17.5327 10.3133 17.9804 10.761 17.9804 11.3133C17.9804 11.8656 17.5327 12.3133 16.9804 12.3133L8.06127 12.3133L9.69186 13.9439C10.0824 14.3344 10.0824 14.9676 9.69186 15.3581C9.30134 15.7486 8.66815 15.7486 8.27764 15.3581L4.93995 12.0204C4.75242 11.8329 4.64705 11.5785 4.64704 11.3133C4.64704 11.0481 4.75243 10.7937 4.93995 10.6062L8.27764 7.2685C8.66815 6.87799 9.30131 6.878 9.69183 7.26852Z' fill='%2361707D'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-size: 1.4375rem 1.4375rem;
  background-repeat: no-repeat;
}

.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: 500;
}
@media screen and (max-width: 767px) {
  .p-single__subtitle {
    margin-block-end: 0.75rem;
    font-size: 1rem;
  }
}

.p-single__title {
  color: var(--color-text);
  font-size: 1.5rem;
  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-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 .p-single__entry,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container {
  min-width: 0;
  color: var(--color-text);
  font-family: var(--ff-base);
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.05rem;
}

.p-single__content > .p-single__entry > :first-child,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container > :first-child {
  margin-block-start: 0;
}

.p-single__content > .wp-block-toc:first-child,
.p-single__content > .p-single__entry > .wp-block-toc:first-child,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container > .wp-block-toc:first-child {
  margin-block-start: 0;
}

.p-single__content .wp-block-toc,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-toc {
  display: flex;
  flex-direction: column;
  gap: 1.0625rem;
  align-items: stretch;
  padding-block: 3rem;
  padding-inline: 3rem;
  border-radius: 0.25rem;
  background-color: #eff3f7;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-single__content .wp-block-toc,
  .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-toc {
    padding-block: 1.5rem;
    padding-inline: 1.5rem;
  }
}

.p-single__content .wp-block-toc ul,
.p-single__content .wp-block-toc ol,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-toc ul,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-toc ol {
  padding-inline-start: 1.75rem;
}

.p-single__content .wp-block-toc li.is-active > a,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-toc li.is-active > a {
  font-weight: 700;
}

.p-single__content .wp-block-toc__title,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-toc__title {
  margin: 0;
  padding: 0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: normal;
  text-align: center;
}

.p-single__content .wp-block-toc__content,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-toc__content {
  font-size: 1rem;
  line-height: 2;
}

.p-single__content .wp-block-toc a,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-toc a {
  color: var(--color-primary);
}

.p-single__content > .p-single__entry > :not(.wp-block-toc) + .wp-block-toc,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container > :not(.wp-block-toc) + .wp-block-toc {
  margin-block-start: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-single__content > .p-single__entry > :not(.wp-block-toc) + .wp-block-toc,
  .editor-styles-wrapper .block-editor-block-list__layout.is-root-container > :not(.wp-block-toc) + .wp-block-toc {
    margin-block-start: 2.5rem;
  }
}

.p-single__content hr,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container hr {
  margin-block-start: 2rem;
  border: none;
  border-block-start: 0.0625rem solid var(--color-gray600);
}
@media screen and (max-width: 767px) {
  .p-single__content hr,
  .editor-styles-wrapper .block-editor-block-list__layout.is-root-container hr {
    margin-block-start: 3rem;
  }
}

.p-single__content blockquote,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container blockquote {
  margin-block-start: 1.5rem;
  padding-block: 1rem;
  padding-inline: 1.5rem;
  border-radius: 0.25rem;
  background-color: #eff3f7;
  color: var(--color-text);
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .p-single__content blockquote,
  .editor-styles-wrapper .block-editor-block-list__layout.is-root-container blockquote {
    margin-block-start: 2rem;
    padding-block: 1.25rem;
    padding-inline: 2rem;
  }
}

.p-single__content blockquote p,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container blockquote p {
  margin-block-start: 0;
}

.p-single__content blockquote > p:first-of-type,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container blockquote > p:first-of-type {
  margin-block-start: 0;
}

.p-single__content img:not(.emoji),
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container img:not(.emoji) {
  display: block;
  height: auto;
  max-width: 100%;
  margin-block-start: 1.5rem;
  border-radius: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-single__content img:not(.emoji),
  .editor-styles-wrapper .block-editor-block-list__layout.is-root-container img:not(.emoji) {
    margin-block-start: 2rem;
  }
}

.p-single__content figure,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container figure {
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-single__content figure,
  .editor-styles-wrapper .block-editor-block-list__layout.is-root-container figure {
    margin-block-start: 2rem;
  }
}

.p-single__content figcaption,
.p-single__content .wp-caption-text,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container figcaption,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-caption-text {
  margin-block-start: 0.5rem;
  color: var(--color-gray600);
  font-size: 0.8125rem;
  line-height: 1.6;
}

.p-single__content h1,
.p-single h1:not(.p-single__title),
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container h1 {
  margin-block-start: 3rem;
  padding-block-end: 1rem;
  border-block-end: 0.125rem solid var(--color-gray);
  color: var(--color-text);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single__content h1,
  .p-single h1:not(.p-single__title),
  .editor-styles-wrapper .block-editor-block-list__layout.is-root-container h1 {
    margin-block-start: 4rem;
    font-size: 2.25rem;
  }
}

.p-single__content h2,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container h2 {
  margin-block-start: 2rem;
  padding-block: 1rem;
  padding-inline: 2rem;
  border-inline-start: 0.5625rem solid var(--color-primary);
  background-color: #eff3f7;
  color: var(--color-text);
  font-size: 2.25rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-single__content h2,
  .editor-styles-wrapper .block-editor-block-list__layout.is-root-container h2 {
    min-block-size: auto;
    margin-block-start: 1.75rem;
    padding-block: 0.75rem;
    padding-inline: 1rem;
    font-size: 1.375rem;
    letter-spacing: 0.055rem;
  }
}

.p-single__content h3,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container h3 {
  margin-block-start: 2.25rem;
  padding-block: 0;
  padding-inline-start: 1.875rem;
  border-inline-start: 0.5rem solid var(--color-primary);
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.075rem;
}
@media screen and (max-width: 767px) {
  .p-single__content h3,
  .editor-styles-wrapper .block-editor-block-list__layout.is-root-container h3 {
    margin-block-start: 1.75rem;
    padding-inline-start: 1rem;
    font-size: 1.125rem;
    letter-spacing: 0.045rem;
  }
}

.p-single__content h4,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container h4 {
  margin-block-start: 1.75rem;
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.0625rem;
}
@media screen and (max-width: 767px) {
  .p-single__content h4,
  .editor-styles-wrapper .block-editor-block-list__layout.is-root-container h4 {
    margin-block-start: 1.5rem;
    font-size: 1.125rem;
  }
}

.p-single__content h5,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container h5 {
  margin-block-start: 1.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

.p-single__content p,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container p {
  margin-block-start: 1rem;
  color: var(--color-text);
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-single__content p,
  .editor-styles-wrapper .block-editor-block-list__layout.is-root-container p {
    margin-block-start: 1.25rem;
  }
}

.p-single__content .wp-block-group.is-layout-flex,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-group.is-layout-flex {
  margin-block-start: 1rem;
}
@media screen and (max-width: 767px) {
  .p-single__content .wp-block-group.is-layout-flex,
  .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-group.is-layout-flex {
    margin-block-start: 1.25rem;
  }
}

.p-single__content .wp-block-group.is-layout-flex > *,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-group.is-layout-flex > * {
  flex: 1;
  margin-block-start: 0;
}

.p-single__content .is-layout-flex img:not(.emoji),
.p-single__content .is-layout-flex figure,
.p-single__content .is-layout-flex .wp-block-image,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .is-layout-flex img:not(.emoji),
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .is-layout-flex figure,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .is-layout-flex .wp-block-image {
  margin-block-start: 0;
}

.p-single__content ul,
.p-single__content ol,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container ul,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container ol {
  margin-block-start: 1rem;
  padding-inline-start: 1.75rem;
  color: var(--color-text);
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-single__content ul,
  .p-single__content ol,
  .editor-styles-wrapper .block-editor-block-list__layout.is-root-container ul,
  .editor-styles-wrapper .block-editor-block-list__layout.is-root-container ol {
    margin-block-start: 1.25rem;
    padding-inline-start: 1.5rem;
  }
}

.p-single__content ul,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container ul {
  list-style-type: disc;
}

.p-single__content ol,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container ol {
  list-style-type: decimal;
}

.p-single__content li,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container li {
  margin-block-start: 0.5rem;
  line-height: 1.8;
}

.p-single__content a,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container a {
  color: var(--color-primary);
}
@media (any-hover: hover) {
  .p-single__content a:hover,
  .editor-styles-wrapper .block-editor-block-list__layout.is-root-container a:hover {
    text-decoration: underline;
    text-underline-offset: 0.25rem;
  }
}

.p-single__content code,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container code {
  padding-block: 0.125rem;
  padding-inline: 0.375rem;
  border-radius: 0.25rem;
  background-color: var(--color-gray);
  color: var(--color-primary);
  font-family: monospace;
  font-size: 0.875rem;
}

.p-single__content pre,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container pre {
  overflow-x: auto;
  margin-block-start: 1.5rem;
  padding-block: 1rem;
  padding-inline: 1rem;
  border-radius: 0.5rem;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-family: monospace;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single__content pre,
  .editor-styles-wrapper .block-editor-block-list__layout.is-root-container pre {
    padding-block: 1.5rem;
    padding-inline: 1.5rem;
  }
}

.p-single__content pre code,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container pre code {
  padding-block: 0;
  padding-inline: 0;
  background-color: transparent;
}

.p-single__content table:not(.woocommerce-table),
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container table:not(.woocommerce-table) {
  width: 100%;
  margin-block-start: 1.5rem;
  border: 0.0625rem solid var(--color-gray600);
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .p-single__content table:not(.woocommerce-table),
  .editor-styles-wrapper .block-editor-block-list__layout.is-root-container table:not(.woocommerce-table) {
    margin-block-start: 2rem;
  }
}

.p-single__content th,
.p-single__content td,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container th,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container td {
  padding-block: 0.75rem;
  padding-inline: 1rem;
  border-color: var(--color-gray600);
  line-height: 1.6;
  text-align: start;
}
@media screen and (max-width: 767px) {
  .p-single__content th,
  .p-single__content td,
  .editor-styles-wrapper .block-editor-block-list__layout.is-root-container th,
  .editor-styles-wrapper .block-editor-block-list__layout.is-root-container td {
    padding-block: 1rem;
    padding-inline: 1.25rem;
  }
}

.p-single__content th,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container th {
  background-color: #eff3f7;
  color: var(--color-text);
  font-weight: 700;
}

.p-single__content td,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container td {
  color: var(--color-text);
}

.p-single__content .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
.p-single__content .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
  border-color: var(--color-gray600);
}

.p-single__content strong,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container strong {
  color: var(--color-text);
  font-weight: 700;
}

.p-single__content em,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container em {
  font-style: italic;
}

.p-single__content .wp-block-buttons,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-buttons {
  margin-block-start: 3.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-single__content .wp-block-buttons,
  .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-buttons {
    margin-block-start: 2rem;
  }
}
.p-single__content .wp-block-buttons .wp-block-button__link,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-buttons .wp-block-button__link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 18.0625rem;
  padding: 1.0625rem 2.125rem;
  border: 0.0625rem solid var(--color-primary);
  border-radius: 2.125rem;
  background: var(--color-white);
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05rem;
  text-decoration: none;
  transition: opacity var(--duration), background-color var(--duration), color var(--duration);
}
@media (any-hover: hover) {
  .p-single__content .wp-block-buttons .wp-block-button__link:hover,
  .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-buttons .wp-block-button__link:hover {
    opacity: 1;
    background: var(--color-primary);
    color: var(--color-white);
  }
}

.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;
  gap: 1.25rem;
  align-items: center;
}
@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 {
    justify-self: center;
  }
  .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;
  }
}

.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 {
  display: flex;
  gap: 3.9375rem;
  justify-content: space-between;
  align-items: center;
  padding: 0.625rem 1.4375rem;
  border: 1px solid var(--color-text);
  background-color: var(--color-base);
  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 {
  text-transform: uppercase;
  font-size: max(1rem, 8px);
  font-weight: 500;
  line-height: 1.63;
  letter-spacing: 0.04em;
}
@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 {
  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-repeat: no-repeat;
  mask-size: contain;
  width: 0.5rem;
  height: 0.875rem;
  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: 700;
}
@media screen and (max-width: 767px) {
  .p-single--post .p-single__related-title {
    margin-block-end: 2rem;
  }
}
@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: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single--post .p-single__related-item-title {
    font-size: 1rem;
  }
}

.p-single__content div#ez-toc-container,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container div#ez-toc-container {
  display: block;
  width: min(100%, 488px);
  padding: 3rem;
  margin: 3.5rem auto;
  border: none;
}
@media screen and (max-width: 767px) {
  .p-single__content div#ez-toc-container,
  .editor-styles-wrapper .block-editor-block-list__layout.is-root-container div#ez-toc-container {
    padding: 1.5rem;
  }
}
.p-single__content .ez-toc-title-container,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .ez-toc-title-container {
  display: block;
}
.p-single__content div#ez-toc-container .ez-toc-title,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container div#ez-toc-container .ez-toc-title {
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.05rem;
  text-align: center;
}
.p-single__content .ez-toc-btn,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .ez-toc-btn {
  position: absolute;
  top: 2.875rem;
  right: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-single__content .ez-toc-btn,
  .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .ez-toc-btn {
    top: 1.375rem;
    right: 1.5rem;
  }
}
.p-single__content div#ez-toc-container nav,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container div#ez-toc-container nav {
  margin-block-start: 1.0625rem;
}
.p-single__content div#ez-toc-container ul li.ez-toc-heading-level-2,
.p-single__content div#ez-toc-container ul li.ez-toc-heading-level-2 a,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container div#ez-toc-container ul li.ez-toc-heading-level-2,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container div#ez-toc-container ul li.ez-toc-heading-level-2 a {
  font-size: 1.25rem;
  color: #5b85aa;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-single__content div#ez-toc-container ul li.ez-toc-heading-level-2,
  .p-single__content div#ez-toc-container ul li.ez-toc-heading-level-2 a,
  .editor-styles-wrapper .block-editor-block-list__layout.is-root-container div#ez-toc-container ul li.ez-toc-heading-level-2,
  .editor-styles-wrapper .block-editor-block-list__layout.is-root-container div#ez-toc-container ul li.ez-toc-heading-level-2 a {
    font-size: 1.125rem;
  }
}
.p-single__content div#ez-toc-container ul li.ez-toc-heading-level-3,
.p-single__content div#ez-toc-container ul li.ez-toc-heading-level-3 a,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container div#ez-toc-container ul li.ez-toc-heading-level-3,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container div#ez-toc-container ul li.ez-toc-heading-level-3 a {
  font-size: 1rem;
  color: var(--color-text);
}
.p-single__content div#ez-toc-container ul li.ez-toc-heading-level-3::before,
.p-single__content div#ez-toc-container ul li.ez-toc-heading-level-3 a::before,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container div#ez-toc-container ul li.ez-toc-heading-level-3::before,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container div#ez-toc-container ul li.ez-toc-heading-level-3 a::before {
  color: var(--color-text);
}

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

.p-sitemap__inner {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-sitemap__inner {
    gap: 2.5rem;
  }
}

.p-sitemap__section {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-sitemap__section {
    gap: 2rem;
  }
}

.p-sitemap__list {
  display: grid;
  grid-template-columns: repeat(5, fit-content(100%));
  gap: 1.75rem 2.625rem;
  margin-inline: auto;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-sitemap__list {
    width: 100%;
    grid-template-columns: repeat(2, fit-content(100%));
    gap: 0.75rem 1.5rem;
  }
}

.p-sitemap__link {
  font-size: max(1.25rem, 8px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--color-gray600);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-sitemap__link {
    font-size: max(0.875rem, 8px);
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
}
@media (any-hover: hover) {
  .p-sitemap__link:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 0.25rem;
  }
}

.p-sitemap__list-brands {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-sitemap__list-brands {
    gap: 3.5rem;
  }
}

.p-sitemap__brand-group {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-sitemap__brand-group {
    gap: 1rem;
  }
}

.p-sitemap__brand-link {
  display: inline-flex;
  gap: 1.25rem;
  align-items: center;
  width: fit-content;
  color: var(--color-gray600);
  text-decoration: none;
}
@media (any-hover: hover) {
  .p-sitemap__brand-link:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 0.25rem;
  }
}
.p-sitemap__brand-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 0.25rem;
}

.p-sitemap__brand-accent {
  flex-shrink: 0;
  width: 0.5rem;
  height: 2.5rem;
  background: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-sitemap__brand-accent {
    width: 0.375rem;
    height: 1.75rem;
  }
}

.p-sitemap__brand-inner {
  display: inline-flex;
  gap: 1.25rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-sitemap__brand-inner {
    gap: 0.75rem;
  }
}

.p-sitemap__brand-text {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-sitemap__brand-text {
    font-size: 1.125rem;
    white-space: normal;
  }
}

.p-sitemap__brand-icon {
  display: flex;
  flex-shrink: 0;
  width: 0.625rem;
  height: 0.625rem;
  align-items: center;
  justify-content: center;
  color: var(--color-gray600);
}

.p-sitemap__brand-icon-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.p-sitemap__brand-items {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem 2.625rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-sitemap__brand-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 1.5rem;
  }
}

.p-sitemap__brand-item-link {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-gray600);
  text-decoration: none;
  letter-spacing: 0.05em;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (any-hover: hover) {
  .p-sitemap__brand-item-link:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 0.25rem;
  }
}

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

.p-thanks__inner {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  gap: 3.5rem;
  width: min(100%, 47.75rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-thanks__inner {
    gap: 2.5rem;
    width: min(100%, 608px);
    padding-inline: 1.5rem;
  }
}

.p-thanks__title {
  margin: 0;
  color: var(--color-gray900);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-thanks__title {
    font-size: 1.75rem;
  }
}

.p-thanks__body {
  display: flex;
  flex-direction: column;
}

.p-thanks__text {
  max-width: 41.5rem;
  margin: 0;
  color: var(--color-gray900);
  font-size: max(1rem, 8px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-thanks__text {
    font-size: max(0.9375rem, 8px);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
}

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

.p-thanks__back {
  display: inline-flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  min-width: 14.375rem;
  padding: 0.9375rem 2.5rem;
  border: none;
  background-color: var(--color-base);
  color: var(--color-gray600);
  font-size: max(1.375rem, 8px);
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-thanks__back {
    min-width: 0;
    padding: 0.75rem 1.5rem;
    font-size: max(1.125rem, 8px);
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.05em;
  }
}
@media (any-hover: hover) {
  .p-thanks__back:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 0.25rem;
  }
}
.p-thanks__back:focus-visible {
  outline: 0.125rem solid var(--color-primary-mid);
  outline-offset: 0.125rem;
}

.p-top-basics {
  padding-block: 7.5rem;
  border-radius: 0 0 0.25rem 0.25rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-top-basics {
    padding-block: 3.5rem;
    border-radius: 0;
  }
}

@media (width >= 768px) {
  .p-top-basics--desktop-3 .p-top-basics__item:nth-child(4) {
    display: none;
  }
}

.p-top-basics--hide-4th .p-top-basics__item:nth-child(4) {
  display: none;
}

.p-top-basics__inner {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-basics__inner {
    gap: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-basics__header .c-section-title__sub {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-basics__header .c-section-title__main {
    font-weight: 700;
    line-height: 1.25;
  }
}

.p-top-basics__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-inline-start: 13rem;
}
@media screen and (max-width: 767px) {
  .p-top-basics__content {
    padding-inline-start: 0;
  }
}

.p-top-basics__list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 62.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 0.96875rem;
}
@media screen and (max-width: 767px) {
  .p-top-basics__list {
    display: grid;
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

.p-top-basics__item {
  flex-shrink: 1;
  width: 20.1875rem;
}
@media screen and (max-width: 767px) {
  .p-top-basics__item {
    width: auto;
  }
}

.p-top-basics__card {
  position: relative;
  display: block;
  width: 100%;
  height: 13.1875rem;
  overflow: hidden;
  border-radius: 0.25rem;
  background-color: var(--color-gray100);
  color: inherit;
  text-decoration: none;
  transition: box-shadow var(--duration);
}
@media screen and (max-width: 767px) {
  .p-top-basics__card {
    height: 10.1875rem;
  }
}
@media (any-hover: hover) {
  .p-top-basics__card:hover {
    opacity: 1;
  }
  .p-top-basics__card:hover .p-top-basics__media img {
    transform: scale(1.08);
  }
}

.p-top-basics__media {
  position: absolute;
  inset: 0;
}
.p-top-basics__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration);
}

.p-top-basics__badge {
  position: absolute;
  top: 7.375rem;
  left: 0.5rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem;
  border-radius: 0.125rem;
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1;
  color: var(--color-white);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-top-basics__badge {
    top: 4.375rem;
    left: 0.375rem;
  }
}

.p-top-basics__badge--primary {
  background-color: var(--color-primary);
}

.p-top-basics__badge--gold {
  background-color: rgba(120, 101, 47, 0.7);
}

.p-top-basics__badge--green {
  background-color: #6b7a5f;
}

.p-top-basics__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  min-height: 4.125rem;
  padding: 0.9375rem 0.5625rem;
  border-radius: 0 0 0.25rem 0.25rem;
  background-color: rgba(47, 45, 46, 0.7);
}
@media screen and (max-width: 767px) {
  .p-top-basics__caption {
    min-height: 4.375rem;
    padding: 0.5rem 0.5625rem;
  }
}

.p-top-basics__title {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  color: var(--color-white);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .p-top-basics__title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.p-top-basics__view-all {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  gap: 0.5rem;
  align-items: center;
  align-self: flex-end;
  order: -1;
  color: var(--color-gray600);
  font-family: var(--ff-en);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: normal;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-top-basics__view-all {
    order: 0;
  }
}
@media (any-hover: hover) {
  .p-top-basics__view-all:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 0.25rem;
  }
}

.p-top-basics__view-all-icon {
  display: block;
  flex-shrink: 0;
  width: 0.625rem;
  height: 0.625rem;
  background-color: currentcolor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8' fill='none'%3E%3Cpath d='M2.63131 0.798889C2.63131 1.2401 2.98898 1.59778 3.43018 1.59778H5.27242L0.233991 6.63616C-0.0779971 6.94816 -0.0779971 7.45401 0.233991 7.76601C0.545975 8.078 1.05181 8.078 1.3638 7.76601L6.40222 2.72758V4.56981C6.40222 5.01101 6.75991 5.3687 7.20111 5.3687C7.64231 5.3687 8 5.01101 8 4.56981V0.798889C8 0.587013 7.91585 0.383813 7.76603 0.233989C7.61621 0.0841707 7.41297 0 7.20111 0H3.43018C2.98898 0 2.63131 0.357679 2.63131 0.798889Z' fill='white'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

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

.p-top-faq__inner {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-faq__inner {
    gap: 2rem;
  }
}

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

@media screen and (max-width: 767px) {
  .p-top-faq__intro .c-section-title__sub {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-faq__intro .c-section-title__main {
    font-weight: 700;
    line-height: 1.25;
  }
}

.p-top-faq__lead {
  margin: 0;
  color: var(--color-gray900);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.p-top-faq__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-inline-start: 13rem;
}
@media screen and (max-width: 767px) {
  .p-top-faq__content {
    padding-inline-start: 0;
  }
}

.p-top-faq__view-all {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  gap: 0.5rem;
  align-items: center;
  align-self: flex-end;
  order: -1;
  color: var(--color-gray600);
  font-family: var(--ff-en);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: normal;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-top-faq__view-all {
    order: 0;
  }
}
@media (any-hover: hover) {
  .p-top-faq__view-all:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 0.25rem;
  }
}

.p-top-faq__view-all-icon {
  display: block;
  flex-shrink: 0;
  width: 0.625rem;
  height: 0.625rem;
  background-color: currentcolor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8' fill='none'%3E%3Cpath d='M2.63131 0.798889C2.63131 1.2401 2.98898 1.59778 3.43018 1.59778H5.27242L0.233991 6.63616C-0.0779971 6.94816 -0.0779971 7.45401 0.233991 7.76601C0.545975 8.078 1.05181 8.078 1.3638 7.76601L6.40222 2.72758V4.56981C6.40222 5.01101 6.75991 5.3687 7.20111 5.3687C7.64231 5.3687 8 5.01101 8 4.56981V0.798889C8 0.587013 7.91585 0.383813 7.76603 0.233989C7.61621 0.0841707 7.41297 0 7.20111 0H3.43018C2.98898 0 2.63131 0.357679 2.63131 0.798889Z' fill='white'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.p-top-faq__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
  max-width: 62.5rem;
}

.p-top-faq__item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.p-top-faq__group-title {
  margin-block: 0;
  color: var(--color-gray900);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top-faq__group-title {
    font-size: 1rem;
  }
}

.p-top-faq__q {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  width: 100%;
  padding: 1.25rem 1.875rem 1.25rem 1.5rem;
  background-color: #ebf3fa;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-top-faq__q {
    padding: 1.4375rem 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-faq__item:first-child .p-top-faq__q {
    padding: 1.4375rem 1.875rem 1.4375rem 1.5rem;
  }
}

.p-top-faq__q-label {
  flex-shrink: 0;
  width: 2.0625rem;
  margin: 0;
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-faq__q-label {
    font-size: 1.25rem;
    text-align: left;
  }
}

.p-top-faq__q-text {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  color: var(--color-gray900);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top-faq__q-text {
    font-size: 1rem;
  }
}

.p-top-faq__a {
  display: flex;
  gap: 1.4375rem;
  align-items: flex-start;
  padding-inline-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-faq__a {
    padding-inline-start: 1.5rem;
  }
}

.p-top-faq__item:not(:first-child) .p-top-faq__a {
  padding-inline-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-top-faq__item:not(:first-child) .p-top-faq__a {
    padding-inline-start: 1.5rem;
  }
}

.p-top-faq__a-label {
  flex-shrink: 0;
  margin: 0;
  color: var(--color-gray600);
  font-family: var(--ff-en);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-faq__a-label {
    font-size: 1.25rem;
  }
}

.p-top-faq__a-text {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  color: var(--color-gray900);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.p-top-flow {
  padding-block: 7.5rem;
  background-color: var(--color-gray100);
}
@media screen and (max-width: 767px) {
  .p-top-flow {
    padding-block: 3.5rem;
  }
}

.p-top-flow__inner {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-flow__inner {
    gap: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-flow__header .c-section-title__sub {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-flow__header .c-section-title__main {
    font-weight: 700;
    line-height: 1.25;
  }
}
.p-top-flow__header .c-section-title__lead {
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-flow__header .c-section-title__lead {
    margin-block-start: 1.5rem;
  }
}

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

.p-top-flow__step {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-flow__step {
    gap: 1rem;
    align-items: stretch;
  }
}

.p-top-flow__step-head {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background-color: var(--color-gray500);
  box-sizing: border-box;
}

.p-top-flow__step-label {
  flex-shrink: 0;
  width: 7.5rem;
  margin: 0;
  color: var(--color-white);
  font-family: var(--ff-en);
  font-size: 1.5rem;
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-top-flow__step-label {
    width: auto;
  }
}

.p-top-flow__step-title {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  color: #f7f9f4;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.p-top-flow__step-body {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-top-flow__step-body {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }
}

.p-top-flow__step-media {
  position: relative;
  flex-shrink: 0;
  width: 13.625rem;
  height: 11.875rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-flow__step-media {
    width: 100%;
    max-width: none;
  }
}

.p-top-flow__step-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top-flow__step-text {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 47.75rem;
  padding-inline: 1.875rem;
  color: var(--color-gray900);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-top-flow__step-text {
    max-width: none;
    padding-inline: 0;
  }
}

.p-top-flow__step-text p {
  margin: 0;
}

.p-top-flow__step-text p + p {
  margin-block-start: 0.5rem;
}

.p-top-flow__between {
  flex-shrink: 0;
  width: 1.75rem;
  height: 0.8125rem;
  margin-inline: auto;
  background-color: var(--color-gray500);
  mask-image: url("data:image/svg+xml,%3Csvg width='30' height='15' viewBox='0 0 30 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L14.2462 13.6874C14.3428 13.7861 14.4596 13.8647 14.5893 13.9185C14.7189 13.9723 14.8587 14 15 14C15.1413 14 15.2811 13.9723 15.4107 13.9185C15.5404 13.8647 15.6572 13.7861 15.7538 13.6874L29 1' stroke='%2361707D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

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

.p-top-strength__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

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

.p-top-strength__item {
  position: relative;
  overflow: hidden;
  min-height: 30.3125rem;
  border-radius: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-top-strength__item {
    min-height: 0;
  }
}

.p-top-strength__item-bg {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.p-top-strength__item-bg--01 {
  background-image: url("../images/bg_top-strength_01.webp");
}

.p-top-strength__item-bg--02 {
  background-image: url("../images/bg_top-strength_02.webp");
}

.p-top-strength__item-bg--03 {
  background-image: url("../images/bg_top-strength_03.webp");
}

.p-top-strength__item-bg--04 {
  background-image: url("../images/bg_top-strength_04.webp");
}

.p-top-strength__item-bg--05 {
  background-image: url("../images/bg_top-strength_05.webp");
}

.p-top-strength__item-bg--06 {
  background-image: url("../images/bg_top-strength_06.webp");
}

.p-top-strength__item-overlay {
  position: absolute;
  inset: 0;
}

.p-top-strength__item-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  height: 100%;
  padding: 2.5rem 2.25rem;
}

.p-top-strength__item-head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.p-top-strength__item-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.8125rem;
  height: 2.8125rem;
  margin: 0;
  border-radius: 999px;
  background: rgba(91, 133, 170, 0.9);
  font-family: var(--ff-en), var(--ff-base);
  font-size: 1rem;
  font-weight: 600;
  line-height: 0.75;
  letter-spacing: normal;
  color: var(--color-white);
}

.p-top-strength__item-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--color-white);
}

.p-top-strength__item-text {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--color-white);
}

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

@media (width >= 768px) {
  .u-sp-hidden {
    display: block;
  }
}
@media (width <= 767px) {
  .u-sp-hidden {
    display: none;
  }
}

@media (width >= 768px) {
  .u-sp-hidden--inline {
    display: inline;
  }
}
@media (width <= 767px) {
  .u-sp-hidden--inline {
    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;
}