@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: #fbf7f0;
  --color-text: #151515;
  --color-white: #fff;
  --color-black: #000;
  --color-gray: #f0f0f0;
  --color-border: #aaaaaf;
  --color-accent: #c30d20;
  --color-primary: #003c5b;
  --color-secondary: #00f;
  --color-orange: #de8430;
  /* font-weight */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  /* font-family */
  --ff-base: "Yu Gothic", "Yu Gothic UI", "Hiragino Sans", Meiryo, sans-serif;
  --ff-mincho: "Yu Mincho", "Yu Mincho UI", "Hiragino Mincho ProN", "Hiragino Mincho JP", "Noto Serif JP", serif;
  --ff-en: "EB Garamond", serif;
  --ff-inter: "Inter", sans-serif;
  --to-rem: calc(tan(atan2(1px, var(--root-font-size))) * 1rem);
  /* transition duration */
  --duration: 0.3s;
  /* header height */
  --header-height: 64px;
}
@media screen and (width >= 768px) {
  :root {
    --header-height: 80px;
  }
}

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

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

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

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

img,
svg {
  vertical-align: middle;
}

picture {
  display: block;
}

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

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

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

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

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

input,
textarea,
select {
  font: inherit;
}

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

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

textarea {
  field-sizing: content;
}

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

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

.l-main {
  padding-block-start: var(--header-height);
}

.l-main[data-bg=base] {
  position: relative;
}
.l-main[data-bg=base]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/bg_base.webp") no-repeat center top/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .l-main[data-bg=base]::before {
    max-height: 37.5rem;
    background-position: right top;
    background-size: cover;
  }
}

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

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

.c-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  color: var(--black, #151515);
  text-align: center;
  font-family: var(--ff-mincho);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  /* 2番目以降の項目の前に矢印を表示 */
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__item {
    font-size: 0.75rem;
  }
}
.c-breadcrumb__item:first-child {
  font-family: var(--ff-en);
}
.c-breadcrumb__item:last-child {
  padding-inline-end: 1rem;
}
.c-breadcrumb__item + .c-breadcrumb__item::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 8px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M8.80008 8L5.73341 11.0667L6.66675 12L10.6667 8L6.66675 4L5.73341 4.93333L8.80008 8Z' fill='%23151515'/%3E%3C/svg%3E") no-repeat center/contain;
}

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

.c-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  border-block-end: solid 1px var(--color-text);
  color: var(--color-text);
  font-family: var(--ff-en);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.33;
}
@media screen and (max-width: 767px) {
  .c-button {
    font-size: 1rem;
  }
}
.c-button::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 0.5rem;
  height: 0.75rem;
  background-color: var(--color-primary);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 12' fill='none'%3E%3Cpath d='M4.5999 6L-9.77516e-05 10.6L1.3999 12L7.3999 6L1.3999 0L-9.77516e-05 1.4L4.5999 6Z' fill='%23C30D20'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  translate: 0 -50%;
  transition: translate 0.3s;
}
@media (any-hover: hover) {
  .c-button:hover::before {
    translate: 5px -50%;
  }
}

.c-button[data-color=black]::before {
  background-color: var(--color-text);
}

/**
 * ページネーション共通コンポーネント（Figmaデザイン準拠）
 *
 * デザイン: 枠・背景なしのテキスト＋矢印。gap 48px、ITC Garamond 系 20px、#151515。
 *
 * 親（プロジェクト）から上書きする場合:
 *   - 呼び出し元で親クラスで wrap する（例: .p-column-archive__pagination）
 *   - プロジェクトの SCSS でその wrapper に --_pagination-* を設定する
 *
 * 上書き可能な変数: --_pagination-text, --_pagination-text-hover,
 *   --_pagination-active-text（現在ページの色）, --_pagination-disabled-opacity
 */
.c-pagination {
  --_pagination-text: var(--color-text);
  --_pagination-text-hover: var(--color-text);
  --_pagination-active-text: var(--color-text);
  --_pagination-disabled-opacity: 0.4;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .c-pagination {
    gap: 2rem;
    padding-block: 2.5rem;
  }
}

.c-pagination__item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 1.5rem;
  padding: 0;
  border: none;
  background: none;
  color: var(--_pagination-text);
  font-family: var(--ff-en);
  font-size: 1.25rem;
  font-weight: var(--fw-regular);
  line-height: 1;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
@media screen and (max-width: 767px) {
  .c-pagination__item {
    font-size: 1.125rem;
  }
}
@media (any-hover: hover) {
  .c-pagination__item:hover:not([data-state=current]):not([data-state=disabled]) {
    color: var(--_pagination-text-hover);
    opacity: 0.8;
  }
}

.c-pagination__item[data-state=current] {
  color: var(--_pagination-active-text);
  font-weight: var(--fw-medium);
  cursor: default;
  pointer-events: none;
}

.c-pagination__item[data-state=dots] {
  color: var(--_pagination-text);
  cursor: default;
}

.c-pagination__item[data-state=prev],
.c-pagination__item[data-state=next] {
  position: relative;
  width: 1.25rem;
  height: 2rem;
  padding: 0;
  color: var(--_pagination-text);
  font-size: 0;
  font-weight: var(--fw-regular);
  line-height: 0;
}
.c-pagination__item[data-state=prev]::after,
.c-pagination__item[data-state=next]::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 8' fill='none'%3E%3Cpath d='M3.06668 4L1.62125e-05 7.06667L0.93335 8L4.93335 4L0.93335 0L1.62125e-05 0.933333L3.06668 4Z' fill='white'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 0.3125rem 0.5rem;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 8' fill='none'%3E%3Cpath d='M3.06668 4L1.62125e-05 7.06667L0.93335 8L4.93335 4L0.93335 0L1.62125e-05 0.933333L3.06668 4Z' fill='white'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 0.3125rem 0.5rem;
}

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

.c-pagination__item[data-state=disabled] {
  opacity: var(--_pagination-disabled-opacity);
  cursor: default;
  pointer-events: none;
}

.c-section-title {
  display: grid;
  justify-items: center;
  width: max-content;
  text-align: center;
  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__sub {
  position: relative;
  padding-inline-start: 1.25rem;
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .c-section-title__sub {
    font-size: 1.125rem;
  }
}
.c-section-title__sub::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-primary);
  transform: translateY(-50%);
}

.c-section-title__main {
  color: var(--color-text);
  font-family: var(--ff-mincho);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.38;
}
@media screen and (max-width: 767px) {
  .c-section-title__main {
    font-size: 1.5rem;
  }
}

.c-text {
  color: var(--color-black);
  font-family: var(--ff-base);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .c-text {
    font-size: 0.875rem;
  }
}

.p-about-overview {
  padding-block: 2.5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-about-overview {
    padding-block: 2rem 5rem;
  }
}

.p-about-overview__inner {
  display: flex;
  flex-direction: column;
  gap: 2.625rem;
  align-items: center;
  max-width: 56.25rem;
  margin-inline: auto;
}

.p-about-overview__title {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-mincho);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-about-overview__title {
    font-size: 1.5rem;
    white-space: normal;
  }
}

.p-about-overview__table {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  max-width: 50rem;
  margin: 0;
}

.p-about-overview__row {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-about-overview__row {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}

.p-about-overview__term {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 10rem;
  margin-block: 0.125rem;
  padding: 0.4375rem 1rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--ff-base);
  font-size: 0.9375rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about-overview__term {
    width: 100%;
    justify-content: center;
    margin-block: 0;
  }
}

.p-about-overview__desc {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  padding: 0.5rem 0.5rem 0.4375rem;
  border-block-end: 1px solid var(--color-text);
  color: var(--color-text);
  font-family: var(--ff-base);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-about-overview__desc {
    padding-block: 0.25rem;
    border-block-end: 0;
  }
}

.p-about-overview__row--multiline .p-about-overview__term {
  align-self: stretch;
}

/**
 * 代表紹介（Figma 109-811 準拠）
 */
.p-about-rep {
  padding-block: 2.5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-about-rep {
    padding-block: 2rem 5rem;
  }
}

.p-about-rep__inner {
  align-items: center;
  max-width: 56.25rem;
  margin-inline: auto;
}

.p-about-rep__title {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-mincho);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-about-rep__title {
    font-size: 1.5rem;
    white-space: normal;
  }
}

.p-about-rep__profile {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 50rem;
  min-height: 25rem;
  margin-block-start: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-about-rep__profile {
    flex-direction: column-reverse;
    min-height: 0;
    gap: 1.5rem;
    margin-block-end: 1rem;
  }
}

.p-about-rep__body {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  margin-block-start: 3.875rem;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-about-rep__body {
    width: 100%;
    margin-block-start: 0;
  }
}

.p-about-rep__meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-start;
  width: 100%;
  max-width: 28.75rem;
}

.p-about-rep__role {
  margin: 0;
  font-family: var(--ff-base);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.75;
}

.p-about-rep__name {
  margin: 0;
  font-family: var(--ff-mincho);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3333333333;
}

.p-about-rep__bio {
  width: 100%;
  font-family: var(--ff-base);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.75;
}
.p-about-rep__bio p {
  margin: 0;
}

.p-about-rep__figure {
  flex-shrink: 0;
  width: 18.75rem;
  height: 25rem;
  margin: 0;
  overflow: hidden;
  background-color: #ddd;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-about-rep__figure {
    width: 100%;
    max-width: 18.75rem;
    height: auto;
    aspect-ratio: 3/4;
  }
}

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

