@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: #1d1d1d;
  --color-text: #fff;
  --color-white: #fff;
  --color-black: #000;
  --color-gray: #636363;
  --color-accent: #e41885;
  --color-primary: #003b94;
  --color-secondary: #2f2f2f;
  --color-orange: #de8430;
  /* font-family */
  --ff-base: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  --ff-en: "Oswald", sans-serif;
  --to-rem: calc(tan(atan2(1px, var(--root-font-size))) * 1rem);
  /* transition duration */
  --duration: 0.3s;
  /* header height */
  --header-height: 146px;
}
@media screen and (width <= 1023px) {
  :root {
    --header-height: 60px;
  }
}

/*! kiso.css v1.2.4 | MIT License | https://github.com/tak-dcxi/kiso.css */
/* ======================================================
//  MARK: Universal
// ====================================================== */
*,
::before,
::after {
  /*
  * Includes `padding` and `border` in the element's specified dimensions.
  * It is highly recommended to set `box-sizing: border-box;` by default, as it makes styling much easier, especially when specifying `width: 100%;`.
  */
  box-sizing: border-box;
}

/* ======================================================
//  MARK: Document and Body Elements
// ====================================================== */
:where(:root) {
  /* In Safari, if `font-family` is not specified, a serif font is applied by default, so `sans-serif` is set as the default here. */
  font-family: sans-serif;
  /*
  * For accessibility, it is recommended to set the `line-height` to at least 1.5 times the text size within paragraphs.
  * @see https://waic.jp/translations/WCAG21/#visual-presentation
  */
  line-height: 1.5;
  /* Remove space when punctuation marks are adjacent, and also remove leading spaces in a line. */
  text-spacing-trim: trim-start;
  /* Improves readability by inserting a small space between Japanese and alphanumeric characters. */
  text-autospace: normal;
  /* Prevents misreading by applying strict line-breaking rules. */
  line-break: strict;
  /* Wraps English words mid-word. Specifying `anywhere` also prevents content from overflowing in layouts like `flex` or `grid`. */
  overflow-wrap: anywhere;
  /*
  * Mobile browsers have an algorithm that automatically adjusts font sizes to prevent text from becoming too small.
  * This controls the auto-adjustment feature to prevent unwanted resizing.
  */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /*
  * Prevents layout shift caused by the appearance or disappearance of the scrollbar.
  * Starting with Chrome 145, specifying `scrollbar-gutter: stable` will cause vw to be calculated without considering the scrollbar, which will also prevent horizontal scrolling.
  */
  scrollbar-gutter: stable;
  /* Suppresses the tap highlight on iOS. */
  -webkit-tap-highlight-color: transparent;
}

:where(body) {
  /*
  * When creating a sticky footer, a minimum height is often required.
  * Setting the `min-block-size` to the dynamic viewport height ensures enough space for the footer.
  */
  min-block-size: 100dvb;
  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}

/* ======================================================
// MARK: Sections
// ------------------------------------------------------ */
:where(:is(h1, h2, h3, h4, h5, h6):lang(en)) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}

:where(h1) {
  /*
  * Adjusts user agent (UA) styles for `h1` elements within sectioning content.
  * This addresses DevTools warnings that appear when `h1` elements nested within sectioning content lack `font-size` and `margin` properties.
  * @see https://html.spec.whatwg.org/#sections-and-headings
  */
  margin-block: 0.67em;
  font-size: 2em;
}

:where(h2, h3, h4, h5, h6) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}

:where(search) {
  /*
  * The `<search>` element is supported from Safari 17.
  * This prevents it from being displayed as an inline element in unsupported environments.
  */
  display: block flow;
}

/* ======================================================
//  MARK: Grouping content
// ====================================================== */
:where(p, blockquote, figure, pre, address, ul, ol, dl, menu) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}

:where(blockquote, figure) {
  /* The `margin-inline` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline: unset;
}

:where(p:lang(en)) {
  /*
  * In English, a single word on the last line is called a "widow" or "orphan" and is considered something to avoid as it makes the text harder to read.
  * Therefore, when lang="en", this prevents the last line from ending with a single word.
  */
  text-wrap: pretty;
}

:where(address:lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

:where(ul, ol, menu) {
  /* The `padding-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  padding-inline-start: unset;
  /*
  * In Safari, using `list-style: none` prevents screen readers from announcing lists.
  * `list-style-type: ""` is used to hide markers without affecting accessibility.
  * @see https://matuzo.at/blog/2023/removing-list-styles-without-affecting-semantics
  */
  list-style-type: "";
}

:where(dt) {
  /* It is common to display `<dt>` elements in bold, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

:where(dd) {
  /* The `margin-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline-start: unset;
}

:where(pre) {
  /*
  * Since `text-spacing-trim` can affect spacing in `<pre>` elements even with its initial value, the final rendering may depend on the user's font settings.
  * To ensure consistent alignment, `space-all` is explicitly specified and inheritance is prevented.
  */
  text-spacing-trim: space-all;
  /* Set to `no-autospace` as it can cause misalignment with monospaced fonts. */
  text-autospace: no-autospace;
}

@media print {
  :where(pre) {
    /* Prevent text wrapping in print media. */
    text-wrap-mode: unset;
  }
}
/* ======================================================
//  MARK: Text-level semantics
// ====================================================== */
:where(em:lang(ja)) {
  /* In Japanese, emphasis is commonly represented by bold text, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

:where(:is(i, cite, em, dfn):lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

:where(u, s, del, ins) {
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}

:where(code, kbd, samp) {
  /*
  * Set a monospace font family referencing Tailwind.
  * @see https://tailwindcss.com/docs/font-family
  */
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* Font feature settings can have adverse effects on monospaced fonts, so their values are explicitly set to `initial` to prevent inheritance. */
  font-feature-settings: initial;
  font-variation-settings: initial;
  /* Resets the `font-size` specified in the UA stylesheet to allow inheritance. */
  font-size: unset;
  /*
  * Disables font ligatures for programming fonts (like Fira Code)
  * to prevent character combinations like `=>` from being rendered as a single symbol (e.g., `⇒`).
  */
  font-variant-ligatures: none;
}

:where(abbr[title]) {
  /*
  * The `<abbr>` element with the `title` attribute isn't helpful regarding accessibility because support is inconsistent, and it's only accessible to some users.
  * This rule shows a dotted underline on abbreviations in all browsers (there's a bug in Safari) and changes the cursor.
  * @see https://adrianroselli.com/2024/01/using-abbr-element-with-title-attribute.html
  */
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-inset: auto;
  cursor: help;
}

:where(time) {
  /* Set to `no-autospace` because date notations in typography do not include spaces. */
  text-autospace: no-autospace;
}

@media (forced-colors: active) {
  :where(mark) {
    /*
    * In forced-colors mode, the color of the mark element may not change, which can be problematic. Use system colors in forced-colors mode.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkWHCM
    */
    background-color: Highlight;
    color: HighlightText;
  }
}
@media print {
  :where(mark) {
    /*
    * Not all printers support color, and users might print in grayscale.
    * It's worth adding a non-disruptive style that scales with the text, as an alternative to relying only on background color.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkPrint
    */
    border-width: 1px;
    border-style: dotted;
  }
}
/* ======================================================
//  MARK: Links
// ====================================================== */
:where(a) {
  /*
  * The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance.
  * In Firefox on iOS, the user agent stylesheet’s text color is applied even when the text is not a link.
  * @see https://github.com/darkreader/darkreader/issues/9836
  */
  color: unset;
}

:where(a:any-link) {
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}

/* ======================================================
//  MARK: Embedded content
// ====================================================== */
:where(img, svg, picture, video, audio, canvas, model, iframe, embed, object) {
  /* Prevents overflow by setting the maximum width to `100%`. */
  max-inline-size: 100%;
  /* Prevents extra space from appearing at the bottom of the element. */
  vertical-align: bottom;
}

:where(img, svg, picture, video, canvas, model, iframe, embed, object) {
  /*
  * Automatically adjust block size based on content.
  * Exclude the <audio> element as it disappears when block-size is auto.
  * @see https://github.com/tak-dcxi/kiso.css/issues/5
  */
  block-size: auto;
}

:where(iframe) {
  /* The `border` specified in the UA stylesheet is often unnecessary, so it is reset. */
  border: unset;
}

/* ======================================================
//  MARK: Tabular data
// ====================================================== */
:where(table) {
  /* Collapse borders for a more refined table design. */
  border-collapse: collapse;
}

:where(caption, th) {
  /* The `text-align` specified in the UA stylesheet is often unnecessary, so it is reset. */
  text-align: unset;
}

:where(caption:lang(en)) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}

/* ======================================================
//  MARK: Forms
// ====================================================== */
:where(button, input, select, textarea),
::file-selector-button {
  /*
  * These elements are often styled with a border, so a `1px` border is applied by default for consistency.
  * This ensures readability even for unstyled elements.
  * When resetting, it's recommended to use `border-color: transparent` instead of `border: none` to account for forced color modes.
  */
  border-width: 1px;
  border-style: solid;
  /* These styles specified in the UA stylesheet are often unnecessary, so they are reset to allow for inheritance. */
  border-color: unset;
  border-radius: unset;
  color: unset;
  font: unset;
  letter-spacing: unset;
  text-align: unset;
}

:where(input:is([type=radio i], [type=checkbox i])) {
  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}

:where(input[type=file i]) {
  /* The `border` is often unnecessary, so it is reset here. */
  border: unset;
}

:where(input[type=search i]) {
  /* Remove the rounded corners of search inputs on macOS and normalize the background color. */
  -webkit-appearance: textfield;
}

@supports (-webkit-touch-callout: none) {
  :where(input[type=search i]) {
    /* normalize the background color on iOS. */
    background-color: Canvas;
  }
}
:where(input:is([type=tel i],
[type=url i],
[type=email i],
[type=number i]):not(:placeholder-shown)) {
  /*
  * Certain input types need to maintain left alignment even in right-to-left (RTL) languages.
  * However, this only applies when the value is not empty, as the placeholder should be right-aligned.
  * @see https://rtlstyling.com/posts/rtl-styling#form-inputs
  */
  direction: ltr;
}

:where(textarea) {
  /* The `margin-block` specified in Firefox's UA stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
  /* Allows vertical resizing for `<textarea>` elements. */
  resize: block;
}

:where(input:not([type=button i], [type=submit i], [type=reset i]),
textarea,
[contenteditable]) {
  /* Set to `no-autospace` because `text-autospace` can insert spaces during input, potentially causing erratic behavior. */
  text-autospace: no-autospace;
}

:where(button,
input:is([type=button i], [type=submit i], [type=reset i])),
::file-selector-button {
  /* The `background-color` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  background-color: unset;
}

:where(button,
input:is([type=button i], [type=submit i], [type=reset i]),
[role=tab i],
[role=button i],
[role=option i]),
::file-selector-button {
  /*
  * On iOS, double-tapping a button can cause zooming, which harms usability.
  * `touch-action: manipulation` is specified to disable zooming on double-tap.
  * Third-party plugins such as Swiper sometimes use div elements with these roles as buttons, since double-tapping a div can still trigger zooming, it's advisable to specify this property.
  */
  touch-action: manipulation;
}

:where(button:enabled,
label[for],
select:enabled,
input:is([type=button i],
[type=submit i],
[type=reset i],
[type=radio i],
[type=checkbox i]):enabled,
[role=tab i],
[role=button i],
[role=option i]),
:where(:enabled)::file-selector-button {
  /* Indicate clickable elements with a pointer cursor. */
  cursor: pointer;
}

:where(fieldset) {
  /*
  * Prevent fieldset from causing overflow.
  * Reset the default `min-inline-size: min-content` to prevent children from stretching fieldset.
  * @see https://github.com/twbs/bootstrap/issues/12359
  */
  min-inline-size: 0;
  /* The following default styles are often unnecessary, so they are reset. */
  margin-inline: unset;
  padding: unset;
  border: unset;
}

:where(legend) {
  /* The default `padding-inline` is often unnecessary, so it is reset. */
  padding-inline: unset;
}

:where(progress) {
  /* Resets the vertical alignment of the `<progress>` element to its initial value. */
  vertical-align: unset;
}

::placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}

/* ======================================================
//  MARK: Interactive elements
// ====================================================== */
:where(summary) {
  /* The default triangle marker is often unnecessary, so it is disabled. */
  list-style-type: "";
  /* Changing the cursor to a pointer clarifies the clickability of the element. */
  cursor: pointer;
}

:where(summary)::-webkit-details-marker {
  /* In Safari versions earlier than 18.4 (released in April 2025), a triangle icon is displayed using the -webkit-details-marker CSS pseudo-element, so it should be removed. */
  display: none;
}

:where(dialog, [popover]) {
  /*
  * When these fixed-position elements are scrolled, preventing scroll chaining on the underlying page and bounce effects on mobile improves usability.
  * Disabling block-direction scroll chaining is recommended.
  */
  overscroll-behavior-block: contain;
  /* The following default styles are often unnecessary, so they are reset. */
  padding: unset;
  border: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  /*
  * These elements can be easily displayed by explicitly setting their `display` property.
  * To prevent them from appearing when not in an open state, they are forcibly hidden.
  */
  display: none !important;
}

:where(dialog) {
  /*
  * The max width and height of a `<dialog>` element are typically determined by the design.
  * These UA stylesheet properties are reset as they can be obstructive, especially when trying to make the dialog full-screen.
  */
  max-inline-size: unset;
  max-block-size: unset;
}

:where(dialog)::backdrop {
  /* Normalize the background color of the `::backdrop` element. */
  background-color: oklch(0% 0 0deg/30%);
}

:where([popover]) {
  /*
  * While the UA stylesheet's `margin` for `<dialog>` elements is useful for centering with `inset: 0`,
  * but `margin` for `popover` elements is often obstructive as they frequently use Anchor Positioning.
  */
  margin: unset;
}

/* ======================================================
//  MARK: Focus Styles
// ====================================================== */
:where(:focus-visible) {
  /* Add space between the content and the focus outline. */
  outline-offset: 3px;
}

[tabindex="-1"]:focus {
  /* Prevent programmatically focused elements from displaying an outline unless they are naturally focusable. */
  outline: none !important;
}

/* ======================================================
//  MARK: Misc
// ====================================================== */
:where(:disabled, [aria-disabled=true i]) {
  /* Display the default cursor on disabled elements to reflect their non-interactive state. */
  cursor: default;
}

[hidden]:not([hidden=until-found i]) {
  /* Ensure that elements intended to be hidden are not displayed, improving clarity and layout control. */
  display: none !important;
}

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

:where(p) {
  margin: 0;
}

html {
  font-size: 100%;
}

:target {
  scroll-margin-block-start: var(--header-height);
}

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[type=text] {
  font-size: 1rem;
  /* = 16px */
}

input,
textarea,
select {
  font: inherit;
}

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

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

textarea {
  field-sizing: content;
}

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

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

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

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

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

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

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

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

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(100%, 18.75rem);
  min-height: 3.75rem;
  padding: 0.75rem 0.9375rem 0.75rem 1.125rem;
  border: 1px solid transparent;
  background-color: var(--color-white);
  color: var(--color-base);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  transition: background-color var(--duration), border-color var(--duration), color var(--duration);
}
@media screen and (max-width: 767px) {
  .c-button {
    width: 100%;
    min-height: 3.125rem;
    font-size: 0.875rem;
  }
}
.c-button::after {
  content: "";
  flex-shrink: 0;
  width: 1.625rem;
  height: 1px;
  background-color: var(--color-base);
  transition: background-color var(--duration), translate var(--duration);
}
@media (any-hover: hover) {
  .c-button:hover {
    opacity: 1;
  }
  .c-button:hover::after {
    translate: 0.5rem 0;
  }
}
.c-button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 0.25rem;
}

.c-button--outline {
  border-color: var(--color-white);
  background-color: transparent;
  color: var(--color-white);
}
.c-button--outline::after {
  background-color: currentColor;
}
@media (any-hover: hover) {
  .c-button--outline:hover {
    background-color: var(--color-white);
    color: var(--color-base);
  }
  .c-button--outline:hover::after {
    background-color: var(--color-base);
  }
}
.c-button--outline:focus-visible {
  outline-color: var(--color-white);
}

.c-button--filled {
  border-color: transparent;
  color: var(--color-white);
}
.c-button--filled::after {
  background-color: var(--color-white);
}
.c-button--filled[data-color=blue] {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}
.c-button--filled[data-color=pink] {
  border-color: var(--color-accent);
  background-color: var(--color-accent);
}
@media (any-hover: hover) {
  .c-button--filled[data-color=blue]:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
  }
  .c-button--filled[data-color=blue]:hover::after {
    background-color: var(--color-primary);
  }
  .c-button--filled[data-color=pink]:hover {
    background-color: var(--color-white);
    color: var(--color-accent);
  }
  .c-button--filled[data-color=pink]:hover::after {
    background-color: var(--color-accent);
  }
}

@media (any-hover: hover) {
  .c-button:not(.c-button--filled):not(.c-button--outline)[data-color=blue]:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
  }
  .c-button:not(.c-button--filled):not(.c-button--outline)[data-color=blue]:hover::after {
    background-color: var(--color-white);
  }
}

@media (any-hover: hover) {
  .c-button:not(.c-button--filled):not(.c-button--outline)[data-color=pink]:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
  }
  .c-button:not(.c-button--filled):not(.c-button--outline)[data-color=pink]:hover::after {
    background-color: var(--color-white);
  }
}

@media (any-hover: hover) {
  .c-button--outline[data-color=blue]:hover {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: var(--color-white);
  }
  .c-button--outline[data-color=blue]:hover::after {
    background-color: var(--color-white);
  }
}

@media (any-hover: hover) {
  .c-button--outline[data-color=pink]:hover {
    border-color: var(--color-accent);
    background-color: var(--color-accent);
    color: var(--color-white);
  }
  .c-button--outline[data-color=pink]:hover::after {
    background-color: var(--color-white);
  }
}

.c-home-title {
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: fit-content;
  opacity: 0;
  color: var(--color-white);
  font-family: var(--ff-en);
  font-size: clamp(4.5rem, 1.11rem + 7.06vw, 5.625rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-home-title {
    font-size: 2.5rem;
  }
}
.c-home-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--color-text);
}
.c-home-title__text {
  position: relative;
  z-index: 1;
  display: block;
  opacity: 0;
}
.c-home-title.is-animated {
  animation: c-home-title-base 1s forwards;
}
.c-home-title.is-animated::before {
  animation: c-home-title-bg-lr 1s forwards;
}
.c-home-title.is-animated .c-home-title__text {
  animation: c-home-title-appear 1s 0.6s forwards;
}

@keyframes c-home-title-base {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes c-home-title-bg-lr {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.01% {
    transform-origin: right;
    transform: scaleX(1);
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
@keyframes c-home-title-appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .c-home-title {
    opacity: 1;
  }
  .c-home-title::before {
    display: none;
  }
  .c-home-title__text {
    opacity: 1;
  }
  .c-home-title.is-animated {
    animation: none;
  }
  .c-home-title.is-animated .c-home-title__text {
    animation: none;
  }
}
.c-modal {
  position: fixed;
  inset: 0;
  width: min(100%, 59.5rem);
  max-height: 88vh;
  margin: auto;
  padding: 0;
  border: none;
  background-color: transparent;
  opacity: 0;
  transition: opacity var(--duration) ease-in-out;
  overflow: visible;
  z-index: var(--z-index-modal);
}
@media screen and (max-width: 767px) {
  .c-modal {
    width: min(92%, 30rem);
  }
}
.c-modal.is-show {
  opacity: 1;
}
.c-modal::backdrop {
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.6);
  transition: opacity var(--duration) ease-in-out, background-color var(--duration) ease-in-out;
}
.c-modal.is-show::backdrop {
  opacity: 1;
}

.c-modal__panel {
  position: relative;
  width: 100%;
  max-height: inherit;
  overflow: auto;
  background-color: var(--color-secondary);
}

.c-modal__close {
  display: grid;
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  z-index: 1;
  place-items: center;
  width: 2.125rem;
  height: 2.125rem;
  border: 0.0625rem solid #e0e0e0;
  border-radius: 50%;
  background-color: #f0f0f0;
  color: #888888;
  font-size: 0.8125rem;
  line-height: 1;
  cursor: pointer;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .c-modal__close {
    top: 0.625rem;
    right: 0.625rem;
    width: 1.875rem;
    height: 1.875rem;
    font-size: 0.75rem;
  }
}
@media (any-hover: hover) {
  .c-modal__close:hover {
    opacity: 0.7;
  }
}
.c-modal__close:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 0.125rem;
}

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

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

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

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

.c-pagination__item[data-state=prev],
.c-pagination__item[data-state=next],
.c-pagination__item[data-state=disabled] {
  min-width: auto;
  padding-inline: 0.5rem;
  border-color: transparent;
  background-color: transparent;
}
@media (any-hover: hover) {
  .c-pagination__item[data-state=prev]:hover,
  .c-pagination__item[data-state=next]:hover,
  .c-pagination__item[data-state=disabled]:hover {
    border-color: transparent;
    background-color: transparent;
    color: var(--_pagination-text);
  }
}