.p-about-rep__history {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 50rem;
  margin-block-start: 2.5rem;
}

.p-about-rep__history-head {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.4375rem 1rem;
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary);
}

.p-about-rep__history-label {
  color: var(--color-white);
  font-family: var(--ff-base);
  font-size: 0.9375rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
  text-align: center;
}

.p-about-rep__history-list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-about-rep__history-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  padding-block: 0.5rem 0.4375rem;
  border-block-end: 1px solid var(--color-text);
  color: var(--color-text);
  font-family: var(--ff-base);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-about-rep__history-item {
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

.p-about-rep__history-date {
  flex-shrink: 0;
  width: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-about-rep__history-date {
    width: auto;
    min-width: 6.25rem;
  }
}

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

/**
 * 会社概要：Mission / Value / Course of Action（Figma 109-779 準拠）
 */
.p-about {
  padding-block: 4.875rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-about {
    padding-block: 3rem 5rem;
  }
}

.p-about__inner {
  max-width: 80rem;
  margin-inline: auto;
}

.p-about__stack {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-about__stack {
    gap: 3rem;
  }
}

.p-about__block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-block-end: 1.4375rem;
  border-block-end: 1px solid var(--color-text);
}

.p-about__heading-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  justify-content: center;
  width: 20rem;
  max-width: 100%;
  text-align: center;
}

.p-about__heading-group--wide {
  width: auto;
  max-width: 100%;
}

.p-about__heading-en {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: 4rem;
  font-weight: var(--fw-regular);
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about__heading-en {
    font-size: 2.5rem;
  }
}

.p-about__heading-ja {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-mincho);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}

.p-about__lead {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-mincho);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.375;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-about__lead {
    font-size: 1.375rem;
    white-space: normal;
  }
}

.p-about__block--action .p-about__heading-group {
  gap: 1rem;
}

.p-about__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  width: 100%;
  max-width: 40rem;
  margin: 0;
}

.p-about__list-item {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.75rem;
}
@media screen and (max-width: 767px) {
  .p-about__list-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    min-height: 0;
  }
}

.p-about__list-term {
  flex-shrink: 0;
  width: 7.5rem;
  margin: 0;
  color: var(--color-primary);
  font-family: var(--ff-mincho);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8333333333;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-about__list-term {
    width: 100%;
    text-align: left;
    font-size: 1.125rem;
    line-height: 1.4;
  }
}

.p-about__list-desc {
  flex: 0 1 auto;
  width: 31.25rem;
  max-width: 100%;
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-mincho);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8333333333;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-about__list-desc {
    width: 100%;
    font-size: 1rem;
    line-height: 1.6;
    padding-inline-start: 1em;
  }
}

.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: var(--fw-bold);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-archive__item-title {
    font-size: calc(20 * var(--to-rem));
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.p-archive--works .p-archive__item-title {
  margin: 0;
  margin-block-end: calc(8 * var(--to-rem));
  color: var(--color-text);
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-bold);
  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: var(--fw-medium);
}

.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-capital-support {
  margin-block-start: 5rem;
  padding-block: 4rem 4rem;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-capital-support {
    padding-block: 2.5rem 3rem;
  }
}

.p-capital-support__inner {
  width: min(86.25rem, 100%);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-capital-support__inner {
    width: min(100%, 37.5rem);
  }
}

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

.p-capital-support__head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.p-capital-support__label {
  margin: 0;
  max-width: 100%;
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: 1.25rem;
  font-weight: var(--fw-regular);
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-capital-support__label {
    font-size: 1.125rem;
  }
}

.p-capital-support__title {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-mincho);
  font-size: 2rem;
  font-weight: var(--fw-medium);
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-capital-support__title {
    font-size: 1.375rem;
    line-height: 1.4545454545;
  }
}

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

.p-capital-support__text {
  flex: 1 1 0;
  min-width: 0;
}

.p-capital-support__lead {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-base);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-capital-support__lead {
    font-size: 0.875rem;
  }
}

.p-capital-support__flow {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 0.5rem;
  align-items: stretch;
  width: 38.3125rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-capital-support__flow {
    width: 100%;
  }
}

.p-capital-support__step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.5rem 1rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--ff-base);
  font-size: 0.9375rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
  text-align: center;
}

.p-capital-support__arrow {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding-block: 0;
  color: var(--color-primary);
}

.p-capital-support__arrow-icon {
  display: block;
  width: 3.3125rem;
  height: 0.5rem;
}

.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-case {
  padding-block: 7.75rem 7.625rem;
}
@media screen and (max-width: 767px) {
  .p-case {
    padding-block: 2rem 4rem;
  }
}

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

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

.p-case__head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.p-case__label {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: 1.25rem;
  font-weight: var(--fw-regular);
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-case__label {
    font-size: 1.125rem;
  }
}

.p-case__title {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-mincho);
  font-size: 2rem;
  font-weight: var(--fw-medium);
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-case__title {
    font-size: 1.375rem;
    line-height: 1.4545454545;
  }
}

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

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

.p-case__item {
  width: 100%;
  border: 1px solid transparent;
  background-color: var(--color-white);
  transition: border-color var(--duration), box-shadow var(--duration);
}
.p-case__item.is-open {
  border-color: var(--color-primary);
}

.p-case__trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: padding var(--duration), background-color var(--duration), color var(--duration);
}
@media (any-hover: hover) {
  .p-case__trigger:hover {
    opacity: 0.92;
  }
}
.p-case__trigger:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
@media screen and (max-width: 767px) {
  .p-case__trigger {
    gap: 0.5rem;
    padding: 1.25rem 0.5rem 1.25rem 1rem;
  }
}

.p-case__item.is-open .p-case__trigger {
  padding: 2.5rem;
  background-color: var(--color-primary);
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-case__item.is-open .p-case__trigger {
    padding: 1.25rem 0.5rem 1.25rem 1rem;
  }
}

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

.p-case__badge {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  padding-top: 0.5rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--ff-en);
  text-align: center;
  transition: background-color var(--duration), color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-case__badge {
    width: 2.5rem;
    height: 2.5rem;
    padding-top: 0.125rem;
  }
}

.p-case__badge-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: var(--fw-regular);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-case__badge-label {
    font-size: 0.625rem;
  }
}

.p-case__badge-num {
  margin: 0;
  font-size: 2.5rem;
  font-weight: var(--fw-regular);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-case__badge-num {
    font-size: 1.5rem;
  }
}

.p-case__item.is-open .p-case__badge {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.p-case__trigger-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.p-case__trigger-line {
  display: block;
  font-family: var(--ff-mincho);
  font-size: 1.25rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
  white-space: normal;
}
@media screen and (max-width: 767px) {
  .p-case__trigger-line {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.p-case__item:not(.is-open) .p-case__trigger-line {
  color: var(--color-text);
}

.p-case__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--color-primary);
  transition: transform 0.3s ease;
  transform: rotate(0deg);
  transform-origin: center;
}
@media screen and (max-width: 767px) {
  .p-case__icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.p-case__item.is-open .p-case__icon {
  color: var(--color-white);
  transform: rotate(180deg);
}

.p-case__panel {
  height: 0;
  overflow: hidden;
  background-color: var(--color-white);
  opacity: 0;
  transition: height 0.4s ease, opacity 0.4s ease;
}

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

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

.p-case__figure {
  flex-shrink: 0;
  width: 18.75rem;
  max-width: 100%;
  aspect-ratio: 300/225;
  margin: 0;
  background-color: #ddd;
}
@media screen and (max-width: 767px) {
  .p-case__figure {
    width: 100%;
  }
}

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

.p-case__panel-intro {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-case__panel-intro {
    gap: 1rem;
  }
}

.p-case__company {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-mincho);
  font-size: 1.5rem;
  font-weight: var(--fw-medium);
  line-height: 1.3333333333;
}
@media screen and (max-width: 767px) {
  .p-case__company {
    font-size: 1.125rem;
    line-height: 1.5555555556;
  }
}

.p-case__block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  width: 100%;
}

.p-case__block-head {
  width: 100%;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--color-text);
}

.p-case__block-head--accent {
  border-bottom-color: var(--color-primary);
}

.p-case__block-label {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-base);
  font-size: 0.9375rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-case__block-label {
    font-size: 0.875rem;
  }
}

.p-case__block-head--accent .p-case__block-label {
  color: var(--color-primary);
}

.p-case__block-body {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-base);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-case__block-body {
    font-size: 0.875rem;
  }
}

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

.p-case__panel-columns .p-case__block {
  flex: 1 1 0;
  min-width: 0;
}

.p-case__rich {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-base);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-case__rich {
    font-size: 0.875rem;
  }
}

.p-case__rich strong {
  font-weight: var(--fw-bold);
}

/**
 * コラムアーカイブ（Figmaデザイン準拠）
 * 2カラム：左＝記事カードリスト、右＝カテゴリサイドバー
 */
.p-column-archive {
  padding-block: 2.5rem 3.75rem;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-column-archive {
    padding-block: 1.5rem 0;
  }
}

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

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

.p-column-archive__title-holder .c-section-title__main {
  font-size: 3.125rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-column-archive__title-holder .c-section-title__main {
    font-size: 2rem;
  }
}

.p-column-archive__body {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}
@media screen and (max-width: 1023px) {
  .p-column-archive__body {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-column-archive__body {
    flex-direction: column;
    gap: 2rem;
  }
}

.p-column-archive__list-wrap {
  flex: 1;
  min-width: 0;
}

.p-column-archive__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-column-archive__list {
    gap: 1rem;
    padding: 0;
  }
}

.p-column-archive__card {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
@media (any-hover: hover) {
  .p-column-archive__card:hover .p-column-archive__card-img {
    transform: scale(1.05);
  }
}

.p-column-archive__card-inner {
  display: flex;
  gap: 2rem;
  height: 14.0625rem;
  padding-inline-end: 1rem;
  background-color: var(--color-white);
  box-shadow: 0.25rem 0.25rem 0.25rem 0 oklch(from var(--color-black) l c h/25%);
}
@media screen and (max-width: 767px) {
  .p-column-archive__card-inner {
    flex-direction: column;
    height: auto;
    gap: 1rem;
    padding: 1rem;
  }
}

.p-column-archive__card-thumb {
  flex-shrink: 0;
  width: 25rem;
  height: 14.0625rem;
  overflow: hidden;
  background-color: var(--color-gray);
}
@media screen and (max-width: 767px) {
  .p-column-archive__card-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
}

.p-column-archive__card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.p-column-archive__card-img.p-column-archive__card-img--no-image {
  display: block;
  background-color: var(--color-gray);
}

.p-column-archive__card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  min-width: 0;
  padding-block: 1rem;
}
@media screen and (max-width: 767px) {
  .p-column-archive__card-body {
    gap: 1rem;
    padding-block: 0;
  }
}

.p-column-archive__card-meta {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  flex-wrap: wrap;
}

.p-column-archive__card-tag {
  padding: 0.5rem 1.5rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--ff-base);
  font-size: 0.9375rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-column-archive__card-tag {
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
  }
}

.p-column-archive__card-date {
  padding: 0.5rem 1.5rem;
  border-bottom: 1px solid var(--color-text);
  color: var(--color-text);
  font-family: var(--ff-en);
  font-size: 1.125rem;
  font-weight: var(--fw-regular);
  line-height: 1.33;
}
@media screen and (max-width: 767px) {
  .p-column-archive__card-date {
    padding: 0.25rem 1rem;
    font-size: 0.875rem;
  }
}

.p-column-archive__card-title {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-mincho);
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.23;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-column-archive__card-title {
    font-size: 1.25rem;
    line-height: 1.33;
    -webkit-line-clamp: 2;
  }
}

.p-column-archive__pagination {
  width: 100%;
  display: flex;
  justify-content: center;
}
.p-column-archive__empty {
  padding: 3.75rem;
  background-color: var(--color-white);
  box-shadow: 0.25rem 0.25rem 0.25rem 0 oklch(from var(--color-black) l c h/25%);
  color: var(--color-text);
  font-size: 1rem;
  text-align: center;
}
.p-column-archive__empty p {
  margin: 0;
}

.p-column-archive__side {
  flex-shrink: 0;
  width: 15rem;
}
@media screen and (max-width: 1023px) {
  .p-column-archive__side {
    width: 15rem;
  }
}
@media screen and (max-width: 767px) {
  .p-column-archive__side {
    width: 100%;
  }
}

.p-column-archive__side-title {
  padding: 0.5rem 1rem;
  color: var(--color-text);
  font-family: var(--ff-en);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.33;
}
@media screen and (max-width: 767px) {
  .p-column-archive__side-title {
    padding: 0.25rem 1rem;
    font-size: 1rem;
  }
}

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

.p-column-archive__category-item {
  border-bottom: 1px solid var(--color-text);
}

.p-column-archive__category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  color: var(--color-text);
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}
@media screen and (max-width: 767px) {
  .p-column-archive__category-link {
    padding: 0.25rem 1rem;
  }
}
@media (any-hover: hover) {
  .p-column-archive__category-link:hover {
    color: var(--color-accent);
  }
}
.p-column-archive__category-link.is-active {
  color: var(--color-accent);
  font-weight: var(--fw-medium);
}

.p-column-archive__category-name {
  flex: 1;
  min-width: 0;
  font-family: var(--ff-mincho);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.33;
}
@media screen and (max-width: 767px) {
  .p-column-archive__category-name {
    font-size: 1rem;
  }
}

.p-column-archive__category-arrow {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: inherit;
}
.p-column-archive__category-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  stroke: var(--color-accent);
}

.p-column-archive__side-empty {
  margin: 0;
  color: var(--color-text);
  font-size: 0.875rem;
}

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

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

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

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

.p-contact__header-text {
  color: var(--color-text);
  font-family: var(--ff-mincho);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-contact__header-text {
    font-size: 1rem;
  }
}

/* お問い合わせ完了（サンクス）ページ */
.p-contact-thanks__body {
  text-align: center;
}

.p-contact-thanks__text {
  margin-block-end: 2rem;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.8;
}

.p-contact-thanks__action {
  margin: 0;
}

.p-cta {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
}

.p-cta__bar {
  display: flex;
  gap: 2.5rem;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  padding-inline-end: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-cta__bar {
    flex-direction: column;
    gap: 0;
    padding-inline-end: 0;
  }
}

.p-cta__media {
  position: relative;
  flex: 1 1 50%;
  min-width: 0;
  min-height: 31.75rem;
}
@media screen and (max-width: 767px) {
  .p-cta__media {
    flex: none;
    width: 100%;
    min-height: 15rem;
  }
}

.p-cta__figure {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 31.75rem;
  margin: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-cta__figure {
    min-height: 15rem;
    aspect-ratio: 16/9;
  }
}

.p-cta__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(0, 110, 130, 0.35);
  pointer-events: none;
}

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

.p-cta__panel {
  display: flex;
  flex: 1 1 50%;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-cta__panel {
    flex: none;
    width: 100%;
    padding: 2rem 1.25rem;
  }
}

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

.p-cta__sub {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-en);
  font-size: 1.25rem;
  font-weight: var(--fw-regular);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-cta__sub {
    font-size: 1.125rem;
  }
}

.p-cta__main {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-mincho);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.375;
}
@media screen and (max-width: 767px) {
  .p-cta__main {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

.p-cta__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  width: 100%;
}

.p-cta__text {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-base);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-cta__text {
    font-size: 0.9375rem;
    line-height: 1.75;
  }
}

.p-cta__button-wrap {
  margin: 0;
}

.p-cta__button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-family: var(--ff-base);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.75;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media (any-hover: hover) {
  .p-cta__button:hover {
    opacity: 0.9;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__button {
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
  }
}

.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: var(--fw-bold);
  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: var(--fw-bold);
}

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

/**
 * 404エラーページ（Figma 74-1638 準拠）
 */
.p-error {
  display: flex;
  flex-direction: column;
  padding-block: 10rem;
  padding-inline: 7.5rem;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-error {
    padding-block: 5rem;
    padding-inline: 1.25rem;
  }
}

.p-error__inner {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-error__inner {
    gap: 5rem;
  }
}

.p-error__breadcrumb-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  color: var(--color-text);
}

.p-error__breadcrumb-sep svg {
  display: block;
  width: 100%;
  height: 100%;
}

.p-error__breadcrumb-current {
  color: var(--color-text);
  font-family: var(--ff-en);
  font-size: 1.25rem;
  font-weight: var(--fw-regular);
  line-height: 1;
}

.p-error__body {
  width: 100%;
}

.p-error__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  text-align: center;
}

.p-error__title {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-mincho);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-error__title {
    font-size: 1.5rem;
  }
}

.p-error__desc {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-base);
  font-size: 0.9375rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-error__desc {
    font-size: 0.875rem;
  }
}

.p-error__action {
  margin: 0;
}

.p-error__button {
  display: inline-block;
  padding: 1rem 1.5rem;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-family: var(--ff-base);
  font-size: 0.9375rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media (any-hover: hover) {
  .p-error__button:hover {
    opacity: 0.9;
  }
}

/**
 * ファンド・CVC：よくあるご質問 FAQ（Figma 110-1476 準拠）
 */
.p-faq {
  padding-block: 7.5rem 3.875rem;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding-block: 2rem 4rem;
  }
}

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

.p-faq__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
}

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

.p-faq__label {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: 1.25rem;
  font-weight: var(--fw-regular);
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-faq__label {
    font-size: 1.125rem;
  }
}

.p-faq__title {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-mincho);
  font-size: 2rem;
  font-weight: var(--fw-medium);
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-faq__title {
    font-size: 1.375rem;
    line-height: 1.4545454545;
  }
}

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

.p-faq__item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 1rem;
  border-block-start: 1px solid var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-faq__item {
    padding: 0.5rem;
  }
}

.p-faq__trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
@media (any-hover: hover) {
  .p-faq__trigger:hover {
    opacity: 0.92;
  }
}
.p-faq__trigger:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
@media screen and (max-width: 767px) {
  .p-faq__trigger {
    align-items: flex-start;
  }
}

.p-faq__trigger-inner {
  display: flex;
  flex: 1 1 0;
  gap: 1rem;
  align-items: center;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-faq__trigger-inner {
    gap: 1rem;
    align-items: flex-start;
  }
}

.p-faq__q-mark {
  flex-shrink: 0;
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: 1.25rem;
  font-weight: var(--fw-regular);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-faq__q-mark {
    margin-block-start: 0.125rem;
    font-size: 1.125rem;
  }
}

.p-faq__question {
  flex: 1 1 0;
  margin: 0;
  color: var(--color-primary);
  font-family: var(--ff-mincho);
  font-size: 1.25rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
  white-space: normal;
}
@media screen and (max-width: 767px) {
  .p-faq__question {
    font-size: 1rem;
  }
}