.c-pagination__arrow {
  display: block;
  flex-shrink: 0;
  width: 2.3125rem;
  height: 0.375rem;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 37.61 6.41'%3E%3Cpolyline fill='none' stroke='%23000' stroke-width='1' points='0 5.91 36 5.91 28 .41'/%3E%3C/svg%3E");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 37.61 6.41'%3E%3Cpolyline fill='none' stroke='%23000' stroke-width='1' points='0 5.91 36 5.91 28 .41'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  transition: translate var(--duration);
}

.c-pagination__item[data-state=prev] .c-pagination__arrow {
  scale: -1 1;
}

@media (any-hover: hover) {
  .c-pagination__item[data-state=next]:hover .c-pagination__arrow {
    translate: 0.5rem 0;
  }
  .c-pagination__item[data-state=prev]:hover .c-pagination__arrow {
    translate: -0.5rem 0;
  }
}
.c-pagination__item[data-state=disabled] {
  opacity: 0.6;
  cursor: default;
}

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

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

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

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

.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-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-company-awards {
  padding-block: 5rem;
  background-color: var(--color-base);
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-company-awards {
    padding-block: 2.5rem 3.75rem;
  }
}

.p-company-awards__title-head {
  display: grid;
  justify-items: start;
}

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

.p-company-awards__title-divider {
  width: 2.25rem;
  height: 0.0625rem;
  margin-block-start: 1.5rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-company-awards__title-divider {
    width: 3.75rem;
    margin-block-start: 1rem;
  }
}

.p-company-awards__groups {
  display: grid;
  gap: 1.5rem;
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-company-awards__groups {
    gap: 1.5rem;
    margin-block-start: 1.5rem;
  }
}

.p-company-awards__group {
  display: grid;
  gap: 1.5rem;
  padding-block-start: 2rem;
  border-block-start: 0.0625rem solid #484848;
}
@media screen and (max-width: 767px) {
  .p-company-awards__group {
    gap: 1rem;
    padding-block-start: 1.5rem;
  }
}
.p-company-awards__group:first-child {
  border-block-start: none;
  padding-block-start: 0;
}

.p-company-awards__year {
  margin: 0;
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-company-awards__year {
    font-size: 1.25rem;
  }
}

.p-company-awards__list {
  display: grid;
}

.p-company-awards__item {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.85;
  text-indent: hanging 1em;
}
.p-company-awards__item::before {
  content: "・";
}
@media screen and (max-width: 767px) {
  .p-company-awards__item {
    font-size: 0.875rem;
    line-height: 1.71;
  }
}

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

.p-company-history__title-head {
  display: grid;
  justify-items: start;
}

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

.p-company-history__title-divider {
  width: 2.25rem;
  height: 0.0625rem;
  margin-block-start: 1.5rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-company-history__title-divider {
    width: 3.75rem;
    margin-block-start: 1rem;
  }
}

.p-company-history__timeline {
  display: grid;
  gap: 1.5rem;
  position: relative;
  margin-block-start: 2.5rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-company-history__timeline {
    gap: 1.5rem;
    margin-block-start: 1.5rem;
  }
}

.p-company-history__timeline::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 9.09375rem;
  translate: -50% 0;
  width: 0.0625rem;
  height: calc(100% - 0.5rem - 0.75rem);
  background-color: #999;
}
@media screen and (max-width: 767px) {
  .p-company-history__timeline::before {
    left: 6.78125rem;
    height: calc(100% - 0.375rem - 2.5rem);
  }
}

.p-company-history__timeline-item {
  display: grid;
  grid-template-columns: 6.875rem 0.6875rem minmax(0, 1fr);
  column-gap: 1.875rem;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .p-company-history__timeline-item {
    grid-template-columns: 5.5rem 0.5625rem minmax(0, 1fr);
    column-gap: 1rem;
  }
}

.p-company-history__date {
  grid-column: 1;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: right;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-company-history__date {
    font-size: 0.75rem;
  }
}

.p-company-history__marker {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 0.6875rem;
  height: 0.6875rem;
  margin-block-start: 0.5rem;
  border-radius: 50%;
  background-color: #999;
}
@media screen and (max-width: 767px) {
  .p-company-history__marker {
    width: 0.5625rem;
    height: 0.5625rem;
    margin-block-start: 0.375rem;
  }
}

.p-company-history__body {
  grid-column: 3;
  min-width: 0;
}

.p-company-history__item-title {
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.85;
}
@media screen and (max-width: 767px) {
  .p-company-history__item-title {
    font-size: 0.875rem;
    line-height: 1.71;
  }
}

.p-company-history__item-text {
  margin: 0.25rem 0 0;
  color: #b0b0b0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.85;
}
@media screen and (max-width: 767px) {
  .p-company-history__item-text {
    font-size: 0.8125rem;
    line-height: 1.71;
  }
}

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

.p-company-lead__intro {
  display: grid;
  gap: 0;
  color: var(--color-white);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.944;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-company-lead__intro {
    font-size: 0.875rem;
    line-height: 1.78;
    text-align: left;
  }
}

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

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

.p-company-lead__nav-item {
  display: flex;
  min-width: 0;
}

.p-company-lead__nav-button {
  display: flex;
  position: relative;
  flex: 1;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 5rem;
  padding: 1rem 1.5rem 1rem 1.25rem;
  border: 0.0625rem solid var(--color-white);
  background-color: var(--color-white);
  color: var(--color-base);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375;
  text-align: center;
  text-decoration: none;
  transition: border-color var(--duration), color var(--duration), background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-company-lead__nav-button {
    min-height: 3.125rem;
    padding: 0.125rem 1rem 0.125rem 1rem;
    font-size: 0.875rem;
  }
}
.p-company-lead__nav-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0.669375rem;
  height: 0.37875rem;
  translate: 0 -50%;
  background-color: var(--color-base);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10.71 6.06' fill='none' stroke='currentColor' stroke-miterlimit='10'%3E%3Cpolyline points='10.35 .35 5.35 5.35 .35 .35' /%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition: background-color var(--duration);
}
@media (any-hover: hover) {
  .p-company-lead__nav-button:hover {
    opacity: 1;
    background-color: var(--color-base);
    color: var(--color-white);
  }
  .p-company-lead__nav-button:hover::after {
    background-color: var(--color-white);
  }
}
.p-company-lead__nav-button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 0.125rem;
}

.p-company-lead__nav-button-text {
  display: block;
  width: 100%;
  text-align: center;
}

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

.p-company-profile__title-head {
  display: grid;
  justify-items: start;
}

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

.p-company-profile__title-divider {
  width: 2.25rem;
  height: 0.0625rem;
  margin-block-start: 1.5rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-company-profile__title-divider {
    width: 3.75rem;
    margin-block-start: 1rem;
  }
}

.p-company__profile {
  display: grid;
  gap: 0.75rem;
  margin: 1.875rem auto 0;
  margin-block-start: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-company__profile {
    gap: 0.625rem;
    margin-block-start: 1.5rem;
  }
}

.p-company__profile-row {
  display: grid;
  grid-template-columns: minmax(0, 12rem) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  background-color: var(--color-secondary);
}
@media screen and (max-width: 767px) {
  .p-company__profile-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

.p-company__profile-label {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0.75rem 1.9375rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .p-company__profile-label {
    padding: 1rem 1.25rem 0.75rem;
    border-inline-end: none;
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.p-company__profile-label::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 100%;
  translate: 0 -50%;
  width: 0.0625rem;
  height: calc(100% - 1.5rem);
  background-color: #6e6e6e;
}
@media screen and (max-width: 767px) {
  .p-company__profile-label::before {
    top: 100%;
    left: 0.75rem;
    width: calc(100% - 1.5rem);
    height: 0.0625rem;
  }
}

.p-company__profile-row::before {
  content: none;
}

.p-company__profile-value {
  margin: 0;
  min-width: 0;
  padding: 0.75rem 1.9375rem;
}
@media screen and (max-width: 767px) {
  .p-company__profile-value {
    padding: 0.75rem 1.25rem 1rem;
  }
}

.p-company__profile-row > .p-company__profile-label + .p-company__profile-value::before {
  content: none;
}

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

.p-company__profile-blocks {
  display: grid;
  gap: 1.5rem;
}

.p-company__profile-block-title {
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-company__profile-groups {
  display: grid;
  gap: 1.5rem;
}

.p-company__profile-group-heading {
  margin: 0;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.875;
}

.p-company__profile-companies {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .p-company__profile-companies {
    font-size: 0.875rem;
    line-height: 1.71;
  }
}

.p-company__profile-company {
  white-space: nowrap;
}
.p-company__profile-company:not(:last-child)::after {
  content: "、";
  white-space: normal;
}

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

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

.p-contact__notice {
  padding: 2rem;
  background-color: var(--color-secondary);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact__notice {
    padding: 1.5rem 1.25rem;
  }
}

.p-contact__notice-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-contact__notice-title {
    font-size: 1.125rem;
    line-height: 1.8;
  }
}

.p-contact__notice-body {
  display: grid;
  margin-block-start: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-contact__notice-body {
    font-size: 0.875rem;
    line-height: 1.71;
    text-align: left;
  }
}

.p-contact__notice-body p {
  margin: 0;
}

.p-contact__notice + .p-form,
.p-contact__notice + .wpcf7 {
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact__notice + .p-form,
  .p-contact__notice + .wpcf7 {
    margin-block-start: 1.5rem;
  }
}

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

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

.p-cta {
  position: relative;
  z-index: 0;
  background-color: var(--color-black);
  background-image: url("../images/bg_cta.webp");
  background-repeat: no-repeat;
  background-position: center 72%;
  background-size: cover;
  color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-cta {
    background-size: 400%;
  }
}
.p-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.6);
}

.p-cta__inner {
  display: grid;
  justify-items: center;
  padding-block: 5.125rem 5.5625rem;
}
@media screen and (max-width: 767px) {
  .p-cta__inner {
    padding-block: 2.5rem 1.3125rem;
  }
}

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

.p-cta__title {
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-cta__title {
    font-size: 2.5rem;
  }
}

.p-cta__lead {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-cta__lead {
    font-size: 1.25rem;
  }
}

.p-cta__text {
  margin-block-start: 1.625rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .p-cta__text {
    margin-block-start: 0.8125rem;
    font-size: 0.875rem;
    line-height: 1.785;
  }
}

.p-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.625rem, -0.09rem + 1.49vw, 1.25rem);
  width: 100%;
  margin-block-start: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-cta__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.625rem;
    margin-block-start: 1rem;
  }
}

.p-cta__button {
  display: inline-flex;
  flex: 1;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(1rem, -0.43rem + 2.98vw, 2.25rem);
  min-height: 6.25rem;
  padding: 0.75rem clamp(1rem, 0.71rem + 0.6vw, 1.25rem) 0.75rem clamp(1.5rem, 0.64rem + 1.79vw, 2.25rem);
  border: 0.0625rem solid transparent;
  color: var(--color-white);
  font-size: clamp(0.875rem, 0.45rem + 0.89vw, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
  transition: background-color var(--duration), border-color var(--duration), color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-cta__button {
    flex: none;
    gap: 2.125rem;
    width: 100%;
    max-width: none;
    min-height: 4.9375rem;
    font-size: 1rem;
  }
}
.p-cta__button:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 0.25rem;
}

.p-cta__button--form {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}
@media (any-hover: hover) {
  .p-cta__button--form:hover {
    opacity: 1;
    border-color: var(--color-primary);
    background-color: var(--color-white);
    color: var(--color-primary);
  }
}

.p-cta__button--tel {
  border-color: var(--color-accent);
  background-color: var(--color-accent);
}
@media (any-hover: hover) {
  .p-cta__button--tel:hover {
    opacity: 1;
    border-color: var(--color-accent);
    background-color: var(--color-white);
    color: var(--color-accent);
  }
}

.p-cta__icon {
  flex-shrink: 0;
  background-color: currentColor;
  transition: background-color var(--duration);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.p-cta__icon--form {
  width: clamp(1.5rem, 0.64rem + 1.79vw, 2.25rem);
  height: auto;
  aspect-ratio: 36/24;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 35.95 23.97'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23fff; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M32.95,19.47V1.8c0-.99-.8-1.8-1.8-1.8H4.79c-.99,0-1.8.8-1.8,1.8v17.67h29.96ZM5.99,3h23.97v13.48H5.99V3ZM35.95,20.97v1.2c0,.99-.8,1.8-1.8,1.8H1.8c-.99,0-1.8-.8-1.8-1.8v-1.2h14.98c0,.41.34.75.75.75h4.49c.41,0,.75-.34.75-.75h14.98Z' /%3E%3C/svg%3E%0A");
}
@media screen and (max-width: 767px) {
  .p-cta__icon--form {
    width: 1.75rem;
  }
}

.p-cta__icon--tel {
  width: clamp(1.25rem, 0.68rem + 1.19vw, 1.75rem);
  height: auto;
  aspect-ratio: 28/30;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27.39 29.88'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23fff; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M17.29,29.45C8.12,33.64-6.12,5.97,2.85,1.29l2.62-1.29,4.35,8.49-2.59,1.28c-2.73,1.46,2.95,12.55,5.74,11.2.11-.05,2.56-1.25,2.57-1.26l4.38,8.46s-2.48,1.22-2.63,1.29ZM15.38,12.75l3.63,1.08c.28-.93.2-1.97-.3-2.88-.5-.92-1.32-1.55-2.25-1.83l-1.08,3.63ZM17.62,5.21c1.93.58,3.64,1.89,4.68,3.8,1.03,1.91,1.2,4.06.62,5.99l-2.23-.67c.4-1.36.29-2.87-.44-4.22-.73-1.35-1.93-2.27-3.29-2.67l.67-2.24ZM18.81,1.24c2.94.88,5.56,2.88,7.13,5.8,1.58,2.92,1.83,6.2.95,9.14l-2.29-.68c.7-2.36.51-4.99-.76-7.32-1.26-2.34-3.36-3.94-5.72-4.64l.68-2.29Z' /%3E%3C/svg%3E ");
}
@media screen and (max-width: 767px) {
  .p-cta__icon--tel {
    width: 1.3125rem;
  }
}

.p-cta__button-text {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.375rem;
  align-items: baseline;
  justify-content: flex-start;
  text-align: start;
}

.p-cta__button-text-prefix {
  font-size: clamp(0.875rem, 0.66rem + 0.45vw, 1.0625rem);
  text-align: start;
}
@media screen and (max-width: 767px) {
  .p-cta__button-text-prefix {
    font-size: 0.8125rem;
  }
}

.p-cta__button-number {
  font-family: var(--ff-en);
  font-size: clamp(1.25rem, 0.54rem + 1.49vw, 1.875rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: start;
}
@media screen and (max-width: 767px) {
  .p-cta__button-number {
    font-size: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-cta__button,
  .p-cta__icon {
    transition: none;
  }
}
.p-dev-notice {
  padding-block: calc(24 * var(--to-rem));
  background-color: #fff3cd;
}
@media screen and (max-width: 767px) {
  .p-dev-notice {
    padding-block: calc(32 * var(--to-rem));
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.p-footer {
  position: relative;
  z-index: 1;
  color: var(--color-white);
}

.p-footer__main {
  padding-block: 3.875rem 4.5rem;
  background-color: rgba(29, 29, 29, 0.8);
}
@media screen and (max-width: 767px) {
  .p-footer__main {
    padding-block: 1.25rem 2.1875rem;
  }
}

.p-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 18.75rem) minmax(0, 1fr);
  gap: clamp(1.5rem, -2.19rem + 5.77vw, 3rem) clamp(1.6875rem, -10.77rem + 19.47vw, 6.75rem);
  align-items: start;
}
@media screen and (max-width: 1023px) {
  .p-footer__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__grid {
    gap: 0.625rem;
  }
}

.p-footer__brand {
  display: grid;
}
@media screen and (max-width: 1023px) {
  .p-footer__brand {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2.83fr);
    grid-template-areas: "logo lead" "legal legal";
    gap: 0 1.25rem;
    width: min(100%, 25rem);
    margin-inline: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__brand {
    margin-inline: auto;
  }
}

.p-footer__logo {
  width: 7.9375rem;
}
@media screen and (max-width: 1023px) {
  .p-footer__logo {
    grid-area: logo;
    width: 5.375rem;
  }
}

.p-footer__logo a {
  display: block;
}

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

.p-footer__lead {
  margin-block-start: 1.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.66;
}
@media screen and (max-width: 1023px) {
  .p-footer__lead {
    grid-area: lead;
    margin-block-start: 0;
    line-height: 1.33;
  }
}

.p-footer__legal {
  max-width: 17.75rem;
}
@media screen and (max-width: 1023px) {
  .p-footer__legal {
    grid-area: legal;
    max-width: 100%;
    width: 100%;
  }
}

.p-footer__legal-link {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-block-start: 0.875rem;
  padding: 0.9375rem 0.9375rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 1023px) {
  .p-footer__legal-link {
    margin-block-start: 1.125rem;
    padding: 0.5rem 0.875rem;
  }
}

.p-footer__legal-icon {
  flex-shrink: 0;
  width: 4.125rem;
  height: auto;
}
@media screen and (max-width: 1023px) {
  .p-footer__legal-icon {
    width: 2.3125rem;
  }
}

.p-footer__legal-text {
  color: var(--color-black);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.66;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1023px) {
  .p-footer__legal-text {
    letter-spacing: 0;
    line-height: 1.5;
  }
}

.p-footer__legal-panel {
  background-color: rgba(29, 29, 29, 0.8);
}
@media screen and (max-width: 767px) {
  .p-footer__legal-panel {
    padding-block-end: 1.25rem;
  }
}

.p-footer__legal-panel__inner {
  width: min(100%, 25rem);
  margin-inline: auto;
}

.p-footer__legal-panel .p-footer__legal-link {
  margin-block-start: 0;
}

.p-footer__nav-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, clamp(15rem, 7.31rem + 12.02vw, 18.125rem)) minmax(0, 7.6875rem);
  gap: clamp(1rem, -4.69rem + 8.89vw, 3.3125rem);
  align-items: start;
  margin-block-start: 0.375rem;
}
@media screen and (max-width: 1023px) {
  .p-footer__nav-wrap {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav-wrap {
    gap: 1.25rem;
  }
}

.p-footer__nav-cluster {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.6875rem, -2.47rem + 6.49vw, 3.375rem);
}
@media screen and (max-width: 767px) {
  .p-footer__nav-cluster {
    gap: 0.125rem;
  }
}

.p-footer__nav-heading {
  font-family: var(--ff-en);
  font-size: clamp(1.25rem, 0.63rem + 0.96vw, 1.5rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media screen and (max-width: 1023px) {
  .p-footer__nav-heading {
    font-size: 1.5rem;
  }
}

a.p-footer__nav-heading {
  display: inline-block;
  position: relative;
  color: var(--color-white);
  text-decoration: none;
  transition: opacity var(--duration);
}
a.p-footer__nav-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) ease;
}
@media (any-hover: hover) {
  a.p-footer__nav-heading:hover {
    opacity: 1;
  }
  a.p-footer__nav-heading:hover::after {
    transform: scaleX(1);
  }
}

.p-footer__nav-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem clamp(1.25rem, -0.29rem + 2.4vw, 1.875rem);
}
@media screen and (max-width: 767px) {
  .p-footer__nav-columns {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.p-footer__nav-group {
  flex: 1;
  min-width: min(100%, 8.125rem);
}
.p-footer__nav-group:nth-child(1) {
  flex: 0 0 8.3125rem;
  min-width: min(100%, 8.125rem);
}
@media screen and (max-width: 1023px) {
  .p-footer__nav-group:nth-child(1) {
    flex: none;
  }
}

.p-footer__nav-subheading {
  margin-block-start: 1rem;
  font-family: var(--ff-en);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media screen and (max-width: 1023px) {
  .p-footer__nav-subheading {
    margin-block-start: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav-subheading {
    margin-block-start: 0.625rem;
  }
}
.p-footer__nav-subheading + .p-footer__nav-list {
  margin-block-start: 0.375rem;
}
@media screen and (max-width: 1023px) {
  .p-footer__nav-subheading + .p-footer__nav-list {
    margin-block-start: 0.25rem;
  }
}

a.p-footer__nav-subheading {
  display: inline-block;
  position: relative;
  color: var(--color-white);
  text-decoration: none;
  transition: opacity var(--duration);
}
a.p-footer__nav-subheading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) ease;
}
@media (any-hover: hover) {
  a.p-footer__nav-subheading:hover {
    opacity: 1;
  }
  a.p-footer__nav-subheading:hover::after {
    transform: scaleX(1);
  }
}

.p-footer__nav-list {
  display: grid;
  gap: 0rem;
  margin-block-start: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-list {
    margin-block-start: 0.25rem;
  }
}

@media screen and (max-width: 1023px) {
  .p-footer__nav-item {
    line-height: 1;
  }
}

.p-footer__nav-item a {
  display: inline-block;
  position: relative;
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: opacity var(--duration);
}
.p-footer__nav-item a::after {
  content: "";
  position: absolute;
  bottom: 0rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) ease;
}
@media screen and (max-width: 1023px) {
  .p-footer__nav-item a {
    font-size: 0.75rem;
    line-height: 1.83;
    letter-spacing: 0;
  }
  .p-footer__nav-item a::after {
    bottom: 0.125rem;
  }
}
@media (any-hover: hover) {
  .p-footer__nav-item a:hover {
    opacity: 1;
  }
  .p-footer__nav-item a:hover::after {
    transform: scaleX(1);
  }
}

.p-footer__bar {
  padding-block: 1rem;
  background-color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-footer__bar {
    padding-block: 1.75rem;
  }
}

.p-footer__bar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-footer__bar-inner {
    grid-template-columns: 1fr;
    grid-template-areas: "privacy" "copyright";
    gap: 1.25rem;
    justify-items: center;
  }
}