.p-faq__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--color-primary);
  transition: transform 0.3s ease;
  transform: rotate(0deg);
  transform-origin: center;
}
@media screen and (max-width: 767px) {
  .p-faq__icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.p-faq__item.is-open .p-faq__icon {
  transform: rotate(180deg);
}

.p-faq__panel {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 0.4s ease, opacity 0.4s ease;
}

.p-faq__answer {
  margin-block-start: 0.625rem;
  color: var(--color-text);
  font-family: var(--ff-base);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-faq__answer {
    font-size: 0.875rem;
  }
}

.p-footer {
  overflow: hidden;
  color: var(--color-white);
  background-color: var(--color-primary);
}

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

.p-footer__inner {
  width: 100%;
  padding-inline: 5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    padding-inline: 1.25rem;
  }
}

.p-footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}

.p-footer__logo-area {
  flex-shrink: 0;
}

.p-footer__logo {
  display: block;
  width: 12.5rem;
  height: 4.1875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    width: 10rem;
    height: auto;
  }
}

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

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

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

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

.p-footer__nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 5rem;
  color: var(--color-white);
  text-align: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-link {
    align-items: flex-start;
    min-height: 0;
    text-align: left;
  }
}
@media (any-hover: hover) {
  .p-footer__nav-link:hover {
    opacity: 0.85;
  }
}

.p-footer__nav-heading {
  color: var(--color-white);
  font-family: var(--ff-en);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3333333333;
}

.p-footer__nav-sub {
  color: var(--color-white);
  font-family: var(--ff-inter);
  font-size: 0.625rem;
  font-weight: var(--fw-light);
  line-height: 1;
}

.p-footer__copyright-wrap {
  padding-block: 1rem;
  text-align: center;
}

.p-footer__copyright {
  margin: 0;
  color: var(--color-white);
  font-family: var(--ff-en);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3333333333;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.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-accent);
  --_form-color-border: var(--color-border);
  --_form-color-primary: var(--color-primary);
  max-width: 80rem;
  margin-inline: auto;
}
.p-form > * {
  margin-block-start: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-form > * {
    margin-block-start: 0.5rem;
  }
}

.p-form__item {
  display: flex;
  padding: 0.25rem;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-form__item {
    flex-direction: column;
    gap: 0rem;
    padding: 0;
  }
}

.p-form__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.875rem;
  min-width: 15rem;
  padding: 1rem;
  background-color: var(--color-primary);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__label {
    gap: 1rem;
    justify-content: flex-start;
    min-width: auto;
    padding: 0.5rem;
  }
}

.p-form__label-text {
  color: var(--white, #fff);
  font-family: var(--ff-base);
  font-size: 0.9375rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-form__label-text {
    font-size: 0.875rem;
  }
}

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

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

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

.p-form__input,
.p-form__select,
.p-form__textarea {
  width: 100%;
  height: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid var(--color-border);
  background-color: var(--_form-color-bg);
  color: var(--_form-color-text);
  font-size: 0.9375rem;
  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.5rem;
    border-block-start: 0px;
    font-size: 0.875rem;
  }
}

.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-primary);
  box-shadow: 0 0 0 3px oklch(from var(--_form-color-primary) 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-primary);
  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.75rem;
  right: 1rem;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  width: 0.75rem;
  height: 0.5rem;
  border: none;
  background-color: var(--_form-color-primary);
  pointer-events: none;
  translate: 0 -50%;
}

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

.p-form__radio-group {
  display: flex;
  flex-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-primary);
  background-color: var(--_form-color-primary);
}

.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-primary);
  opacity: 0.5;
}

.p-form__radio input[type=radio]:focus {
  box-shadow: 0 0 0 3px oklch(from var(--_form-color-primary) 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-direction: column;
  gap: 0.625rem;
  padding: 1rem;
  border: 1px solid rgba(21, 21, 21, 0.2);
  background: var(--color-white);
  font-size: 0.9375rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-form__checkbox {
    font-size: 0.875rem;
  }
}

.p-form__checkbox input[type=checkbox] {
  position: relative;
  width: 1rem;
  height: 1rem;
  margin: 0;
  margin-inline-end: 0.625rem;
  border: 1px solid var(--color-text);
  cursor: pointer;
  appearance: none;
  transition: border-color 0.2s ease;
}

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

.p-form__checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 0rem;
  left: 0.1875rem;
  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-primary);
  opacity: 0.5;
}

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

.p-form__checkbox-text {
  color: var(--_form-color-text);
  font-size: 0.9375rem;
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.6;
  user-select: none;
}

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

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

.p-form__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-primary);
  background-color: var(--_form-color-primary);
}
.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 .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: 2rem;
  text-align: center;
}

.p-form__button {
  display: inline-flex;
  padding: 1rem 1.5rem;
  align-items: center;
  gap: 1.5rem;
  background: var(--color-primary);
  color: var(--white, #fff);
  font-family: var(--ff-base);
  font-size: 0.9375rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 767px) {
  .p-form__button {
    font-size: 0.875rem;
  }
}
@media (hover: hover) {
  .p-form__button:hover {
    opacity: 0.6;
  }
}

.p-form__privacy {
  margin-block-start: 0.5rem;
  text-align: center;
  color: var(--color-accent);
  font-family: var(--ff-base);
  font-size: 0.9375rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
  text-decoration: underline;
}

.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-form-control-wrap,
.p-form__checkbox .wpcf7-form-control {
  display: flex;
  align-items: center;
}

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

/**
 * ファンド・CVC：Concept（Figma 108-481 準拠）
 */
.p-fund-concept {
  padding-block: 4.625rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-fund-concept {
    padding-block: 3rem 4rem;
  }
}

.p-fund-concept__inner {
  max-width: 80rem;
  margin-inline: auto;
}

.p-fund-concept__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  width: 100%;
}

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

.p-fund-concept__label {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: 1.25rem;
  font-weight: var(--fw-regular);
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-fund-concept__label {
    font-size: 1.125rem;
  }
}

.p-fund-concept__title {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-mincho);
  font-size: 2rem;
  font-weight: var(--fw-medium);
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-fund-concept__title {
    font-size: 1.375rem;
    line-height: 1.4545454545;
  }
}

.p-fund-concept__body {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: stretch;
  width: 100%;
  max-width: 50rem;
  margin-inline: auto;
  text-align: center;
}

.p-fund-concept__text {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-base);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-fund-concept__text {
    font-size: 0.875rem;
  }
}

.p-fund-cvc-plan {
  padding-block: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-fund-cvc-plan {
    padding-block: 3rem 4rem;
  }
}

.p-fund-cvc-plan__inner {
  max-width: 86.25rem;
  margin-inline: auto;
}

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

.p-fund-cvc-plan__head {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.p-fund-cvc-plan__label {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: 1.25rem;
  font-weight: var(--fw-regular);
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-fund-cvc-plan__label {
    font-size: 1.125rem;
  }
}

.p-fund-cvc-plan__title {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-mincho);
  font-size: 2rem;
  font-weight: var(--fw-medium);
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-fund-cvc-plan__title {
    font-size: 1.375rem;
    line-height: 1.4545454545;
  }
}

.p-fund-cvc-plan__grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.p-fund-cvc-plan__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 1.5rem;
  row-gap: 1.5rem;
  align-items: start;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-fund-cvc-plan__row {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 1.5rem;
  }
  .p-fund-cvc-plan__row .p-fund-cvc-plan__phase:first-child .p-fund-cvc-plan__phase-intro,
  .p-fund-cvc-plan__row .p-fund-cvc-plan__phase:first-child .p-fund-cvc-plan__lines,
  .p-fund-cvc-plan__row .p-fund-cvc-plan__phase:last-child .p-fund-cvc-plan__phase-intro,
  .p-fund-cvc-plan__row .p-fund-cvc-plan__phase:last-child .p-fund-cvc-plan__lines {
    grid-column: 1;
    grid-row: auto;
  }
}

.p-fund-cvc-plan__phase {
  display: contents;
}

.p-fund-cvc-plan__phase:first-child .p-fund-cvc-plan__phase-intro {
  grid-column: 1;
  grid-row: 1;
}

.p-fund-cvc-plan__phase:first-child .p-fund-cvc-plan__lines {
  grid-column: 1;
  grid-row: 2;
}

.p-fund-cvc-plan__phase:last-child .p-fund-cvc-plan__phase-intro {
  grid-column: 2;
  grid-row: 1;
}

.p-fund-cvc-plan__phase:last-child .p-fund-cvc-plan__lines {
  grid-column: 2;
  grid-row: 2;
}

.p-fund-cvc-plan__phase-intro {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  align-items: flex-start;
  align-self: stretch;
  width: 100%;
  min-width: 0;
  padding-block-start: 1.5rem;
  border-block-start: 1px solid var(--color-primary);
}

.p-fund-cvc-plan__phase-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-start;
  width: 100%;
}

.p-fund-cvc-plan__phase-en {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: 1.125rem;
  font-weight: var(--fw-regular);
  line-height: 1;
}

.p-fund-cvc-plan__bullet {
  display: block;
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.p-fund-cvc-plan__phase-subtitle {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--ff-mincho);
  font-size: 1.25rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
}

.p-fund-cvc-plan__lead {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-base);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.75;
}

.p-fund-cvc-plan__lines {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: stretch;
  width: 100%;
}

.p-fund-cvc-plan__line {
  display: flex;
  gap: 0.25rem;
  align-items: stretch;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-fund-cvc-plan__line {
    flex-direction: column;
    gap: 0;
  }
}

.p-fund-cvc-plan__term {
  display: flex;
  flex: 0 0 15rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-block: 0.125rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--ff-base);
  font-size: 0.9375rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-fund-cvc-plan__term {
    flex: 0 0 auto;
    width: 100%;
    margin-block: 0;
  }
}

.p-fund-cvc-plan__desc {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  min-width: 0;
  margin: 0;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-text);
  color: var(--color-text);
  font-family: var(--ff-base);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-fund-cvc-plan__desc {
    width: 100%;
    border-block-start: none;
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}

.p-fundraising-service {
  padding-block: 7.25rem 2.5rem;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-fundraising-service {
    padding-block: 2rem 2.5rem;
  }
}

.p-fundraising-service__inner {
  width: min(86.25rem, 100%);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-fundraising-service__inner {
    width: min(100%, 37.5rem);
  }
}

.p-fundraising-service__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

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

.p-fundraising-service__label {
  margin: 0;
  max-width: 100%;
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: 1.25rem;
  font-weight: var(--fw-regular);
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-fundraising-service__label {
    font-size: 1.125rem;
  }
}

.p-fundraising-service__title {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-mincho);
  font-size: 2rem;
  font-weight: var(--fw-medium);
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-fundraising-service__title {
    font-size: 1.375rem;
    line-height: 1.4545454545;
  }
}

.p-fundraising-service__tablist {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 80rem;
  margin-block-start: 2.5rem;
  border-bottom: 1px solid var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-fundraising-service__tablist {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
}

.p-fundraising-service__tab {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 0.3125rem;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  margin: 0;
  padding: 0.75rem 0.375rem 0.75rem 1rem;
  border-radius: 0.25rem 1.5rem 0 0;
  background-color: var(--color-white);
  color: var(--color-text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background-color var(--duration), color var(--duration);
}
.p-fundraising-service__tab[aria-selected=true] {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.p-fundraising-service__tab:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
@media (any-hover: hover) {
  .p-fundraising-service__tab[aria-selected=false]:hover {
    background-color: rgba(0, 60, 91, 0.06);
  }
}
@media screen and (max-width: 767px) {
  .p-fundraising-service__tab {
    flex: 0 0 auto;
    width: 100%;
    border-radius: 0.25rem 1.5rem 0 0;
  }
}

.p-fundraising-service__tab-en {
  font-family: var(--ff-en);
  font-size: 1.25rem;
  font-weight: var(--fw-regular);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-fundraising-service__tab-en {
    font-size: 1.125rem;
  }
}

.p-fundraising-service__tab-ja {
  font-family: var(--ff-mincho);
  font-size: 1.1875rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-fundraising-service__tab-ja {
    font-size: 1rem;
  }
}

.p-fundraising-service__panels {
  width: 100%;
  max-width: 80rem;
  border-bottom: 1px solid var(--color-primary);
}

.p-fundraising-service__panel {
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  height: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.4s ease, transform 0.35s ease, visibility 0.35s ease;
}
.p-fundraising-service__panel.is-active {
  height: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.p-fundraising-service__panel[aria-hidden=true] {
  pointer-events: none;
}

.p-fundraising-service__panel-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-block: 1.5rem;
}

.p-fundraising-service__block {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  padding: 0.75rem 1rem;
}

.p-fundraising-service__subhead {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--ff-mincho);
  font-size: 1.25rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
}

.p-fundraising-service__text {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-base);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-fundraising-service__text {
    font-size: 0.875rem;
  }
}

.p-header {
  height: var(--header-height);
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-header {
    --header-height: 64px;
  }
}

body:has(.l-main[data-bg=base]) .p-header {
  background-color: transparent;
  transition: background-color 0.25s ease;
}

body:has(.l-main[data-bg=base]) .p-header.p-header--solid {
  background-color: var(--color-base);
}

.p-header__inner {
  display: flex;
  justify-content: space-between;
  height: inherit;
  padding-inline-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding-inline-start: 1.25rem;
  }
}

.p-header__logo {
  width: 100%;
  height: inherit;
  max-width: max(7.5rem, 100px);
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    max-width: max(7.5rem, 100px);
  }
}

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

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

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

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

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

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

.p-header__nav-item > a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: inherit;
  padding-block: 0;
  padding-inline: 0;
  color: var(--color-text);
  font-size: clamp(13px, 2cqi, 16px);
  font-weight: var(--fw-medium);
  line-height: 1;
}

.p-header__nav-item-text--en {
  font-size: clamp(13px, 2cqi, 18px);
  font-weight: 600;
  font-family: var(--ff-en);
  line-height: 1.33;
}

.p-header__nav-item-text--ja {
  font-size: max(0.625rem, 8px);
  font-weight: 500;
  line-height: normal;
  font-family: var(--ff-inter);
}

.p-header__nav-item.p-header__nav-item--contact a {
  position: relative;
  padding-inline: 3rem;
  background-color: var(--color-accent);
  font-size: 10px;
  color: var(--color-white);
  text-align: center;
}

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

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

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

.p-header__drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 900;
  display: none;
  overflow-y: auto;
  width: 100%;
  height: 100svh;
  padding-block: max(4rem, 64px) max(6.875rem, 110px);
  padding-inline: 0;
  background-color: var(--color-base);
  scrollbar-width: none;
  transform: translateX(100%);
  transition: transform 0.3s ease, visibility 0s linear 0.3s;
  visibility: hidden;
}
.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: block;
  }
  .p-header__drawer.is-open {
    transform: translateX(0);
    transition: transform 0.3s ease;
    visibility: visible;
  }
}

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

.p-header__drawer-item.p-header__drawer-item--contact {
  margin-block-start: 2.5rem;
  border-bottom: none;
}

.p-header__drawer-item > a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: max(1.25rem, 20px) max(2rem, 32px);
  font-size: max(0.875rem, 14px);
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.p-header__drawer-item-text--en {
  font-size: max(1rem, 16px);
  font-family: var(--ff-en);
}

.p-header__drawer-item-text--ja {
  font-size: max(0.625rem, 10px);
  font-family: var(--ff-inter);
}

.p-header__drawer-item.p-header__drawer-item--contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: max(11.25rem, 180px);
  margin-inline: auto;
  padding: max(0.9375rem, 15px) max(2rem, 32px);
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
}

.p-ipo-service {
  padding-block: 7.25rem 2.5rem;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-ipo-service {
    padding-block: 2rem 2.5rem;
  }
}

.p-ipo-service__inner {
  width: min(86.25rem, 100%);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-ipo-service__inner {
    width: min(100%, 37.5rem);
  }
}

.p-ipo-service__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

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

.p-ipo-service__label {
  margin: 0;
  max-width: 100%;
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: 1.25rem;
  font-weight: var(--fw-regular);
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-ipo-service__label {
    font-size: 1.125rem;
  }
}

.p-ipo-service__title {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-mincho);
  font-size: 2rem;
  font-weight: var(--fw-medium);
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-ipo-service__title {
    font-size: 1.375rem;
    line-height: 1.4545454545;
  }
}