.p-footer__copyright {
  grid-column: 2;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    grid-area: copyright;
  }
}

.p-footer__privacy {
  grid-column: 3;
  justify-self: end;
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-footer__privacy {
    grid-area: privacy;
    grid-column: 1;
    justify-self: center;
  }
}
@media (any-hover: hover) {
  .p-footer__privacy:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 0.125rem;
  }
}

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

.p-form.p-form--confirm .p-form__label,
.p-form:has(.cf7msm-ro) .p-form__label {
  margin-block-start: 0;
}
.p-form.p-form--confirm .p-form__item > .p-form__label,
.p-form:has(.cf7msm-ro) .p-form__item > .p-form__label {
  justify-content: flex-start;
  gap: 0.75rem;
  align-items: center;
}
.p-form.p-form--confirm .p-form__item > .p-form__label .p-form__label-required,
.p-form:has(.cf7msm-ro) .p-form__item > .p-form__label .p-form__label-required {
  display: none;
}
.p-form.p-form--confirm .p-form__item,
.p-form:has(.cf7msm-ro) .p-form__item {
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-form.p-form--confirm .p-form__item,
  .p-form:has(.cf7msm-ro) .p-form__item {
    align-items: flex-start;
  }
}
.p-form.p-form--confirm .p-form__item--entry-motivation,
.p-form.p-form--confirm .p-form__item:has(.p-form__address),
.p-form.p-form--confirm .p-form__item:has(.p-form__date),
.p-form:has(.cf7msm-ro) .p-form__item--entry-motivation,
.p-form:has(.cf7msm-ro) .p-form__item:has(.p-form__address),
.p-form:has(.cf7msm-ro) .p-form__item:has(.p-form__date) {
  align-items: flex-start;
}
.p-form.p-form--confirm .cf7msm-ro,
.p-form:has(.cf7msm-ro) .cf7msm-ro {
  display: block;
  color: var(--_form-color-text);
  font-size: 1rem;
  line-height: 1.5;
  white-space: pre-wrap;
}

.p-form__data .p-form__data-inner + .p-form__data-inner {
  margin-block-start: 0.5rem;
}

.p-form__radio-group + .p-form__data-inner,
.p-form__checkbox-group + .p-form__data-inner {
  margin-block-start: 0.5rem;
}

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

.p-form__item--entry-motivation .p-form__label-wrap {
  min-width: 17.875rem;
}
@media screen and (max-width: 767px) {
  .p-form__item--entry-motivation .p-form__label-wrap {
    min-width: auto;
    width: 100%;
  }
}
.p-form__item--entry-motivation .p-form__label {
  align-items: flex-start;
  justify-content: flex-start;
  margin-block-start: 0;
}

.p-form__field-note {
  margin: 0.5rem 0 0;
  color: #aaa;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
}

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

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

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

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

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

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

.p-form__flex {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--_form-color-text);
  font-size: 1.125rem;
  font-weight: 500;
}
.p-form__flex .wpcf7-form-control-wrap {
  flex: 1;
  min-width: 0;
}

.p-form__date {
  flex-wrap: wrap;
}
.p-form__date .wpcf7-form-control-wrap {
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
}
.p-form__date .p-form__select-wrap {
  flex: 0 0 auto;
}
.p-form__date .p-form__select-wrap::after {
  content: none;
}
.p-form__date .p-form__select {
  padding-inline-end: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-form__date .p-form__select {
    padding-inline-end: 1rem;
  }
}
.p-form__date .p-form__select--year {
  width: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-form__date .p-form__select--year {
    width: 6.25rem;
  }
}
.p-form__date .p-form__select--month,
.p-form__date .p-form__select--day {
  width: 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-form__date .p-form__select--month,
  .p-form__date .p-form__select--day {
    width: 4.5rem;
  }
}
.p-form__date .wpcf7-not-valid-tip + .wpcf7-not-valid-tip {
  display: none;
}

.p-form__date-unit {
  flex-shrink: 0;
  color: var(--_form-color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-form__input,
.p-form__select,
.p-form__textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid var(--_form-color-border);
  border-radius: 8px;
  background-color: var(--_form-color-bg);
  color: var(--_form-color-text);
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-form__input,
  .p-form__select,
  .p-form__textarea {
    padding: 0.875rem 1rem;
  }
}
@media (max-width: 370px) {
  .p-form__input[type=text],
  .p-form__select[type=text],
  .p-form__textarea[type=text] {
    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-accent);
  box-shadow: 0 0 0 3px oklch(from var(--_form-color-accent) l c h/10%);
  outline: none;
}

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

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

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

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

.p-form__select-wrap::after {
  content: "";
  position: absolute;
  top: 1.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-accent);
  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-accent);
  background-color: var(--_form-color-accent);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.p-form__error {
  display: block;
  color: var(--_form-color-badge-bg);
  font-size: 0.875rem;
}

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

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

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

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

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

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

.p-form--postpartum .p-form__item {
  flex-direction: column;
  gap: 1rem;
}
.p-form--postpartum .p-form__label {
  justify-content: flex-start;
  margin-block-start: 0;
}
.p-form--postpartum .p-form__data {
  flex: auto;
  width: 100%;
}
.p-form--postpartum .p-form__radio-group {
  flex-flow: row wrap;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-form--postpartum .p-form__radio-group {
    gap: 0.5rem;
  }
}
.p-form--postpartum .p-form__checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-form--postpartum .p-form__checkbox-group {
    gap: 0.5rem;
  }
}
.p-form--postpartum .p-form__checkbox-group .wpcf7-list-item {
  display: flex;
  align-items: center;
}
.p-form--postpartum .p-form__checkbox-group .wpcf7-list-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.p-form--postpartum .p-form__checkbox-group 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--postpartum .p-form__checkbox-group input[type=checkbox]:checked {
  border-color: var(--_form-color-accent);
  background-color: var(--_form-color-accent);
}
.p-form--postpartum .p-form__checkbox-group 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-inline-start: none;
  rotate: 45deg;
}
@media (any-hover: hover) {
  .p-form--postpartum .p-form__checkbox-group input[type=checkbox]:hover:not(:checked) {
    border-color: var(--_form-color-accent);
    opacity: 0.5;
  }
}
.p-form--postpartum .p-form__checkbox-group input[type=checkbox]:focus {
  box-shadow: 0 0 0 3px oklch(from var(--_form-color-accent) l c h/10%);
  outline: none;
}
.p-form--postpartum .p-form__checkbox-group .wpcf7-list-item-label {
  color: var(--_form-color-text);
  font-size: 1rem;
  user-select: none;
}
.p-form--postpartum .p-form__data-rows {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.p-form--postpartum .p-form__data-row {
  width: 100%;
}
.p-form--postpartum .p-form__data-rows .p-form__data-inner {
  width: 100%;
}
.p-form--postpartum .p-form__data-inner {
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}
.p-form--postpartum .p-form__data-inner > * {
  flex: none;
}
.p-form--postpartum .p-form__data-inner .p-form__label-note {
  flex-shrink: 0;
  white-space: nowrap;
}
.p-form--postpartum .p-form__data-inner .wpcf7-form-control-wrap {
  flex: 1 1 7.5rem;
  min-width: 6.25rem;
  width: auto;
}
.p-form--postpartum .p-form__data-inner .wpcf7-form-control-wrap:has(.wpcf7-number) {
  flex: 0 0 5rem;
  width: 5rem;
  min-width: 5rem;
}
@media screen and (max-width: 767px) {
  .p-form--postpartum .p-form__data-inner .wpcf7-form-control-wrap:has(.wpcf7-number) {
    flex: 0 0 4.5rem;
    width: 4.5rem;
    min-width: 4.5rem;
  }
}
.p-form--postpartum .p-form__data-inner .p-form__input {
  width: 100%;
}
.p-form--postpartum .p-form__data-inner + .p-form__data-inner {
  margin-block-start: 0.5rem;
}
.p-form--postpartum .p-form__radio-group + .p-form__data-inner,
.p-form--postpartum .p-form__checkbox-group + .p-form__data-inner {
  margin-block-start: 0.5rem;
}

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
  width: 100%;
  height: var(--header-height);
}

.p-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 120rem;
  height: inherit;
  margin-inline: auto;
  padding: 0.75rem clamp(1.5rem, -9.54rem + 17.27vw, 6rem);
}
@media screen and (max-width: 1023px) {
  .p-header__inner {
    padding-block: 0;
    padding-inline: 0.5rem 0;
  }
}

.p-header__logo {
  flex-shrink: 0;
  translate: 0 0.0625rem;
  width: 7.9375rem;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .p-header__logo {
    width: 5.375rem;
  }
}

.p-header__logo a {
  display: block;
}

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

.p-header__controls {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, -1.11rem + 4.08vw, 2.5625rem);
  height: inherit;
}
@media screen and (max-width: 1023px) {
  .p-header__controls {
    gap: 1rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-header__controls {
    display: none;
  }
}

.p-header__nav {
  height: inherit;
}

.p-header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 0.27rem + 1.92vw, 2rem);
  height: inherit;
}

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

.p-header__nav-item--has-child.js-mega-menu {
  position: static;
}

.p-header__nav-item--studio {
  position: relative;
}

.p-header__nav-link {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.375rem;
  height: auto;
  padding-block: 0.5rem;
  color: var(--color-white);
  font-family: var(--ff-en);
  font-size: clamp(0.75rem, 0.29rem + 0.72vw, 0.9375rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (any-hover: hover) {
  .p-header__nav-link:hover {
    opacity: 1;
  }
  .p-header__nav-link:hover .p-header__nav-text {
    color: var(--color-accent);
  }
}

button.p-header__nav-link {
  border: none;
  background: transparent;
  cursor: pointer;
}

.p-header__nav-text {
  white-space: nowrap;
  transition: color var(--duration);
}

.p-header__nav-chevron {
  position: absolute;
  bottom: -0.8125rem;
  left: 50%;
  translate: -50% 0;
  display: block;
  flex-shrink: 0;
  width: 0.669375rem;
  height: 0.37875rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10.71 6.06'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23fff; stroke-miterlimit: 10; %7D %3C/style%3E%3C/defs%3E%3Cpolyline class='cls-1' points='10.35 .35 5.35 5.35 .35 .35' /%3E%3C/svg%3E") no-repeat center/contain;
}

.p-header__actions {
  display: flex;
  flex-shrink: 0;
  gap: 0.8125rem;
}

.p-header__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(7.5rem, -3.23rem + 16.79vw, 11.875rem);
  padding: 1.3125rem 1.25rem;
  border: 0.0625rem solid var(--color-white);
  color: var(--color-white);
  font-family: var(--ff-en);
  font-size: clamp(0.875rem, 0.57rem + 0.48vw, 1rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity var(--duration), background-color var(--duration), color var(--duration);
}
@media (any-hover: hover) {
  .p-header__button:hover {
    opacity: 1;
    background-color: var(--color-white);
  }
  .p-header__button:hover.p-header__button--recruit {
    color: var(--color-primary);
  }
  .p-header__button:hover.p-header__button--contact {
    color: var(--color-accent);
  }
}

.p-header__button--recruit {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.p-header__button--contact {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.p-header__hamburger {
  position: relative;
  z-index: 999;
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: var(--header-height);
  height: var(--header-height);
  margin: 0;
  padding: 0;
  border: none;
  background-color: var(--color-primary);
  outline: none;
  cursor: pointer;
  transition: background-color var(--duration);
}
@media screen and (max-width: 1023px) {
  .p-header__hamburger {
    display: flex;
    flex-direction: column;
    gap: 0.5625rem;
  }
}

.p-header__hamburger-line {
  display: block;
  width: 1.75rem;
  height: 1px;
  background-color: var(--color-white);
  transition: rotate var(--duration), translate var(--duration), margin var(--duration);
}

.p-header__hamburger.is-open {
  gap: 0;
}

.p-header__hamburger.is-open .p-header__hamburger-line:nth-of-type(1) {
  rotate: 45deg;
}

.p-header__hamburger.is-open .p-header__hamburger-line:nth-of-type(2) {
  margin-block-start: -1px;
  rotate: -45deg;
}

.p-header__drawer {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-index-header) + 10);
  display: none;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  height: 100svh;
  background-color: rgba(0, 0, 0, 0.8);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility var(--duration), opacity var(--duration);
}
@media (min-width: 1024px) {
  .p-header__drawer {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .p-header__drawer {
    display: flex;
  }
  .p-header__drawer.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}

.p-header__drawer-header {
  display: flex;
  flex-shrink: 0;
  align-items: stretch;
  justify-content: space-between;
  padding-inline-start: 0.5rem;
}

.p-header__drawer-logo {
  display: flex;
  align-items: center;
  align-self: center;
  width: 5.625rem;
}

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

.p-header__drawer-close {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: var(--header-height);
  height: var(--header-height);
  margin: 0;
  padding: 0;
  border: none;
  background-color: var(--color-primary);
  outline: none;
  cursor: pointer;
}

.p-header__drawer-close-line {
  display: block;
  width: 1.75rem;
  height: 1px;
  background-color: var(--color-white);
}

.p-header__drawer-close-line:nth-of-type(1) {
  rotate: 45deg;
}

.p-header__drawer-close-line:nth-of-type(2) {
  margin-block-start: -1px;
  rotate: -45deg;
}

.p-header__drawer-nav {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 43.75rem;
  min-height: 0;
  margin-inline: auto;
  padding: 0.8125rem 1.25rem 2.9375rem;
  overflow-y: auto;
  scrollbar-width: none;
}
.p-header__drawer-nav::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__drawer-nav {
    max-width: 35rem;
  }
}

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

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

.p-header__drawer-item > a {
  display: block;
  padding: 1.25rem 0;
  color: var(--color-white);
  font-family: var(--ff-en);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.p-header__drawer-actions {
  display: flex;
  flex-shrink: 0;
  gap: 0;
}

.p-header__drawer-actions .p-header__button {
  flex: 1;
  width: auto;
  min-width: 0;
  padding: 1.375rem 1rem;
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
}

.p-header__nav-item--has-child.is-open {
  z-index: 2;
}

.p-header__mega {
  position: absolute;
  top: calc(100% - 1.125rem);
  left: 50%;
  translate: -50% 0;
  width: min(100%, 75rem);
  margin-inline: auto;
  padding-top: 1rem;
  margin-top: -1rem;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility var(--duration), opacity var(--duration);
}
.p-header__mega:has(.p-header__mega-list--col2) {
  width: min(100%, 45rem);
}

.p-header__mega::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1rem;
}

.p-header__nav-item--has-child.is-open .p-header__mega {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.p-header__mega-inner {
  padding: 1.5rem 1.75rem 1.875rem;
  border: 1px solid var(--color-white);
  background-color: #1f1f1f;
}

.p-header__mega-title {
  color: var(--color-white);
  font-family: var(--ff-en);
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.p-header__mega-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: auto 1fr;
  gap: 0.5rem;
  margin-block-start: 1.4375rem;
}

.p-header__mega-list--col2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.p-header__mega-item {
  display: grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
  min-width: 0;
}

.p-header__mega-card {
  position: relative;
  display: grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
  height: 100%;
  padding: 1.375rem 1.125rem;
  background-color: var(--color-white);
  color: var(--color-black);
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-header__mega-card:hover {
    opacity: 0.85;
  }
}

.p-header__mega-card-corner {
  position: absolute;
  top: 0;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.p-header__mega-card[data-color=blue] .p-header__mega-card-corner {
  background-color: var(--color-primary);
}

.p-header__mega-card[data-color=pink] .p-header__mega-card-corner {
  background-color: var(--color-accent);
}

.p-header__mega-card-title {
  align-self: center;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.p-header__mega-card-title--en {
  font-family: var(--ff-en);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.p-header__mega-card-text {
  align-self: center;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
  text-align: center;
}

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

.p-header__drawer-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0.625rem 1.25rem 0;
  border: none;
  background-color: transparent;
  color: var(--color-white);
  font-family: var(--ff-en);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: start;
  text-transform: uppercase;
  cursor: pointer;
}
.p-header__drawer-toggle::after {
  content: "";
  flex-shrink: 0;
  width: 0.669375rem;
  height: 0.37875rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10.71 6.06'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23fff; stroke-miterlimit: 10; %7D %3C/style%3E%3C/defs%3E%3Cpolyline class='cls-1' points='10.35 .35 5.35 5.35 .35 .35' /%3E%3C/svg%3E") no-repeat center/contain;
  transition: rotate var(--duration);
}

.p-header__drawer-toggle.is-open::after {
  rotate: 180deg;
}

.p-header__drawer-sub {
  display: grid;
  grid-template-rows: 0fr;
  border-top: 1px solid oklch(from var(--color-white) l c h/0%);
  transition: grid-template-rows calc(var(--duration) * 2) ease, border-color var(--duration);
  overflow: hidden;
}

.p-header__drawer-sub.is-open {
  grid-template-rows: 1fr;
  border-top-color: oklch(from var(--color-white) l c h/30%);
}

.p-header__drawer-sub-inner {
  min-height: 0;
  overflow: hidden;
}

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

.p-header__drawer-sub-item {
  border-bottom: 1px solid oklch(from var(--color-white) l c h/30%);
}

.p-header__drawer-sub-item:last-child {
  border-bottom: none;
}

.p-header__drawer-sub-item > a {
  display: block;
  padding: 0.875rem 2rem;
  color: var(--color-white);
  font-family: var(--ff-base);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-transform: none;
}

.p-header__drawer-sub-item--en > a {
  font-family: var(--ff-en);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.p-header--mega-test .p-header__nav-item.js-mega-menu {
  z-index: 2;
}

.p-header--mega-test .p-header__nav-item.js-mega-menu .p-header__mega {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.p-home-company {
  position: relative;
  z-index: 0;
  padding-block: 6.25rem 8rem;
  background-color: rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 767px) {
  .p-home-company {
    padding-block: 1.75rem 1.25rem;
  }
}

.p-home-company__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.125rem;
  margin-block-start: 2.25rem;
}
@media screen and (max-width: 1023px) {
  .p-home-company__grid {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home-company__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.625rem;
    margin-block-start: 1.25rem;
  }
}

.p-home-company__card {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 658/430;
  color: var(--color-white);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-home-company__card {
    display: flex;
    flex-direction: column;
    aspect-ratio: auto;
  }
}
@media (any-hover: hover) {
  .p-home-company__card:hover {
    opacity: 1;
  }
  .p-home-company__card:hover .p-home-company__media img {
    scale: 1.05;
  }
  .p-home-company__card:hover .p-home-company__arrow {
    translate: 0.5rem 0;
  }
}
.p-home-company__card:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 0.25rem;
}

.p-home-company__media {
  display: block;
  width: 100%;
  height: 100%;
}

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

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

.p-home-company__card[data-color=blue] .p-home-company__media img {
  object-position: center 58%;
}

.p-home-company__panel {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.8125rem 2.375rem 1.875rem 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-home-company__panel {
    position: static;
    padding: 1.25rem 1.25rem 1.25rem;
  }
}
.p-home-company__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  mix-blend-mode: overlay;
}
@media screen and (max-width: 767px) {
  .p-home-company__panel::before {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .p-home-company__card[data-color=blue] .p-home-company__panel {
    background-color: #003b94;
  }
}
.p-home-company__card[data-color=blue] .p-home-company__panel::before {
  background-color: rgba(0, 59, 148, 0.8);
}

@media screen and (max-width: 767px) {
  .p-home-company__card[data-color=pink] .p-home-company__panel {
    background-color: #e41885;
  }
}
.p-home-company__card[data-color=pink] .p-home-company__panel::before {
  background-color: rgba(228, 24, 133, 0.8);
}

.p-home-company__panel-body {
  display: grid;
  gap: 0.75rem;
  min-width: 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-home-company__panel-body {
    gap: 0.5rem;
  }
}

.p-home-company__card-title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-home-company__card-title-wrap {
    align-items: flex-start;
  }
}

.p-home-company__card-title {
  font-family: var(--ff-en);
  font-size: clamp(2rem, 0.77rem + 1.92vw, 2.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-home-company__card-title {
    font-size: 1.25rem;
  }
}

.p-home-company__card-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.857;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1023px) {
  .p-home-company__card-text {
    line-height: 1.62;
  }
}
@media screen and (max-width: 767px) {
  .p-home-company__card-text {
    line-height: 1.42;
  }
}

.p-home-company__arrow {
  position: relative;
  flex-shrink: 0;
  width: 2.3125rem;
  height: 0.375rem;
  transition: translate var(--duration);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 37.61 6.41'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23fff; stroke-miterlimit: 10; %7D %3C/style%3E%3C/defs%3E%3Cpolyline class='cls-1' points='0 5.91 36 5.91 28 .41' /%3E%3C/svg%3E%0A");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

@media (prefers-reduced-motion: reduce) {
  .p-home-company__media img,
  .p-home-company__arrow {
    transition: none;
  }
}
.p-home-concept {
  position: relative;
  z-index: 1;
  padding-block: 5.625rem 0;
  scroll-margin-top: var(--header-height);
}
@media screen and (max-width: 767px) {
  .p-home-concept {
    padding-block: 2.375rem 0;
  }
}

.p-home-concept__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 44.2166910688%);
  align-items: flex-start;
  gap: 6.125rem;
}
@media screen and (max-width: 1440px) {
  .p-home-concept__inner {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-home-concept__inner {
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home-concept__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.125rem;
  }
}

.p-home-concept__content {
  display: flex;
  flex-direction: column;
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-home-concept__content {
    margin-block-start: 0;
  }
}

.p-home-concept__lead-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-block-start: 2.875rem;
}
@media screen and (max-width: 767px) {
  .p-home-concept__lead-wrap {
    margin-block-start: 0.75rem;
  }
}

.p-home-concept__lead {
  color: var(--color-white);
  font-size: clamp(1.875rem, -0.01rem + 3.92vw, 2.5rem);
  font-weight: 700;
  line-height: 1.375;
}
@media screen and (max-width: 767px) {
  .p-home-concept__lead {
    font-size: 1.5rem;
  }
}

.p-home-concept__lead span {
  display: inline-block;
  zoom: 0.7;
}

.p-home-concept__text {
  margin-block-start: 2.125rem;
  font-weight: 500;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .p-home-concept__text {
    margin-block-start: 0.9375rem;
    font-size: 0.875rem;
    line-height: 1.57;
  }
}

.p-home-concept__text-emphasis {
  display: block;
  margin-block-start: 2rem;
  color: var(--color-white);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-home-concept__text-emphasis {
    margin-block-start: 1.375rem;
  }
}

.p-home-concept__visual {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-home-concept__visual {
    width: 78%;
    margin-inline: auto;
  }
}

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

.p-home-intro {
  position: relative;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.8);
}

.p-home-intro__side {
  position: absolute;
  top: 0;
  translate: 0 2.5rem;
  z-index: 0;
  color: oklch(from var(--color-white) l c h/10%);
  font-family: var(--ff-en);
  font-size: clamp(7.5rem, 2.92rem + 9.55vw, 14.375rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  pointer-events: none;
  user-select: none;
}
@media screen and (max-width: 1023px) {
  .p-home-intro__side {
    display: none;
  }
}

.p-home-intro__side--left {
  left: 2.375rem;
}

.p-home-intro__side--right {
  right: 1.125rem;
}

.p-home-news {
  position: relative;
  z-index: 0;
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.p-home-news__inner {
  display: grid;
  grid-template-columns: 17.5rem minmax(0, 1fr);
  gap: 2.5rem clamp(3rem, -6.73rem + 15.2vw, 6.25rem);
  align-items: start;
  padding-block: 5.875rem 6.75rem;
}
@media screen and (max-width: 1023px) {
  .p-home-news__inner {
    grid-template-columns: 15rem minmax(0, 1fr);
    gap: 2rem 3rem;
    padding-block: 3.75rem 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home-news__inner {
    display: grid;
    grid-template-areas: "head" "body" "more";
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding-block: 1.5rem 1.25rem;
  }
}

.p-home-news__head {
  display: grid;
  gap: 3.3125rem;
  justify-items: start;
}
@media screen and (max-width: 767px) {
  .p-home-news__head {
    display: contents;
  }
}

.p-home-news__more {
  width: 14.375rem;
}
@media screen and (max-width: 767px) {
  .p-home-news__more {
    grid-area: more;
    width: 100%;
    margin-block-start: 0.25rem;
  }
}

.p-home-news__body {
  margin-block-start: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-home-news__body {
    grid-area: body;
    margin-block-start: 0;
  }
}

.p-home-news__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-block: 1px solid rgba(176, 176, 176, 0.2);
}
@media screen and (max-width: 767px) {
  .p-home-news__list {
    margin-block-start: 1.125rem;
    border-block-end: none;
  }
}

.p-home-news__item {
  border-bottom: 1px solid rgba(176, 176, 176, 0.2);
}
.p-home-news__item:last-child {
  border-bottom: none;
}

.p-home-news__link {
  display: grid;
  grid-template-columns: 11.5rem minmax(0, 1fr);
  gap: 0.9375rem;
  align-items: center;
  padding-block: 2.375rem;
  color: inherit;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-home-news__link {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.5rem;
    align-items: start;
    padding-block: 1.125rem;
  }
}
.p-home-news__link:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 0.125rem;
}

.p-home-news__meta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-home-news__meta {
    gap: 0.5rem;
  }
}

.p-home-news__date {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.857;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-home-news__date {
    font-size: 0.75rem;
  }
}

.p-home-news__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.8125rem;
  min-height: 1.9375rem;
  padding: 0.25rem 0.625rem;
  background-color: #4a4a4a;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-home-news__category {
    font-size: 0.75rem;
  }
}