.p-ipo-service__tablist {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 80rem;
  margin-block-start: 2.5rem;
  border-bottom: 1px solid var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-ipo-service__tablist {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
}

.p-ipo-service__tab {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 0.3125rem;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  margin: 0;
  padding: 0.75rem 0.375rem 0.75rem 1rem;
  border-radius: 0.25rem 1.5rem 0 0;
  background-color: var(--color-white);
  color: var(--color-text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background-color var(--duration), color var(--duration);
}
.p-ipo-service__tab[aria-selected=true] {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.p-ipo-service__tab:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
@media (any-hover: hover) {
  .p-ipo-service__tab[aria-selected=false]:hover {
    background-color: rgba(0, 60, 91, 0.06);
  }
}
@media screen and (max-width: 767px) {
  .p-ipo-service__tab {
    flex: 0 0 auto;
    width: 100%;
    border-radius: 0.25rem 1.5rem 0 0;
  }
}

.p-ipo-service__tab-en {
  font-family: var(--ff-en);
  font-size: 1.25rem;
  font-weight: var(--fw-regular);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-ipo-service__tab-en {
    font-size: 1.125rem;
  }
}

.p-ipo-service__tab-ja {
  font-family: var(--ff-mincho);
  font-size: 1.1875rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-ipo-service__tab-ja {
    font-size: 1rem;
  }
}

.p-ipo-service__panels {
  width: 100%;
  max-width: 80rem;
  border-bottom: 1px solid var(--color-primary);
}

.p-ipo-service__panel {
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  height: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.4s ease, transform 0.35s ease, visibility 0.35s ease;
}
.p-ipo-service__panel.is-active {
  height: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.p-ipo-service__panel[aria-hidden=true] {
  pointer-events: none;
}

.p-ipo-service__panel-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-block: 1.5rem;
}

.p-ipo-service__block {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  padding: 0.75rem 1rem;
}

.p-ipo-service__subhead {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--ff-mincho);
  font-size: 1.25rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
}

.p-ipo-service__text {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-base);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-ipo-service__text {
    font-size: 0.875rem;
  }
}

.p-jsg-support {
  padding-block: 2.5rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-jsg-support {
    padding-block: 2rem 3rem;
  }
}

.p-jsg-support__inner {
  width: min(86.25rem, 100%);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-jsg-support__inner {
    width: min(100%, 37.5rem);
    padding-inline: 1.25rem;
  }
}

.p-jsg-support__content {
  display: flex;
  flex-direction: column;
  gap: 2.375rem;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.p-jsg-support__head {
  display: flex;
  flex-direction: column;
  gap: 0.8125rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.p-jsg-support__label {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: 1.25rem;
  font-weight: var(--fw-regular);
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-jsg-support__label {
    font-size: 1.125rem;
  }
}

.p-jsg-support__title {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-mincho);
  font-size: 2rem;
  font-weight: var(--fw-medium);
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-jsg-support__title {
    font-size: 1.375rem;
    line-height: 1.4545454545;
  }
}

.p-jsg-support__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-jsg-support__item {
  display: flex;
  flex: 1 1 17.5rem;
  min-width: min(100%, 17.5rem);
  max-width: 100%;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-jsg-support__item {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

.p-jsg-support__card {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 1rem;
  border-block-start: 1px solid var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-jsg-support__card {
    padding: 0.75rem;
  }
}

.p-jsg-support__figure {
  position: relative;
  width: 100%;
  margin: 0;
  aspect-ratio: 192/108;
  overflow: hidden;
}

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

.p-jsg-support__card-head {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.p-jsg-support__card-en {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: 1.125rem;
  font-weight: var(--fw-regular);
  line-height: 1;
}

.p-jsg-support__bullet {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.p-jsg-support__card-title {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--ff-mincho);
  font-size: 1.25rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
}

.p-jsg-support__text {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-base);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.75;
}

.p-ma-service {
  padding-block: 7.25rem 2.5rem;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-ma-service {
    padding-block: 2rem 2.5rem;
  }
}

.p-ma-service__inner {
  width: min(86.25rem, 100%);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-ma-service__inner {
    width: min(100%, 37.5rem);
  }
}

.p-ma-service__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

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

.p-ma-service__label {
  margin: 0;
  max-width: 100%;
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: 1.25rem;
  font-weight: var(--fw-regular);
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-ma-service__label {
    font-size: 1.125rem;
  }
}

.p-ma-service__title {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-mincho);
  font-size: 2rem;
  font-weight: var(--fw-medium);
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-ma-service__title {
    font-size: 1.375rem;
    line-height: 1.4545454545;
  }
}

.p-ma-service__tablist {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 80rem;
  margin-block-start: 2.5rem;
  border-bottom: 1px solid var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-ma-service__tablist {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
}

.p-ma-service__tab {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 0.3125rem;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  margin: 0;
  padding: 0.75rem 0.375rem 0.75rem 1rem;
  border-radius: 0.25rem 1.5rem 0 0;
  background-color: var(--color-white);
  color: var(--color-text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background-color var(--duration), color var(--duration);
}
.p-ma-service__tab[aria-selected=true] {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.p-ma-service__tab:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
@media (any-hover: hover) {
  .p-ma-service__tab[aria-selected=false]:hover {
    background-color: rgba(0, 60, 91, 0.06);
  }
}
@media screen and (max-width: 767px) {
  .p-ma-service__tab {
    flex: 0 0 auto;
    width: 100%;
    border-radius: 0.25rem 1.5rem 0 0;
  }
}

.p-ma-service__tab-en {
  font-family: var(--ff-en);
  font-size: 1.25rem;
  font-weight: var(--fw-regular);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-ma-service__tab-en {
    font-size: 1.125rem;
  }
}

.p-ma-service__tab-ja {
  font-family: var(--ff-mincho);
  font-size: 1.1875rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-ma-service__tab-ja {
    font-size: 1rem;
  }
}

.p-ma-service__panels {
  width: 100%;
  max-width: 80rem;
  border-bottom: 1px solid var(--color-primary);
}

.p-ma-service__panel {
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  height: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.4s ease, transform 0.35s ease, visibility 0.35s ease;
}
.p-ma-service__panel.is-active {
  height: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.p-ma-service__panel[aria-hidden=true] {
  pointer-events: none;
}

.p-ma-service__panel-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-block: 1.5rem;
}

.p-ma-service__block {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  padding: 0.75rem 1rem;
}

.p-ma-service__subhead {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--ff-mincho);
  font-size: 1.25rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
}

.p-ma-service__text {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-base);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-ma-service__text {
    font-size: 0.875rem;
  }
}

.p-mv {
  position: relative;
  z-index: 1;
  width: 100%;
  height: max(55rem, 100%);
}
@media screen and (max-width: 767px) {
  .p-mv {
    height: max(100svh - var(--header-height), 28.125rem);
  }
}

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

.p-mv__title-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  position: absolute;
  inset: 0;
  z-index: 2;
  container-type: inline-size;
  width: 100%;
  padding-inline: 12.5rem;
  margin: auto;
  color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-mv__title-wrap {
    padding-inline: 1.25rem;
    gap: 0.75rem;
  }
}

.p-mv__main-title {
  font-size: clamp(2.5rem, 5.5cqi, 5rem);
  font-weight: var(--fw-bold);
  font-family: var(--ff-mincho);
  line-height: normal;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .p-mv__main-title {
    font-size: 1.875rem;
  }
}

.p-mv__sub-title {
  font-size: clamp(1rem, 3cqi, 2rem);
  font-family: var(--ff-en);
  line-height: normal;
  text-shadow: 0 1px 2px oklch(from var(--color-black) l c h/30%);
}
@media screen and (max-width: 767px) {
  .p-mv__sub-title {
    font-size: 0.875rem;
  }
}

.p-mv__image {
  width: 100%;
  height: 100%;
}
.p-mv__image picture {
  width: 100%;
  height: 100%;
}

.p-mv__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

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

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

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

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

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

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

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

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

.p-news-list__card .p-news-list__title {
  margin: 0;
  color: var(--color-text);
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-bold);
  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;
}

/**
 * プライバシーポリシーページ（Figma 74-1414 準拠）
 */
.p-privacy-policy__fv {
  padding-block: 5rem;
  padding-inline: 10rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__fv {
    padding-block: 2.5rem;
    padding-inline: 1.25rem;
  }
}

.p-privacy-policy__fv-inner {
  max-width: 106.25rem;
}

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

.p-privacy-policy__inner {
  max-width: 80rem;
  margin-inline: auto;
}

.p-privacy-policy__body {
  color: var(--color-text);
  font-family: var(--ff-base);
  font-size: 0.9375rem;
  font-weight: var(--fw-medium);
  line-height: 1.6; /* 24px */
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__body {
    font-size: 0.875rem;
  }
}
.p-privacy-policy__body p {
  margin: 0 0 1em;
}
.p-privacy-policy__body p:last-child {
  margin-block-end: 0;
}
.p-privacy-policy__body p + p {
  margin-block-start: 1em;
}

.p-privacy-policy__heading {
  margin-block: 1.5em 0.5em;
  font-family: var(--ff-base);
  font-size: 0.9375rem;
  font-weight: var(--fw-bold);
}
.p-privacy-policy__heading:first-child {
  margin-block-start: 0;
}

.p-privacy-policy__list {
  margin: 0.5em 0 1em;
}
.p-privacy-policy__list li {
  margin-block: 0.25em;
}

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

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

.p-process__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
}

.p-process__head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.p-process__label {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: 1.25rem;
  font-weight: var(--fw-regular);
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-process__label {
    font-size: 1.125rem;
  }
}

.p-process__title {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-mincho);
  font-size: 2rem;
  font-weight: var(--fw-medium);
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-process__title {
    font-size: 1.375rem;
    line-height: 1.4545454545;
  }
}

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

.p-process__step {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 0.5rem;
  align-items: stretch;
  min-width: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-process__step {
    flex: 0 0 auto;
  }
}

.p-process__step-head {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.5rem 1rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--ff-base);
  font-size: 0.9375rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
  text-align: center;
}

.p-process__step-body {
  display: flex;
  flex: 1 1 auto;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  padding: 0.5rem 1rem 1rem;
  background-color: var(--color-white);
}

.p-process__text {
  flex: 1 1 0;
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-base);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.75;
}

.p-process__arrow {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  align-self: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-process__arrow {
    align-self: center;
  }
}

.p-process__arrow-icon {
  width: 2.5rem;
  height: 2.5rem;
  transform: rotate(-90deg);
  transform-origin: center;
}
@media screen and (max-width: 767px) {
  .p-process__arrow-icon {
    transform: rotate(0deg);
  }
}

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

/**
 * シングルページ（コラム詳細専用・Figma 74-1112 準拠）
 */
.p-single__wrapper {
  padding-block: 2.5rem 4rem;
  padding-inline: 1.25rem;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-single__wrapper {
    padding-block: 1.5rem;
    padding-inline: 1rem;
  }
}

.p-single__wrapper .p-single__inner {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding: 5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-single__wrapper .p-single__inner {
    max-width: 35rem;
    padding: 1.5rem 1rem;
    gap: 2rem;
  }
}

.p-single .p-single__header {
  margin-block-end: 0;
}

.p-single__title {
  margin: 0 0 2.5rem;
  color: var(--color-text);
  font-family: var(--ff-mincho);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-single__title {
    font-size: 1.5rem;
    line-height: 1.33;
    margin-block-end: 1.5rem;
  }
}

.p-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  align-items: center;
  margin-block-end: 0;
}

.p-single__tag {
  padding: 0.5rem 1.5rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--ff-base);
  font-size: 0.9375rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media (any-hover: hover) {
  .p-single__tag:hover {
    opacity: 0.9;
  }
}