.p-home-news__item-title {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.857;
  letter-spacing: 0.05em;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .p-home-news__item-title {
    -webkit-line-clamp: 2;
  }
}
@media screen and (max-width: 767px) {
  .p-home-news__item-title {
    display: block;
    overflow: visible;
    font-size: 0.875rem;
    line-height: 1.42;
  }
}

.p-home-recruit {
  position: relative;
  z-index: 0;
  background-color: var(--color-black);
}

.p-home-recruit__inner {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 25rem;
}
@media screen and (max-width: 767px) {
  .p-home-recruit__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "content content" "left right";
    min-height: auto;
  }
}

.p-home-recruit__media {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-home-recruit__media {
    flex: none;
    width: 100%;
    aspect-ratio: 195/120;
  }
}

@media screen and (max-width: 767px) {
  .p-home-recruit__media--left {
    grid-area: left;
  }
}

@media screen and (max-width: 767px) {
  .p-home-recruit__media--right {
    grid-area: right;
  }
}

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

.p-home-recruit__content {
  display: flex;
  flex: 0 0 51.25rem;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  width: 44.125rem;
  padding: 3rem 2.5rem;
  background-color: var(--color-black);
  color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-home-recruit__content {
    flex-basis: 35rem;
    width: 35rem;
    padding: 2.5rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home-recruit__content {
    grid-area: content;
    flex: none;
    width: min(100%, 37.5rem);
    margin-inline: auto;
    padding: 2.125rem 1.25rem 1.875rem;
  }
}

.p-home-recruit__head {
  display: grid;
  gap: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-home-recruit__head {
    gap: 1rem;
  }
}

.p-home-recruit__title {
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-home-recruit__title {
    font-size: 2.5rem;
  }
}

.p-home-recruit__lead {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-home-recruit__lead {
    font-size: 1.25rem;
  }
}

.p-home-recruit__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  margin-block-start: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-home-recruit__text {
    margin-block-start: 0.875rem;
    font-size: 0.875rem;
    line-height: 1.78;
  }
}

.p-home-recruit__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-block-start: 3.25rem;
}
@media screen and (max-width: 767px) {
  .p-home-recruit__actions {
    flex-direction: column;
    gap: 0.625rem;
    width: 100%;
    margin-block-start: 0.75rem;
  }
}

.p-home-service {
  position: relative;
  z-index: 1;
  padding-block: 9.375rem 16.5rem;
}
@media screen and (max-width: 767px) {
  .p-home-service {
    padding-block: 4rem 2.125rem;
  }
}

.p-home-service__head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: end;
  gap: 2rem;
}
@media screen and (max-width: 1023px) {
  .p-home-service__head {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
  }
}

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

.p-home-service__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5625rem 0.625rem;
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-home-service__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.625rem;
    margin-block-start: 1.5rem;
  }
}

.p-home-service__card {
  --service-accent: var(--color-primary);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 21.875rem;
  padding: 3.125rem 1.25rem 2.5rem;
  background-color: var(--color-white);
  color: var(--color-base);
  text-decoration: none;
  transition: color var(--duration);
}
@media screen and (max-width: 1023px) {
  .p-home-service__card {
    padding: 1.875rem 0.625rem 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home-service__card {
    min-height: 7.5rem;
    padding: 0.75rem 0.5rem 1rem;
  }
}
.p-home-service__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--service-accent);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1), height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 767px) {
  .p-home-service__card::before {
    width: 0.625rem;
    height: 0.625rem;
  }
}
.p-home-service__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 0;
  height: 0;
  background-color: var(--color-white);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1), height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-home-service__card[data-color=pink] {
  --service-accent: var(--color-accent);
}
@media (any-hover: hover) {
  .p-home-service__card:hover {
    opacity: 1;
    color: var(--color-white);
  }
  .p-home-service__card:hover::before {
    width: 200%;
    height: 200%;
  }
  .p-home-service__card:hover::after {
    width: 1.25rem;
    height: 1.25rem;
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .p-home-service__card:hover::after {
    width: 0.625rem;
    height: 0.625rem;
  }
}
.p-home-service__card:focus-visible {
  color: var(--color-white);
  outline: 2px solid var(--color-white);
  outline-offset: 0.125rem;
}
.p-home-service__card:focus-visible::before {
  width: 200%;
  height: 200%;
}
.p-home-service__card:focus-visible::after {
  width: 1.25rem;
  height: 1.25rem;
}

.p-home-service__card-corner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--service-accent);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
@media screen and (max-width: 767px) {
  .p-home-service__card-corner {
    width: 0.625rem;
    height: 0.625rem;
  }
}

.p-home-service__card-body {
  display: flex;
  position: relative;
  z-index: 1;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.p-home-service__card-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-home-service__card-head {
    gap: 0.375rem;
  }
}

.p-home-service__card-en {
  display: block;
  color: var(--service-accent);
  font-family: var(--ff-en);
  font-size: clamp(0.75rem, 0rem + 1.57vw, 1rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  transition: color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-home-service__card-en {
    font-size: 0.625rem;
    line-height: 1.4;
  }
}

.p-home-service__card-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.p-home-service__card-title {
  font-size: clamp(1.125rem, 0rem + 2.35vw, 1.5rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-home-service__card-title {
    font-size: 0.875rem;
    line-height: 1.4;
  }
}

.p-home-service__card-title-sub {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-home-service__card-title-sub {
    font-size: 0.75rem;
    line-height: 1.4;
  }
}

.p-home-service__card-desc {
  overflow: hidden;
  max-height: 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.857;
  letter-spacing: 0.04em;
  text-align: start;
  opacity: 0;
  transition: max-height calc(var(--duration) * 2) ease, opacity var(--duration);
}
@media screen and (max-width: 1023px) {
  .p-home-service__card-desc {
    font-size: 0.75rem;
    line-height: 1.62;
  }
}
@media screen and (max-width: 767px) {
  .p-home-service__card-desc {
    display: none;
  }
}

@media (any-hover: hover) {
  .p-home-service__card:hover .p-home-service__card-en {
    color: var(--color-white);
  }
  .p-home-service__card:hover .p-home-service__card-desc {
    max-height: 15rem;
    opacity: 1;
    transition-delay: 0.12s;
  }
}
.p-home-service__card:focus-visible .p-home-service__card-en {
  color: var(--color-white);
}

.p-home-service__card:focus-visible .p-home-service__card-desc {
  max-height: 15rem;
  opacity: 1;
}

.p-home-service__card-more {
  display: flex;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
  margin-block-start: auto;
  font-family: var(--ff-en);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-home-service__card-more {
    font-size: 0.625rem;
  }
}

.p-home-service__card-more-line {
  display: block;
  flex: 1;
  max-width: 1.625rem;
  height: 1px;
  background-color: currentColor;
}
@media screen and (max-width: 767px) {
  .p-home-service__card-more-line {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-home-service__card::before,
  .p-home-service__card::after {
    transition: none;
  }
}
.p-home-studio {
  position: relative;
  z-index: 1;
  margin-block-start: -5.25rem;
  background-color: rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 767px) {
  .p-home-studio {
    margin-block-start: 0rem;
    background: url("../images/bg_home_studio_panel_sp.webp") no-repeat center center/cover;
  }
}

.p-home-studio__inner {
  position: relative;
  width: min(100%, 120rem);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-home-studio__inner {
    width: min(100%, 37.5rem);
    padding-inline: 1.25rem;
    padding-block-end: 1.375rem;
  }
}

.p-home-studio__panel {
  position: relative;
  z-index: 1;
  width: 95%;
  margin-inline-start: 0;
  min-height: inherit;
  padding-block: 6rem 7.125rem;
  background: url("../images/bg_home_studio_panel.webp") no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-home-studio__panel {
    width: 100%;
    padding-block: 1.5rem 0;
    background: none;
  }
}

.p-home-studio__watermark {
  position: absolute;
  top: 5.5rem;
  left: 22.5328947368%;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_2'%20data-name='レイヤー%202'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20463.42%20217.19'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%23fff;%20}%20.cls-2%20{%20opacity:%20.1;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='_メインコンテンツ'%20data-name='メインコンテンツ'%3e%3cg%20class='cls-2'%3e%3cpath%20class='cls-1'%20d='M163.33,72.42c-6.33-3.05-51.09-8.93-51.09-8.93-29.99-3.49-29.29-6.54-29.29-6.54-8.91-8.91,16.4-18.29,16.4-18.29,41.94-15.23,65.31-13.89,65.31-13.89,13.4.67,8.76,6.7,8.76,6.7-5.32,7.9-31.22,14.5-31.22,14.5,3.26,2.71,15.76,19.57,15.76,19.57,14.79-3.61,30.9-13.5,30.9-13.5,20.39-13.12,18.51-26.94,18.51-26.94C207.38-.45,164.03,0,164.03,0,137.78,0,108.03,8.44,108.03,8.44c-36.09,10.77-51.79,26.25-51.79,26.25-10.31,8.9-9.15,21.08-9.15,21.08,0,15.48,18.28,24.02,18.28,24.02,20.74,6.68,38.66,7.74,38.66,7.74,44.29,5.26,50.62,10.89,50.62,10.89,6.68,3.17,6.68,9.5,6.68,9.5,0,20.02-63.62,36.54-63.62,36.54-65.03,17.21-66.44,3.52-66.44,3.52-2.11-5.26,12.3-13.02,12.3-13.02,25.31-14.04,75.22-16.86,75.22-16.86-1.76-2.11-11.6-24.61-11.6-24.61-52.02,2.13-89.98,27.07-89.98,27.07C.7,130.76,0,146.2,0,146.2c0,14.41,8.09,20.39,8.09,20.39,14.76,13.34,42.53,11.93,42.53,11.93,58.69,0,112.47-31.38,112.47-31.38,31.4-19.2,27.88-40.51,27.88-40.51-.23-24.61-27.65-34.21-27.65-34.21Z'/%3e%3cpath%20class='cls-1'%20d='M255.26,116.9s-14.82,6.96-30.12,18.07c0,0,12.06-26.87,22.24-45.86,0,0,21.32-1.85,44.01-2.78l-2.77-18.06-31.51,2.32s1.39-4.18,9.27-17.15c0,0-5.56-4.16-16.67-12.5,0,0-11.12,19.46-17.15,31.97l-29.4,3.72,6.33,16.87,13.35-1.13-29.19,65.75,14.36,14.36s40.31-32.44,59.76-42.15c0,0-10.19-9.25-12.51-13.43Z'/%3e%3cpath%20class='cls-1'%20d='M348.91,140.24l-14.07-11.26s-12.48,15.27-19.33,19.42c0,0-6.95,6.13-13.47,4.02,0,0-4.65-2.54-4.89-6.38,0,0-.74-3.02.58-11.1,0,0,.15-4.88,6.92-15.89,0,0,2.21-4.07,3.33-1.3l4.83,11.49s23.69-6.92,40.81-21.91c0,0,13.35-10.77,14.76-26.95,0,0,1.16-8.19-6.57-14.06,0,0-4.54-3.05-11.77-2.93,0,0-27.58-.29-53.49,33.21,0,0-19.71,24.51-19.71,51.23,0,0,.28,12.39,7.31,18.59,0,0,7.89,5.91,15.79,5.91,0,0,14.06,0,29-11.83,0,0,12.38-9,19.97-20.26ZM315.43,104.45c19.12-19.1,26.75-20.78,26.75-20.78,4.64-1.03,3.87,3.09,3.87,3.09-3.23,11.62-28.42,21.18-28.42,21.18-9.29,3.75-2.2-3.49-2.2-3.49Z'/%3e%3cpath%20class='cls-1'%20d='M456.58,73.83s-15.81-11.26-44.99,11.26c0,0-2.39,1.26-1.03-1.33,0,0,4.74-9.25,7.71-12.84l-17.57-10.22s-37.96,81.54-74.05,144.3c0,0,6.56,4.22,16.42,12.19,0,0,26.24-54.82,30.92-60.9,0,0,1.33-2.24,2.32.13,1.01,2.37,7.26,14.13,7.26,14.13,0,0,61.07-28.55,77.59-69.66,0,0,7.39-19.67-4.58-27.06ZM439.6,99.36c-6.32,18.75-55.78,48.27-55.78,48.27-8.89,5.14-3.28-3.52-3.28-3.52,22.03-37.01,50.85-50.61,50.85-50.61,10.31-5.38,8.2,5.86,8.2,5.86Z'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: min(32.2222222222vw, 29rem);
  height: auto;
  aspect-ratio: 464/218;
}
@media screen and (max-width: 767px) {
  .p-home-studio__watermark {
    top: 1.125rem;
    left: auto;
    right: 0.0625rem;
    width: min(46.1538461538vw, 11.25rem);
  }
}

.p-home-studio__content {
  position: relative;
  z-index: 1;
  padding-inline: 6rem 23.0263157895%;
}
@media screen and (max-width: 1023px) {
  .p-home-studio__content {
    padding-inline: 2.5rem 18.0263157895%;
  }
}
@media screen and (max-width: 767px) {
  .p-home-studio__content {
    padding-inline: 0;
  }
}

.p-home-studio__body {
  max-width: 59.4801223242%;
}
@media screen and (max-width: 1023px) {
  .p-home-studio__body {
    max-width: 69.4801223242%;
  }
}
@media screen and (max-width: 767px) {
  .p-home-studio__body {
    max-width: none;
  }
}

.p-home-studio__title {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.375;
}
@media screen and (max-width: 767px) {
  .p-home-studio__title {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.p-home-studio__title span {
  display: inline-block;
  zoom: 0.7;
}

.p-home-studio__lead {
  margin-block-start: 1.5rem;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .p-home-studio__lead {
    margin-block-start: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.571;
  }
}

.p-home-studio__features {
  display: flex;
  flex-direction: column;
  margin-block-start: 3.375rem;
}
@media screen and (max-width: 767px) {
  .p-home-studio__features {
    margin-block-start: 0.875rem;
  }
}

.p-home-studio__features-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-home-studio__features-row {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
  }
}
.p-home-studio__features-row:last-child .p-home-studio__feature {
  border-block-end: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 767px) {
  .p-home-studio__features-row:last-child .p-home-studio__feature {
    border-block-end: none;
  }
}

.p-home-studio__feature {
  padding-block: 1.3125rem;
  border-block-start: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 767px) {
  .p-home-studio__feature {
    padding-block: 0.875rem;
  }
}

.p-home-studio__feature-title {
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-home-studio__feature-title {
    font-size: 1rem;
  }
}

.p-home-studio__feature-title span {
  font-size: 0.875rem;
}

.p-home-studio__feature-text {
  margin-block-start: 0rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-home-studio__feature-text {
    font-size: 0.75rem;
  }
}

.p-home-studio__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-home-studio__actions {
    flex-direction: column;
    gap: 0.625rem;
    margin-block-start: 0.25rem;
  }
}

.p-home-studio__visual {
  position: absolute;
  top: 5.375rem;
  right: 0;
  z-index: 3;
  width: 50%;
  aspect-ratio: 960/750;
}
@media screen and (max-width: 1023px) {
  .p-home-studio__visual {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .p-home-studio__visual {
    position: relative;
    top: auto;
    width: 100%;
    height: auto;
    margin-block-start: 1.1875rem;
    aspect-ratio: 350/150;
  }
}

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

.p-home-works {
  position: relative;
  z-index: 0;
  padding-block: 9.375rem 6.75rem;
  background-color: #2f2f2f;
}
@media screen and (max-width: 767px) {
  .p-home-works {
    display: flex;
    flex-direction: column;
    padding-block: 1.5rem 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-home-works__inner {
    display: grid;
  }
}

.p-home-works__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-home-works__head {
    display: contents;
  }
}

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

@media screen and (max-width: 767px) {
  .p-home-works__more-wrap {
    order: 3;
    margin-block-start: 1.375rem;
  }
}

.p-home-works__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.875rem 3.125rem;
  margin-block-start: 2.25rem;
}
@media screen and (max-width: 1023px) {
  .p-home-works__grid {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home-works__grid {
    order: 2;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.625rem;
    margin-block-start: 1.25rem;
  }
}

.p-home-works__card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--color-white);
  text-decoration: none;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-home-works__card {
    flex-direction: row;
  }
}
@media (any-hover: hover) {
  .p-home-works__card:hover {
    opacity: 1;
  }
  .p-home-works__card:hover .p-home-works__thumb img {
    scale: 1.1;
  }
}

.p-home-works__thumb {
  overflow: hidden;
  aspect-ratio: 16/9;
  background-color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-home-works__thumb {
    flex: 0 0 9.375rem;
  }
}

.p-home-works__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.5s ease;
}

.p-home-works__body {
  display: grid;
  gap: 0.5rem;
}

.p-home-works__card-client {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-home-works__card-client {
    font-size: 0.75rem;
  }
}

.p-home-works__card-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.44;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-home-works__card-title {
    font-size: 0.9375rem;
    line-height: 1.46;
  }
}

.p-home-works__card:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 0.25rem;
}

@media (prefers-reduced-motion: reduce) {
  .p-home-works__thumb img {
    transition: none;
  }
}
.p-mv {
  position: relative;
  width: 100%;
  height: 100svh;
  max-height: 57.75rem;
  overflow: hidden;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-mv {
    max-height: 37.5rem;
  }
}

.p-mv__media {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: var(--color-base);
}

.p-mv__media-item {
  position: absolute;
  inset: 0;
}

.p-mv__media-item--sp {
  display: none;
}
@media screen and (max-width: 1023px) {
  .p-mv__media-item--sp {
    display: block;
  }
}

@media screen and (max-width: 1023px) {
  .p-mv__media-item--pc {
    display: none;
  }
}

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

.p-mv__fallback-image {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-mv__media-item.is-fallback .p-mv__video {
  display: none;
}

.p-mv__media-item.is-fallback .p-mv__fallback-image {
  display: block;
}

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

.p-mv__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 60rem;
  color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-mv__body {
    gap: 1.5rem;
    align-items: start;
    text-align: start;
  }
}

.p-mv__main-title {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.25;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-mv__main-title {
    font-size: 1.875rem;
    line-height: 1.333;
  }
}

.p-mv__main-title span {
  display: inline-block;
  zoom: 0.7;
}

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

.p-mv__scroll {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.625rem;
  margin-block-start: auto;
  color: var(--color-white);
  text-decoration: none;
  cursor: pointer;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-mv__scroll {
    gap: 0.75rem;
  }
}
@media (any-hover: hover) {
  .p-mv__scroll:hover {
    opacity: 0.7;
  }
}
.p-mv__scroll:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 0.25rem;
}

.p-mv__scroll-line {
  display: block;
  position: relative;
  overflow: hidden;
  width: 1px;
  height: 1.625rem;
  background-color: rgba(255, 255, 255, 0.25);
}
@media screen and (max-width: 767px) {
  .p-mv__scroll-line {
    height: 1.625rem;
  }
}

.p-mv__scroll-line--track::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: currentColor;
}

.p-mv__scroll-line--track:first-of-type::after {
  animation: mv-scroll-bar-drop 3.2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.p-mv__scroll-line--track:last-of-type::after {
  animation: mv-scroll-bar-drop 3.2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  animation-delay: 0.8s;
}

.p-mv__scroll-text {
  font-family: var(--ff-en);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: mv-scroll-text 3.2s ease-in-out infinite;
  animation-delay: 0.8s;
}
@media screen and (max-width: 767px) {
  .p-mv__scroll-text {
    font-size: 0.75rem;
  }
}

@keyframes mv-scroll-bar-drop {
  0% {
    transform: translateY(-100%);
  }
  30% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes mv-scroll-text {
  0%, 100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-mv__scroll-line--track::after,
  .p-mv__scroll-text {
    animation: none;
  }
  .p-mv__scroll-line {
    background-color: currentColor;
  }
}
.p-news-list {
  padding-block: 7.5rem 6.25rem;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-news-list {
    padding-block: 2.5rem 3.75rem;
  }
}

.p-news-list__inner {
  width: min(100%, 68.75rem);
}
@media screen and (max-width: 767px) {
  .p-news-list__inner {
    width: min(100%, 37.5rem);
  }
}

.p-news-list__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-news-list__nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
}

.p-news-list__nav-label {
  flex-shrink: 0;
  min-width: 5rem;
  margin: 0;
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.95;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-news-list__nav-label {
    font-size: 0.75rem;
  }
}

.p-news-list__tab-list {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .p-news-list__tab-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .p-news-list__tab-list {
    grid-template-columns: minmax(2, minmax(0, 1fr));
    gap: 0.5rem;
  }
}

.p-news-list__tab-item {
  display: flex;
  min-width: 0;
  margin: 0;
}

.p-news-list__tab {
  display: flex;
  position: relative;
  flex: 1;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.375rem 1.75rem 0.375rem 1rem;
  border: 0.0625rem solid var(--color-white);
  background-color: var(--color-white);
  color: var(--color-base);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.375;
  text-align: center;
  text-decoration: none;
  transition: border-color var(--duration), color var(--duration), background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-news-list__tab {
    min-height: 2.5rem;
    padding: 0.25rem 1.5rem 0.25rem 0.75rem;
    font-size: 0.8125rem;
  }
}
.p-news-list__tab::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.75rem;
  width: 0.5rem;
  height: 0.28125rem;
  translate: 0 -50%;
  background-color: var(--color-base);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10.71 6.06' fill='none' stroke='currentColor' stroke-miterlimit='10'%3E%3Cpolyline points='10.35 .35 5.35 5.35 .35 .35' /%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition: background-color var(--duration);
}
@media (any-hover: hover) {
  .p-news-list__tab:hover {
    background-color: var(--color-base);
    color: var(--color-white);
  }
  .p-news-list__tab:hover::after {
    background-color: var(--color-white);
  }
}
.p-news-list__tab:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 0.125rem;
}

.p-news-list__tab.is-active {
  background-color: var(--color-primary);
  border-color: var(--color-white);
  color: var(--color-white);
  cursor: default;
}
.p-news-list__tab.is-active::after {
  background-color: var(--color-white);
}
@media (any-hover: hover) {
  .p-news-list__tab.is-active:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
  }
  .p-news-list__tab.is-active:hover::after {
    background-color: var(--color-white);
  }
}

.p-news-list__container {
  margin-block-start: 5rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-news-list__container {
    margin-block-start: 2.5rem;
  }
}

.p-news-list__item {
  position: relative;
  display: block;
  border-bottom: 1px solid #e0e0e0;
  color: var(--color-text);
  text-decoration: none;
}
.p-news-list__item:first-child .p-news-list__card {
  padding-block-start: 0;
}
@media (any-hover: hover) {
  .p-news-list__item:hover .p-news-list__arrow {
    translate: 0.3125rem -50%;
  }
}

.p-news-list__card {
  position: relative;
  padding-block: 2.25rem 2.25rem;
  padding-inline-end: 2rem;
}
@media screen and (max-width: 767px) {
  .p-news-list__card {
    padding-block: 1.8125rem 1.8125rem;
    padding-inline-end: 0;
  }
}

.p-news-list__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-news-list__meta {
    gap: 0.5rem 1rem;
  }
}

.p-news-list__date {
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--ff-en);
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-news-list__date {
    font-size: 0.875rem;
  }
}

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

.p-news-list__category {
  display: inline-block;
  min-width: 6.25rem;
  padding: 0.5rem 0.625rem;
  background-color: #4a4a4a;
  color: var(--color-text);
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-news-list__category {
    min-width: 5rem;
    padding: 0.3125rem 0.625rem;
    font-size: 0.6875rem;
  }
}

.p-news-list__title {
  margin: 0;
  margin-block-start: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 767px) {
  .p-news-list__title {
    font-size: 0.875rem;
    line-height: 1.6;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}

.p-news-list__arrow {
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.5rem;
  height: 0.875rem;
  translate: 0 -50%;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 14' width='8' height='14'%3E%3Cpath d='M1 13l6-6-6-6' fill='none' stroke='%23008ad2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: var(--color-text);
  transition: translate var(--duration);
}
@media screen and (max-width: 767px) {
  .p-news-list__arrow {
    display: none;
  }
}

.p-news-list__empty {
  margin-block-start: 2rem;
  padding: 3.75rem;
  border-radius: 0.625rem;
  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: #999999;
  font-size: 1rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-news-list__empty {
    margin-block-start: 1.5rem;
  }
}

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

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

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

.p-privacy-policy__inner {
  width: min(100%, 68.75rem);
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__inner {
    width: min(100%, 37.5rem);
  }
}

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

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

.p-privacy-policy__heading {
  position: relative;
  padding-inline: 1.25rem;
  padding-block-end: 1.84375rem;
  border-block-end: 1px solid #acacac;
  color: var(--color-text);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 2.18;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__heading {
    padding-inline: 0.9375rem;
    padding-block-end: 0.9375rem;
    font-size: 1.25rem;
    line-height: 1.8;
  }
}

.p-privacy-policy__heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 15.625rem;
  height: 0.0625rem;
  background-color: var(--color-accent);
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__heading::before {
    width: 6.25rem;
  }
}

.p-privacy-policy__text {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__text {
    margin-block-start: 0.5rem;
    font-size: 0.875rem;
  }
}

.p-privacy-policy__link {
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-privacy-policy__link:hover {
    opacity: 0.8;
  }
}

.p-privacy-policy__signature {
  margin-block-start: 2.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__signature {
    margin-block-start: 2rem;
    font-size: 0.875rem;
  }
}

.p-privacy-policy__button {
  margin-block-start: 5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__button {
    margin-block-start: 2.5rem;
  }
}

.p-privacy-policy__home-button {
  width: 18.75rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__home-button {
    width: 100%;
    max-width: 18.75rem;
  }
}

.p-recruit-detail-breadcrumb {
  background-color: var(--color-base);
}

.p-recruit-detail {
  background-color: var(--color-base);
  color: var(--color-text);
}

.p-under-mv--recruit-detail .p-under-mv__title {
  text-transform: none;
}

.p-recruit-detail__mv-label {
  margin: 0;
}

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

.p-recruit-detail__title {
  margin: 0;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.47;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-recruit-detail__title {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.p-recruit-detail__inner {
  padding-block: 3.75rem 0;
}
@media screen and (max-width: 767px) {
  .p-recruit-detail__inner {
    padding-block: 2.5rem 0;
  }
}

.p-recruit-detail__table-wrap {
  overflow-x: auto;
}

.p-recruit-detail__table {
  width: 100%;
  border: 0.0625rem solid #484848;
  border-collapse: collapse;
}

.p-recruit-detail__table th,
.p-recruit-detail__table td {
  border: 0.0625rem solid #484848;
  padding-block: 1.25rem;
  padding-inline: 1.5rem;
  line-height: 1.85;
  text-align: start;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .p-recruit-detail__table th,
  .p-recruit-detail__table td {
    display: block;
    width: 100%;
    padding-block: 1rem;
    padding-inline: 1rem;
  }
}

.p-recruit-detail__table th {
  width: 13.75rem;
  background-color: var(--color-secondary);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-recruit-detail__table th {
    width: 100%;
    font-size: 0.875rem;
    border-block-end: none;
  }
}

.p-recruit-detail__table td {
  background-color: var(--color-base);
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-recruit-detail__table td {
    font-size: 0.875rem;
    border-block-start: none;
  }
}

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

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

.p-recruit-detail__apply-button {
  min-width: 22.5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-detail__apply-button {
    width: 100%;
    max-width: 20rem;
  }
}

.p-recruit-detail__back {
  margin-block-start: 5rem;
  padding-block-end: 5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-detail__back {
    margin-block-start: 3.75rem;
    padding-block-end: 3.75rem;
  }
}

.p-recruit-detail__back-inner {
  display: flex;
  justify-content: center;
}

.p-recruit-detail__back-button {
  width: 18.75rem;
}
.p-recruit-detail__back-button::after {
  background-color: currentColor;
}
@media screen and (max-width: 767px) {
  .p-recruit-detail__back-button {
    width: 100%;
    max-width: 15rem;
  }
}

.p-recruit-environment {
  padding-block: 5rem;
  background-color: var(--color-base);
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-recruit-environment {
    padding-block: 2.5rem;
  }
}

.p-recruit-environment__content {
  margin-block-start: 2.5rem;
  padding: 1.875rem;
  background-color: var(--color-secondary);
}
@media screen and (max-width: 767px) {
  .p-recruit-environment__content {
    margin-block-start: 1.5rem;
    padding: 1.25rem;
  }
}

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

.p-recruit-environment__feature {
  --feature-accent: var(--color-primary);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 21.875rem;
  padding: 3.125rem 1.25rem 2.5rem;
  background-color: var(--color-white);
  color: var(--color-base);
}
.p-recruit-environment__feature:nth-child(2) {
  --feature-accent: var(--color-accent);
}
@media screen and (max-width: 1023px) {
  .p-recruit-environment__feature {
    min-height: auto;
    padding: 1.875rem 1rem 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-environment__feature {
    min-height: auto;
    padding: 1.5rem 1rem 1.25rem;
  }
}

.p-recruit-environment__feature-corner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--feature-accent);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
@media screen and (max-width: 767px) {
  .p-recruit-environment__feature-corner {
    width: 0.625rem;
    height: 0.625rem;
  }
}

.p-recruit-environment__feature-body {
  display: flex;
  position: relative;
  z-index: 1;
  flex: 1;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-environment__feature-body {
    gap: 0.75rem;
  }
}

.p-recruit-environment__feature-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit-environment__feature-head {
    gap: 0rem;
  }
}

.p-recruit-environment__feature-number {
  color: var(--feature-accent);
  font-family: var(--ff-en);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-recruit-environment__feature-number {
    font-size: 0.75rem;
    line-height: 1.4;
  }
}

.p-recruit-environment__feature-title {
  color: var(--color-base);
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-recruit-environment__feature-title {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.p-recruit-environment__feature-text {
  color: var(--color-base);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.857;
  letter-spacing: 0.04em;
  text-align: start;
}
@media screen and (max-width: 767px) {
  .p-recruit-environment__feature-text {
    margin-block-start: 0.25rem;
    font-size: 0.75rem;
    line-height: 1.6;
  }
}

.p-recruit-environment__staff-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-block-start: 3.75rem;
  padding: 2rem 2.5rem;
  border: 0.4375rem solid #484848;
  color: var(--color-white);
  text-decoration: none;
  transition: border-color var(--duration), background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-recruit-environment__staff-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-block-start: 2rem;
    padding: 1rem 1.5rem 1rem 1.25rem;
  }
}
.p-recruit-environment__staff-banner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0.669375rem;
  height: 0.37875rem;
  translate: 0 -50%;
  rotate: -90deg;
  background-color: var(--color-white);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10.71 6.06' fill='none' stroke='currentColor' stroke-miterlimit='10'%3E%3Cpolyline points='10.35 .35 5.35 5.35 .35 .35' /%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition: background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-recruit-environment__staff-banner::after {
    top: auto;
    bottom: 1rem;
    right: 0.625rem;
    translate: 0 0;
  }
}
@media (any-hover: hover) {
  .p-recruit-environment__staff-banner:hover {
    opacity: 1;
    border-color: var(--color-white);
    background-color: var(--color-secondary);
  }
}
.p-recruit-environment__staff-banner:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 0.125rem;
}

.p-recruit-environment__staff-label {
  flex-shrink: 0;
  color: var(--color-white);
  font-family: var(--ff-en);
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-recruit-environment__staff-label {
    font-size: 1.75rem;
  }
}

.p-recruit-environment__staff-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-recruit-environment__staff-text {
    font-size: 0.875rem;
    line-height: 1.78;
  }
}

.p-recruit-faq {
  padding-block: 5rem;
  background-color: var(--color-secondary);
}
@media screen and (max-width: 767px) {
  .p-recruit-faq {
    padding-block: 2.5rem 3.75rem;
  }
}

.p-recruit-faq__list {
  display: grid;
  gap: 0.75rem;
  margin-block-start: 2.5rem;
  margin-inline: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-recruit-faq__list {
    margin-block-start: 1.5rem;
  }
}

.p-recruit-faq__item {
  padding: 1.5rem 1.875rem;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-recruit-faq__item {
    padding: 1.25rem;
  }
}

.p-recruit-faq__question {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.75rem;
  align-items: start;
  padding-block-end: 1rem;
  border-block-end: 0.0625rem solid #484848;
}
@media screen and (max-width: 767px) {
  .p-recruit-faq__question {
    gap: 1rem;
  }
}

.p-recruit-faq__answer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.75rem;
  align-items: start;
  margin-block-start: 1rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-faq__answer {
    gap: 1rem;
  }
}

.p-recruit-faq__label {
  color: var(--color-text);
  font-family: var(--ff-en);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-recruit-faq__label {
    font-size: 1.25rem;
  }
}

.p-recruit-faq__question-text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.85;
}
@media screen and (max-width: 767px) {
  .p-recruit-faq__question-text {
    font-size: 0.875rem;
    line-height: 1.71;
  }
}

.p-recruit-faq__answer-text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.85;
}
@media screen and (max-width: 767px) {
  .p-recruit-faq__answer-text {
    font-size: 0.8125rem;
    line-height: 1.71;
  }
}

.p-recruit-jobs {
  padding-block: 5rem;
  background-color: var(--color-secondary);
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-recruit-jobs {
    padding-block: 2.5rem;
  }
}

.p-recruit-jobs__inner {
  display: grid;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-jobs__inner {
    gap: 2.5rem;
  }
}

.p-recruit-jobs__group {
  min-width: 0;
}

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

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

.p-recruit-jobs__list {
  display: grid;
  gap: 0.75rem;
  margin-block-start: 2.5rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-recruit-jobs__list {
    margin-block-start: 1.5rem;
    gap: 0.625rem;
  }
}

.p-recruit-jobs__item {
  min-width: 0;
}

.p-recruit-jobs__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18.75rem, 24%);
  gap: 1.25rem;
  align-items: center;
  padding: 1rem 1rem;
  background-color: var(--color-white);
  color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-recruit-jobs__card {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem 1.25rem;
  }
}

.p-recruit-jobs__table-name {
  color: var(--color-base);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-recruit-jobs__table-name {
    font-size: 0.8125rem;
  }
}

.p-recruit-jobs__table-button {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 3.125rem;
  padding: 0.75rem 0.875rem 0.75rem 1.125rem;
  border: 0.0625rem solid var(--color-primary);
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  transition: background-color var(--duration), border-color var(--duration), color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-recruit-jobs__table-button {
    min-height: 3rem;
    padding: 0.625rem 0.875rem;
    font-size: 0.8125rem;
  }
}
.p-recruit-jobs__table-button::after {
  content: "";
  flex-shrink: 0;
  width: 1.625rem;
  height: 0.0625rem;
  margin-inline-start: auto;
  background-color: var(--color-white);
  transition: background-color var(--duration), translate var(--duration);
}
@media (any-hover: hover) {
  .p-recruit-jobs__table-button:hover {
    opacity: 1;
    background-color: var(--color-white);
    color: var(--color-primary);
  }
  .p-recruit-jobs__table-button:hover::after {
    background-color: var(--color-primary);
    translate: 0.5rem 0;
  }
}
.p-recruit-jobs__table-button:focus-visible {
  outline: 0.125rem solid var(--color-primary);
  outline-offset: 0.125rem;
}

.p-recruit-jobs__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block-start: 2.5rem;
  min-height: 5rem;
  padding: 1rem 2rem;
  background-color: var(--color-white);
  color: var(--color-base);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.85;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit-jobs__empty {
    margin-block-start: 1.5rem;
    min-height: 3.75rem;
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    line-height: 1.71;
  }
}

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

.p-recruit-writer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}
@media screen and (max-width: 1023px) {
  .p-recruit-writer__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
}

.p-recruit-writer__content {
  min-width: 0;
}

.p-recruit-writer__lead {
  margin-block-start: 1.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.85;
}
@media screen and (max-width: 767px) {
  .p-recruit-writer__lead {
    margin-block-start: 1rem;
    font-size: 0.875rem;
    line-height: 1.71;
  }
}

.p-recruit-writer__roles {
  display: grid;
  gap: 1rem;
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-writer__roles {
    gap: 0.75rem;
    margin-block-start: 1.5rem;
  }
}