.p-single__date {
  padding: 0.5rem 1.5rem;
  border-bottom: 1px solid var(--color-text);
  color: var(--color-text);
  font-family: var(--ff-en);
  font-size: 1.125rem;
  font-weight: var(--fw-regular);
  line-height: 1.33;
}

.p-single__thumbnail {
  margin-block-start: 0;
  max-width: 56.25rem;
}

.p-single__thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.p-single__content {
  margin-block-start: 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.p-single__content h2 {
  margin: 0;
  padding: 0.5rem 1rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--ff-mincho);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-single__content h2 {
    font-size: 1.5rem;
  }
}

.p-single__content h3 {
  position: relative;
  margin: 0;
  padding-block-end: 0.25rem;
  color: var(--color-text);
  font-family: var(--ff-mincho);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.33;
}
@media screen and (max-width: 767px) {
  .p-single__content h3 {
    font-size: 1.25rem;
  }
}
.p-single__content h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-color: var(--color-text);
}
.p-single__content h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5rem;
  height: 0.125rem;
  background-color: var(--color-primary);
}

.p-single__content h4 {
  position: relative;
  display: inline-block;
  width: fit-content;
  margin: 0;
  padding-block-end: 0.5rem;
  color: var(--color-text);
  font-family: var(--ff-mincho);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single__content h4 {
    font-size: 1.125rem;
  }
}
.p-single__content h4::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-color: var(--color-primary);
}

.p-single__content h5 {
  margin: 0;
  padding-inline-start: 1rem;
  border-inline-start: 2px solid var(--color-primary);
  color: var(--color-text);
  font-family: var(--ff-mincho);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.33;
}

.p-single__content p {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-base);
  font-size: 0.9375rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
}

.p-single__content ul,
.p-single__content ol {
  margin: 0;
  padding-inline-start: 1.5rem;
  color: var(--color-text);
  font-family: var(--ff-base);
  font-size: 0.9375rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
}

.p-single__content ul {
  list-style: disc;
}

.p-single__content ol {
  list-style: decimal;
}

.p-single__content li {
  margin-block-start: 0.25rem;
}

.p-single__content ul li::marker {
  color: var(--color-primary);
}

.p-single__content blockquote {
  margin: 0;
  padding-inline-start: 1.25rem;
  border-inline-start: 1px solid var(--color-primary);
  color: var(--color-text);
  font-family: var(--ff-base);
  font-size: 0.9375rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
}

.p-single__content blockquote p {
  margin: 0;
}

.p-single__content strong {
  color: var(--color-text);
  font-weight: var(--fw-bold);
}

.p-single__content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}

.p-single__content img {
  display: block;
  height: auto;
  max-width: 100%;
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-single__content img {
    margin-block-start: 2rem;
  }
}

.p-single__content table {
  width: 100%;
  border: 1px solid var(--color-primary);
  border-collapse: collapse;
}

.p-single__content th {
  padding: 0.5rem 1rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--ff-base);
  font-size: 0.9375rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
  text-align: center;
  border: 1px solid var(--color-white);
}

.p-single__content td {
  padding: 0.5rem 1rem;
  border: 0.5px solid var(--color-text);
  color: var(--color-text);
  font-family: var(--ff-base);
  font-size: 0.9375rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
}

.p-single__content .wp-block-buttons {
  text-align: center;
}

.p-single__content .wp-block-button__link,
.p-single__content .wp-block-buttons .wp-block-button a {
  display: inline-block;
  padding: 1rem 1.5rem;
  border-radius: 0;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--ff-base);
  font-size: 0.9375rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
@media (any-hover: hover) {
  .p-single__content .wp-block-button__link:hover,
  .p-single__content .wp-block-buttons .wp-block-button a:hover {
    opacity: 0.9;
  }
}

.p-single__navigation {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-block-start: 0;
  padding-block-start: 0;
  padding-block-end: 5rem;
  border-top: none;
}
@media screen and (max-width: 767px) {
  .p-single__navigation {
    gap: 1rem;
    padding-block-end: 3rem;
  }
}

.p-single__navigation .p-single__nav-item {
  flex-basis: 18.75rem;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-single__navigation .p-single__nav-item {
    flex-basis: fit-content;
  }
}

.p-single__nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--color-text);
  background: none;
  color: var(--color-text);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 767px) {
  .p-single__nav-link {
    gap: 0.25rem;
    padding: 0.25rem 0rem;
  }
}
@media (any-hover: hover) {
  .p-single__nav-link:hover {
    opacity: 0.8;
  }
}

.p-single__nav-arrow {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-single__nav-arrow {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.p-single__nav-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
}

.p-single__nav-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.p-single__nav-link .p-single__nav-label {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-mincho);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.33;
}
@media screen and (max-width: 767px) {
  .p-single__nav-link .p-single__nav-label {
    font-size: 0.75rem;
  }
}

.p-single__nav-link .p-single__nav-title {
  margin: 0;
  font-family: var(--ff-mincho);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.33;
}
@media screen and (max-width: 767px) {
  .p-single__nav-link .p-single__nav-title {
    font-size: 0.75rem;
  }
}

.p-single__back {
  margin-block-start: 0;
  text-align: center;
}

.p-single__back .c-button,
.p-single__back a {
  display: inline-block;
  padding: 1rem 1.5rem;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-family: var(--ff-base);
  font-size: 0.9375rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media (any-hover: hover) {
  .p-single__back .c-button:hover,
  .p-single__back a:hover {
    opacity: 0.9;
  }
}

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

.p-single__related-inner {
  width: 100%;
  max-width: 85rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-single__related-inner {
    max-width: 35rem;
    padding-inline: 1rem;
    gap: 2rem;
  }
}

.p-single__related-title {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-mincho);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-single__related-title {
    font-size: 1.5rem;
  }
}

.p-single__related-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-single__related-list {
    gap: 1rem;
  }
}

.p-single__related-item {
  width: 100%;
}

.p-support-plan {
  position: relative;
  margin-block-start: 5rem;
  padding-block: 5rem 2.625rem;
  overflow: hidden;
  color: var(--color-white);
}
.p-support-plan::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: url("../images/bg_support-plan.webp") no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-support-plan {
    padding-block: 3rem 3rem;
  }
}

.p-support-plan__inner {
  position: relative;
  z-index: 2;
  width: min(86.25rem, 100%);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-support-plan__inner {
    width: min(100%, 37.5rem);
  }
}

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

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

.p-support-plan__label {
  margin: 0;
  color: var(--color-white);
  font-family: var(--ff-en);
  font-size: 1.25rem;
  font-weight: var(--fw-regular);
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-support-plan__label {
    font-size: 1.125rem;
  }
}

.p-support-plan__title {
  margin: 0;
  color: var(--color-white);
  font-family: var(--ff-mincho);
  font-size: 2rem;
  font-weight: var(--fw-medium);
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-support-plan__title {
    font-size: 1.375rem;
    line-height: 1.4545454545;
  }
}

.p-support-plan__diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 80rem;
}
.p-support-plan__top {
  width: 100%;
  max-width: 26.3125rem;
}

.p-support-plan__tree {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.p-support-plan__tree-stem {
  display: block;
  flex-shrink: 0;
  width: 1px;
  height: 2.5rem;
  margin: 0;
  padding: 0;
  border: none;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-support-plan__tree-stem {
    height: 3.75rem;
  }
}

.p-support-plan__tree-branch {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
}

.p-support-plan__tree-hline {
  display: block;
  flex-shrink: 0;
  width: 53.625rem;
  height: 1px;
  margin-inline: auto;
  padding: 0;
  border: none;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-support-plan__tree-hline {
    display: none;
  }
}

.p-support-plan__tree-row {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-support-plan__tree-row {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.p-support-plan__tree-col {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
}

.p-support-plan__tree-col > .p-support-plan__card {
  flex: 1 1 auto;
  min-height: 0;
}

.p-support-plan__tree-col > .p-support-plan__card > .p-support-plan__card-body {
  flex: 1 1 auto;
  min-height: 0;
}

.p-support-plan__tree-drop {
  display: block;
  flex-shrink: 0;
  align-self: center;
  width: 1px;
  height: 2.5rem;
  margin: 0;
  padding: 0;
  border: none;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-support-plan__tree-drop {
    display: none;
  }
}

.p-support-plan__card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: stretch;
  width: 100%;
}

.p-support-plan__card-head {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.5rem 1rem;
  background-color: #fffdf9;
  color: var(--color-primary);
  font-family: var(--ff-base);
  font-size: 0.9375rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
  text-align: center;
}

.p-support-plan__card-body {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid var(--color-white);
  background-color: rgba(0, 60, 91, 0.5);
}
@media screen and (max-width: 767px) {
  .p-support-plan__card-body {
    padding: 1rem;
  }
}

.p-support-plan__card-text {
  margin: 0;
  color: var(--color-white);
  font-family: var(--ff-base);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.75;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-support-plan__card-text {
    font-size: 0.875rem;
  }
}

/**
 * サンクスページ（お問い合わせ完了）Figma 74-1253 準拠
 */
.p-thanks {
  padding-block: 1.5rem 10rem;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-thanks {
    padding-block: 1.5rem 5rem;
  }
}

.p-thanks__breadcrumb {
  padding-block-end: 10rem;
}
@media screen and (max-width: 767px) {
  .p-thanks__breadcrumb {
    padding-block-end: 4rem;
  }
}

.p-thanks__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.p-thanks__inner {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
}

.p-thanks__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.p-thanks__title {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-mincho);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-thanks__title {
    font-size: 1.5rem;
    line-height: 1.33;
  }
}

.p-thanks__text {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-base);
  font-size: 0.9375rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
}
.p-thanks__text p {
  margin: 0 0 1em;
}
.p-thanks__text p:last-child {
  margin-block-end: 0;
}