.p-recruit-writer__role {
  padding: 1.5rem 1.75rem;
  background-color: var(--color-black);
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-recruit-writer__role {
    padding: 1rem 1.25rem;
  }
}

.p-recruit-writer__role-head {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.p-recruit-writer__role-title {
  position: relative;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-recruit-writer__role-title {
    font-size: 1rem;
  }
}

.p-recruit-writer__role-title-line {
  flex: 1;
  height: 0.0625rem;
  background-color: var(--color-white);
}

.p-recruit-writer__role-text {
  margin-block-start: 0.4375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-recruit-writer__role-text {
    margin-block-start: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.571;
  }
}

.p-recruit-writer__apply {
  min-width: 0;
  padding: 2.25rem 2rem;
  background-color: var(--color-secondary);
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-recruit-writer__apply {
    padding: 1.5rem 1.25rem;
  }
}

.p-recruit-writer__apply-head {
  display: grid;
}

.p-recruit-writer__apply-label {
  color: var(--color-accent);
  font-family: var(--ff-en);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-recruit-writer__apply-label {
    font-size: 0.625rem;
  }
}

.p-recruit-writer__apply-title {
  margin-block-start: 0.25rem;
  color: var(--color-text);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-recruit-writer__apply-title {
    margin-block-start: 0.125rem;
    font-size: 1.125rem;
  }
}

.p-recruit-writer__apply-divider {
  width: 2.25rem;
  height: 0.0625rem;
  margin-block-start: 1rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-recruit-writer__apply-divider {
    width: 3rem;
    margin-block-start: 0.75rem;
  }
}

.p-recruit-writer__steps {
  display: grid;
  gap: 0;
  margin-block-start: 1.5rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-recruit-writer__steps {
    margin-block-start: 1.25rem;
  }
}

.p-recruit-writer__step {
  display: grid;
  grid-template-columns: 1.75rem minmax(0, 1fr);
  gap: 1rem;
  padding-block: 1rem;
  border-block-end: 0.0625rem solid #484848;
}
.p-recruit-writer__step:last-child {
  border-block-end: 0;
  padding-block-end: 0;
}

.p-recruit-writer__step-number {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

.p-recruit-writer__step-title {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-recruit-writer__step-title {
    font-size: 0.9375rem;
  }
}

.p-recruit-writer__step-text {
  margin-block-start: 0.5rem;
  color: #b0b0b0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.71;
}
@media screen and (max-width: 767px) {
  .p-recruit-writer__step-text {
    font-size: 0.8125rem;
    line-height: 1.62;
  }
}

.p-recruit-writer__form-button {
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-writer__form-button {
    margin-block-start: 1.5rem;
    width: 100%;
  }
}

.p-recruit-writer__note {
  margin-block-start: 1.5rem;
  padding: 1.25rem 1.5rem;
  border: 0.0625rem solid var(--color-text);
  color: var(--color-text);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-recruit-writer__note {
    padding: 1rem 1.25rem;
    font-size: 0.75rem;
    line-height: 1.67;
  }
}

.p-recruit-section__title-head {
  display: grid;
  justify-items: start;
}

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

.p-recruit-section__title-divider {
  width: 2.25rem;
  height: 0.0625rem;
  margin-block-start: 1.5rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-recruit-section__title-divider {
    width: 3.75rem;
    margin-block-start: 1rem;
  }
}

.p-recruit-lead {
  padding-block: 5rem 0;
  background-color: var(--color-base);
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-recruit-lead {
    padding-block: 2.5rem 0;
  }
}

.p-recruit-lead__head {
  text-align: center;
}

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

.p-recruit-lead__intro {
  display: grid;
  gap: 0;
  margin-block-start: 2rem;
  color: var(--color-white);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.944;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit-lead__intro {
    margin-block-start: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.78;
    text-align: left;
  }
}

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

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

.p-recruit-lead__nav-item {
  display: flex;
  min-width: 0;
}

.p-recruit-lead__nav-button {
  display: flex;
  position: relative;
  flex: 1;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 5rem;
  padding: 1rem 1.5rem 1rem 1.25rem;
  border: 0.0625rem solid var(--color-white);
  background-color: var(--color-white);
  color: var(--color-base);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375;
  text-align: center;
  text-decoration: none;
  transition: border-color var(--duration), color var(--duration), background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-recruit-lead__nav-button {
    min-height: 3.125rem;
    padding: 0.125rem 1rem;
    font-size: 0.75rem;
  }
}
.p-recruit-lead__nav-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0.669375rem;
  height: 0.37875rem;
  translate: 0 -50%;
  background-color: var(--color-base);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10.71 6.06' fill='none' stroke='currentColor' stroke-miterlimit='10'%3E%3Cpolyline points='10.35 .35 5.35 5.35 .35 .35' /%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition: background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-recruit-lead__nav-button::after {
    right: 0.625rem;
  }
}
@media (any-hover: hover) {
  .p-recruit-lead__nav-button:hover {
    opacity: 1;
    background-color: var(--color-base);
    color: var(--color-white);
  }
  .p-recruit-lead__nav-button:hover::after {
    background-color: var(--color-white);
  }
}
.p-recruit-lead__nav-button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 0.125rem;
}

.p-recruit-lead__nav-button-text {
  display: block;
  width: 100%;
  text-align: center;
}

.p-release-list {
  padding-block: 5rem 6.25rem;
  background-color: var(--color-base);
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-release-list {
    padding-block: 2.5rem 3.75rem;
  }
}

.p-release-list__intro {
  display: grid;
  gap: 0;
  color: var(--color-white);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.944;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-release-list__intro {
    font-size: 0.875rem;
    line-height: 1.78;
    text-align: left;
  }
}

.p-release-list__items {
  display: grid;
  gap: 5rem;
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-release-list__items {
    gap: 2.5rem;
    margin-block-start: 2.5rem;
  }
}

.p-release-list__item {
  min-width: 0;
}

.p-release-list__card {
  display: grid;
  grid-template-columns: 29.3706293706% minmax(0, 1fr);
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 2rem 2rem 1.5rem;
  background-color: var(--color-secondary);
}
@media screen and (max-width: 767px) {
  .p-release-list__card {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "thumb head" "comment comment";
    gap: 1rem;
    min-height: auto;
    padding: 1.5rem 1.25rem 2rem;
  }
}

.p-release-list__thumb {
  overflow: hidden;
  background-color: #e0e0e0;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .p-release-list__thumb {
    grid-area: thumb;
    aspect-ratio: 1;
  }
}

.p-release-list__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-release-list__image {
    min-height: auto;
    aspect-ratio: 1;
  }
}

.p-release-list__body {
  display: grid;
  align-content: start;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-release-list__body {
    display: contents;
  }
}

.p-release-list__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-release-list__head {
    grid-area: head;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    height: 100%;
  }
}

.p-release-list__title-head {
  display: grid;
  justify-items: start;
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-release-list__title-head {
    flex: none;
  }
}

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

.p-release-list__title-divider {
  width: 2.25rem;
  height: 0.0625rem;
  margin-block-start: 1.5rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-release-list__title-divider {
    width: 3.75rem;
    margin-block-start: 1rem;
  }
}

.p-release-list__links {
  display: flex;
  flex-shrink: 0;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-release-list__links {
    gap: 1rem;
    margin-inline: auto 0;
  }
}

.p-release-list__links-item {
  display: flex;
}

.p-release-list__link {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-release-list__link {
    width: 2rem;
    height: 2rem;
  }
}
@media (any-hover: hover) {
  .p-release-list__link:hover {
    opacity: 0.7;
  }
}
.p-release-list__link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 0.125rem;
  border-radius: 50%;
}

.p-release-list__link--apple {
  background-color: var(--color-text);
  mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 24.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Artwork' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='73px' height='73px' viewBox='0 0 73 73' style='enable-background:new 0 0 73 73;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill-rule:evenodd;clip-rule:evenodd;%7D%0A%3C/style%3E%3Cg id='Layer_5'%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath class='st0' d='M72,19.94c0-0.72-0.01-1.45-0.03-2.17c-0.04-1.58-0.14-3.17-0.42-4.73c-0.28-1.58-0.75-3.06-1.48-4.5 c-0.72-1.41-1.66-2.71-2.78-3.83c-1.12-1.12-2.42-2.06-3.83-2.78c-1.44-0.73-2.91-1.2-4.49-1.48c-1.56-0.28-3.15-0.37-4.73-0.42 C53.51,0.02,52.78,0.01,52.06,0c-0.86,0-1.72,0-2.58,0H22.52c-0.86,0-1.72,0-2.58,0c-0.72,0-1.45,0.01-2.17,0.03 c-1.58,0.04-3.17,0.14-4.73,0.42C11.46,0.74,9.98,1.2,8.55,1.94C7.13,2.66,5.84,3.6,4.72,4.72S2.65,7.13,1.93,8.55 c-0.73,1.44-1.2,2.91-1.48,4.5c-0.28,1.56-0.37,3.15-0.42,4.73C0.02,18.5,0.01,19.22,0,19.94c0,0.86,0,1.72,0,2.58v26.95 c0,0.86,0,1.72,0,2.58c0,0.72,0.01,1.45,0.03,2.17c0.04,1.58,0.14,3.17,0.42,4.73c0.28,1.58,0.75,3.06,1.48,4.5 c0.72,1.41,1.66,2.71,2.78,3.83s2.42,2.06,3.83,2.78c1.44,0.73,2.91,1.2,4.49,1.48c1.56,0.28,3.15,0.37,4.73,0.42 c0.72,0.02,1.45,0.03,2.17,0.03c0.86,0.01,1.72,0,2.58,0h26.95c0.86,0,1.72,0,2.58,0c0.72,0,1.45-0.01,2.17-0.03 c1.58-0.04,3.17-0.14,4.73-0.42c1.58-0.28,3.06-0.75,4.49-1.48c1.41-0.72,2.71-1.66,3.83-2.78c1.12-1.12,2.06-2.41,2.78-3.83 c0.73-1.44,1.2-2.91,1.48-4.5c0.28-1.56,0.37-3.15,0.42-4.73c0.02-0.72,0.03-1.45,0.03-2.17c0.01-0.86,0-1.72,0-2.58V22.52 C72,21.66,72,20.8,72,19.94z M52.71,46.85c0,0.91-0.01,1.74-0.2,2.65c-0.19,0.89-0.53,1.72-1.05,2.47 c-0.52,0.75-1.19,1.36-1.97,1.82c-0.79,0.47-1.62,0.73-2.5,0.91c-1.66,0.33-2.79,0.41-3.86,0.2c-1.03-0.21-1.9-0.68-2.6-1.32 c-1.03-0.95-1.68-2.23-1.82-3.56c-0.16-1.57,0.36-3.24,1.53-4.48c0.59-0.62,1.34-1.11,2.34-1.5c1.04-0.4,2.19-0.65,3.96-1 c0.47-0.09,0.93-0.19,1.4-0.28c0.61-0.12,1.14-0.28,1.56-0.8c0.43-0.52,0.43-1.16,0.43-1.78V24.32c0-1.21-0.54-1.54-1.7-1.32 c-0.83,0.16-18.62,3.75-18.62,3.75c-1,0.24-1.36,0.57-1.36,1.82v23.23c0,0.91-0.05,1.74-0.24,2.65c-0.19,0.89-0.53,1.72-1.05,2.47 c-0.52,0.75-1.19,1.36-1.97,1.82c-0.79,0.47-1.62,0.74-2.5,0.92c-1.66,0.33-2.79,0.41-3.86,0.2c-1.03-0.21-1.9-0.69-2.6-1.33 c-1.03-0.95-1.63-2.23-1.78-3.56c-0.16-1.57,0.31-3.24,1.49-4.48c0.59-0.62,1.34-1.11,2.34-1.5c1.04-0.4,2.19-0.65,3.96-1 c0.47-0.09,0.93-0.19,1.4-0.28c0.61-0.12,1.14-0.28,1.56-0.8c0.42-0.52,0.47-1.13,0.47-1.75c0-4.92,0-26.78,0-26.78 c0-0.36,0.03-0.6,0.05-0.72c0.09-0.56,0.31-1.05,0.72-1.39c0.34-0.28,0.78-0.48,1.33-0.6l0.01,0L49,11.33 c0.19-0.04,1.73-0.31,1.91-0.33c1.16-0.1,1.81,0.66,1.81,1.89L52.71,46.85L52.71,46.85z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.p-release-list__link--spotify {
  background-color: var(--color-text);
  mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 236.05 225.25'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23231f20;stroke-width:0px;%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='m122.37,3.31C61.99.91,11.1,47.91,8.71,108.29c-2.4,60.38,44.61,111.26,104.98,113.66,60.38,2.4,111.26-44.6,113.66-104.98C229.74,56.59,182.74,5.7,122.37,3.31Zm46.18,160.28c-1.36,2.4-4.01,3.6-6.59,3.24-.79-.11-1.58-.37-2.32-.79-14.46-8.23-30.22-13.59-46.84-15.93-16.62-2.34-33.25-1.53-49.42,2.4-3.51.85-7.04-1.3-7.89-4.81-.85-3.51,1.3-7.04,4.81-7.89,17.78-4.32,36.06-5.21,54.32-2.64,18.26,2.57,35.58,8.46,51.49,17.51,3.13,1.79,4.23,5.77,2.45,8.91Zm14.38-28.72c-2.23,4.12-7.39,5.66-11.51,3.43-16.92-9.15-35.24-15.16-54.45-17.86-19.21-2.7-38.47-1.97-57.26,2.16-1.02.22-2.03.26-3.01.12-3.41-.48-6.33-3.02-7.11-6.59-1.01-4.58,1.89-9.11,6.47-10.12,20.77-4.57,42.06-5.38,63.28-2.4,21.21,2.98,41.46,9.62,60.16,19.74,4.13,2.23,5.66,7.38,3.43,11.51Zm15.94-32.38c-2.1,4.04-6.47,6.13-10.73,5.53-1.15-.16-2.28-.52-3.37-1.08-19.7-10.25-40.92-17.02-63.07-20.13-22.15-3.11-44.42-2.45-66.18,1.97-5.66,1.15-11.17-2.51-12.32-8.16-1.15-5.66,2.51-11.17,8.16-12.32,24.1-4.89,48.74-5.62,73.25-2.18,24.51,3.44,47.99,10.94,69.81,22.29,5.12,2.66,7.11,8.97,4.45,14.09Z'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.p-release-list__link-icon {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
}

.p-release-list__comment {
  color: var(--color-text);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.95;
}
@media screen and (max-width: 767px) {
  .p-release-list__comment {
    grid-area: comment;
    font-size: 0.875rem;
    line-height: 1.85;
  }
}
.p-release-list__comment p {
  margin: 0;
}
.p-release-list__comment p + p {
  margin-block-start: 1em;
}

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

.p-release-list__empty {
  margin-block-start: 5rem;
  padding: 3.75rem;
  border: 1px solid var(--color-gray);
  background-color: var(--color-secondary);
  color: var(--color-white);
  font-size: 1rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-release-list__empty {
    margin-block-start: 2.5rem;
    padding: 2.5rem 1.25rem;
    font-size: 0.875rem;
  }
}

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

.p-sample__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-sample__inner {
    gap: 1rem;
  }
}

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

.p-sample__button-wrap {
  width: min(15rem, 100%);
}
.p-sample__button-wrap > * {
  width: 100%;
}

.p-sample__divider {
  width: 100%;
  height: 1px;
  max-width: 37.5rem;
  margin: 0;
  border: 0;
  background-color: var(--color-gray);
}

.p-sample__bg {
  width: 100%;
  height: 25rem;
  max-width: 37.5rem;
  border-radius: 8px;
  background-image: url("../images/bg_sample.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-sample__bg {
    height: 18.75rem;
  }
}

.p-sample__image {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 32rem;
  border-radius: 8px;
}

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

.p-sample p {
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-sample p {
    font-size: 0.875rem;
  }
}

.p-service-articles {
  padding-block: 3.75rem 5rem;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-service-articles {
    padding-block: 1.5rem 2.5rem;
  }
}

.p-service-articles__inner {
  display: grid;
  gap: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-service-articles__inner {
    gap: 4rem;
  }
}

.p-service-article {
  display: grid;
  scroll-margin-block-start: var(--header-height);
}

.p-service-article__header {
  display: grid;
}