.p-thanks__action {
  margin: 0;
}

.p-thanks__button {
  display: inline-block;
  padding: 1rem 1.5rem;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-family: var(--ff-base);
  font-size: 0.9375rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media (any-hover: hover) {
  .p-thanks__button:hover {
    opacity: 0.9;
  }
}

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

.p-top-case__content {
  padding: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .p-top-case__content {
    padding: 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-case__content {
    padding: 0;
  }
}

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

.p-top-case__item {
  padding-block-end: 1rem;
  border-block-end: 1px solid var(--color-text);
}

.p-top-case__item-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media (any-hover: hover) {
  .p-top-case__item-link:hover {
    opacity: 0.85;
  }
}

.p-top-case__item-tag {
  display: inline-block;
  padding: 0.25rem 1.5rem;
  background-color: var(--color-primary);
  color: var(--color-white, #fff);
  font-family: var(--ff-base);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-top-case__item-tag {
    padding: 0.125rem 1rem;
    font-size: 0.875rem;
  }
}

.p-top-case__item-title {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-family: var(--ff-mincho);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .p-top-case__item-title {
    font-size: 1.125rem;
  }
}

.p-top-case__item-desc {
  margin-block-start: 0.5rem;
  color: var(--color-text);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .p-top-case__item-desc {
    font-size: 0.875rem;
  }
}

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

.p-top-column__content {
  padding: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .p-top-column__content {
    padding: 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-column__content {
    padding: 0;
  }
}

.p-top-column__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-block-start: 3.375rem;
}
@media screen and (max-width: 767px) {
  .p-top-column__list {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-block-start: 2rem;
  }
}

.p-top-column__item {
  padding-block-end: 1rem;
  border-block-end: 1px solid var(--color-text);
}

.p-top-column__item-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media (any-hover: hover) {
  .p-top-column__item-link:hover {
    opacity: 0.85;
  }
}

.p-top-column__item-tag {
  display: inline-block;
  padding: 0.25rem 1.5rem;
  background-color: var(--color-primary);
  color: var(--color-white, #fff);
  font-family: var(--ff-base);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-top-column__item-tag {
    padding: 0.125rem 1rem;
    font-size: 0.875rem;
  }
}

.p-top-column__item-title {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-family: var(--ff-mincho);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .p-top-column__item-title {
    font-size: 1.125rem;
  }
}

.p-top-column__item-desc {
  margin-block-start: 0.5rem;
  color: var(--color-text);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .p-top-column__item-desc {
    font-size: 0.875rem;
  }
}

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

.p-top-feature__content {
  padding: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .p-top-feature__content {
    padding: 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-feature__content {
    padding: 0;
  }
}

.p-top-feature__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-feature__list {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.p-top-feature__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-feature__item {
    gap: 0.5rem;
  }
}

.p-top-feature__item-img {
  width: 100%;
  aspect-ratio: 507/188;
  overflow: hidden;
  filter: saturate(0.85) contrast(0.95);
}
.p-top-feature__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top-feature__item-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.p-top-feature__item-number {
  color: var(--color-accent);
  font-family: var(--ff-en);
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
}

.p-top-feature__item-title {
  color: var(--color-primary);
  font-family: var(--ff-mincho);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.33;
}
@media screen and (max-width: 767px) {
  .p-top-feature__item-title {
    font-size: 1.25rem;
  }
}

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

.p-top-news__content {
  display: grid;
  grid-template-columns: 25rem 1fr;
  align-items: start;
  gap: 3.375rem;
  padding: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0;
  }
}

.p-top-news__list {
  display: flex;
  flex-direction: column;
  gap: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__list {
    gap: 1rem;
  }
}

.p-top-news__item {
  padding-block-end: 0.5rem;
  border-block-end: 1px solid var(--color-text);
}

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

.p-top-news__item-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.p-top-news__item-date {
  color: var(--color-text);
  font-family: var(--ff-en);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.33;
}
@media screen and (max-width: 767px) {
  .p-top-news__item-date {
    font-size: 1rem;
  }
}

.p-top-news__item-tag {
  display: inline-block;
  padding: 0.25rem 1.5rem;
  background-color: var(--color-primary);
  color: var(--white, #fff);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-top-news__item-tag {
    padding: 0.125rem 1rem;
    font-size: 0.875rem;
  }
}

.p-top-news__item-desc {
  margin-block-start: 0.5rem;
  color: var(--color-text);
  font-family: var(--ff-mincho);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .p-top-news__item-desc {
    font-size: 1rem;
  }
}

.p-top-news__item:last-child .p-top-news__item-desc {
  margin-block-end: 0;
}

.p-top-services {
  padding-block: 5rem;
  background-color: var(--color-base);
  background: url("../images/bg_services.webp") no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-top-services {
    padding-block: 3.75rem;
  }
}

.p-top-services__content {
  display: flex;
  flex-direction: column;
  gap: 3.375rem;
  padding: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .p-top-services__content {
    padding: 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-services__content {
    gap: 1.5rem;
    padding: 0;
  }
}

.p-top-services__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-top-services__list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.p-top-services__item {
  margin: 0;
  padding: 0.625rem;
}

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

.p-top-services__card-head {
  display: flex;
  flex-direction: column;
}

.p-top-services__card-title-en {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-en);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: normal;
}

.p-top-services__card-title-ja {
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-mincho);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.33;
}
@media screen and (max-width: 767px) {
  .p-top-services__card-title-ja {
    font-size: 1.25rem;
  }
}

.p-top-services__card-body {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 1rem;
  margin-block-start: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-services__card-body {
    grid-template-columns: 1fr;
  }
}

.p-top-services__card-image {
  position: relative;
  width: 32.75rem;
  aspect-ratio: 524/295;
  overflow: hidden;
  filter: saturate(0.85) contrast(0.95);
}
@media screen and (max-width: 1023px) {
  .p-top-services__card-image {
    width: 22.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-services__card-image {
    width: 100%;
    margin-inline: auto;
    max-width: 25rem;
  }
}
.p-top-services__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top-services__card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 1.25rem;
}

.p-top-services__card-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-top-services__card-list li {
  position: relative;
  color: var(--color-text);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
}
.p-top-services__card-list li::before {
  content: "・";
}
.p-top-services__card-list li:last-child {
  margin-block-end: 0;
}

.p-top-services__card-more {
  margin-block-start: auto;
}

.p-under-fv {
  padding-block: 2.5rem;
}

.p-under-fv__inner {
  max-width: 106.25rem;
}

.p-under-fv__title {
  display: grid;
  justify-items: center;
  text-align: center;
  justify-items: start;
  text-align: left;
}

.p-under-fv__sub {
  position: relative;
  padding-inline-start: 1.25rem;
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .p-under-fv__sub {
    font-size: 1.125rem;
  }
}
.p-under-fv__sub::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-primary);
  transform: translateY(-50%);
}

.p-under-fv__main {
  color: var(--color-text);
  font-family: var(--ff-mincho);
  font-size: 3.125rem;
  font-weight: 400;
  line-height: 1.38;
}
@media screen and (max-width: 767px) {
  .p-under-fv__main {
    font-size: 1.5rem;
  }
}

.p-who {
  position: relative;
  padding-block: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-who {
    padding-block: 3.75rem;
  }
}
.p-who::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(../images/bg_who.webp) no-repeat center center/cover;
}

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

.p-who__content {
  flex: 1;
  padding: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-who__content {
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .p-who__title {
    order: 1;
  }
}

.p-who__lead {
  margin-block-start: 1.5rem;
  color: var(--black, #151515);
  font-family: var(--ff-mincho);
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.375;
}
@media screen and (max-width: 767px) {
  .p-who__lead {
    order: 2;
    margin-block-start: -0.25rem;
    font-size: 1.5rem;
  }
}

.p-who__lead-text {
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-who__lead-text {
    order: 4;
    margin-block-start: 0;
  }
}

.p-who__action {
  margin-block-start: 3.375rem;
  display: flex;
  gap: 0.625rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-who__action {
    order: 5;
    margin-block-start: 0.75rem;
  }
}

.p-who__image {
  width: min(100%, 51.25rem);
  aspect-ratio: 820/594;
}
@media screen and (max-width: 1023px) {
  .p-who__image {
    width: min(100%, 35rem);
  }
}
@media screen and (max-width: 767px) {
  .p-who__image {
    order: 3;
  }
}
.p-who__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.u-bold {
  font-weight: 700;
}

.u-background-gradient {
  background: linear-gradient(340deg, #00113f 34.61%, #a6e0ff 90%, #ffffff 100%);
}

.u-background-gradient .p-under-mv__waves-parallax > use {
  fill: #cdecfc;
}
.u-background-gradient .p-cta__waves-parallax > use {
  fill: #00113f;
}
@media (any-hover: hover) {
  .u-background-gradient .p-page-nav__link:hover {
    color: var(--color-orange);
  }
}
.u-background-gradient .p-single-products__product {
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .u-background-gradient .p-single-products__product {
    padding-inline: 1.25rem;
  }
}
.u-background-gradient .p-single-products__product-inner {
  padding-block: 2.5rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .u-background-gradient .p-single-products__product-inner {
    padding-block: 1.25rem;
  }
}