.p-service-article__label {
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.p-service-article__label[data-color=pink] {
  color: var(--color-accent);
}
.p-service-article__label[data-color=blue] {
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-service-article__label {
    font-size: 0.75rem;
  }
}

.p-service-article__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.718;
}
@media screen and (max-width: 767px) {
  .p-service-article__title {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.p-service-article__divider {
  width: 2.25rem;
  height: 0.0625rem;
  margin-block-start: 1.5rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-service-article__divider {
    width: 3.75rem;
    margin-block-start: 1rem;
  }
}

.p-service-article__intro {
  display: grid;
  margin-block-start: 1.75rem;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-service-article__intro {
    margin-block-start: 1rem;
    font-size: 0.875rem;
    line-height: 1.714;
  }
}

.p-service-article__body {
  display: grid;
  grid-template-columns: minmax(0, 44.1666666667%) minmax(0, 52.5%);
  gap: 2.5rem;
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .p-service-article__body {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service-article__body {
    display: flex;
    flex-direction: column-reverse;
    gap: 1.5rem;
    margin-block-start: 1rem;
  }
}

.p-service-article__main {
  display: grid;
  gap: 2.125rem;
  align-content: start;
}
@media screen and (max-width: 767px) {
  .p-service-article__main {
    gap: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .p-service-article--intro-left .p-service-article__body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service-article--intro-left .p-service-article__main {
    display: contents;
  }
}
.p-service-article--intro-left .p-service-article__main .p-service-article__intro {
  margin-block-start: 0;
}
@media screen and (max-width: 767px) {
  .p-service-article--intro-left .p-service-article__intro {
    order: 1;
    margin-block-start: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service-article--intro-left .p-service-article__visual {
    order: 2;
  }
}
@media screen and (max-width: 767px) {
  .p-service-article--intro-left .p-service-article__content {
    order: 3;
  }
}

.p-service-article__content {
  display: grid;
  gap: 2.125rem;
  align-content: start;
}
@media screen and (max-width: 767px) {
  .p-service-article__content {
    gap: 1rem;
  }
}

.p-service-article__panel {
  padding: 1.5rem 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-service-article__panel {
    padding: 1rem 1.25rem;
  }
}

.p-service-article__panel--services {
  background-color: var(--color-black);
}

.p-service-article__panel-title-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.p-service-article__panel-title {
  position: relative;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-service-article__panel-title {
    font-size: 1rem;
  }
}

.p-service-article__panel-title-border {
  flex: 1;
  height: 0.0625rem;
  background-color: var(--color-white);
}

.p-service-article__service-list {
  margin-block-start: 0.4375rem;
}

.p-service-article__service-item {
  padding-block: 0.625rem;
  border-block-end: 0.0625rem dotted var(--color-white);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-service-article__service-item {
    padding-block: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.571;
  }
}
.p-service-article__service-item:last-child {
  padding-block-end: 0;
  border-block-end: none;
}

.p-service-article__highlight {
  padding: 1.5rem 1.5625rem;
  border: 0.0625rem solid var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-service-article__highlight {
    padding: 1rem 1.25rem;
  }
}

.p-service-article__highlight-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-service-article__highlight-title {
    font-size: 1rem;
  }
}

.p-service-article__highlight-text {
  margin-block-start: 0.8125rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-service-article__highlight-text {
    margin-block-start: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.714;
  }
}

.p-service-article__content-action {
  margin-block-start: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-service-article__content-action {
    margin-block-start: 0.25rem;
  }
}

.p-service-article__content-button {
  width: 15.1875rem;
}
@media screen and (max-width: 767px) {
  .p-service-article__content-button {
    width: 100%;
  }
}

.p-service-article__visual {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border: 0.4375rem solid #484848;
}
@media screen and (max-width: 767px) {
  .p-service-article__visual {
    aspect-ratio: 7/3;
    border: 0.3125rem solid #484848;
    min-height: 0;
  }
}

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

.p-service-article__facility {
  display: grid;
  margin-block-start: 4.6875rem;
  background-color: var(--color-secondary);
  color: var(--color-text);
  padding: 1.875rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-service-article__facility {
    margin-block-start: 1.5rem;
    padding: 1rem;
  }
}

.p-service-article__facility-head {
  display: flex;
  position: relative;
  align-items: center;
  min-height: 3.75rem;
  padding: 0.75rem 1.25rem 0.75rem 1.375rem;
  background-color: var(--color-black);
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-service-article__facility-head {
    min-height: 3rem;
    padding: 0.625rem 1rem 0.625rem 1.5rem;
  }
}
.p-service-article__facility-head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--color-primary);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
@media screen and (max-width: 767px) {
  .p-service-article__facility-head::before {
    width: 0.875rem;
    height: 0.875rem;
  }
}
.p-service-article__facility-head[data-color=pink]::before {
  background-color: var(--color-accent);
}
.p-service-article__facility-head[data-color=blue]::before {
  background-color: var(--color-primary);
}

.p-service-article__facility-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-service-article__facility-title {
    font-size: 1rem;
  }
}

.p-service-article__facility-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-block-start: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-service-article__facility-intro {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
}

.p-service-article__facility-lead {
  flex: 1;
  min-width: 0;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-service-article__facility-lead {
    font-size: 0.75rem;
    line-height: 1.667;
  }
}

.p-service-article__facility-button {
  flex-shrink: 0;
  width: 24.5rem;
  min-height: 3.375rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-service-article__facility-button {
    width: 100%;
    min-height: 3.125rem;
    font-size: 0.8125rem;
  }
}

.p-service-article__table-wrap {
  overflow-x: auto;
  margin-block-start: 1.75rem;
  padding: 1.875rem 1.8125rem;
  background: var(--color-white);
  color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-service-article__table-wrap {
    margin-block-start: 1rem;
    padding-inline: 1.25rem;
    padding-block: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .scroll-hint-icon-wrap {
    display: none;
  }
}

.p-service-article__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
@media screen and (max-width: 767px) {
  .p-service-article__table {
    width: 40rem;
    min-width: 40rem;
  }
}

.p-service-article__table th,
.p-service-article__table td {
  border: 0.0625rem solid #d2d2d2;
  vertical-align: middle;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-service-article__table th,
  .p-service-article__table td {
    padding: 0.75rem 0.625rem;
  }
}

.p-service-article__table thead th {
  padding: 0.875rem 1rem;
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-service-article__table thead th {
    font-size: 0.75rem;
  }
}

.p-service-article__table tbody td {
  padding: 1.0625rem 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-service-article__table tbody td {
    padding: 0.625rem 0.625rem;
  }
}

.p-service-article__table thead th:first-child,
.p-service-article__table tbody td:first-child {
  padding-inline-start: 0;
  border-inline-start: none;
}

.p-service-article__table thead th:last-child,
.p-service-article__table tbody td:last-child {
  padding-inline: 0.875rem 0;
  border-inline-end: none;
}

.p-service-article__table-col {
  min-width: 0;
}

.p-service-article__table-col--name {
  width: 19.7%;
}

.p-service-article__table-col--address {
  width: 51.3%;
}

.p-service-article__table-col--action {
  width: 29%;
}

.p-service-article__table-name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-service-article__table-name {
    font-size: 0.8125rem;
  }
}

.p-service-article__table-address {
  display: grid;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.428;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .p-service-article__table-address {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}

.p-service-article__table-button {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 3.125rem;
  padding: 0.75rem 0.875rem 0.75rem 1.125rem;
  border: 0.0625rem solid var(--color-primary);
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  transition: background-color var(--duration), border-color var(--duration), color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-service-article__table-button {
    min-height: 3rem;
    padding: 0.625rem 0.875rem;
    font-size: 0.8125rem;
  }
}
.p-service-article__table-button::after {
  content: "";
  flex-shrink: 0;
  width: 1.625rem;
  height: 0.0625rem;
  margin-inline-start: auto;
  background-color: var(--color-white);
  transition: background-color var(--duration), translate var(--duration);
}
@media (any-hover: hover) {
  .p-service-article__table-button:hover {
    opacity: 1;
    background-color: var(--color-white);
    color: var(--color-primary);
  }
  .p-service-article__table-button:hover::after {
    background-color: var(--color-primary);
    translate: 0.5rem 0;
  }
}
.p-service-article__table-button:focus-visible {
  outline: 0.125rem solid var(--color-primary);
  outline-offset: 0.125rem;
}

.p-service-nav {
  color: var(--color-white);
}

.p-service-nav__inner {
  display: grid;
  gap: 2.625rem;
  padding-block: 2rem 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-service-nav__inner {
    gap: 1.5rem;
    padding-block: 2rem 1.5rem;
  }
}

.p-service-nav__lead {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.944;
}
@media screen and (max-width: 767px) {
  .p-service-nav__lead {
    font-size: 0.875rem;
    line-height: 1.78;
    text-align: left;
  }
}

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

.p-service-nav__item {
  display: flex;
  min-width: 0;
}

.p-service-nav__button {
  display: flex;
  position: relative;
  flex: 1;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 5rem;
  padding: 1rem 1.5rem 1rem 1.25rem;
  border: 0.0625rem solid var(--color-white);
  background-color: var(--color-white);
  color: var(--color-base);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375;
  text-align: center;
  text-decoration: none;
  transition: border-color var(--duration), color var(--duration), background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-service-nav__button {
    min-height: 3.125rem;
    padding: 0.125rem 1rem 0.125rem 1rem;
    font-size: 0.875rem;
  }
}
.p-service-nav__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0.669375rem;
  height: 0.37875rem;
  translate: 0 -50%;
  background-color: var(--color-base);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10.71 6.06' fill='none' stroke='currentColor' stroke-miterlimit='10'%3E%3Cpolyline points='10.35 .35 5.35 5.35 .35 .35' /%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition: background-color var(--duration);
}
@media (any-hover: hover) {
  .p-service-nav__button:hover {
    opacity: 1;
    background-color: var(--color-base);
    color: var(--color-white);
  }
  .p-service-nav__button:hover::after {
    background-color: var(--color-white);
  }
}
.p-service-nav__button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 0.125rem;
}

.p-service-nav__button-text {
  display: block;
  width: 100%;
  text-align: center;
}

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

.p-single__inner {
  width: min(100%, 68.75rem);
}
@media screen and (max-width: 767px) {
  .p-single__inner {
    width: min(100%, 37.5rem);
  }
}

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

.p-single__subtitle {
  margin-block-end: 0.5rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
}
@media screen and (max-width: 767px) {
  .p-single__subtitle {
    margin-block-end: 0.75rem;
    font-size: 1rem;
  }
}

.p-single__title {
  margin-block-start: 0.75rem;
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single__title {
    font-size: 1.375rem;
  }
}

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

.p-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-block-start: 1rem;
  color: var(--color-border-gray);
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-single__meta {
    margin-block-start: 1.5rem;
  }
}

.p-single__author {
  display: inline-block;
  color: var(--color-text);
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-single__author {
    font-size: 1rem;
  }
}

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

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

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

/* お知らせシングル：アーカイブ（p-news-list）とトンマナを揃える */
.p-single--news .p-single__header {
  margin-block-start: 0;
}

.p-single--news .p-single__meta {
  gap: 1.25rem;
  margin-block-start: 1rem;
  color: inherit;
}
@media screen and (max-width: 767px) {
  .p-single--news .p-single__meta {
    gap: 1rem;
  }
}

.p-single--news .p-single__date {
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--ff-en);
  color: #999999;
}
@media screen and (max-width: 767px) {
  .p-single--news .p-single__date {
    font-size: 0.875rem;
  }
}

.p-single--news .p-single__categories {
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-single--news .p-single__categories {
    gap: 1rem;
  }
}

.p-single--news .p-single__category {
  min-width: 6.25rem;
  padding: 0.5rem 0.625rem;
  border-radius: 0;
  background-color: #4a4a4a;
  color: var(--color-text);
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-single--news .p-single__category {
    padding: 0.25rem 0.625rem;
  }
}
@media (any-hover: hover) {
  .p-single--news .p-single__category:hover {
    opacity: 0.8;
  }
}

.p-single__thumbnail {
  overflow: hidden;
  margin-block-start: 2rem;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .p-single__thumbnail {
    margin-block-start: 3rem;
  }
}

.p-single__thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  transition: scale 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-single__thumbnail img {
    border-radius: 12px;
  }
}

.p-single__featured-image {
  overflow: hidden;
  margin-block-start: 2rem;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .p-single__featured-image {
    margin-block-start: 3rem;
  }
}

.p-single__featured-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-single__featured-image img {
    border-radius: 12px;
  }
}

.p-single__content {
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-single__content {
    margin-block-start: 4rem;
  }
}
.p-single__content h1 {
  margin-block-start: 3rem;
  padding-block-end: 1rem;
  border-bottom: 0.125rem solid var(--color-gray);
  color: var(--color-text);
  font-size: 1.75rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single__content h1 {
    margin-block-start: 4rem;
    font-size: 2.25rem;
  }
}
.p-single__content h2 {
  position: relative;
  margin-block-start: 2.5rem;
  padding-inline: 1.25rem;
  padding-block-end: 1.84375rem;
  border-block-end: 1px solid #acacac;
  color: var(--color-text);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 2.18;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-single__content h2 {
    padding-inline: 0.9375rem;
    padding-block-end: 0.9375rem;
    font-size: 1.25rem;
    line-height: 1.8;
  }
}
.p-single__content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 15.625rem;
  height: 0.0625rem;
  background-color: var(--color-accent);
}
@media screen and (max-width: 767px) {
  .p-single__content h2::before {
    width: 6.25rem;
  }
}
.p-single__content h3 {
  position: relative;
  margin-block-start: 2.1875rem;
  padding-inline: 1.25rem;
  font-size: max(1.25rem, 8px);
  font-weight: 700;
  line-height: 2.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-single__content h3 {
    padding-inline: 0.9375rem;
    font-size: max(1.125rem, 8px);
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
}
.p-single__content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 0.1875rem;
  height: 2.625rem;
  border-radius: 100vmax;
  background-color: var(--color-accent);
}
.p-single__content h4 {
  margin-block-start: 1.5rem;
  font-size: max(1.125rem, 8px);
  font-weight: 700;
  line-height: 2.67;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-single__content h4 {
    font-size: max(1rem, 8px);
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
.p-single__content h5 {
  margin-block-start: 1.5rem;
  font-size: max(1rem, 8px);
  font-weight: 700;
  line-height: 2.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-single__content h5 {
    font-size: max(0.875rem, 8px);
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
.p-single__content p {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-single__content p {
    margin-block-start: 0.5rem;
  }
}
.p-single__content ul,
.p-single__content ol {
  margin-block-start: 1rem;
  padding-inline-start: 1.5rem;
  color: var(--color-text);
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-single__content ul,
  .p-single__content ol {
    margin-block-start: 1.25rem;
    padding-inline-start: 2rem;
  }
}
.p-single__content ul {
  list-style-type: disc;
}
.p-single__content ol {
  list-style-type: decimal;
}
.p-single__content li {
  margin-block-start: 0.5rem;
  line-height: 1.8;
}
.p-single__content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  transition: opacity var(--duration);
}
.p-single__content a:hover {
  opacity: 0.8;
}
.p-single__content img {
  display: block;
  height: auto;
  max-width: 100%;
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-single__content img {
    margin-block-start: 2rem;
  }
}
.p-single__content figcaption {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-single__content figcaption {
    font-size: 0.75rem;
  }
}
.p-single__content blockquote {
  margin-block-start: 1.5rem;
  padding-block: 1rem;
  padding-inline: 1.5rem;
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .p-single__content blockquote {
    margin-block-start: 2rem;
    padding-block: 1.25rem;
    padding-inline: 2rem;
  }
}
.p-single__content blockquote p {
  margin-block-start: 0;
}
.p-single__content code {
  padding-block: 0.125rem;
  padding-inline: 0.375rem;
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-primary);
  font-family: monospace;
  font-size: 0.875rem;
}
.p-single__content pre {
  overflow-x: auto;
  margin-block-start: 1.5rem;
  padding-block: 1rem;
  padding-inline: 1rem;
  border-radius: 8px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-family: monospace;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single__content pre {
    padding-block: 1.5rem;
    padding-inline: 1.5rem;
  }
}
.p-single__content pre code {
  padding-block: 0;
  padding-inline: 0;
  background-color: transparent;
}
.p-single__content table {
  width: 100%;
  margin-block-start: 1.5rem;
  border: 0.0625rem solid #484848;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .p-single__content table {
    margin-block-start: 2rem;
  }
}
.p-single__content thead {
  border-bottom: none;
}
.p-single__content th,
.p-single__content td {
  border-color: #484848;
  padding-block: 0.75rem;
  padding-inline: 1rem;
  line-height: 1.6;
  text-align: start;
}
@media screen and (max-width: 767px) {
  .p-single__content th,
  .p-single__content td {
    padding-block: 1rem;
    padding-inline: 1.25rem;
  }
}
.p-single__content th {
  border-bottom: none;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-weight: var(--fw-bold);
}
.p-single__content td {
  color: var(--color-text);
}
.p-single__content hr {
  margin-block-start: 2rem;
  border: none;
  border-top: 0.0625rem solid var(--color-border-gray);
}
@media screen and (max-width: 767px) {
  .p-single__content hr {
    margin-block-start: 3rem;
  }
}
.p-single__content strong {
  color: var(--color-text);
  font-weight: var(--fw-bold);
}
.p-single__content em {
  font-style: italic;
}
.p-single__content .wp-block-buttons {
  margin-block-start: 1.5rem;
  text-align: center;
}
.p-single__content .wp-block-buttons a {
  color: var(--color-white);
  text-decoration: none;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-single__content .wp-block-buttons a:hover {
    opacity: 0.8;
  }
}

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

.p-single__tag {
  display: inline-block;
  padding-block: 0.25rem;
  padding-inline: 0.75rem;
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-accent);
  font-size: 0.75rem;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-single__tag {
    font-size: 0.875rem;
  }
}

.p-single__tag:hover {
  opacity: 0.8;
}

.p-single__tag--custom {
  color: var(--color-text);
  cursor: default;
}

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

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

.p-single__content-pagination-prev {
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-single__content-pagination-prev {
    text-align: center;
  }
}

.p-single__content-pagination-center {
  justify-self: center;
}
@media screen and (max-width: 767px) {
  .p-single__content-pagination-center {
    justify-self: center;
  }
}

.p-single__content-pagination-next {
  min-width: 0;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-single__content-pagination-next {
    text-align: center;
  }
}

.p-single__content-pagination-link {
  color: var(--color-text);
  text-decoration: none;
  font-size: max(1rem, 8px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-single__content-pagination-link {
    font-size: max(0.75rem, 8px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
}
@media (any-hover: hover) {
  .p-single__content-pagination-link:hover {
    opacity: 0.7;
  }
}

.p-single__content-pagination-button {
  width: 18.75rem;
}
.p-single__content-pagination-button::after {
  background-color: currentColor;
}
@media screen and (max-width: 767px) {
  .p-single__content-pagination-button {
    width: 100%;
    max-width: 15rem;
  }
}

.p-single--post .p-single__related {
  margin-block-start: 3rem;
  padding-block-start: 2rem;
  border-top: 0.0625rem solid var(--color-border-gray);
}
@media screen and (max-width: 767px) {
  .p-single--post .p-single__related {
    margin-block-start: 4rem;
    padding-block-start: 3rem;
  }
}

.p-single--post .p-single__related-title {
  margin-block-end: 1.5rem;
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
}
@media screen and (max-width: 767px) {
  .p-single--post .p-single__related-title {
    margin-block-end: 2rem;
    align-items: start;
  }
}
@media (any-hover: hover) {
  .p-single--post .p-single__related-title:hover {
    opacity: 0.7;
  }
}

.p-single--post .p-single__related-thumbnail {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  background-color: var(--color-gray);
}
@media screen and (max-width: 600px) {
  .p-single--post .p-single__related-thumbnail {
    aspect-ratio: 4/3;
  }
}

.p-single--post .p-single__related-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.p-single--post .p-single__related-date {
  color: var(--color-text);
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-single--post .p-single__related-date {
    font-size: 0.875rem;
  }
}

.p-single--post .p-single__related-item-title {
  margin: 0;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single--post .p-single__related-item-title {
    font-size: 1rem;
  }
}

.p-staff-list {
  padding-block: 5rem 6.25rem;
  background-color: var(--color-base);
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-staff-list {
    padding-block: 2.5rem 3.75rem;
  }
}

.p-staff-list__intro {
  display: grid;
  gap: 0;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-staff-list__intro {
    font-size: 0.875rem;
    line-height: 1.71;
  }
}

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

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

.p-staff-list__nav-item {
  display: flex;
  min-width: 0;
}

.p-staff-list__nav-button {
  display: flex;
  position: relative;
  flex: 1;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 4.375rem;
  padding: 1rem 1.5rem 1rem 1rem;
  border: 0.0625rem solid var(--color-white);
  background-color: var(--color-white);
  color: var(--color-base);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.375;
  text-align: center;
  text-decoration: none;
  transition: border-color var(--duration), color var(--duration), background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-staff-list__nav-button {
    min-height: 3.125rem;
    padding: 0.125rem 0.875rem 0.125rem 0.625rem;
    font-size: 0.75rem;
  }
}
.p-staff-list__nav-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0.669375rem;
  height: 0.37875rem;
  translate: 0 -50%;
  background-color: var(--color-base);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10.71 6.06' fill='none' stroke='currentColor' stroke-miterlimit='10'%3E%3Cpolyline points='10.35 .35 5.35 5.35 .35 .35' /%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition: background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-staff-list__nav-button::after {
    right: 0.625rem;
  }
}
@media (any-hover: hover) {
  .p-staff-list__nav-button:hover {
    opacity: 1;
    background-color: var(--color-base);
    color: var(--color-white);
  }
  .p-staff-list__nav-button:hover::after {
    background-color: var(--color-white);
  }
}
.p-staff-list__nav-button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 0.125rem;
}

.p-staff-list__nav-button-text {
  display: block;
  width: 100%;
  text-align: center;
}

.p-staff-list__sections {
  display: grid;
  gap: 6.25rem;
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-staff-list__sections {
    gap: 4rem;
    margin-block-start: 2.5rem;
  }
}

.p-staff-list__section {
  scroll-margin-block-start: calc(var(--header-height) + 1.5rem);
}

.p-staff-list__section-head {
  display: grid;
}

.p-staff-list__section-label {
  font-family: var(--ff-en);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-staff-list__section-label {
    font-size: 0.75rem;
  }
}

.p-staff-list__section:nth-child(odd) .p-staff-list__section-label {
  color: var(--color-accent);
}

.p-staff-list__section:nth-child(even) .p-staff-list__section-label {
  color: var(--color-primary);
}

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

.p-staff-list__section-divider {
  width: 2.25rem;
  height: 0.0625rem;
  margin-block-start: 1.5rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-staff-list__section-divider {
    width: 3.75rem;
    margin-block-start: 1rem;
  }
}

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

.p-staff-list__item {
  min-width: 0;
}

.p-staff-list__card {
  display: grid;
  gap: 0.4375rem;
}

.p-staff-list__card-button {
  display: grid;
  gap: 0.4375rem;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
@media (any-hover: hover) {
  .p-staff-list__card-button:hover .p-staff-list__image {
    transform: scale(1.05);
  }
}
.p-staff-list__card-button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 0.25rem;
}

.p-staff-list__thumb {
  overflow: hidden;
  aspect-ratio: 1;
  background-color: #e0e0e0;
}

.p-staff-list__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration);
}

.p-staff-list__name {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.14;
}
@media screen and (max-width: 767px) {
  .p-staff-list__name {
    font-size: 0.875rem;
  }
}

.p-staff-list__empty {
  margin-block-start: 5rem;
  padding: 3.75rem;
  border: 1px solid var(--color-gray);
  background-color: var(--color-secondary);
  color: var(--color-white);
  font-size: 1rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-staff-list__empty {
    margin-block-start: 2.5rem;
    padding: 2.5rem 1.25rem;
    font-size: 0.875rem;
  }
}

.p-staff-list__modal-panel {
  max-height: 23.4375rem;
}
@media screen and (max-width: 767px) {
  .p-staff-list__modal-panel {
    max-height: none;
  }
}

.p-staff-list__modal .c-modal__close {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-staff-list__modal .c-modal__close {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.p-staff-list__modal .c-modal__close::before, .p-staff-list__modal .c-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.625rem;
  height: 0.0625rem;
  background-color: var(--color-text);
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-staff-list__modal .c-modal__close::before, .p-staff-list__modal .c-modal__close::after {
    width: 1rem;
  }
}
.p-staff-list__modal .c-modal__close::before {
  translate: -50% -50%;
  rotate: 45deg;
}
.p-staff-list__modal .c-modal__close::after {
  translate: -50% -50%;
  rotate: -45deg;
}
@media (any-hover: hover) {
  .p-staff-list__modal .c-modal__close:hover::before, .p-staff-list__modal .c-modal__close:hover::after {
    opacity: 0.7;
  }
}

.p-staff-list__modal-body {
  display: grid;
  grid-template-columns: 23.4375rem minmax(0, 1fr);
  min-height: 23.4375rem;
}
@media screen and (max-width: 767px) {
  .p-staff-list__modal-body {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }
}

.p-staff-list__modal-media {
  overflow: hidden;
  background-color: #e0e0e0;
}
@media screen and (max-width: 767px) {
  .p-staff-list__modal-media {
    aspect-ratio: 1;
  }
}

.p-staff-list__modal-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 23.4375rem;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-staff-list__modal-image {
    min-height: auto;
    aspect-ratio: 1;
  }
}

.p-staff-list__modal-content {
  display: grid;
  align-content: start;
  gap: 1.125rem;
  padding: 3.9375rem 2.0625rem 2.5rem 2.0625rem;
}
@media screen and (max-width: 767px) {
  .p-staff-list__modal-content {
    gap: 1rem;
    padding: 3rem 1.25rem 2rem;
  }
}

.p-staff-list__modal-head {
  display: grid;
  gap: 0.3125rem;
  padding-inline-end: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-staff-list__modal-head {
    padding-inline-end: 2.25rem;
  }
}

.p-staff-list__modal-heading {
  display: grid;
  gap: 0.1875rem;
}

.p-staff-list__modal-title {
  color: var(--color-text);
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-staff-list__modal-title {
    font-size: 1.375rem;
  }
}

.p-staff-list__modal-name-en {
  color: #aaa;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.p-staff-list__modal-department {
  color: var(--color-text);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.4;
}

.p-staff-list__modal-divider {
  width: 100%;
  height: 0.0625rem;
  margin: 0;
  border: none;
  background-color: #e0e0e0;
}

.p-staff-list__modal-comment {
  display: grid;
}

.p-staff-list__modal-comment-label {
  color: #aaaaaa;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.p-staff-list__modal-comment-text {
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.9;
}

.p-studio-media-sound {
  padding-block-end: 3.75rem;
  color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-studio-media-sound {
    padding-block-end: 2.5rem;
  }
}

.p-studio-media-sound__content {
  display: grid;
  justify-items: center;
  width: 100%;
  padding: 2.5rem 1.25rem;
  border: 0.4375rem solid #484848;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-studio-media-sound__content {
    justify-items: center;
    padding: 2rem 1.25rem;
  }
}

.p-studio-media-sound__title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-studio-media-sound__title {
    font-size: 1.375rem;
    line-height: 1.45;
  }
}

.p-studio-media-sound__divider {
  display: block;
  width: 3.75rem;
  height: 0.0625rem;
  margin-block-start: 1rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-studio-media-sound__divider {
    width: 2.5rem;
    margin-block-start: 0.75rem;
  }
}

.p-studio-media-sound__text {
  margin-block-start: 1.75rem;
  max-width: 56.25rem;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-studio-media-sound__text {
    margin-block-start: 1rem;
    font-size: 0.875rem;
    line-height: 1.78;
    text-align: left;
  }
}

.p-studio-media-sound__button-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-studio-media-sound__button-wrap {
    flex-direction: column;
    width: 100%;
    margin-block-start: 1.5rem;
  }
}

.p-studio-media-sound__button {
  width: 18.75rem;
}
@media screen and (max-width: 767px) {
  .p-studio-media-sound__button {
    width: 100%;
    margin-block-start: 0;
  }
}

.p-studio-single-breadcrumb {
  background-color: var(--color-base);
}

.p-studio-single {
  background-color: var(--color-base);
  color: var(--color-text);
}

.p-under-mv--studio .p-under-mv__title {
  text-transform: none;
}

.p-under-mv--studio .p-under-mv__media-item {
  position: absolute;
  inset: 0;
}

.p-under-mv__featured-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-studio-single__mv-head {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.625rem;
  align-items: center;
  justify-content: center;
}

.p-studio-single__mv-title {
  translate: 0 2rem;
}
@media screen and (max-width: 767px) {
  .p-studio-single__mv-title {
    translate: 0 1rem;
  }
}

.p-studio-single__badge {
  margin: 0;
  padding: 0.5625rem 1.5625rem;
  border: 1px solid #666;
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  translate: 0 2rem;
}
@media screen and (max-width: 767px) {
  .p-studio-single__badge {
    translate: 0 1rem;
  }
}

.p-studio-single__sections {
  padding-block: 3.75rem 0;
}
@media screen and (max-width: 767px) {
  .p-studio-single__sections {
    padding-block: 2.5rem 0;
  }
}
.p-studio-single__sections > section + section {
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-studio-single__sections > section + section {
    margin-block-start: 3.75rem;
  }
}

.p-studio-single__gallery-inner {
  display: grid;
  gap: 2.5rem;
  justify-items: center;
}
@media screen and (max-width: 767px) {
  .p-studio-single__gallery-inner {
    gap: 1.5rem;
  }
}

.p-studio-single__gallery-main {
  position: relative;
  width: min(100%, 75rem);
  overflow: hidden;
  background-color: #333;
}
.p-studio-single__gallery-main:not(.swiper-initialized) .swiper-slide:not(:first-child) {
  display: none;
}
.p-studio-single__gallery-main .swiper-slide {
  width: 100%;
  height: auto;
  flex-shrink: 0;
}

.p-studio-single__gallery-figure {
  margin: 0;
  aspect-ratio: 1200/675;
  overflow: hidden;
  background-color: #333;
}

.p-studio-single__gallery-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-studio-single__gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  border: 1px solid #ccc;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  translate: 0 -50%;
  cursor: pointer;
  transition: opacity var(--duration);
}
.p-studio-single__gallery-nav .p-header__nav-chevron {
  position: static;
  translate: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10.71 6.06'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23333; stroke-miterlimit: 10; %7D %3C/style%3E%3C/defs%3E%3Cpolyline class='cls-1' points='10.35 .35 5.35 5.35 .35 .35' /%3E%3C/svg%3E");
}
.p-studio-single__gallery-nav--prev {
  left: 1.5rem;
}
.p-studio-single__gallery-nav--prev .p-header__nav-chevron {
  rotate: 90deg;
}
.p-studio-single__gallery-nav--next {
  right: 1.5rem;
}
.p-studio-single__gallery-nav--next .p-header__nav-chevron {
  rotate: -90deg;
}
@media (any-hover: hover) {
  .p-studio-single__gallery-nav:hover {
    opacity: 0.85;
  }
}
@media screen and (max-width: 767px) {
  .p-studio-single__gallery-nav {
    width: 2.5rem;
    height: 2.5rem;
  }
  .p-studio-single__gallery-nav--prev {
    left: 0.5rem;
  }
  .p-studio-single__gallery-nav--next {
    right: 0.5rem;
  }
}

.p-studio-single__gallery-thumbs {
  width: min(100%, 75rem);
  overflow: hidden;
}
.p-studio-single__gallery-thumbs .swiper-slide {
  width: 11.25rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-studio-single__gallery-thumbs .swiper-slide {
    width: 7.5rem;
  }
}
.p-studio-single__gallery-thumbs .swiper-slide-thumb-active .p-studio-single__gallery-thumb {
  border-color: var(--color-accent);
}

.p-studio-single__gallery-thumb {
  margin: 0;
  overflow: hidden;
  border: 3px solid transparent;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: border-color var(--duration);
}

.p-studio-single__gallery-thumb-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-studio-single__info-inner,
.p-studio-single__equipment-inner {
  max-width: 68.75rem;
}

.p-studio-single__info-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 18.75rem);
  gap: 2.5rem 3.3125rem;
  align-items: center;
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-studio-single__info-body {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    margin-block-start: 1.5rem;
  }
}

.p-studio-single__info-list {
  display: grid;
  grid-template-columns: 8.75rem minmax(0, 1fr);
  gap: 1.25rem 1.5rem;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-studio-single__info-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.5rem 0rem;
  }
}

.p-studio-single__info-term {
  margin: 0;
  color: #b0b0b0;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-studio-single__info-term {
    padding-block-start: 0.75rem;
  }
}

.p-studio-single__info-detail {
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

.p-studio-single__info-tel {
  color: inherit;
  text-decoration: none;
}
@media (any-hover: hover) {
  .p-studio-single__info-tel:hover {
    opacity: 0.8;
  }
}

@media screen and (max-width: 767px) {
  .p-studio-single__info-action {
    width: 100%;
  }
}

.p-studio-single__content {
  margin-block-start: 2rem;
  color: var(--color-text);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .p-studio-single__content {
    margin-block-start: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.8;
  }
}
.p-studio-single__content > *:first-child {
  margin-block-start: 0;
}
.p-studio-single__content p {
  margin-block: 0;
}
.p-studio-single__content p + p {
  margin-block-start: 0.375rem;
}
.p-studio-single__content strong,
.p-studio-single__content b {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .p-studio-single__content strong,
  .p-studio-single__content b {
    font-size: 0.9375rem;
  }
}
.p-studio-single__content ul,
.p-studio-single__content ol {
  margin-block-start: 0.75rem;
  padding-inline-start: 1.25rem;
}
.p-studio-single__content li + li {
  margin-block-start: 0.25rem;
}
.p-studio-single__content .wp-block-group,
.p-studio-single__content .wp-block-columns,
.p-studio-single__content .wp-block-column {
  color: inherit;
}

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

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

.p-studio-single__pagination-prev {
  min-width: 0;
}

.p-studio-single__pagination-center {
  justify-self: center;
  min-width: 0;
  width: 100%;
}

.p-studio-single__pagination-next {
  min-width: 0;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-studio-single__pagination-next {
    text-align: center;
  }
}

.p-studio-single__pagination-link {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-studio-single__pagination-link {
    font-size: 0.75rem;
  }
}
@media (any-hover: hover) {
  .p-studio-single__pagination-link:hover {
    opacity: 0.7;
  }
}

.p-studio-single__pagination-button {
  width: min(100%, 22.375rem);
  max-width: none;
}
@media screen and (max-width: 767px) {
  .p-studio-single__pagination-button {
    width: 100%;
    max-width: 17.5rem;
  }
}

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

.p-thanks__title {
  text-align: center;
  font-size: max(1.75rem, 8px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-thanks__title {
    font-size: max(1.5rem, 8px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
}
.p-thanks__title + .p-thanks__text {
  margin-block-start: 1.5rem;
}

.p-thanks__text {
  text-align: center;
  font-size: max(1.125rem, 8px);
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.04em;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-thanks__text {
    font-size: max(1rem, 8px);
    font-weight: 500;
    line-height: 1.875;
    letter-spacing: 0.04em;
  }
}

.p-thanks__button {
  margin-block-start: 2.5rem;
  text-align: center;
}

.p-under-mv {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 25rem;
  padding-block: 3.75rem;
  overflow: hidden;
  color: var(--color-white);
  text-align: center;
  background-color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-under-mv {
    min-height: 15rem;
    padding-block: 3.5rem;
  }
}

.p-under-mv__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: var(--color-black);
}

.p-under-mv__media-item {
  position: absolute;
  inset: 0;
}

.p-under-mv::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.55);
}

.p-under-mv__inner {
  position: relative;
  z-index: 2;
}

.p-under-mv__title {
  translate: 0 2rem;
  font-size: clamp(1.75rem, 0.89rem + 1.79vw, 2.5rem);
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-under-mv__title {
    translate: 0 1rem;
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.p-works-list {
  padding-block: 5rem 6.25rem;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-works-list {
    padding-block: 2.5rem 3.75rem;
  }
}

.p-works-list__inner {
  width: min(100%, 75rem);
}
@media screen and (max-width: 767px) {
  .p-works-list__inner {
    width: min(100%, 37.5rem);
  }
}

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

.p-works-list__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-works-list__nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
}

.p-works-list__nav-label {
  flex-shrink: 0;
  min-width: 5rem;
  margin: 0;
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.95;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-works-list__nav-label {
    font-size: 0.75rem;
  }
}

.p-works-list__tab-list {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .p-works-list__tab-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .p-works-list__tab-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.p-works-list__tab-list--area {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media screen and (max-width: 1023px) {
  .p-works-list__tab-list--area {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .p-works-list__tab-list--area {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.p-works-list__tab-item {
  display: flex;
  min-width: 0;
  margin: 0;
}

.p-works-list__tab {
  display: flex;
  position: relative;
  flex: 1;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.375rem 1.75rem 0.375rem 1rem;
  border: 0.0625rem solid var(--color-white);
  background-color: var(--color-white);
  color: var(--color-base);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.375;
  text-align: center;
  text-decoration: none;
  transition: border-color var(--duration), color var(--duration), background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-works-list__tab {
    min-height: 2.5rem;
    padding: 0.25rem 1.5rem 0.25rem 0.75rem;
    font-size: 0.8125rem;
  }
}
.p-works-list__tab::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.75rem;
  width: 0.5rem;
  height: 0.28125rem;
  translate: 0 -50%;
  background-color: var(--color-base);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10.71 6.06' fill='none' stroke='currentColor' stroke-miterlimit='10'%3E%3Cpolyline points='10.35 .35 5.35 5.35 .35 .35' /%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition: background-color var(--duration);
}
@media (any-hover: hover) {
  .p-works-list__tab:hover {
    background-color: var(--color-base);
    color: var(--color-white);
  }
  .p-works-list__tab:hover::after {
    background-color: var(--color-white);
  }
}
.p-works-list__tab:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 0.125rem;
}

.p-works-list__tab.is-active {
  background-color: var(--color-primary);
  border-color: var(--color-white);
  color: var(--color-white);
  cursor: default;
}
.p-works-list__tab.is-active::after {
  background-color: var(--color-white);
}
@media (any-hover: hover) {
  .p-works-list__tab.is-active:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
  }
  .p-works-list__tab.is-active:hover::after {
    background-color: var(--color-white);
  }
}

.p-works-list__tab-list--area .p-works-list__tab.is-active {
  background-color: var(--color-accent);
  border-color: var(--color-white);
}
@media (any-hover: hover) {
  .p-works-list__tab-list--area .p-works-list__tab.is-active:hover {
    background-color: var(--color-accent);
  }
}

.p-works-list__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem 1.1875rem;
  margin-block-start: 5rem;
  scroll-margin-block-start: var(--header-height);
}
@media screen and (max-width: 1023px) {
  .p-works-list__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-works-list__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    margin-block-start: 2.5rem;
  }
}

.p-works-list__card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--color-white);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-works-list__card {
    display: grid;
    grid-template-columns: 9.375rem minmax(0, 1fr);
    gap: 0.625rem 0.75rem;
  }
}
@media (any-hover: hover) {
  .p-works-list__card:hover {
    opacity: 1;
  }
  .p-works-list__card:hover .p-works-list__image {
    scale: 1.1;
  }
}
.p-works-list__card:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 0.25rem;
}

.p-works-list__thumb {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-works-list__thumb {
    grid-row: 1/3;
    width: 9.375rem;
    align-self: start;
  }
}

.p-works-list__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.5s ease;
}

.p-works-list__body {
  display: grid;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-works-list__body {
    grid-column: 2;
    grid-row: 1;
  }
}

.p-works-list__client {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-works-list__client {
    font-size: 0.75rem;
  }
}

.p-works-list__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.44;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-works-list__title {
    font-size: 0.9375rem;
    line-height: 1.46;
  }
}

.p-works-list__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-works-list__tags {
    grid-column: 2;
    grid-row: 2;
  }
}

.p-works-list__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3125rem 1rem;
  border: 1px solid #c5c5c5;
  border-radius: 0.9375rem;
  color: #c5c5c5;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-works-list__tag {
    min-height: 1.75rem;
    padding: 0.25rem 1rem;
    font-size: 0.8125rem;
  }
}

.p-works-list__empty {
  margin-block-start: 5rem;
  scroll-margin-block-start: var(--header-height);
  padding: 3.75rem;
  border: 1px solid #484848;
  background-color: var(--color-secondary);
  color: var(--color-white);
  font-size: 1rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-works-list__empty {
    margin-block-start: 2.5rem;
    padding: 2.5rem 1.25rem;
    font-size: 0.875rem;
  }
}

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

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

@media (prefers-reduced-motion: reduce) {
  .p-works-list__image {
    transition: none;
  }
}
.p-single--works {
  padding-block: 0;
  background-color: var(--color-base);
  color: var(--color-text);
}

.p-works-single__inner {
  width: min(100%, 62.5rem);
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-works-single__inner {
    width: min(100%, 37.5rem);
    padding-block: 2.5rem;
  }
}

.p-works-single__thumbnail {
  overflow: hidden;
  aspect-ratio: 1000/600;
  margin-block-end: 1.5rem;
  background-color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-works-single__thumbnail {
    margin-block-end: 1rem;
  }
}

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

.p-works-single__header {
  display: grid;
}
@media screen and (max-width: 767px) {
  .p-works-single__header {
    gap: 0.625rem;
  }
}

.p-works-single__client {
  color: #b0b0b0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-works-single__client {
    font-size: 0.875rem;
  }
}

.p-works-single__title {
  margin-block-start: 0.25rem;
  color: var(--color-text);
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-works-single__title {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.p-works-single__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-block-start: 1rem;
  padding: 0;
  list-style: none;
}

.p-works-single__tag-item {
  display: flex;
}

.p-works-single__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3125rem 1rem;
  border: 1px solid #c5c5c5;
  border-radius: 0.9375rem;
  color: #c5c5c5;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-works-single__tag {
    min-height: 1.75rem;
    padding: 0.25rem 1rem;
    font-size: 0.8125rem;
  }
}

.p-works-single__info {
  margin-block-start: 1.75rem;
  border: 0.0625rem solid #484848;
}
@media screen and (max-width: 767px) {
  .p-works-single__info {
    margin-block-start: 1rem;
  }
}

.p-works-single__info-row {
  display: grid;
  grid-template-columns: minmax(0, 19.7%) minmax(0, 1fr);
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-works-single__info-row {
    grid-template-columns: minmax(0, 1fr);
  }
}
.p-works-single__info-row + .p-works-single__info-row {
  border-block-start: 0.0625rem solid #484848;
}

.p-works-single__info-label {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 0.875rem 1rem;
  border-inline-end: 0.0625rem solid #484848;
  background-color: var(--color-secondary);
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-works-single__info-label {
    padding: 0.75rem 0.625rem;
    border-inline-end: none;
    border-block-end: 0.0625rem solid #484848;
    font-size: 0.75rem;
  }
}

.p-works-single__info-value {
  padding: 1.0625rem 1.375rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.428;
}
@media screen and (max-width: 767px) {
  .p-works-single__info-value {
    padding: 0.625rem 0.625rem;
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

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

.p-works-single__section-header {
  display: grid;
}

.p-works-single__section-label {
  font-family: var(--ff-en);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.718;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-works-single__section-label {
    font-size: 1.375rem;
  }
}

.p-works-single__section-divider {
  width: 2.25rem;
  height: 0.0625rem;
  margin-block-start: 1rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-works-single__section-divider {
    width: 3.75rem;
    margin-block-start: 1rem;
  }
}

.p-works-single__movie-embed {
  overflow: hidden;
  margin-block-start: 1.5rem;
  aspect-ratio: 16/9;
  background-color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-works-single__movie-embed {
    margin-block-start: 1rem;
  }
}
.p-works-single__movie-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

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

.p-works-single__pagination {
  margin-block-start: 0;
  padding-block: 5rem;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-works-single__pagination {
    padding-block: 3.75rem;
  }
}

.p-works-single-related {
  padding-block: 4rem;
  background-color: var(--color-secondary);
}
@media screen and (max-width: 767px) {
  .p-works-single-related {
    padding-block: 2.5rem;
  }
}

.p-works-single-related__inner {
  width: min(100%, 76.875rem);
}
@media screen and (max-width: 767px) {
  .p-works-single-related__inner {
    width: min(100%, 37.5rem);
  }
}

.p-works-single-related__head {
  display: grid;
  justify-items: start;
}

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

.p-works-single-related__divider {
  width: 2.25rem;
  height: 0.0625rem;
  margin-block-start: 1.5rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-works-single-related__divider {
    width: 3.75rem;
    margin-block-start: 1rem;
  }
}

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

.p-works-single-related__card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--color-white);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-works-single-related__card {
    display: grid;
    grid-template-columns: 9.375rem minmax(0, 1fr);
    gap: 0.625rem 0.75rem;
  }
}
@media (any-hover: hover) {
  .p-works-single-related__card:hover {
    opacity: 1;
  }
  .p-works-single-related__card:hover .p-works-single-related__image {
    scale: 1.1;
  }
}
.p-works-single-related__card:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 0.25rem;
}

.p-works-single-related__thumb {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-works-single-related__thumb {
    grid-row: 1/3;
    width: 9.375rem;
    align-self: start;
  }
}

.p-works-single-related__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.5s ease;
}

.p-works-single-related__body {
  display: grid;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-works-single-related__body {
    grid-column: 2;
    grid-row: 1;
  }
}

.p-works-single-related__client {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-works-single-related__client {
    font-size: 0.75rem;
  }
}

.p-works-single-related__card-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.44;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-works-single-related__card-title {
    font-size: 0.9375rem;
    line-height: 1.46;
  }
}

.p-works-single-related__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-works-single-related__tags {
    grid-column: 2;
    grid-row: 2;
  }
}

.p-works-single-related__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3125rem 1rem;
  border: 1px solid #c5c5c5;
  border-radius: 0.9375rem;
  color: #c5c5c5;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-works-single-related__tag {
    min-height: 1.75rem;
    padding: 0.125rem 0.625rem;
    font-size: 0.6875rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-works-single-related__image {
    transition: none;
  }
}
@media (width >= 1024px) {
  .u-lg-hidden {
    display: block;
  }
}
@media screen and (max-width: 1023px) {
  .u-lg-hidden {
    display: none;
  }
}

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