@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");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}
:root {
  /* inner（sass変数を使用） */
  /* z-index */
  --z-index-header: 100;
  --z-index-modal: 200;
  --z-index-overlay: 900;
  /* color */
  --color-base: #f7f3eb;
  --color-text: #111;
  --color-white: #fff;
  --color-black: #000;
  --color-gray: #f0f0f0;
  --color-border: #aaaaaf;
  --color-accent: #408f95;
  --color-primary: #cd2e35;
  --color-secondary: #00f;
  --color-orange: #de8430;
  /* font-family */
  --ff-base: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  --ff-en: "Roboto", sans-serif;
  --ff-en-cond: "Roboto Condensed", sans-serif;
  --to-rem: calc(tan(atan2(1px, var(--root-font-size))) * 1rem);
  /* transition duration */
  --duration: 0.3s;
  /* header height */
  --header-height: 126px;
}
@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%;
}

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

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-bg-sections {
  position: relative;
  overflow: hidden;
}
.l-bg-sections > section {
  position: relative;
  z-index: 1;
}

.l-bg-sections__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: 5rem;
  background-image: url("../images/bg_attraction_content.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  .l-bg-sections__bg {
    border-radius: 2.5rem;
  }
}

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

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

.l-main {
  position: relative;
  z-index: 2;
  overflow-x: clip;
}

.c-breadcrumb {
  position: relative;
  z-index: 2;
  padding-block: 1.125rem;
}
@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: center;
  max-width: 100%;
  color: var(--color-text, var(--color-text));
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__item {
    font-size: 0.75rem;
  }
}
.c-breadcrumb__item + .c-breadcrumb__item::before {
  content: "/";
  display: inline-block;
  margin: 0 0.875rem;
  flex-shrink: 0;
}

.c-breadcrumb__link {
  min-width: 0;
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
  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;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: min(100%, 30rem);
  padding: 2rem 3.5rem;
  border-radius: 62.4375rem;
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .c-button {
    gap: 1.625rem;
    width: min(100%, 19.375rem);
    padding: 1.3125rem 2rem;
    font-size: 0.875rem;
  }
}
@media (any-hover: hover) {
  .c-button:hover {
    opacity: 1;
    background-color: var(--color-primary);
  }
}

.c-button--outline {
  border: 1px solid var(--color-black);
  background-color: transparent;
  color: var(--color-text);
  transition: border-color var(--duration), background-color var(--duration), color var(--duration);
}
@media screen and (max-width: 767px) {
  .c-button--outline {
    gap: 0.5rem;
    padding: 1.3125rem 1rem;
  }
}
@media (any-hover: hover) {
  .c-button--outline:hover {
    border-color: var(--color-primary);
    background-color: transparent;
    color: var(--color-primary);
  }
  .c-button--outline:hover .c-button__icon {
    background-color: var(--color-primary);
  }
}

.c-button--outline .c-button__icon {
  background-image: none;
  background-color: var(--color-text);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 19'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23333; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M1.5,9.5h16' /%3E%3Cpath class='cls-1' d='M9.5,1.5l8,8-8,8' /%3E%3C/svg%3E%0A");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transition: background-color var(--duration);
}

.c-button--outline .c-button__text {
  font-weight: 500;
}

.c-button__icon {
  display: block;
  flex-shrink: 0;
  width: 0.75rem;
  height: 0.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 19'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23fff; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M1.5,9.5h16' /%3E%3Cpath class='cls-1' d='M9.5,1.5l8,8-8,8' /%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.c-cta {
  scroll-margin-block-start: calc(var(--header-height) + 1.5rem);
  padding-block: 8.6875rem 12.0625rem;
  background: linear-gradient(to bottom, #f7f3eb 0%, #fff 25%, #fff 100%);
}
@media screen and (max-width: 767px) {
  .c-cta {
    padding-block: 4rem 6.375rem;
  }
}

.c-cta__inner {
  display: grid;
  gap: 2.5rem;
  width: min(100%, 81.25rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .c-cta__inner {
    gap: 1.4375rem;
    width: min(100%, 36.25rem);
    padding-inline: 1.25rem;
  }
}

.c-cta__head {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-block: 3.3125rem;
  border-radius: 1.25rem;
  color: var(--color-text);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .c-cta__head {
    padding: 1.5625rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 1.375rem;
  }
}
.c-cta__head::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("../images/bg_cta_jobs_head.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform var(--duration);
}
@media (any-hover: hover) {
  .c-cta__head:hover::before {
    transform: scale(1.05);
  }
}

.c-cta__head-text {
  position: relative;
  z-index: 1;
  font-feature-settings: "palt";
}

.c-cta__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .c-cta__cards {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    padding-inline: 1.25rem;
  }
}

.c-cta__cards-item {
  display: flex;
  min-width: 0;
}

.c-cta__card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 2.125rem;
  width: 100%;
  height: 100%;
  overflow: hidden;
  min-height: 15rem;
  padding: 3rem 1.5rem 1.375rem;
  border-radius: 1.25rem;
  color: var(--color-white);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .c-cta__card {
    gap: 1.875rem;
    min-height: auto;
    padding: 2.5rem 1.5rem 1.5rem;
    border-radius: 0.5rem;
  }
}
.c-cta__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform var(--duration);
}
@media (any-hover: hover) {
  .c-cta__card:hover {
    opacity: 1;
  }
  .c-cta__card:hover::before {
    transform: scale(1.05);
  }
  .c-cta__card:hover .c-cta__card-icon {
    background-color: var(--color-primary);
  }
}

.c-cta__card--newgraduate::before {
  background-image: url("../images/bg_cta_card_newgraduate.webp");
}

.c-cta__card--midcareer::before {
  background-image: url("../images/bg_cta_card_midcareer.webp");
}

.c-cta__card--parttime::before {
  background-image: url("../images/bg_cta_card_parttime.webp");
}

.c-cta__card-title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1.5rem, 0.75rem + 1.56vw, 2rem);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-cta__card-title {
    font-size: 1.5rem;
  }
}

.c-cta__card-text {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-inline-end: 6.25rem;
  font-size: clamp(1rem, 0.63rem + 0.78vw, 1.25rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1023px) {
  .c-cta__card-text {
    padding-inline-end: 4.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-cta__card-text {
    font-size: 1rem;
    line-height: 1.75;
  }
}

.c-cta__card-icon {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1;
  display: block;
  width: 5rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color-text);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 19'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23fff; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M1.5,9.5h16' /%3E%3Cpath class='cls-1' d='M9.5,1.5l8,8-8,8' /%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1rem auto;
  transition: background-color var(--duration);
}
@media screen and (max-width: 1023px) {
  .c-cta__card-icon {
    width: 4rem;
    background-size: 0.75rem auto;
  }
}
@media screen and (max-width: 767px) {
  .c-cta__card-icon {
    right: 1.5rem;
    bottom: 1.5rem;
    width: 3.5rem;
    background-size: 0.75rem auto;
  }
}

.c-faq__list {
  display: flex;
  flex-direction: column;
}

.c-faq__item {
  border-block-end: 1px solid #d8d8d8;
}

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

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

.c-faq__question {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  position: relative;
  padding: 2.5rem 3.5rem 2.5rem 0.375rem;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .c-faq__question {
    gap: 0.5rem;
    padding: 1.1875rem 1.5rem 1.1875rem 0.25rem;
  }
}

@media (any-hover: hover) {
  .c-faq__item-summary:hover .c-faq__question {
    opacity: 0.7;
  }
}
.c-faq__question::before,
.c-faq__question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  background-color: var(--color-text);
  translate: 0 -50%;
}
@media screen and (max-width: 767px) {
  .c-faq__question::before,
  .c-faq__question::after {
    top: 2.125rem;
  }
}

.c-faq__question::before {
  width: 1.25rem;
  height: 0.125rem;
}
@media screen and (max-width: 767px) {
  .c-faq__question::before {
    width: 0.875rem;
  }
}

.c-faq__question::after {
  width: 0.125rem;
  height: 1.25rem;
  right: 0.5625rem;
  transform: rotate(var(--rotate-after, 0deg));
  transition: transform var(--duration) ease;
}
@media screen and (max-width: 767px) {
  .c-faq__question::after {
    right: 0.375rem;
    height: 0.875rem;
  }
}

.c-faq__question-label {
  flex-shrink: 0;
  width: 2rem;
  font-size: 2rem;
  font-family: var(--ff-en);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-faq__question-label {
    margin-block-start: 0.25rem;
    width: 1.25rem;
    font-size: 1.25rem;
  }
}

.c-faq__question-text {
  flex: 1;
  min-width: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-faq__question-text {
    font-size: 1rem;
    line-height: 1.75;
  }
}

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

.c-faq__answer {
  display: flex;
  gap: 1rem;
  padding-block-end: 2rem;
  padding-inline: 0.375rem 3.5rem;
}
@media screen and (max-width: 767px) {
  .c-faq__answer {
    gap: 0.5rem;
    padding-block-end: 1.25rem;
    padding-inline: 0.25rem 1.25rem;
  }
}

.c-faq__answer-label {
  flex-shrink: 0;
  width: 2rem;
  font-size: 2rem;
  font-family: var(--ff-en);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-faq__answer-label {
    margin-block-start: 0.25rem;
    width: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.6;
  }
}

.c-faq__answer-text {
  flex: 1;
  min-width: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-faq__answer-text {
    font-size: 0.875rem;
    line-height: 1.75;
  }
}

.c-notice {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

/**
 * ページネーション共通コンポーネント
 *
 * 親（プロジェクト）から上書きする場合:
 *   - 呼び出し元で親クラスで wrap する（例: <div class="p-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-white, #fff);
  --_pagination-text: var(--color-text);
  --_pagination-text-hover: #374151;
  --_pagination-bg-hover: #f9fafb;
  --_pagination-active-bg: var(--color-black, #000);
  --_pagination-active-text: var(--color-white, #fff);
  --_pagination-border: #d1d5db;
  --_pagination-border-hover: #9ca3af;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.c-pagination__item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 2.75rem;
  min-width: 2.75rem;
  padding: 0 0.75rem;
  border: 1px solid var(--_pagination-border);
  background-color: var(--_pagination-bg);
  color: var(--_pagination-text);
  font-size: 0.9375rem;
  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] {
  font-weight: 500;
}

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

.c-section-heading {
  color: var(--color-text);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.66;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  text-align: center;
}
.c-section-heading[data-align=left] {
  text-align: left;
}
.c-section-heading[data-align=right] {
  text-align: right;
}
.c-section-heading[data-align=center] {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-section-heading {
    font-size: 1.75rem;
  }
}

.c-section-heading__num {
  font-family: var(--ff-en);
}

.c-section-item-heading {
  padding-block-end: 1.5rem;
  border-block-end: 0.125rem solid #d0b07c;
  color: var(--color-text);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .c-section-item-heading {
    font-size: 1.125rem;
    line-height: 1.6;
  }
}

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

.c-top-title {
  margin: 0;
  color: var(--color-text);
  font-size: 3.4375rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .c-top-title {
    font-size: 1.75rem;
  }
}

.p-about-charm {
  padding-block: 5.875rem 7.25rem;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-about-charm {
    padding-block: 3rem 4rem;
  }
}

.p-about-charm__inner {
  display: grid;
  gap: 8.625rem;
}
@media screen and (max-width: 767px) {
  .p-about-charm__inner {
    gap: 6rem;
  }
}

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

.p-about-charm__lead {
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-about-charm__lead {
    font-size: 0.875rem;
    line-height: 1.714;
  }
}

.p-about-charm__title {
  margin-block-start: 6.125rem;
}
@media screen and (max-width: 767px) {
  .p-about-charm__title {
    margin-block-start: 3rem;
    text-align: center;
  }
}

.p-about-charm__cards {
  display: grid;
  gap: 9.375rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-about-charm__cards {
    gap: 6.25rem;
  }
}

.p-about-charm__cards-item {
  min-width: 0;
}

.p-about-charm__card {
  position: relative;
  padding: 0.5rem 5rem 4.5rem;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-about-charm__card {
    padding: 0.5rem 1.5rem 1.75rem;
    border-radius: 1.5rem;
  }
}

.p-about-charm__card-inner {
  position: relative;
  z-index: 1;
}

.p-about-charm__card--01 {
  background: url("../images/bg_about_charm_01.webp") no-repeat center top/cover;
}
.p-about-charm__card--01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  translate: -50% calc(-50% + 3.0625rem);
  width: 19.5rem;
  height: auto;
  aspect-ratio: 1;
  background: url("../images/bg_about_charm_num_01.webp") no-repeat center top/cover;
}
@media screen and (max-width: 767px) {
  .p-about-charm__card--01::before {
    translate: -50% calc(-50% + 1.5rem);
    width: 12.5rem;
  }
}

.p-about-charm__card--02 {
  background: url("../images/bg_about_charm_02.webp") no-repeat center top/cover;
}
.p-about-charm__card--02::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  translate: -50% calc(-50% + 3.0625rem);
  width: 19.5rem;
  height: auto;
  aspect-ratio: 1;
  background: url("../images/bg_about_charm_num_02.webp") no-repeat center top/cover;
}
@media screen and (max-width: 767px) {
  .p-about-charm__card--02::before {
    translate: -50% calc(-50% + 1.5rem);
    width: 12.5rem;
  }
}

.p-about-charm__card--03 {
  background: url("../images/bg_about_charm_03.webp") no-repeat center top/cover;
}
.p-about-charm__card--03::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  translate: -50% calc(-50% + 3.0625rem);
  width: 19.5rem;
  height: auto;
  aspect-ratio: 1;
  background: url("../images/bg_about_charm_num_03.webp") no-repeat center top/cover;
}
@media screen and (max-width: 767px) {
  .p-about-charm__card--03::before {
    translate: -50% calc(-50% + 1.5rem);
    width: 12.5rem;
  }
}

.p-about-charm__card-num {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about-charm__card-num {
    font-size: 3.5rem;
  }
}

.p-about-charm__card-title {
  margin-block-start: 1.625rem;
  color: var(--color-text);
  font-size: clamp(1.5rem, 0.36rem + 2.38vw, 2.5rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-about-charm__card-title {
    margin-block-start: 0.5rem;
    font-size: 1.125rem;
    line-height: 1.667;
  }
}

.p-about-charm__card-body {
  display: flex;
  gap: 4.5rem;
  align-items: flex-start;
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .p-about-charm__card-body {
    gap: 2.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about-charm__card-body {
    flex-direction: column;
    gap: 1.5rem;
    margin-block-start: 1.5rem;
  }
}

.p-about-charm__card-body--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-about-charm__card-body--reverse {
    flex-direction: column-reverse;
  }
}

.p-about-charm__card-text {
  display: grid;
  flex: 1;
  gap: 1.75rem;
  min-width: 0;
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-about-charm__card-text {
    gap: 1rem;
    margin-block-start: 0;
  }
}

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

.p-about-charm__card-media {
  flex-shrink: 0;
  width: 44.2307692308%;
  margin: 0;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-about-charm__card-media {
    width: 100%;
  }
}

.p-about-charm__card-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 460/345;
  object-fit: cover;
}

.p-about-charm__card-note {
  margin-block-start: 2rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.714;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-about-charm__card-note {
    margin-block-start: 1.5rem;
    font-size: 0.75rem;
    line-height: 1.667;
  }
}

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

.p-about-next__inner {
  display: grid;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-about-next__inner {
    gap: 2rem;
  }
}

.p-about-next__title {
  color: var(--color-text);
  font-family: var(--ff-en);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.16;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about-next__title {
    font-size: 1.75rem;
  }
}

.p-about-next__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem 2.4375rem;
}
@media screen and (max-width: 1440px) {
  .p-about-next__list {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about-next__list {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }
}

.p-about-next__list-item {
  display: flex;
  min-width: 0;
}

.p-about-next__link {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  padding: 2.125rem 1.5rem;
  border: 0.1875rem solid var(--color-text);
  border-radius: 1.25rem;
  background-color: var(--color-base);
  color: var(--color-text);
  font-size: clamp(1rem, -0.23rem + 1.92vw, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-decoration: none;
  font-feature-settings: "palt";
  transition: background-color var(--duration), color var(--duration), border-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-about-next__link {
    padding: 1.25rem 1.5rem;
    border-width: 0.125rem;
    font-size: 1rem;
  }
}
@media (any-hover: hover) {
  .p-about-next__link:hover {
    opacity: 1;
    background-color: var(--color-text);
    color: var(--color-white);
  }
  .p-about-next__link:hover .p-about-next__link-icon {
    background-color: var(--color-white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 19'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23000; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M1.5,9.5h16' /%3E%3Cpath class='cls-1' d='M9.5,1.5l8,8-8,8' /%3E%3C/svg%3E%0A");
  }
}

.p-about-next__link-text {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.p-about-next__link-icon {
  display: block;
  flex-shrink: 0;
  width: clamp(2rem, -0.46rem + 3.85vw, 3rem);
  height: clamp(2rem, -0.46rem + 3.85vw, 3rem);
  border-radius: 50%;
  background-color: var(--color-text);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 19'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23fff; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M1.5,9.5h16' /%3E%3Cpath class='cls-1' d='M9.5,1.5l8,8-8,8' /%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.75rem auto;
  transition: background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-about-next__link-icon {
    width: 2rem;
    height: 2rem;
    background-size: 0.75rem auto;
  }
}

.p-about-stats {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding-block: 6.5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-about-stats {
    padding-block: 4rem 4rem;
  }
}

.p-about-stats__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: 5rem;
  background: url("../images/bg_about_stats.webp") no-repeat center top/cover;
}
@media screen and (max-width: 767px) {
  .p-about-stats__bg {
    border-radius: 2.5rem;
  }
}

.p-about-stats__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-about-stats__inner {
    gap: 4rem;
  }
}

.p-about-stats__title {
  text-align: center;
}

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

.p-about-stats__block {
  min-width: 0;
}
.p-about-stats__block:last-child {
  margin-block-start: 2rem;
}

.p-about-stats__block-title {
  color: var(--color-text);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-about-stats__block-title {
    font-size: 1.25rem;
  }
}

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

.p-about-stats__grid-item {
  min-width: 0;
}

.p-about-stats__card {
  display: grid;
  gap: 1rem;
  height: 100%;
  padding: 1.625rem 2.5rem 3.75rem;
  border-radius: 1rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-about-stats__card {
    gap: 1rem;
    padding: 1.5rem 1.25rem;
    border-radius: 0.75rem;
  }
}

.p-about-stats__card-head {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .p-about-stats__card-head {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about-stats__card-head {
    gap: 1.5rem;
  }
}

.p-about-stats__card-icon {
  flex-shrink: 0;
  margin-block-start: 0.5rem;
}
@media screen and (max-width: 1440px) {
  .p-about-stats__card-icon {
    zoom: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .p-about-stats__card-icon {
    zoom: 0.7;
  }
}

.p-about-stats__card-icon img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.p-about-stats__card-icon--01 {
  width: 7.5rem;
  aspect-ratio: 120/86;
}

.p-about-stats__card-icon--02 {
  width: 7.5rem;
  aspect-ratio: 120/118;
}

.p-about-stats__card-icon--03 {
  width: 7.5rem;
  aspect-ratio: 120/102;
}

.p-about-stats__card-icon--04 {
  width: 7.5rem;
  aspect-ratio: 120/94;
}

.p-about-stats__card-icon--05 {
  width: 7.5rem;
  aspect-ratio: 120/86;
}

.p-about-stats__card-icon--06 {
  width: 7.5rem;
  aspect-ratio: 120/118;
}

.p-about-stats__card-icon--07 {
  width: 7.125rem;
  aspect-ratio: 114/120;
}

.p-about-stats__card-icon--08 {
  width: 7.125rem;
  aspect-ratio: 114/120;
}

.p-about-stats__card-meta {
  display: grid;
  gap: 0.5rem;
  min-width: 0;
}

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

.p-about-stats__card-value {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem;
  margin: 0;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.2;
}

.p-about-stats__card-value-prefix,
.p-about-stats__card-value-unit {
  font-size: 1.75rem;
  font-family: var(--ff-base);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-about-stats__card-value-prefix,
  .p-about-stats__card-value-unit {
    font-size: 1rem;
  }
}

.p-about-stats__card-value-num {
  font-family: var(--ff-en);
  font-size: 5rem;
  line-height: 1;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1023px) {
  .p-about-stats__card-value-num {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about-stats__card-value-num {
    font-size: 3.5rem;
  }
}

.p-about-stats__card-value-note {
  padding-inline-start: 0.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-about-stats__card-value-note {
    font-size: 0.625rem;
  }
}

.p-about-stats__card-value--items {
  flex-wrap: nowrap;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-about-stats__card-value--items {
    gap: 0.75rem;
  }
}

.p-about-stats__card-value--items .p-about-stats__card-value-num {
  font-size: 4rem;
}
@media screen and (max-width: 1023px) {
  .p-about-stats__card-value--items .p-about-stats__card-value-num {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about-stats__card-value--items .p-about-stats__card-value-num {
    font-size: 2.5rem;
  }
}

.p-about-stats__card-value--items .p-about-stats__card-value-unit {
  font-size: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .p-about-stats__card-value--items .p-about-stats__card-value-unit {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about-stats__card-value--items .p-about-stats__card-value-unit {
    font-size: 0.875rem;
  }
}

.p-about-stats__card-value-item {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
}

.p-about-stats__card-value-item-label {
  font-family: var(--ff-base);
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1023px) {
  .p-about-stats__card-value-item-label {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about-stats__card-value-item-label {
    font-size: 1rem;
  }
}

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

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

.p-about-stats__awards-item {
  min-width: 0;
}

.p-about-stats__award {
  display: grid;
  gap: 1.25rem;
  justify-items: center;
  min-width: 0;
  height: 100%;
  padding: 2.5rem 1.5rem;
  border-radius: 1rem;
  background-color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about-stats__award {
    gap: 1rem;
    padding: 2rem 1.25rem;
    border-radius: 0.75rem;
  }
}

.p-about-stats__award-badge {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-about-stats__award-badge {
    zoom: 0.5;
  }
}

.p-about-stats__award-badge img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.p-about-stats__award-badge--01 {
  max-width: 14rem;
  aspect-ratio: 224/210;
}

.p-about-stats__award-badge--02 {
  max-width: 15rem;
  aspect-ratio: 240/240;
}

.p-about-stats__award-badge--03 {
  max-width: 18.375rem;
  aspect-ratio: 294/240;
}

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

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

.p-about-stats__wide {
  display: grid;
  gap: 2rem;
  min-width: 0;
  margin-block-start: 2.5rem;
  padding: 2rem 1.5rem 2.625rem 2.5rem;
  border-radius: 1rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-about-stats__wide {
    gap: 1.5rem;
    margin-block-start: 1rem;
    padding: 1.5rem 1.25rem;
    border-radius: 0.75rem;
  }
}

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

.p-about-stats__wide-body {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
  min-width: 0;
}
@media screen and (max-width: 1023px) {
  .p-about-stats__wide-body {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.p-about-stats__wide-body-inner {
  flex: 1;
  min-width: 0;
  width: 100%;
}

.p-about-stats__wide-jobs {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 0.75rem 1.875rem;
  min-width: 0;
  margin-block-start: 3.75rem;
}
@media screen and (max-width: 1023px) {
  .p-about-stats__wide-jobs {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    margin-block-start: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about-stats__wide-jobs {
    margin-block-start: 1.5rem;
  }
}

.p-about-stats__wide-jobs-col {
  min-width: 0;
  margin: 0;
}

.p-about-stats__wide-job {
  display: flex;
  gap: 0.375rem;
  align-items: flex-start;
  justify-content: space-between;
  break-inside: avoid;
  margin-block-end: 1rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-about-stats__wide-job {
    margin-block-end: 0.5rem;
    font-size: 0.875rem;
  }
}

.p-about-stats__wide-job-name {
  display: flex;
  flex: 1;
  gap: 0.5rem;
  align-items: flex-start;
  min-width: 0;
  margin: 0;
}
.p-about-stats__wide-job-name::before {
  content: "";
  flex-shrink: 0;
  width: 0.375rem;
  height: 0.375rem;
  margin-block-start: 0.5625rem;
  border-radius: 50%;
  background-color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-about-stats__wide-job-name::before {
    margin-block-start: 0.4375rem;
  }
}

.p-about-stats__wide-job-percent {
  display: flex;
  flex-shrink: 0;
  align-items: baseline;
  margin: 0;
  margin-inline-start: 0.25rem;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1;
}

.p-about-stats__wide-job-percent-num {
  font-family: var(--ff-en);
  font-size: 2.5rem;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-about-stats__wide-job-percent-num {
    font-size: 2rem;
  }
}

.p-about-stats__wide-job-percent-unit {
  font-family: var(--ff-base);
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-about-stats__wide-job-percent-unit {
    font-size: 0.875rem;
  }
}

.p-about-stats__wide-chart {
  flex: 0 1 auto;
  width: 49.4718309859%;
  max-width: 100%;
  min-width: 0;
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .p-about-stats__wide-chart {
    width: 100%;
    margin-inline: auto;
  }
}

.p-about-stats__wide-chart img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.p-about-values {
  position: relative;
  overflow: hidden;
  margin-block-start: -7.6875rem;
  padding-block: 14rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-about-values {
    margin-block-start: -7.5rem;
    padding-block: 11.25rem 5rem;
  }
}

.p-about-values__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("../images/bg_about_values.webp") no-repeat center top/cover;
}
.p-about-values__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5.25rem;
}
@media screen and (max-width: 767px) {
  .p-about-values__inner {
    gap: 2.5rem;
  }
}

.p-about-values__header {
  display: grid;
  gap: 2.125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about-values__header {
    gap: 1rem;
    text-align: left;
  }
}

.p-about-values__title {
  line-height: 1.5;
}

.p-about-values__lead {
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-about-values__lead {
    font-size: 0.875rem;
    line-height: 1.714;
  }
}

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

.p-about-values__cards-item {
  min-width: 0;
}

.p-about-values__card {
  display: grid;
  justify-items: center;
  text-align: center;
}

.p-about-values__card-title {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1.625rem, 0.62rem + 2.09vw, 2.5rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-about-values__card-title {
    font-size: 1.25rem;
    line-height: 1.6;
  }
}

.p-about-values__card-media {
  width: 100%;
  margin-block-start: 2.6875rem;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-about-values__card-media {
    margin-block-start: 1.5rem;
    border-radius: 0.75rem;
  }
}

.p-about-values__card-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 560/360;
  object-fit: cover;
}

.p-about-values__card-text {
  margin-block-start: 1.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-about-values__card-text {
    font-size: 0.875rem;
    line-height: 1.714;
    text-align: left;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.p-attraction-intro__inner {
  display: grid;
  gap: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-attraction-intro__inner {
    gap: 1rem;
    text-align: left;
  }
}

.p-attraction-intro__lead {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-attraction-intro__lead {
    font-size: 0.875rem;
    line-height: 1.714;
  }
}

.p-attraction-slider {
  padding-block-end: 5rem;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-attraction-slider {
    padding-block-end: 3rem;
  }
}

.p-attraction-slider__slider {
  position: relative;
  margin-inline: calc(50% - 50vw);
}

.p-attraction-slider__swiper {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-attraction-slider__swiper {
    overflow: visible;
  }
}

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

.p-attraction-slider__swiper .swiper-wrapper {
  align-items: center;
}

.p-attraction-slider__slide.swiper-slide {
  width: 53.375rem;
  aspect-ratio: 854/504;
  scale: 0.746;
  transform-origin: center center;
  transition: scale 0.6s ease, translate 0.6s ease;
}
@media screen and (max-width: 1023px) {
  .p-attraction-slider__slide.swiper-slide {
    width: 37.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-attraction-slider__slide.swiper-slide {
    width: 17.5rem;
    scale: 0.85;
  }
}

.p-attraction-slider__slide.swiper-slide-active {
  scale: 1;
  translate: 0 0;
}

.p-attraction-slider__figure {
  margin: 0;
  overflow: hidden;
  border-radius: 1.25rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-attraction-slider__figure {
    border-radius: 0.75rem;
  }
}

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

.p-attraction-slider__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.375rem;
  height: 3.375rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: var(--color-text);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 19'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23fff; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M1.5,9.5h16' /%3E%3Cpath class='cls-1' d='M9.5,1.5l8,8-8,8' /%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1rem auto;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
  cursor: pointer;
  translate: -50% -50%;
  transition: background-color var(--duration), opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-attraction-slider__nav {
    width: 2.75rem;
    height: 2.75rem;
    background-size: 0.75rem auto;
  }
}
@media (any-hover: hover) {
  .p-attraction-slider__nav:hover {
    background-color: var(--color-primary);
  }
}
.p-attraction-slider__nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.p-attraction-slider__nav--prev {
  left: calc(50% - 31.25rem);
  rotate: 180deg;
}
@media screen and (max-width: 1440px) {
  .p-attraction-slider__nav--prev {
    left: calc(50% - 27.5rem);
  }
}
@media screen and (max-width: 1023px) {
  .p-attraction-slider__nav--prev {
    left: calc(50% - 21.25rem);
  }
}
@media screen and (max-width: 767px) {
  .p-attraction-slider__nav--prev {
    left: calc(50% - 8.75rem);
  }
}

.p-attraction-slider__nav--next {
  left: calc(50% + 31.25rem);
}
@media screen and (max-width: 1440px) {
  .p-attraction-slider__nav--next {
    left: calc(50% + 27.5rem);
  }
}
@media screen and (max-width: 1023px) {
  .p-attraction-slider__nav--next {
    left: calc(50% + 21.25rem);
  }
}
@media screen and (max-width: 767px) {
  .p-attraction-slider__nav--next {
    left: calc(50% + 8.75rem);
  }
}

.p-attraction-data {
  padding-block: 5rem 6rem;
}
@media screen and (max-width: 767px) {
  .p-attraction-data {
    padding-block: 3rem 4rem;
  }
}

.p-attraction-data__inner {
  display: grid;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-attraction-data__inner {
    gap: 1.5rem;
  }
}

.p-attraction-data__lead {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-attraction-data__lead {
    font-size: 0.875rem;
    line-height: 1.714;
    text-align: left;
  }
}

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

.p-attraction-data__card {
  display: grid;
  gap: 1rem;
  min-height: 19.25rem;
  padding: 2.5rem 1.25rem 1.5rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-attraction-data__card {
    min-height: auto;
    padding: 1.5rem 1rem 1.25rem;
  }
}
.p-attraction-data__card:nth-child(1) .p-attraction-data__card-icon {
  width: 3.25rem;
  height: 3.0625rem;
  mask-image: url("data:image/svg+xml,%3Csvg width='52' height='49' viewBox='0 0 52 49' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M49.875 27C50.8125 27 51.5625 27.8438 51.375 28.6875C50.7188 33.9375 48.1875 38.5312 44.5312 41.9062C43.9688 42.4688 43.0312 42.4688 42.4688 41.9062L27.6562 27H49.875ZM48.375 21C48.4688 21.8438 47.7188 22.5 46.875 22.5H25.9688V1.59375C25.9688 0.75 26.625 0 27.4688 0.09375C38.7188 0.84375 47.625 9.75 48.375 21ZM21.4688 27L36 41.625C36.6562 42.2812 36.6562 43.4062 35.9062 43.875C32.3438 46.5 27.9375 48 23.25 48C11.1562 48.1875 0.84375 38.3438 0.46875 26.3438C0 14.625 8.53125 4.875 19.7812 3.28125C20.625 3.1875 21.4688 3.9375 21.4688 4.78125V27Z' fill='%23333333'/%3E%3C/svg%3E ");
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
}
.p-attraction-data__card:nth-child(2) .p-attraction-data__card-icon {
  width: 2.625rem;
  height: 3rem;
  mask-image: url("data:image/svg+xml,%3Csvg width='42' height='48' viewBox='0 0 42 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M42 9V33C42 37.875 36.1875 42 29.7188 42L35.625 46.6875C36.1875 47.1562 35.9062 48 35.25 48H6.75C6 48 5.71875 47.1562 6.28125 46.6875L12.1875 42C5.71875 42 0 37.875 0 33V9C0 4.03125 6 0 12 0H30C36.0938 0 42 4.03125 42 9ZM18.75 21.75V11.25C18.75 10.0312 17.7188 9 16.5 9H6.75C5.4375 9 4.5 10.0312 4.5 11.25V21.75C4.5 23.0625 5.4375 24 6.75 24H16.5C17.7188 24 18.75 23.0625 18.75 21.75ZM37.5 21.75V11.25C37.5 10.0312 36.4688 9 35.25 9H25.5C24.1875 9 23.25 10.0312 23.25 11.25V21.75C23.25 23.0625 24.1875 24 25.5 24H35.25C36.4688 24 37.5 23.0625 37.5 21.75ZM33 27C30.4688 27 28.5 29.0625 28.5 31.5C28.5 34.0312 30.4688 36 33 36C35.4375 36 37.5 34.0312 37.5 31.5C37.5 29.0625 35.4375 27 33 27ZM9 27C6.46875 27 4.5 29.0625 4.5 31.5C4.5 34.0312 6.46875 36 9 36C11.4375 36 13.5 34.0312 13.5 31.5C13.5 29.0625 11.4375 27 9 27Z' fill='%23333333'/%3E%3C/svg%3E ");
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
}
.p-attraction-data__card:nth-child(3) .p-attraction-data__card-icon {
  width: 2.8125rem;
  height: 3rem;
  mask-image: url("data:image/svg+xml,%3Csvg width='45' height='48' viewBox='0 0 45 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.84375 0C1.35476 0 0.885792 0.194252 0.540022 0.540022C0.194252 0.885792 0 1.35476 0 1.84375C0 2.33274 0.194252 2.80171 0.540022 3.14748C0.885792 3.49325 1.35476 3.6875 1.84375 3.6875H42.4062C42.8952 3.6875 43.3642 3.49325 43.71 3.14748C44.0557 2.80171 44.25 2.33274 44.25 1.84375C44.25 1.35476 44.0557 0.885792 43.71 0.540022C43.3642 0.194252 42.8952 0 42.4062 0H1.84375ZM3.6875 7.375V25.8125H40.5625V7.375H3.6875ZM12.9062 11.0625H16.5938C17.6152 11.0625 18.4375 11.8848 18.4375 12.9062V20.2812C18.4375 21.3027 17.6152 22.125 16.5938 22.125H12.9062C12.4173 22.125 11.9483 21.9307 11.6025 21.585C11.2568 21.2392 11.0625 20.7702 11.0625 20.2812V12.9062C11.0625 11.8848 11.8848 11.0625 12.9062 11.0625ZM27.6562 11.0625H31.3438C32.3652 11.0625 33.1875 11.8848 33.1875 12.9062V20.2812C33.1875 21.3027 32.3652 22.125 31.3438 22.125H27.6562C27.1673 22.125 26.6983 21.9307 26.3525 21.585C26.0068 21.2392 25.8125 20.7702 25.8125 20.2812V12.9062C25.8125 11.8848 26.6348 11.0625 27.6562 11.0625ZM3.6875 29.5V46.0938C3.6875 47.1152 4.52825 47.7531 5.53125 47.9375H25.8125V38.7188C25.8125 37.6973 26.6348 36.875 27.6562 36.875H31.3438C32.3652 36.875 33.1875 37.6973 33.1875 38.7188V47.9375H38.7188C39.7402 47.9375 40.5625 47.1152 40.5625 46.0938V29.5H3.6875ZM12.9062 33.1875H16.5938C17.6152 33.1875 18.4375 34.0098 18.4375 35.0312V42.4062C18.4375 43.4277 17.6152 44.25 16.5938 44.25H12.9062C12.4173 44.25 11.9483 44.0557 11.6025 43.71C11.2568 43.3642 11.0625 42.8952 11.0625 42.4062V35.0312C11.0625 34.0098 11.8848 33.1875 12.9062 33.1875Z' fill='black'/%3E%3C/svg%3E ");
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
}
.p-attraction-data__card:nth-child(4) .p-attraction-data__card-icon {
  width: 2.4375rem;
  height: 3.0625rem;
  mask-image: url("data:image/svg+xml,%3Csvg width='39' height='49' viewBox='0 0 39 49' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.4062 1.96875C19.5 2.34375 21 10.7812 21 13.9688C21 18.9375 18.375 22.4062 14.5312 23.8125L15.75 46.125C15.75 47.4375 14.7188 48.4688 13.5 48.4688H7.5C6.1875 48.4688 5.15625 47.4375 5.25 46.125L6.375 23.8125C2.53125 22.4062 0 18.9375 0 13.9688C0 10.7812 1.40625 2.34375 1.5 1.96875C1.78125 0 5.71875 0 6 2.0625V15.2812C6.09375 15.5625 7.40625 15.5625 7.5 15.2812C7.59375 12.9375 8.15625 2.25 8.25 1.96875C8.53125 0 12.375 0 12.6562 1.96875C12.75 2.25 13.3125 12.9375 13.4062 15.2812C13.5 15.5625 14.8125 15.5625 14.9062 15.2812V2.0625C15.1875 0 19.125 0 19.4062 1.96875ZM30.6562 28.6875C15.9375 17.25 28.9688 0.46875 36.75 0.46875C37.9688 0.46875 39 1.5 39 2.71875V46.2188C39 47.5312 37.9688 48.4688 36.75 48.4688H31.5C30.1875 48.4688 29.0625 47.3438 29.25 46.0312L30.6562 28.6875Z' fill='%23333333'/%3E%3C/svg%3E ");
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
}

.p-attraction-data__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  margin-inline: auto;
  background-color: #fe4f59;
}
@media screen and (max-width: 767px) {
  .p-attraction-data__card-icon {
    min-height: 2.5rem;
  }
}

.p-attraction-data__card-icon img {
  display: block;
  width: 3rem;
  height: auto;
  margin-inline: auto;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-attraction-data__card-icon img {
    width: 2.5rem;
  }
}

.p-attraction-data__card-head {
  display: grid;
  gap: 0.5rem;
  text-align: center;
}

.p-attraction-data__card-label {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.p-attraction-data__card-value {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  margin: 0;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.p-attraction-data__card-value-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-attraction-data__card-value-text {
    font-size: 0.875rem;
  }
}

.p-attraction-data__card-value-num {
  font-family: var(--ff-en);
  font-size: 2.5rem;
  line-height: 1;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-attraction-data__card-value-num {
    font-size: 2rem;
  }
}

.p-attraction-data__card-text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.p-attraction-life {
  padding-block: 5rem 6rem;
}
@media screen and (max-width: 767px) {
  .p-attraction-life {
    padding-block: 3rem 4rem;
  }
}

.p-attraction-life__inner {
  display: grid;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-attraction-life__inner {
    gap: 1.5rem;
  }
}

.p-attraction-life__lead {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-attraction-life__lead {
    font-size: 0.875rem;
    line-height: 1.714;
    text-align: left;
  }
}

.p-attraction-life__rows {
  display: grid;
  gap: 4.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-attraction-life__rows {
    gap: 3rem;
  }
}

.p-attraction-life__row {
  min-width: 0;
}

.p-attraction-life__row-body {
  display: grid;
  grid-template-columns: minmax(0, 45.8333333333%) minmax(0, 1fr);
  gap: 3.75rem;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .p-attraction-life__row-body {
    gap: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-attraction-life__row-body {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-attraction-life__row-body--reverse .p-attraction-life__row-media {
    order: -1;
  }
}
@media (min-width: 768px) {
  .p-attraction-life__row-body--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 45.8333333333%);
  }
  .p-attraction-life__row-body--reverse .p-attraction-life__row-media {
    order: 2;
  }
  .p-attraction-life__row-body--reverse .p-attraction-life__row-content {
    order: 1;
  }
}

.p-attraction-life__row-media {
  margin: 0;
  overflow: hidden;
  border-radius: 0.5rem;
}

.p-attraction-life__row-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 550/412.5;
  object-fit: cover;
}

.p-attraction-life__row-content {
  display: grid;
  gap: 1.4375rem;
}

.p-attraction-life__row-text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-attraction-life__row-text {
    font-size: 0.875rem;
    line-height: 1.714;
  }
}

.p-attraction-voice {
  padding-block: 5rem 6rem;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-attraction-voice {
    padding-block: 3rem 4rem;
  }
}

.p-attraction-voice__inner {
  display: grid;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-attraction-voice__inner {
    gap: 1.5rem;
  }
}

.p-attraction-voice__lead {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-attraction-voice__lead {
    font-size: 0.875rem;
    line-height: 1.714;
    text-align: left;
  }
}

.p-attraction-voice__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.5rem 2.5rem;
  align-items: start;
}
@media screen and (max-width: 1023px) {
  .p-attraction-voice__grid {
    gap: 3.5rem 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-attraction-voice__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
    align-items: stretch;
  }
}

.p-attraction-voice__card {
  position: relative;
  width: 100%;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-attraction-voice__card {
    max-width: 100%;
  }
}
.p-attraction-voice__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 100vmax;
  background-color: var(--voice-bubble-color);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-attraction-voice__card::before {
    border-radius: 1rem;
  }
}
.p-attraction-voice__card::after {
  content: "";
  position: absolute;
  z-index: 0;
  background-color: var(--voice-bubble-color);
  pointer-events: none;
}

.p-attraction-voice__card--left {
  grid-column: 1;
  margin-inline-end: auto;
  margin-inline-start: 0;
}

.p-attraction-voice__card--right {
  grid-column: 2;
  width: 100%;
  translate: 0 4rem;
  margin-inline-start: auto;
  margin-inline-end: 0;
}
@media screen and (max-width: 767px) {
  .p-attraction-voice__card--right {
    grid-column: 1;
    translate: 0 0;
    width: fit-content;
    max-width: 100%;
  }
}

.p-attraction-voice__card--tail-bl::after {
  width: 4.375rem;
  height: 4.625rem;
  bottom: -2.5625rem;
  left: 4.75rem;
  transform: none;
  mask-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%2070%2074'%3e%3cg%20id='_メインコンテンツ'%20data-name='メインコンテンツ'%3e%3cpath%20d='M3.42,7.23c-12.93,12.65,13.22,40.95,37.66,55.22,9.18,5.36,33.39,15.67,28.2,9.79-14.69-16.63-25.97-19.14-1.08-61.56C76.17-2.9,13.82-2.94,3.42,7.23Z'/%3e%3c/g%3e%3c/svg%3e");
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-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%2070%2074'%3e%3cg%20id='_メインコンテンツ'%20data-name='メインコンテンツ'%3e%3cpath%20d='M3.42,7.23c-12.93,12.65,13.22,40.95,37.66,55.22,9.18,5.36,33.39,15.67,28.2,9.79-14.69-16.63-25.97-19.14-1.08-61.56C76.17-2.9,13.82-2.94,3.42,7.23Z'/%3e%3c/g%3e%3c/svg%3e");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
}
@media screen and (max-width: 767px) {
  .p-attraction-voice__card--tail-bl::after {
    zoom: 0.6;
    left: 2.375rem;
  }
}

.p-attraction-voice__card--tail-br::after {
  width: 4.375rem;
  height: 4.625rem;
  bottom: -2.5625rem;
  right: 4.75rem;
  mask-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%2070%2074'%3e%3cg%20id='_メインコンテンツ'%20data-name='メインコンテンツ'%3e%3cpath%20d='M66.58,7.23c12.93,12.65-13.22,40.95-37.66,55.22-9.18,5.36-33.39,15.67-28.2,9.79,14.69-16.63,25.97-19.14,1.08-61.56C-6.17-2.9,56.18-2.94,66.58,7.23Z'/%3e%3c/g%3e%3c/svg%3e");
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-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%2070%2074'%3e%3cg%20id='_メインコンテンツ'%20data-name='メインコンテンツ'%3e%3cpath%20d='M66.58,7.23c12.93,12.65-13.22,40.95-37.66,55.22-9.18,5.36-33.39,15.67-28.2,9.79,14.69-16.63,25.97-19.14,1.08-61.56C-6.17-2.9,56.18-2.94,66.58,7.23Z'/%3e%3c/g%3e%3c/svg%3e");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
}
@media screen and (max-width: 767px) {
  .p-attraction-voice__card--tail-br::after {
    zoom: 0.6;
    right: 2.375rem;
  }
}

.p-attraction-voice__card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 2.25rem;
  align-items: flex-start;
  padding: 1.5rem 2rem 1.5rem 2rem;
}
@media screen and (max-width: 1023px) {
  .p-attraction-voice__card-inner {
    padding: 1.5rem 2rem 1.5rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-attraction-voice__card-inner {
    width: 100%;
    gap: 1rem;
    padding: 1rem 1.375rem 0.875rem 1rem;
  }
}

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

.p-attraction-voice__text {
  display: flex;
  align-items: center;
  min-height: auto;
  margin-block-start: 0;
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-attraction-voice__text {
    font-size: 1rem;
    line-height: 1.714;
  }
}

.p-attraction-gallery {
  padding-block: 5rem 6rem;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-attraction-gallery {
    padding-block: 3rem 4rem;
  }
}

.p-attraction-gallery__inner {
  display: grid;
  gap: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-attraction-gallery__inner {
    gap: 2rem;
  }
}

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

.p-attraction-gallery__item {
  display: grid;
  gap: 0.8125rem;
  min-width: 0;
}

.p-attraction-gallery__media {
  margin: 0;
  overflow: hidden;
  border-radius: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-attraction-gallery__media {
    border-radius: 1rem;
  }
}

.p-attraction-gallery__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 537/328;
  object-fit: cover;
}

.p-attraction-gallery__caption {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-attraction-gallery__caption {
    font-size: 0.875rem;
    line-height: 1.714;
  }
}

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

.p-attraction-support__inner {
  display: grid;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-attraction-support__inner {
    gap: 1.5rem;
  }
}

.p-attraction-support__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 45.8333333333%);
  gap: 3.75rem;
  align-items: start;
}
@media screen and (max-width: 1023px) {
  .p-attraction-support__body {
    gap: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-attraction-support__body {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }
}

.p-attraction-support__content {
  display: grid;
  gap: 1.4375rem;
}

.p-attraction-support__text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-attraction-support__text {
    font-size: 0.875rem;
    line-height: 1.714;
  }
}

.p-attraction-support__text p + p {
  margin-block-start: 0.5rem;
}

.p-attraction-support__media {
  margin: 0;
  overflow: hidden;
  border-radius: 0.5rem;
  aspect-ratio: 550/412.5;
  background-color: #979797;
}

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

.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-careers-page {
  display: grid;
  gap: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-careers-page {
    gap: 4rem;
  }
}

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

.p-careers-page__anchor-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 2.4375rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1440px) {
  .p-careers-page__anchor-list {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-careers-page__anchor-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }
}

.p-careers-page__anchor-item {
  display: flex;
  min-width: 0;
}

.p-careers-page__anchor-link {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  padding: 1.5rem 1.5rem;
  border: 0.1875rem solid var(--color-text);
  border-radius: 1.25rem;
  background-color: var(--color-base);
  color: var(--color-text);
  font-size: clamp(1rem, -0.23rem + 1.92vw, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-decoration: none;
  font-feature-settings: "palt";
  transition: background-color var(--duration), color var(--duration), border-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-careers-page__anchor-link {
    padding: 1.25rem 1.5rem;
    border-width: 0.125rem;
    font-size: 1rem;
  }
}
@media (any-hover: hover) {
  .p-careers-page__anchor-link:hover {
    opacity: 1;
    background-color: var(--color-text);
    color: var(--color-white);
  }
  .p-careers-page__anchor-link:hover .p-careers-page__anchor-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 5v14M5 12l7 7 7-7'/%3E%3C/svg%3E");
  }
}

.p-careers-page__anchor-text {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.p-careers-page__anchor-icon {
  display: block;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 5v14M5 12l7 7 7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: background-image var(--duration);
}
@media screen and (max-width: 767px) {
  .p-careers-page__anchor-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.p-careers-page__list-inner,
.p-careers-page__ideal-inner,
.p-careers-page__faq-inner {
  display: grid;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-careers-page__list-inner,
  .p-careers-page__ideal-inner,
  .p-careers-page__faq-inner {
    gap: 2rem;
  }
}

.p-careers-page__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-careers-page__filter {
    gap: 0.75rem;
  }
}

.p-careers-page__filter-btn {
  min-width: 13.9375rem;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 1.5rem;
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-align: center;
  transition: background-color var(--duration), color var(--duration);
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-careers-page__filter-btn {
    min-width: 0;
    flex: 1 1 calc(50% - 0.375rem);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}
.p-careers-page__filter-btn.is-active {
  background-color: var(--color-text);
  color: var(--color-white);
}
@media (any-hover: hover) {
  .p-careers-page__filter-btn:not(.is-active):hover {
    background-color: var(--color-text);
    color: var(--color-white);
  }
}

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

.p-careers-page__cards-item {
  min-width: 0;
}

.p-careers-card {
  display: grid;
  gap: 0.5rem;
  color: var(--color-text);
  text-decoration: none;
}
@media (any-hover: hover) {
  .p-careers-card:hover .p-careers-card__image {
    scale: 1.05;
  }
  .p-careers-card:hover .p-careers-card__icon {
    background-color: var(--color-primary);
  }
}

.p-careers-card__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-careers-card__media {
    border-radius: 0.75rem;
  }
}

.p-careers-card__media--empty {
  aspect-ratio: 387/229;
  background-color: #d9d9d9;
}

.p-careers-card__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 387/229;
  object-fit: cover;
  transition: scale var(--duration);
}

.p-careers-card__tag {
  position: absolute;
  top: 1rem;
  left: 1.4375rem;
  z-index: 1;
  padding: 0.25rem 1rem;
  border-radius: 1.5rem;
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-careers-card__tag {
    top: 0.75rem;
    left: 1rem;
    font-size: 0.75rem;
  }
}

.p-careers-card__icon {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  display: block;
  width: 3rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color-text);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 19'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23fff; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M1.5,9.5h16' /%3E%3Cpath class='cls-1' d='M9.5,1.5l8,8-8,8' /%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.875rem auto;
  transition: background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-careers-card__icon {
    right: 1rem;
    bottom: 1rem;
    width: 2.5rem;
    background-size: 0.75rem auto;
  }
}

.p-careers-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-careers-card__title {
    font-size: 1.125rem;
    line-height: 1.55;
  }
}

.p-careers-page__empty {
  margin: 0;
  padding-block: 2.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-careers-page__empty {
    padding-block: 1.5rem;
    font-size: 0.875rem;
  }
}

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

.p-careers-page__faq {
  margin-block-start: 6.25rem;
  padding-block-end: 6rem;
}
@media screen and (max-width: 767px) {
  .p-careers-page__faq {
    margin-block-start: 4rem;
    padding-block-end: 4rem;
  }
}

.p-careers-page__ideal-lead,
.p-careers-page__faq-lead {
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: center;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-careers-page__ideal-lead,
  .p-careers-page__faq-lead {
    font-size: 0.875rem;
    line-height: 1.75;
    text-align: left;
  }
}

.p-careers-page__ideal-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .p-careers-page__ideal-list {
    gap: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-careers-page__ideal-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }
}

.p-careers-page__ideal-item {
  min-width: 0;
}

.p-careers-page__ideal-card {
  position: relative;
  display: grid;
  gap: 1rem;
  align-content: center;
  justify-items: center;
  aspect-ratio: 1;
  padding: 1.5rem;
  border: 0.125rem solid var(--color-text);
  border-radius: 50%;
  background-color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-careers-page__ideal-card {
    aspect-ratio: auto;
    min-height: 12.5rem;
    padding: 2rem 1.25rem;
    border-radius: 1rem;
  }
}

.p-careers-page__ideal-label {
  color: var(--color-primary);
  font-size: clamp(1.25rem, 0.68rem + 1.19vw, 1.75rem);
  font-weight: 700;
  line-height: 1.6;
  font-family: var(--ff-en);
}
@media screen and (max-width: 767px) {
  .p-careers-page__ideal-label {
    font-size: 1.375rem;
  }
}

.p-careers-page__ideal-text {
  margin: 0;
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-careers-page__ideal-text {
    font-size: 1.125rem;
    line-height: 1.55;
  }
}

.p-careers-page__faq-group {
  display: grid;
  gap: 1.25rem;
}

.p-careers-page__faq-group-title {
  margin: 0;
  padding: 1.125rem 1.875rem;
  background-color: #f1f1f1;
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-careers-page__faq-group-title {
    padding: 0.875rem 1.25rem;
    font-size: 1.125rem;
  }
}

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

.p-careers-page__ideal,
.p-careers-page__faq {
  scroll-margin-block-start: calc(var(--header-height) + 1.5rem);
}

.p-careers-single {
  padding-block: 3rem 11.25rem;
  background: linear-gradient(to bottom, #f7f3eb 0%, #fff 85%, #fff 100%);
}
@media screen and (max-width: 767px) {
  .p-careers-single {
    padding-block: 2rem 10rem;
  }
}

.p-careers-single__inner {
  display: grid;
  gap: 3.5rem;
  max-width: 68.75rem;
}
@media screen and (max-width: 767px) {
  .p-careers-single__inner {
    gap: 2.5rem;
  }
}

.p-careers-single__header {
  display: grid;
  gap: 1rem;
  text-align: center;
}

.p-careers-single__category {
  margin: 0;
}

.p-careers-single__category-tag {
  display: inline-block;
  padding: 0.25rem 1rem;
  border: 1px solid #cdcdcd;
  border-radius: 1.5rem;
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-careers-single__category-tag {
    font-size: 0.75rem;
  }
}

.p-careers-single__title {
  margin: 0;
}

.p-careers-single__media {
  width: min(100%, 40rem);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-careers-single__media {
    border-radius: 0.75rem;
  }
}

.p-careers-single__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 640/380;
  object-fit: cover;
}

.p-careers-single__detail {
  min-width: 0;
}

.p-careers-single__table {
  width: 100%;
}

.p-careers-single__table-row {
  display: grid;
  grid-template-columns: 17.875rem minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  padding-block: 0.875rem;
  border-block-start: 1px solid #cdcdcd;
}
@media screen and (max-width: 767px) {
  .p-careers-single__table-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
    padding-block: 1rem;
  }
}

.p-careers-single__table-row:last-child {
  border-block-end: 1px solid #cdcdcd;
}

.p-careers-single__table-label {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.875rem;
  text-align: center;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-careers-single__table-label {
    font-size: 0.875rem;
    line-height: 1.857;
    text-align: left;
  }
}

.p-careers-single__table-value {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-careers-single__table-value {
    font-size: 0.875rem;
    line-height: 1.857;
  }
}

.p-careers-single__apply {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.p-careers-single__pagination {
  margin-block-start: 2.5rem;
}

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

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

.p-careers-single__pagination-center {
  justify-self: center;
}

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

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

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

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

.p-contact__notice {
  width: 100%;
}

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

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

.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-development-education {
  padding-block: 5.375rem 7.25rem;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-development-education {
    padding-block: 3rem 4rem;
  }
}

.p-development-education__inner {
  display: grid;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-development-education__inner {
    gap: 3rem;
  }
}

.p-development-education__header {
  display: grid;
  gap: 1.875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-development-education__header {
    gap: 1rem;
    text-align: left;
  }
}

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

.p-development-education__lead p + p {
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-development-education__lead p + p {
    margin-block-start: 1rem;
  }
}

.p-development-education__training {
  display: grid;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-development-education__training {
    gap: 1.5rem;
  }
}

.p-development-education__career {
  display: grid;
  gap: 4.125rem;
}
@media screen and (max-width: 767px) {
  .p-development-education__career {
    gap: 1.5rem;
  }
}

.p-development-education__training-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem 5rem;
}
@media screen and (max-width: 1023px) {
  .p-development-education__training-list {
    gap: 2.5rem 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-development-education__training-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }
}

.p-development-education__training-item {
  min-width: 0;
}

.p-development-education__training-media {
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-development-education__training-media {
    border-radius: 0.75rem;
  }
}

.p-development-education__training-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 560/360;
  object-fit: cover;
}

.p-development-education__training-title {
  margin-block-start: 1rem;
  font-size: 1.5rem;
  line-height: 2.33;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-development-education__training-title {
    margin-block-start: 1rem;
  }
}

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

.p-development-education__career-list {
  display: grid;
  gap: 4.25rem;
}
@media screen and (max-width: 767px) {
  .p-development-education__career-list {
    gap: 2.5rem;
  }
}

.p-development-education__career-item {
  min-width: 0;
}

.p-development-education__career-text {
  margin-block-start: 2rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-development-education__career-text {
    margin-block-start: 1rem;
    font-size: 0.875rem;
    line-height: 1.714;
  }
}

.p-development-welfare {
  position: relative;
  overflow: hidden;
  padding-block: 6.5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-development-welfare {
    padding-block: 4rem;
  }
}

.p-development-welfare__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: 5rem;
  background: url("../images/bg_development_welfare.webp") no-repeat center top/cover;
}
@media screen and (max-width: 767px) {
  .p-development-welfare__bg {
    border-radius: 2.5rem;
  }
}

.p-development-welfare__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-development-welfare__inner {
    gap: 3rem;
  }
}

.p-development-welfare__blocks {
  display: grid;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-development-welfare__blocks {
    gap: 3rem;
  }
}

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

.p-development-welfare__grid-item {
  min-width: 0;
}

.p-development-welfare__card {
  height: 100%;
  padding: 1.625rem 2.5rem 3.125rem;
  border-radius: 1rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-development-welfare__card {
    padding: 1.5rem 1.25rem;
    border-radius: 0.75rem;
  }
}

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

.p-development-welfare__card-body {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  margin-block-start: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .p-development-welfare__card-body {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-development-welfare__card-body {
    gap: 1rem;
    margin-block-start: 0.75rem;
  }
}

.p-development-welfare__card-icon-wrap {
  display: grid;
  place-items: center;
  width: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-development-welfare__card-icon-wrap {
    width: 5.25rem;
  }
}

.p-development-welfare__card-icon {
  flex-shrink: 0;
  margin-block-start: 0.5rem;
}
@media screen and (max-width: 1023px) {
  .p-development-welfare__card-icon {
    zoom: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .p-development-welfare__card-icon {
    zoom: 0.7;
  }
}

.p-development-welfare__card-icon img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.p-development-welfare__card-icon--01 {
  width: 7.5rem;
  aspect-ratio: 120/86;
}

.p-development-welfare__card-icon--02 {
  width: 7.5rem;
  aspect-ratio: 120/100;
}

.p-development-welfare__card-icon--03 {
  width: 7.5rem;
  aspect-ratio: 120/100;
}

.p-development-welfare__card-icon--04 {
  width: 7.5rem;
  aspect-ratio: 120/100;
}

.p-development-welfare__card-icon--05 {
  width: 7.5rem;
  aspect-ratio: 120/86;
}

.p-development-welfare__card-icon--06 {
  width: 5.625rem;
  aspect-ratio: 90/120;
}

.p-development-welfare__card-icon--07 {
  width: 7.375rem;
  aspect-ratio: 118/120;
}

.p-development-welfare__card-icon--08 {
  width: 7.5rem;
  aspect-ratio: 120/96;
}

.p-development-welfare__card-icon--09 {
  width: 7.375rem;
  aspect-ratio: 118/120;
}

.p-development-welfare__card-text {
  flex: 1;
  min-width: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-development-welfare__card-text {
    font-size: 0.875rem;
    line-height: 1.714;
  }
}

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

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

.p-entry__notice {
  width: 100%;
}

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

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

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

.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;
  overflow-x: clip;
  z-index: 10;
  background-color: var(--color-white);
}

.p-footer__visual {
  position: relative;
  width: 100%;
  pointer-events: none;
  min-height: 25rem;
}
@media screen and (max-width: 767px) {
  .p-footer__visual {
    min-height: auto;
  }
}

.p-footer__visual-bg {
  width: max(100%, 120rem);
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-footer__visual-bg {
    width: 100%;
  }
}
.p-footer__visual-bg img {
  display: block;
  width: 100%;
  height: auto;
}

.p-footer__visual-staff {
  position: absolute;
  left: 50%;
  top: -5.8854166667vw;
  translate: -50% 0;
  width: min(80%, 65rem);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-footer__visual-staff {
    top: -5.125rem;
    width: min(100%, 23.125rem);
  }
}
.p-footer__visual-staff img {
  display: block;
  width: 100%;
  height: auto;
}

.p-footer__body {
  margin-block-start: -3.125rem;
  padding-block: 8.125rem 2.5rem;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-footer__body {
    padding-block: 5.625rem 7.25rem;
  }
}

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

.p-footer__columns {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 4rem;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 1023px) {
  .p-footer__columns {
    gap: 2.5rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__columns {
    flex-direction: column;
    gap: 2.125rem;
    min-width: 0;
    padding-inline: 1.25rem;
  }
}

.p-footer__brand {
  flex: 0 0 24rem;
  display: grid;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-footer__brand {
    flex: 1 1 auto;
    width: 100%;
    gap: 1.25rem;
  }
}

.p-footer__menu {
  display: flex;
  flex: 0 0 37.5rem;
  flex-wrap: wrap;
  gap: 3rem 4rem;
  align-items: flex-start;
  justify-content: space-between;
  min-width: 0;
}
@media screen and (max-width: 1023px) {
  .p-footer__menu {
    flex: 1 1 37.5rem;
    gap: 2.5rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__menu {
    flex: 1 1 auto;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    max-width: 100%;
  }
}

.p-footer__logo-link {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-footer__logo-link {
    justify-content: center;
    gap: 0.75rem;
  }
}
@media (any-hover: hover) {
  .p-footer__logo-link:hover {
    opacity: 0.7;
  }
}

.p-footer__logo-image {
  flex-shrink: 0;
  width: 9.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo-image {
    width: 6.75rem;
  }
}

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

.p-footer__logo-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.p-footer__logo-name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-footer__logo-name {
    font-size: 0.709375rem;
  }
}

.p-footer__logo-en {
  color: var(--color-primary);
  font-family: var(--ff-en-cond);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-footer__logo-en {
    font-size: 1.064375rem;
  }
}

.p-footer__address {
  display: grid;
  gap: 0;
  margin: 0;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .p-footer__address {
    text-align: center;
  }
}

.p-footer__address-name {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-footer__address-name {
    font-size: 0.875rem;
    line-height: 1.714;
  }
}

.p-footer__address-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-footer__address-text {
    font-size: 0.8125rem;
  }
}

.p-footer__address-num {
  font-family: var(--ff-en);
}

.p-footer__brand-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-footer__brand-actions {
    gap: 2.5rem;
    justify-content: center;
  }
}

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

.p-footer__brand-links-item a {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__brand-links-item a {
    font-size: 0.875rem;
    line-height: 1.714;
  }
}
@media (any-hover: hover) {
  .p-footer__brand-links-item a:hover {
    opacity: 0.7;
  }
}

.p-footer__external-icon {
  display: block;
  flex-shrink: 0;
}
.p-footer__external-icon::before {
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13.5 13.5'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23111; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5px; %7D %3C/style%3E%3C/defs%3E%3Cpolyline class='cls-1' points='7.84 .75 12.75 .75 12.75 5.66' /%3E%3Cpolyline class='cls-1' points='10.57 8.39 10.57 12.75 .75 12.75 .75 2.93 5.11 2.93' /%3E%3Cline class='cls-1' x1='6.2' y1='7.3' x2='12.2' y2='1.3' /%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-footer__external-icon::before {
    width: 0.625rem;
    height: 0.625rem;
  }
}

.p-footer__external-icon--brand {
  margin-block-end: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__external-icon--brand {
    margin-block-end: 0.375rem;
  }
}

.p-footer__external-icon--sub {
  margin-block-start: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-footer__external-icon--sub {
    margin-block-start: 0.375rem;
  }
}

.p-footer__sns-list {
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-footer__sns-item {
  line-height: 1;
}

.p-footer__sns-item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-block-end: 0.125rem;
}
@media screen and (max-width: 767px) {
  .p-footer__sns-item a {
    width: 1.5rem;
    height: 1.5rem;
    margin-block-end: 0;
  }
}
@media (any-hover: hover) {
  .p-footer__sns-item a:hover {
    opacity: 0.7;
  }
}

.p-footer__sns-icon--instagram {
  display: block;
  width: 2rem;
  height: 2rem;
  background: url("../images/icon_instagram.svg") no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-footer__sns-icon--instagram {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.p-footer__sns-icon--line {
  display: block;
  width: 2rem;
  height: 2rem;
  background: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_2'%20data-name='レイヤー%202'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20320%20320'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%23fff;%20}%20.cls-2%20{%20fill:%20%2306c755;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='LINE_LOGO'%20data-name='LINE%20LOGO'%3e%3cg%3e%3crect%20class='cls-2'%20width='320'%20height='320'%20rx='72.14'%20ry='72.14'/%3e%3cg%3e%3cpath%20class='cls-1'%20d='M266.66,144.92c0-47.74-47.86-86.58-106.69-86.58s-106.69,38.84-106.69,86.58c0,42.8,37.96,78.64,89.23,85.42,3.47.75,8.2,2.29,9.4,5.26,1.08,2.7.7,6.92.35,9.65,0,0-1.25,7.53-1.52,9.13-.47,2.7-2.14,10.55,9.24,5.75,11.39-4.8,61.44-36.18,83.82-61.94h0c15.46-16.96,22.87-34.16,22.87-53.27Z'/%3e%3cg%3e%3cpath%20class='cls-2'%20d='M231.16,172.49h-29.97c-1.13,0-2.04-.91-2.04-2.04v-.03h0v-46.48h0v-.05c0-1.13.91-2.04,2.04-2.04h29.97c1.12,0,2.04.92,2.04,2.04v7.57c0,1.13-.91,2.04-2.04,2.04h-20.37v7.86h20.37c1.12,0,2.04.92,2.04,2.04v7.57c0,1.13-.91,2.04-2.04,2.04h-20.37v7.86h20.37c1.12,0,2.04.92,2.04,2.04v7.57c0,1.13-.91,2.04-2.04,2.04Z'/%3e%3cpath%20class='cls-2'%20d='M120.29,172.49c1.12,0,2.04-.91,2.04-2.04v-7.57c0-1.12-.92-2.04-2.04-2.04h-20.37v-36.96c0-1.12-.92-2.04-2.04-2.04h-7.57c-1.13,0-2.04.91-2.04,2.04v46.53h0v.04c0,1.13.91,2.04,2.04,2.04h29.97Z'/%3e%3crect%20class='cls-2'%20x='128.73'%20y='121.85'%20width='11.64'%20height='50.64'%20rx='2.04'%20ry='2.04'/%3e%3cpath%20class='cls-2'%20d='M189.84,121.85h-7.57c-1.13,0-2.04.91-2.04,2.04v27.65l-21.3-28.77c-.05-.07-.11-.14-.16-.21,0,0,0,0-.01-.01-.04-.04-.08-.09-.12-.13-.01-.01-.03-.02-.04-.03-.04-.03-.07-.06-.11-.09-.02-.01-.04-.03-.06-.04-.03-.03-.07-.05-.11-.07-.02-.01-.04-.03-.06-.04-.04-.02-.07-.04-.11-.06-.02-.01-.04-.02-.06-.03-.04-.02-.08-.04-.12-.05-.02,0-.04-.02-.07-.02-.04-.01-.08-.03-.12-.04-.02,0-.05-.01-.07-.02-.04,0-.08-.02-.12-.03-.03,0-.06,0-.09-.01-.04,0-.07-.01-.11-.01-.04,0-.07,0-.11,0-.02,0-.05,0-.07,0h-7.52c-1.12,0-2.04.91-2.04,2.04v46.56c0,1.12.91,2.04,2.04,2.04h7.57c1.13,0,2.04-.91,2.04-2.04v-27.65l21.33,28.81c.15.21.33.38.53.51,0,0,.02.01.02.02.04.03.08.05.13.08.02.01.04.02.06.03.03.02.07.03.1.05.03.02.07.03.1.04.02,0,.04.02.06.02.05.02.09.03.14.04,0,0,.02,0,.03,0,.17.04.35.07.53.07h7.52c1.12,0,2.04-.91,2.04-2.04v-46.56c0-1.12-.91-2.04-2.04-2.04Z'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e") no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-footer__sns-icon--line {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.p-footer__nav {
  flex: 0 0 16.25rem;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
  }
}

.p-footer__nav-groups {
  display: grid;
  gap: 2.125rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-groups {
    gap: 1.625rem;
  }
}

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

.p-footer__nav-group-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-group-title {
    font-size: 0.875rem;
  }
}
@media (any-hover: hover) {
  .p-footer__nav-group-title a:hover {
    opacity: 0.7;
  }
}

.p-footer__nav-group-title--en {
  font-family: var(--ff-en-cond);
}

.p-footer__nav-sub-list {
  display: grid;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-footer__nav-sub-item a {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-sub-item a {
    font-size: 0.875rem;
  }
}
.p-footer__nav-sub-item a::before {
  content: "";
  flex-shrink: 0;
  width: 0.75rem;
  height: 2px;
  margin-block-start: 0.6875rem;
  background-color: var(--color-primary);
}
@media (any-hover: hover) {
  .p-footer__nav-sub-item a:hover {
    opacity: 0.7;
  }
}

.p-footer__nav-sub-item--multiline a::before {
  margin-block-start: 0.625rem;
}

.p-footer__nav-sub-item--plain a {
  align-items: flex-end;
  line-height: 1.75;
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
}
.p-footer__nav-sub-item--plain a::before {
  content: none;
}

.p-footer__nav-sub-item-text {
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-sub-item-text {
    flex-direction: row;
  }
}

.p-footer__nav-sub-item-line {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-sub-item-line {
    display: inline;
  }
}

.p-footer__aside {
  flex: 0 0 16.25rem;
  display: grid;
  gap: 1.9375rem;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-footer__aside {
    flex: 1 1 auto;
    gap: 1.5625rem;
    width: 100%;
    max-width: 100%;
  }
}

.p-footer__entry-list {
  display: grid;
  gap: 0.9375rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-footer__entry-list {
    gap: 1rem;
  }
}

.p-footer__entry-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 0.375rem;
  background-color: var(--color-text);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transition: background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-footer__entry-link {
    min-height: 3rem;
    padding: 0.875rem 1.25rem;
    font-size: 0.8125rem;
  }
}
@media (any-hover: hover) {
  .p-footer__entry-link:hover {
    opacity: 1;
    background-color: var(--color-primary);
  }
}

.p-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  margin-block-start: 4.375rem;
  padding-block-start: 3.125rem;
  border-block-start: 1px solid var(--color-border);
}
@media screen and (max-width: 767px) {
  .p-footer__bottom {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 1rem;
    margin-block-start: 2.5rem;
    padding-block-start: 1.75rem;
  }
}

.p-footer__copyright {
  margin: 0;
  margin-inline-start: auto;
  color: #999999;
  font-family: var(--ff-en);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    margin-inline-start: 0;
    text-align: center;
  }
}

.p-footer__pagetop {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: calc(var(--z-index-pagetop) - 1);
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  border-radius: 50%;
  background-color: var(--color-white);
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.5rem);
  transition: opacity var(--duration), visibility var(--duration), transform var(--duration), background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-footer__pagetop {
    bottom: 2.5rem;
    align-self: center;
    width: 3rem;
    height: 3rem;
  }
}
.p-footer__pagetop.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
@media (any-hover: hover) {
  .p-footer__pagetop:hover {
    background-color: var(--color-gray);
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-footer__pagetop {
    transform: none;
    transition: opacity var(--duration), visibility var(--duration), background-color var(--duration);
  }
}

.p-footer__pagetop-icon {
  display: block;
  width: 1.1875rem;
  height: 0.6875rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 11'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23111; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M1.5,9.5L9.5,1.5l8,8' /%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-footer__pagetop-icon {
    width: 0.75rem;
    height: 0.375rem;
  }
}

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

.p-form.p-form--confirm .p-form__label {
  margin-block-start: 0;
}
.p-form.p-form--confirm .p-form__confirm-text {
  margin: 0;
  color: var(--_form-color-text);
  font-size: 1rem;
  line-height: 1.8;
  word-break: break-word;
}
.p-form.p-form--confirm .p-form__confirm-text--pre {
  white-space: pre-wrap;
}

.p-form__submit--confirm {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.p-form__submit--confirm .wpcf7-previous.c-button {
  cursor: pointer;
  appearance: none;
}

.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__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.875rem;
  min-width: 15.625rem;
  margin-block-start: 1rem;
  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:has(.p-form__label-note) {
  margin-block-start: 0.2em;
}

.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__flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-form__flex {
    gap: 0.5rem;
  }
}

.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;
  cursor: pointer;
  appearance: none;
}

.p-form__select--year {
  width: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-form__select--year {
    width: 6.25rem;
  }
}

.p-form__select--month,
.p-form__select--day {
  width: 5rem;
}
@media screen and (max-width: 767px) {
  .p-form__select--month,
  .p-form__select--day {
    width: 4.5rem;
  }
}

.p-form__select-wrap {
  position: relative;
}
.p-form__select-wrap > .p-form__select {
  padding-inline-end: 3rem;
}

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

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

.p-form__radio-group {
  display: flex;
  flex-direction: column;
  gap: 2rem 2.5rem;
  margin-block-start: 1rem;
}
@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__submit .c-button {
  transition: opacity 0.2s ease;
}
@media (any-hover: hover) {
  .p-form__submit .c-button:hover {
    opacity: 0.8;
  }
}

.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;
  right: 0;
  left: 0;
  z-index: calc(var(--z-index-overlay) + 1);
  height: var(--header-height);
}

.p-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: calc(var(--z-index-overlay) + 1);
  height: inherit;
  padding-inline: 2.5rem;
  transition: transform var(--duration);
}
@media screen and (max-width: 1023px) {
  .p-header__inner {
    padding-inline: 1.25rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-header__inner {
    transition: none;
  }
}

.p-header.is-hidden .p-header__inner {
  transform: translateY(-100%);
}

.p-header.is-hidden {
  pointer-events: none;
}

.p-header__logo {
  flex-shrink: 1;
  min-width: 0;
  margin: 0;
}

.p-header__logo-link {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .p-header__logo-link {
    gap: 0.75rem;
  }
}
.p-header__logo-image {
  flex-shrink: 0;
  width: 9.5rem;
}
@media screen and (max-width: 1023px) {
  .p-header__logo-image {
    width: clamp(6.25rem, 0.25rem + 26.67vw, 6.75rem);
  }
}

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

.p-header__logo-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.p-header__logo-name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1023px) {
  .p-header__logo-name {
    font-size: clamp(0.5625rem, -1.2rem + 7.83vw, 0.709375rem);
  }
}

.p-header__logo-en {
  color: var(--color-primary);
  font-family: var(--ff-en-cond);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 1023px) {
  .p-header__logo-en {
    font-size: clamp(0.875rem, -1.6rem + 11vw, 1.08125rem);
  }
}

.p-header__actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .p-header__actions {
    gap: 0.75rem;
  }
}

.p-header__entry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12.5rem;
  padding: 1.3125rem 1.5rem;
  border-radius: 0.375rem;
  background-color: var(--color-text);
  color: var(--color-white);
  font-family: var(--ff-en-cond);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color var(--duration);
}
@media screen and (max-width: 1023px) {
  .p-header__entry {
    display: none;
  }
}
@media (any-hover: hover) {
  .p-header__entry:hover {
    opacity: 1;
    background-color: var(--color-primary);
  }
}

.p-header__menu-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  transition: opacity var(--duration);
}
@media screen and (max-width: 1023px) {
  .p-header__menu-toggle {
    gap: 0.625rem;
  }
}
@media (any-hover: hover) {
  .p-header__menu-toggle:hover {
    opacity: 0.7;
  }
}

.p-header__menu-toggle-icon {
  position: relative;
  display: block;
  width: 4rem;
  height: 1rem;
}
@media screen and (max-width: 1023px) {
  .p-header__menu-toggle-icon {
    width: min(12.4vw, 3rem);
    height: 0.8125rem;
  }
}

.p-header__menu-toggle-icon span {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 0.25rem;
  border-radius: 100vmax;
  background-color: currentcolor;
  transform: translateY(-50%);
  transition: transform var(--duration) ease;
}
@media screen and (max-width: 1023px) {
  .p-header__menu-toggle-icon span {
    height: 0.1875rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-header__menu-toggle-icon span {
    transition: none;
  }
}

.p-header__menu-toggle-icon span:nth-child(1) {
  transform: translateY(calc(-50% - 0.375rem));
}

.p-header__menu-toggle-icon span:nth-child(2) {
  transform: translateY(calc(-50% + 0.375rem));
}

.p-header__menu-toggle.is-open .p-header__menu-toggle-icon span:nth-child(1) {
  transform: translateY(-50%) rotate(20deg);
}

.p-header__menu-toggle.is-open .p-header__menu-toggle-icon span:nth-child(2) {
  transform: translateY(-50%) rotate(-20deg);
}

.p-header__menu-toggle-label {
  font-family: var(--ff-en-cond);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 1023px) {
  .p-header__menu-toggle-label {
    font-size: 0.875rem;
  }
}

.p-header__drawer {
  position: fixed;
  inset: 0;
  z-index: var(--z-index-overlay);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.p-header__drawer.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.p-header__drawer-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: #f5f0eb;
  background-image: url("../images/bg_drawer.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-header__drawer-inner {
  display: flex;
  flex-direction: column;
  gap: 7.5rem;
  width: min(100%, 81.25rem);
  min-height: 100svh;
  margin-inline: auto;
  padding-block: calc(var(--header-height) + 6.875rem);
  padding-inline: 3.125rem;
}
@media screen and (max-width: 1023px) {
  .p-header__drawer-inner {
    gap: 1.875rem;
    min-height: auto;
    width: min(100%, 38.75rem);
    padding-block: calc(var(--header-height) + 0.875rem) 5.1875rem;
    padding-inline: 2.5rem;
  }
}
@media (width <= 374px) {
  .p-header__drawer-inner {
    padding-inline: 1.875rem;
  }
}

.p-header__drawer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4rem 4rem;
}
@media screen and (max-width: 1440px) {
  .p-header__drawer-columns {
    gap: 2rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-header__drawer-columns {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.6875rem;
  }
}

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

.p-header__drawer-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
@media screen and (max-width: 1023px) {
  .p-header__drawer-group {
    gap: 0.5rem;
  }
}

.p-header__drawer-group-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1023px) {
  .p-header__drawer-group-title {
    font-size: 0.875rem;
  }
}
@media (any-hover: hover) {
  .p-header__drawer-group-title a:hover {
    opacity: 0.7;
  }
}

.p-header__drawer-group-title--en {
  font-family: var(--ff-en-cond);
}

.p-header__drawer-group-title--en + .p-header__drawer-sub-list {
  margin-block-start: 6rem;
}
@media screen and (max-width: 1023px) {
  .p-header__drawer-group-title--en + .p-header__drawer-sub-list {
    margin-block-start: 0;
  }
}

.p-header__drawer-sub-list {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .p-header__drawer-sub-list {
    gap: 0.5rem;
  }
}

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

.p-header__drawer-sub-item a {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 2.33;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1023px) {
  .p-header__drawer-sub-item a {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}
@media (width <= 400px) {
  .p-header__drawer-sub-item a {
    font-size: 3.5897435897vw;
  }
}
.p-header__drawer-sub-item a::before {
  content: "";
  flex-shrink: 0;
  width: 0.75rem;
  height: 2px;
  margin-block-start: 1rem;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-header__drawer-sub-item a::before {
    margin-block-start: 0.625rem;
  }
}
@media (any-hover: hover) {
  .p-header__drawer-sub-item a:hover {
    opacity: 0.7;
  }
}

.p-header__drawer-sub-item--plain a {
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
}
.p-header__drawer-sub-item--plain a::before {
  content: none;
}

.p-header__drawer-sub-item-text {
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}
@media screen and (max-width: 1023px) {
  .p-header__drawer-sub-item-text {
    flex-direction: row;
  }
}

.p-header__drawer-sub-item-line {
  display: block;
}
@media screen and (max-width: 1023px) {
  .p-header__drawer-sub-item-line {
    display: inline;
  }
}

.p-header__external-icon {
  display: block;
  flex-shrink: 0;
}
.p-header__external-icon::before {
  content: "";
  display: block;
  width: 0.84375rem;
  height: 0.84375rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13.5 13.5'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23111; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5px; %7D %3C/style%3E%3C/defs%3E%3Cpolyline class='cls-1' points='7.84 .75 12.75 .75 12.75 5.66' /%3E%3Cpolyline class='cls-1' points='10.57 8.39 10.57 12.75 .75 12.75 .75 2.93 5.11 2.93' /%3E%3Cline class='cls-1' x1='6.2' y1='7.3' x2='12.2' y2='1.3' /%3E%3C/svg%3E%0A");
}
@media screen and (max-width: 1023px) {
  .p-header__external-icon::before {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.p-header__external-icon--brand {
  margin-block-start: 0.5rem;
}
@media screen and (max-width: 1023px) {
  .p-header__external-icon--brand {
    margin-block-start: 0;
    align-self: center;
  }
}

.p-header__external-icon--sub {
  margin-block-start: 0.625rem;
}
@media screen and (max-width: 1023px) {
  .p-header__external-icon--sub {
    margin-block-start: 0.375rem;
  }
}

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

.p-header__drawer-brand--column .p-header__drawer-brand-sns-list {
  margin-block-start: 2rem;
}

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

.p-header__drawer-brand-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
}
@media screen and (max-width: 1023px) {
  .p-header__drawer-brand-link {
    gap: 0.25rem;
    font-size: 0.875rem;
    align-items: center;
  }
}
@media (any-hover: hover) {
  .p-header__drawer-brand-link:hover {
    opacity: 0.7;
  }
}

.p-header__drawer-brand-sns-list {
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
}

.p-header__drawer-brand-sns-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
}
@media screen and (max-width: 1023px) {
  .p-header__drawer-brand-sns-link {
    width: 1.5rem;
    height: 1.5rem;
  }
}
@media (any-hover: hover) {
  .p-header__drawer-brand-sns-link:hover {
    opacity: 0.7;
  }
}

.p-header__drawer-brand--column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
@media screen and (max-width: 1023px) {
  .p-header__drawer-brand--column {
    display: none;
  }
}

.p-header__drawer-brand--footer {
  display: none;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .p-header__drawer-brand--footer {
    gap: 2.25rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
}

.p-header__drawer-sns-item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
}
@media (any-hover: hover) {
  .p-header__drawer-sns-item a:hover {
    opacity: 0.7;
  }
}

.p-header__sns-icon--instagram {
  display: block;
  width: 2rem;
  height: 2rem;
  background: url("../images/icon_instagram.svg") no-repeat center center/contain;
}
@media screen and (max-width: 1023px) {
  .p-header__sns-icon--instagram {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.p-header__sns-icon--line {
  display: block;
  width: 2rem;
  height: 2rem;
  background: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_2'%20data-name='レイヤー%202'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20320%20320'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%23fff;%20}%20.cls-2%20{%20fill:%20%2306c755;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='LINE_LOGO'%20data-name='LINE%20LOGO'%3e%3cg%3e%3crect%20class='cls-2'%20width='320'%20height='320'%20rx='72.14'%20ry='72.14'/%3e%3cg%3e%3cpath%20class='cls-1'%20d='M266.66,144.92c0-47.74-47.86-86.58-106.69-86.58s-106.69,38.84-106.69,86.58c0,42.8,37.96,78.64,89.23,85.42,3.47.75,8.2,2.29,9.4,5.26,1.08,2.7.7,6.92.35,9.65,0,0-1.25,7.53-1.52,9.13-.47,2.7-2.14,10.55,9.24,5.75,11.39-4.8,61.44-36.18,83.82-61.94h0c15.46-16.96,22.87-34.16,22.87-53.27Z'/%3e%3cg%3e%3cpath%20class='cls-2'%20d='M231.16,172.49h-29.97c-1.13,0-2.04-.91-2.04-2.04v-.03h0v-46.48h0v-.05c0-1.13.91-2.04,2.04-2.04h29.97c1.12,0,2.04.92,2.04,2.04v7.57c0,1.13-.91,2.04-2.04,2.04h-20.37v7.86h20.37c1.12,0,2.04.92,2.04,2.04v7.57c0,1.13-.91,2.04-2.04,2.04h-20.37v7.86h20.37c1.12,0,2.04.92,2.04,2.04v7.57c0,1.13-.91,2.04-2.04,2.04Z'/%3e%3cpath%20class='cls-2'%20d='M120.29,172.49c1.12,0,2.04-.91,2.04-2.04v-7.57c0-1.12-.92-2.04-2.04-2.04h-20.37v-36.96c0-1.12-.92-2.04-2.04-2.04h-7.57c-1.13,0-2.04.91-2.04,2.04v46.53h0v.04c0,1.13.91,2.04,2.04,2.04h29.97Z'/%3e%3crect%20class='cls-2'%20x='128.73'%20y='121.85'%20width='11.64'%20height='50.64'%20rx='2.04'%20ry='2.04'/%3e%3cpath%20class='cls-2'%20d='M189.84,121.85h-7.57c-1.13,0-2.04.91-2.04,2.04v27.65l-21.3-28.77c-.05-.07-.11-.14-.16-.21,0,0,0,0-.01-.01-.04-.04-.08-.09-.12-.13-.01-.01-.03-.02-.04-.03-.04-.03-.07-.06-.11-.09-.02-.01-.04-.03-.06-.04-.03-.03-.07-.05-.11-.07-.02-.01-.04-.03-.06-.04-.04-.02-.07-.04-.11-.06-.02-.01-.04-.02-.06-.03-.04-.02-.08-.04-.12-.05-.02,0-.04-.02-.07-.02-.04-.01-.08-.03-.12-.04-.02,0-.05-.01-.07-.02-.04,0-.08-.02-.12-.03-.03,0-.06,0-.09-.01-.04,0-.07-.01-.11-.01-.04,0-.07,0-.11,0-.02,0-.05,0-.07,0h-7.52c-1.12,0-2.04.91-2.04,2.04v46.56c0,1.12.91,2.04,2.04,2.04h7.57c1.13,0,2.04-.91,2.04-2.04v-27.65l21.33,28.81c.15.21.33.38.53.51,0,0,.02.01.02.02.04.03.08.05.13.08.02.01.04.02.06.03.03.02.07.03.1.05.03.02.07.03.1.04.02,0,.04.02.06.02.05.02.09.03.14.04,0,0,.02,0,.03,0,.17.04.35.07.53.07h7.52c1.12,0,2.04-.91,2.04-2.04v-46.56c0-1.12-.91-2.04-2.04-2.04Z'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e") no-repeat center center/contain;
}
@media screen and (max-width: 1023px) {
  .p-header__sns-icon--line {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.p-header__drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .p-header__drawer-footer {
    gap: 1.875rem;
  }
}

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

.p-header__drawer-entry-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4rem;
  padding: 1.625rem 1.5rem;
  border-radius: 0.375rem;
  background-color: var(--color-text);
  color: var(--color-white);
  font-size: clamp(1rem, 0.71rem + 0.6vw, 1.25rem);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  transition: background-color var(--duration);
}
@media screen and (max-width: 1023px) {
  .p-header__drawer-entry-link {
    min-height: auto;
    padding: 0.875rem 1rem;
    font-size: 0.8125rem;
    border-radius: 0.25rem;
  }
}
@media (any-hover: hover) {
  .p-header__drawer-entry-link:hover {
    opacity: 1;
    background-color: var(--color-primary);
  }
}

.p-mv {
  position: relative;
  overflow-x: clip;
  z-index: 2;
}

.p-mv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-mv__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-mv__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.p-mv__blend {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
}

.p-mv__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 120rem);
  aspect-ratio: 1920/1200;
  max-height: 75rem;
  margin-inline: auto;
  padding-inline: 2.6041666667vw 1.7708333333vw;
}
@media (width < 1920px) {
  .p-mv__inner {
    max-height: 62.5vw;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__inner {
    aspect-ratio: 390/600;
    max-height: 153.8461538462vw;
    padding-inline: 0;
  }
}

.p-mv__catchphrase {
  position: absolute;
  top: 13.125rem;
  left: 6.875rem;
  z-index: 4;
  width: 42.875rem;
  margin: 0;
}
@media (width < 1920px) {
  .p-mv__catchphrase {
    top: 10.9375vw;
    left: 5.7291666667vw;
    width: 35.7291666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__catchphrase {
    position: relative;
    top: auto;
    left: auto;
    z-index: 2;
    width: 70.7692307692vw;
    padding-block-start: 22.5641025641vw;
    margin-inline: 7.6923076923vw;
  }
}

.p-mv__stage {
  position: relative;
  width: 100%;
  min-height: 75rem;
}
@media (width < 1920px) {
  .p-mv__stage {
    min-height: 62.5vw;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__stage {
    min-height: 153.8461538462vw;
  }
}

.p-mv__slider-wrap {
  position: absolute;
  top: 12rem;
  right: 2.875rem;
  z-index: 1;
  width: 50rem;
  height: auto;
  aspect-ratio: 4/3;
  overflow: visible;
  pointer-events: auto;
  perspective: 62.5rem;
}
@media (width < 1920px) {
  .p-mv__slider-wrap {
    top: 10vw;
    width: 41.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__slider-wrap {
    position: relative;
    top: auto;
    right: auto;
    z-index: 0;
    width: 61.5384615385vw;
    margin-block-start: 1.7948717949vw;
    margin-inline: auto;
  }
}

.p-mv__swiper {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.p-mv__swiper .swiper-wrapper {
  position: relative;
  height: 100%;
}

.p-mv__swiper .swiper-slide {
  display: flex;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.p-mv__slide-frame {
  height: 100%;
  margin: 0;
  border-radius: 0.75rem;
  transform-origin: center bottom;
  transition: transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.9s ease, opacity 0.9s ease;
}
.p-mv__slide-frame img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.75rem;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.p-mv__slide[data-stack="0"] .p-mv__slide-frame {
  transform: none;
  box-shadow: 0 0.875rem 2.25rem oklch(from var(--color-black) l c h/24%);
}

.p-mv__slide[data-stack="1"] .p-mv__slide-frame {
  rotate: 7.5deg;
  translate: -2.4375rem -0.125rem;
  box-shadow: 0 0.625rem 1.75rem oklch(from var(--color-black) l c h/18%);
}

.p-mv__slide[data-stack="2"] .p-mv__slide-frame {
  rotate: -7.5deg;
  translate: 2.5rem -0.125rem;
  box-shadow: 0 0.625rem 1.75rem oklch(from var(--color-black) l c h/18%);
}

.p-mv__slide.is-mv-leaving .p-mv__slide-frame,
.p-mv__slide-frame.is-mv-exiting {
  rotate: unset;
  translate: unset;
  transform: translateY(var(--mv-exit-y, -6.25rem)) translateX(var(--mv-exit-x, 4.375rem)) rotate(15deg) scale(0.95);
  opacity: 0;
  transition: transform 0.85s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.65s ease;
}

@media screen and (max-width: 767px) {
  .p-mv__slide[data-stack="1"] .p-mv__slide-frame {
    rotate: 7.5deg;
    translate: -0.6875rem -0.125rem;
    box-shadow: 0 0.375rem 1rem oklch(from var(--color-black) l c h/18%);
  }
  .p-mv__slide[data-stack="2"] .p-mv__slide-frame {
    rotate: -7.5deg;
    translate: 0.6875rem -0.125rem;
    box-shadow: 0 0.375rem 1rem oklch(from var(--color-black) l c h/18%);
  }
  .p-mv__slide[data-stack="0"] .p-mv__slide-frame {
    box-shadow: 0 0.5rem 1.25rem oklch(from var(--color-black) l c h/24%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-mv__slide-frame {
    transition: none;
  }
  .p-mv__slide-frame.is-mv-exiting {
    transition: none;
  }
  .p-mv__slide.is-mv-leaving .p-mv__slide-frame {
    transition: none;
  }
}
.p-mv__staff {
  position: absolute;
  bottom: 19.75rem;
  left: 1.875rem;
  z-index: 4;
  width: 65rem;
  pointer-events: none;
}
@media (width < 1920px) {
  .p-mv__staff {
    bottom: 16.4583333333vw;
    left: 1.5625vw;
    width: 54.1666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__staff {
    bottom: 5.125rem;
    left: 50%;
    width: 94.8717948718vw;
    translate: -50% 0;
  }
}

.p-mv__birds {
  position: absolute;
  top: 9.375rem;
  left: 50%;
  translate: calc(-50% + 2.4375rem) 0;
  z-index: 5;
  width: 10rem;
  pointer-events: none;
}
@media (width < 1920px) {
  .p-mv__birds {
    top: 7.8125vw;
    width: 8.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__birds {
    top: 25.641025641vw;
    left: auto;
    right: 2.5641025641vw;
    width: 20.5128205128vw;
  }
}

.p-mv__forest-stump {
  position: absolute;
  left: -6.875rem;
  bottom: -4.375rem;
  z-index: 5;
  width: 36.5625rem;
  pointer-events: none;
}
@media (width < 1920px) {
  .p-mv__forest-stump {
    left: -5.7291666667vw;
    bottom: -3.6458333333vw;
    width: 30.46875vw;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__forest-stump {
    left: -12.8205128205vw;
    bottom: -10.7692307692vw;
    width: 52.8205128205vw;
  }
}

.p-mv__bird-stump {
  position: absolute;
  right: 20rem;
  bottom: 3.375rem;
  z-index: 6;
  width: 10rem;
  pointer-events: none;
}
@media (width < 1920px) {
  .p-mv__bird-stump {
    right: 16.6666666667vw;
    bottom: 2.8125vw;
    width: 8.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__bird-stump {
    right: 17.9487179487vw;
    bottom: 1.5384615385vw;
    width: 12.8205128205vw;
  }
}

.p-mv__trees {
  position: absolute;
  left: 50%;
  bottom: 12.5625rem;
  translate: calc(-50% + 0rem) 0;
  z-index: 5;
  width: 100rem;
  pointer-events: none;
}
@media (width < 1920px) {
  .p-mv__trees {
    bottom: 10.46875vw;
    width: 83.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__trees {
    bottom: 11.2820512821vw;
    width: 89.7435897436vw;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.p-people-archive__lead {
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: center;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-people-archive__lead {
    font-size: 0.875rem;
    line-height: 1.714;
    text-align: left;
  }
}

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

.p-people-archive__cards-item {
  min-width: 0;
}

.p-people-card {
  display: grid;
  gap: 1.25rem;
  color: var(--color-text);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-people-card {
    gap: 0.75rem;
  }
}
@media (any-hover: hover) {
  .p-people-card:hover .p-people-card__image {
    scale: 1.05;
  }
  .p-people-card:hover .p-people-card__icon {
    background-color: var(--color-primary);
  }
}

.p-people-card__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-people-card__media {
    border-radius: 0.75rem;
  }
}

.p-people-card__media--empty {
  aspect-ratio: 346/420;
  background-color: #d0d0d0;
}

.p-people-card__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 346/420;
  object-fit: cover;
  transition: scale var(--duration);
}

.p-people-card__label {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  padding: 1.875rem 0.9375rem;
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1023px) {
  .p-people-card__label {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-people-card__label {
    padding: 1.25rem 0.625rem;
  }
}

.p-people-card__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: 0.04em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-people-card__title {
    font-size: 1.125rem;
    line-height: 1.77;
  }
}

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

.p-people-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-people-card__tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 62.4375rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-people-card__tag {
    padding: 0.3125rem 0.9375rem;
    font-size: 0.875rem;
  }
}

.p-people-card__year {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-people-card__year {
    font-size: 0.875rem;
  }
}

.p-people-card__footer {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  margin-block-start: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-people-card__footer {
    margin-block-start: 1rem;
  }
}

.p-people-card__initial {
  font-family: var(--ff-en);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-people-card__initial {
    font-size: 1.5rem;
  }
}

.p-people-card__icon {
  display: block;
  flex-shrink: 0;
  width: 3rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color-text);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 19'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23fff; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M1.5,9.5h16' /%3E%3Cpath class='cls-1' d='M9.5,1.5l8,8-8,8' /%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.75rem auto;
  transition: background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-people-card__icon {
    width: 2.5rem;
    background-size: 0.625rem auto;
  }
}

.p-people-archive__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-text);
  --_pagination-active-text: var(--color-white);
  --_pagination-border: var(--color-border);
  --_pagination-border-hover: var(--color-text);
  margin-block-start: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-people-archive__pagination {
    margin-block-start: 0.25rem;
  }
}

.p-people-archive__empty {
  padding-block: 3.75rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-people-archive__empty {
    padding-block: 2.5rem;
    font-size: 0.875rem;
  }
}

.p-people-archive__empty p {
  margin: 0;
}

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

.p-people-single__inner {
  display: grid;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-people-single__inner {
    gap: 3rem;
  }
}

.p-people-single__layout {
  display: grid;
  gap: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-people-single__layout {
    gap: 2.5rem;
  }
}

.p-people-single__layout--has-visual {
  grid-template-columns: minmax(0, 37.6666666667%) minmax(0, 1fr);
  gap: 3rem 3.5rem;
}
@media screen and (max-width: 1023px) {
  .p-people-single__layout--has-visual {
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-people-single__layout--has-visual {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
}

.p-people-single__visual {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  align-self: start;
  display: grid;
  gap: 1rem;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-people-single__visual {
    position: static;
    top: auto;
    width: min(100%, 20rem);
    margin-block-start: 1.5rem;
    margin-inline: auto;
  }
}

.p-people-single__visual-frame {
  position: relative;
  aspect-ratio: 452/566;
  overflow: hidden;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-people-single__visual-frame {
    border-radius: 0.75rem;
  }
}

.p-people-single__visual-item {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.p-people-single__visual-item.is-active {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .p-people-single__visual-item {
    transition: none;
  }
}
.p-people-single__visual-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-people-single__visual-thumbs {
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-people-single__visual-thumbs {
    display: grid;
    gap: 0.5rem;
  }
}

.p-people-single__visual-thumb-item {
  min-width: 0;
}

.p-people-single__visual-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 452/566;
  padding: 0;
  overflow: hidden;
  border: 0.125rem solid transparent;
  border-radius: 0.5rem;
  background: none;
  cursor: pointer;
  transition: border-color var(--duration) ease;
}
@media screen and (max-width: 767px) {
  .p-people-single__visual-thumb {
    border-radius: 0.375rem;
  }
}
.p-people-single__visual-thumb.is-active {
  border-color: var(--color-primary);
}
@media (any-hover: hover) {
  .p-people-single__visual-thumb:hover {
    border-color: var(--color-primary);
  }
}

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

.p-people-single__content {
  display: grid;
  gap: 3.5rem;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-people-single__content {
    gap: 2.5rem;
  }
}

.p-people-single__profile {
  display: grid;
  gap: 1.5rem;
}

.p-people-single__profile .c-section-item-heading {
  margin: 0;
}

.p-people-single__profile-card {
  display: grid;
  gap: 1.5rem;
  padding: 2.5rem 2rem;
  background-color: #fafafa;
}
@media screen and (max-width: 767px) {
  .p-people-single__profile-card {
    gap: 1rem;
    padding: 1.5rem 1.25rem;
  }
}

.p-people-single__initial {
  margin: 0;
  font-family: var(--ff-en);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-people-single__initial {
    font-size: 1.25rem;
  }
}

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

.p-people-single__profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.p-people-single__tag {
  display: inline-block;
  padding: 0.1875rem 1.1875rem;
  border-radius: 62.4375rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.p-people-single__tag--occupation {
  background-color: var(--color-text);
  color: var(--color-white);
}

.p-people-single__year {
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-people-single__year {
    font-size: 0.875rem;
  }
}

.p-people-single__questions {
  display: grid;
  gap: 3.6875rem;
}
@media screen and (max-width: 767px) {
  .p-people-single__questions {
    gap: 2.5rem;
  }
}

.p-people-single__qa {
  display: grid;
  gap: 0.875rem;
  min-width: 0;
}

.p-people-single__qa-heading {
  margin: 0;
  padding: 1.375rem 1.75rem;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-people-single__qa-heading {
    padding: 1rem 1.25rem;
    font-size: 1.125rem;
    line-height: 1.66;
  }
}

.p-people-single__qa-heading--section {
  margin-block-end: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-people-single__qa-heading--section {
    margin-block-end: 0.25rem;
  }
}

.p-people-single__qa-body {
  padding-inline: 1.25rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-people-single__qa-body {
    padding-inline: 0;
    font-size: 0.9375rem;
    line-height: 1.714;
  }
}

.p-people-single__schedule-section {
  display: grid;
  gap: 1.5rem;
}

.p-people-single__schedule {
  display: grid;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-people-single__schedule-item {
  position: relative;
  display: grid;
  grid-template-columns: 8.75rem 1.25rem minmax(0, 1fr);
  gap: 1.25rem 2.5rem;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-people-single__schedule-item {
    grid-template-columns: 6.25rem 1rem minmax(0, 1fr);
    gap: 0.75rem 1rem;
  }
}
.p-people-single__schedule-item:not(:last-child) .p-people-single__schedule-marker::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 1.25rem;
  left: 11.75rem;
  width: 0.1875rem;
  height: calc(100% + 1.5rem);
  background-color: #fcdde2;
  translate: -50% 0;
}
@media screen and (max-width: 767px) {
  .p-people-single__schedule-item:not(:last-child) .p-people-single__schedule-marker::after {
    top: 0.75rem;
    left: 7.6875rem;
    height: calc(100% + 1.25rem);
  }
}

.p-people-single__schedule-time {
  margin: 0.25rem 0 0;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.66;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-people-single__schedule-time {
    margin-block-start: 0.125rem;
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.p-people-single__schedule-marker {
  width: 1rem;
  height: auto;
  aspect-ratio: 1/1;
  margin-block-start: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-people-single__schedule-marker {
    width: 0.9375rem;
    margin-block-start: 0.375rem;
  }
}

.p-people-single__schedule-body {
  min-width: 0;
}

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

.p-people-single__pagination {
  margin-block-start: 0.5rem;
}

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

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

.p-people-single__pagination-center {
  justify-self: center;
}

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

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

.p-privacy-policy {
  padding-block: 5rem 13.125rem;
  background: linear-gradient(to bottom, #f7f3eb 0%, #fff 95%, #fff 100%);
}
@media screen and (max-width: 767px) {
  .p-privacy-policy {
    padding-block: 3rem 10.25rem;
  }
}

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

.p-privacy-policy__notice {
  width: fit-content;
  max-width: 100%;
  margin-block-end: 2.5rem;
  margin-inline-start: auto;
  padding: 0.875rem 1.875rem;
  border: 1px solid #cdcdcd;
  background-color: #ffff3e;
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__notice {
    margin-block-end: 2rem;
    margin-inline-start: 0;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.6875rem;
    text-align: left;
  }
}

.p-privacy-policy__notice-link {
  color: inherit;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .p-privacy-policy__notice-link:hover {
    color: var(--color-primary);
  }
}

.p-privacy-policy__intro-text {
  margin-block-start: 2.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__intro-text {
    font-size: 0.875rem;
    line-height: 1.857;
  }
}

.p-privacy-policy__intro-text strong {
  font-weight: 700;
}

.p-privacy-policy__section:not(:first-child) {
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__section:not(:first-child) {
    margin-block-start: 3rem;
  }
}

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

.p-privacy-policy__block .p-privacy-policy__block-title + .p-privacy-policy__body,
.p-privacy-policy__block .p-privacy-policy__block-title + .p-privacy-policy__text,
.p-privacy-policy__block .p-privacy-policy__block-title + .p-privacy-policy__label,
.p-privacy-policy__block .p-privacy-policy__block-title + .p-privacy-policy__list,
.p-privacy-policy__block .p-privacy-policy__block-title + .p-privacy-policy__notes {
  margin-block-start: 0.6875rem;
}
.p-privacy-policy__block .p-privacy-policy__label + .p-privacy-policy__text,
.p-privacy-policy__block .p-privacy-policy__label + .p-privacy-policy__notes {
  margin-block-start: 0.6875rem;
}
.p-privacy-policy__block .p-privacy-policy__body > * + * {
  margin-block-start: 0.6875rem;
}
.p-privacy-policy__block .p-privacy-policy__text + .p-privacy-policy__text {
  margin-block-start: 0.6875rem;
}
.p-privacy-policy__block .p-privacy-policy__text + .p-privacy-policy__list {
  margin-block-start: 0.6875rem;
}

.p-privacy-policy__notes .p-privacy-policy__text + .p-privacy-policy__text {
  margin-block-start: 0;
}

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

.p-privacy-policy__text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__text {
    font-size: 0.875rem;
    line-height: 1.857;
  }
}

.p-privacy-policy__text strong {
  font-weight: 700;
}

.p-privacy-policy__text a {
  color: inherit;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .p-privacy-policy__text a:hover {
    color: var(--color-primary);
  }
}

.p-privacy-policy__label {
  color: #c50000;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.875rem;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__label {
    font-size: 0.875rem;
    line-height: 1.857;
  }
}

.p-privacy-policy__table {
  width: 100%;
}

.p-privacy-policy__table-head,
.p-privacy-policy__table-row {
  display: grid;
  grid-template-columns: 22.75rem minmax(0, 1fr);
  gap: 1.5rem;
  padding-block: 0.875rem;
  border-block-start: 1px solid #cdcdcd;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__table-head,
  .p-privacy-policy__table-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
    padding-block: 1rem;
  }
}

.p-privacy-policy__table-head {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__table-head {
    display: none;
  }
}

.p-privacy-policy__table-row:last-child {
  border-block-end: 1px solid #cdcdcd;
}

.p-privacy-policy__table-label {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
  text-align: center;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__table-label {
    font-size: 0.875rem;
    line-height: 1.857;
    text-align: left;
  }
}

.p-privacy-policy__list {
  padding: 0;
  list-style: disc;
  padding-inline-start: 1.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__list {
    font-size: 0.875rem;
    line-height: 1.857;
  }
}

.p-privacy-policy__list-item + .p-privacy-policy__list-item {
  margin-block-start: 0;
}

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

.p-privacy-policy__home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 17.6875rem;
  padding: 1.1875rem 3.4375rem;
  border-radius: 5.625rem;
  background-color: #c2c2c2;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-decoration: none;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__home-link {
    min-width: 0;
    width: 100%;
    max-width: 17.6875rem;
    padding: 1rem 2rem;
    font-size: 0.875rem;
  }
}
@media (any-hover: hover) {
  .p-privacy-policy__home-link:hover {
    opacity: 0.85;
  }
}

.p-questionnaire-data {
  padding-block: 6rem 7.5rem;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-questionnaire-data {
    padding-block: 4rem;
  }
}

.p-questionnaire-data__intro-text {
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-data__intro-text {
    font-size: 1rem;
    line-height: 1.714;
    text-align: left;
  }
}

.p-questionnaire-data__title {
  margin-block-start: 6.5rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-data__title {
    margin-block-start: 2rem;
  }
}

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

.p-questionnaire-data__item {
  min-width: 0;
}

.p-questionnaire-data__item + .p-questionnaire-data__item {
  margin-block-start: 4.875rem;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-data__item + .p-questionnaire-data__item {
    margin-block-start: 4rem;
  }
}

.p-questionnaire-data__question {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-block-end: 1.125rem;
  border-block-end: 0.125rem solid #d0b07c;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-data__question {
    gap: 0.75rem;
    padding-block-end: 1rem;
  }
}

.p-questionnaire-data__badge {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  min-width: 3.5rem;
  min-height: 3.5rem;
  padding: 0.25rem 0.25rem;
  border-radius: 0.5rem;
  background-color: #8a6d43;
  color: var(--color-white);
  font-family: var(--ff-en);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-data__badge {
    min-width: 3rem;
    min-height: 3rem;
    padding: 0.25rem 0.25rem;
    font-size: 1.5rem;
  }
}

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

.p-questionnaire-data__chart {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 33.375rem) minmax(0, 1fr);
  gap: 0.5rem;
  align-items: flex-start;
  margin-block-start: 0.875rem;
}
@media screen and (max-width: 1440px) {
  .p-questionnaire-data__chart {
    grid-template-columns: minmax(0, 1fr) minmax(0, 28.125rem) minmax(0, 1fr);
  }
}
@media screen and (max-width: 1023px) {
  .p-questionnaire-data__chart {
    grid-template-columns: minmax(0, 1fr) minmax(0, 23.125rem) minmax(0, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-questionnaire-data__chart {
    grid-template-columns: minmax(0, 1fr) minmax(0, 10rem) minmax(0, 1fr);
    gap: 0.25rem;
    margin-block-start: 1rem;
  }
}

.p-questionnaire-data__chart-label {
  display: grid;
  margin-block-start: 7.875rem;
}
@media screen and (max-width: 1440px) {
  .p-questionnaire-data__chart-label {
    margin-block-start: 6.25rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-questionnaire-data__chart-label {
    margin-block-start: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-questionnaire-data__chart-label {
    gap: 0.25rem;
    margin-block-start: 2rem;
  }
}

.p-questionnaire-data__chart-label--outside {
  justify-items: end;
  text-align: right;
}
.p-questionnaire-data__chart-label--outside .p-questionnaire-data__chart-percent {
  margin-inline-end: 1.125rem;
}

.p-questionnaire-data__chart-label--inside {
  justify-items: start;
  text-align: left;
}
.p-questionnaire-data__chart-label--inside .p-questionnaire-data__chart-percent {
  margin-inline-start: 1.125rem;
}

.p-questionnaire-data__chart-label-text {
  color: var(--color-text);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1023px) {
  .p-questionnaire-data__chart-label-text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-questionnaire-data__chart-label-text {
    font-size: 0.875rem;
  }
}

.p-questionnaire-data__chart-label-text--large {
  font-size: 3.75rem;
}
@media screen and (max-width: 1023px) {
  .p-questionnaire-data__chart-label-text--large {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-questionnaire-data__chart-label-text--large {
    font-size: 1.25rem;
  }
}

.p-questionnaire-data__chart-percent {
  display: flex;
  align-items: baseline;
  margin: 0;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1;
}

.p-questionnaire-data__chart-percent-num {
  font-family: var(--ff-en);
  font-size: 7.5rem;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1023px) {
  .p-questionnaire-data__chart-percent-num {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-questionnaire-data__chart-percent-num {
    font-size: 2.25rem;
  }
}

.p-questionnaire-data__chart-percent-unit {
  font-family: var(--ff-base);
  font-size: 3rem;
}
@media screen and (max-width: 1023px) {
  .p-questionnaire-data__chart-percent-unit {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-questionnaire-data__chart-percent-unit {
    font-size: 1rem;
  }
}

.p-questionnaire-data__chart-figure {
  min-width: 0;
  margin: 0;
}
.p-questionnaire-data__chart-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.p-questionnaire-data__comment {
  margin-block-start: 2.125rem;
  padding: 3.8125rem 2.5rem;
  border-radius: 1rem;
  background-color: #fce0e0;
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-data__comment {
    margin-block-start: 2rem;
    padding: 1.5rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.714;
    text-align: left;
  }
}

.p-questionnaire-data__comment--01 {
  margin-block-start: -0.5rem;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-data__comment--01 {
    margin-block-start: 0.5rem;
  }
}

.p-questionnaire-data__comment--03 {
  margin-block-start: 1.5rem;
}

.p-questionnaire-data__comment--04 {
  margin-block-start: 1.5rem;
}

.p-questionnaire-data__rank {
  width: min(100%, 64.875rem);
  margin-block-start: 1.9375rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-data__rank {
    gap: 1rem;
    margin-block-start: 2rem;
  }
}

.p-questionnaire-data__rank-item {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-data__rank-item {
    gap: 0.75rem;
  }
}
.p-questionnaire-data__rank-item:nth-child(2) {
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-data__rank-item:nth-child(2) {
    margin-block-start: 1.5rem;
  }
}
.p-questionnaire-data__rank-item:nth-child(3) {
  margin-block-start: 2.125rem;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-data__rank-item:nth-child(3) {
    margin-block-start: 1.25rem;
  }
}
.p-questionnaire-data__rank-item:nth-child(4) {
  margin-block-start: 1.625rem;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-data__rank-item:nth-child(4) {
    margin-block-start: 1.125rem;
  }
}
.p-questionnaire-data__rank-item:nth-child(5) {
  margin-block-start: 0.5rem;
}

.p-questionnaire-data__rank-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 5rem;
  min-height: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-data__rank-icon {
    width: 3rem;
    min-height: 2.125rem;
  }
}

.p-questionnaire-data__rank-icon img {
  display: block;
  width: 5rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-data__rank-icon img {
    width: 3rem;
  }
}

.p-questionnaire-data__rank-item--4 .p-questionnaire-data__rank-icon img,
.p-questionnaire-data__rank-item--5 .p-questionnaire-data__rank-icon img {
  width: 3.625rem;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-data__rank-item--4 .p-questionnaire-data__rank-icon img,
  .p-questionnaire-data__rank-item--5 .p-questionnaire-data__rank-icon img {
    width: 2.1875rem;
  }
}

.p-questionnaire-data__rank-text {
  color: var(--color-text);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}

.p-questionnaire-data__rank-item--1 .p-questionnaire-data__rank-text {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-data__rank-item--1 .p-questionnaire-data__rank-text {
    font-size: 1.625rem;
  }
}

.p-questionnaire-data__rank-item--2 .p-questionnaire-data__rank-text {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-data__rank-item--2 .p-questionnaire-data__rank-text {
    font-size: 1.375rem;
  }
}

.p-questionnaire-data__rank-item--3 .p-questionnaire-data__rank-text {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-data__rank-item--3 .p-questionnaire-data__rank-text {
    font-size: 1.125rem;
  }
}

.p-questionnaire-data__rank-item--4 .p-questionnaire-data__rank-text {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-data__rank-item--4 .p-questionnaire-data__rank-text {
    font-size: 1.125rem;
  }
}

.p-questionnaire-data__rank-item--5 .p-questionnaire-data__rank-text {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-data__rank-item--5 .p-questionnaire-data__rank-text {
    font-size: 1rem;
  }
}

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

.p-questionnaire-data__keywords-item {
  position: relative;
  padding-inline-start: 1.75rem;
  color: var(--color-text);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1023px) {
  .p-questionnaire-data__keywords-item {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-questionnaire-data__keywords-item {
    font-size: 1.125rem;
    line-height: 1.6;
  }
}
.p-questionnaire-data__keywords-item::before {
  content: "";
  position: absolute;
  inset-block-start: 0.9em;
  inset-inline-start: 0.875rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-questionnaire-data__keywords-item::before {
    inset-block-start: 0.75em;
    width: 0.375rem;
    height: 0.375rem;
  }
}

.p-questionnaire-data__benefits {
  margin-block-start: 1.25rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-data__benefits {
    margin-block-start: 2rem;
  }
}

.p-questionnaire-data__benefits-item {
  position: relative;
  padding-inline-start: 1.75rem;
  color: var(--color-text);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-questionnaire-data__benefits-item {
    font-size: 1.125rem;
    line-height: 1.6;
  }
}
.p-questionnaire-data__benefits-item::before {
  content: "";
  position: absolute;
  inset-block-start: 0.9em;
  inset-inline-start: 0.875rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-questionnaire-data__benefits-item::before {
    inset-block-start: 0.7em;
    width: 0.375rem;
    height: 0.375rem;
  }
}

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

.p-questionnaire-voice__header {
  display: grid;
  gap: 0;
}

.p-questionnaire-voice__label {
  margin: 0;
}

.p-questionnaire-voice__label img {
  display: block;
  width: 9.625rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-voice__label img {
    width: 6rem;
  }
}

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

.p-questionnaire-voice__item.p-questionnaire-data__item + .p-questionnaire-data__item {
  margin-block-start: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-voice__item.p-questionnaire-data__item + .p-questionnaire-data__item {
    margin-block-start: 3.75rem;
  }
}

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

.p-questionnaire-voice__card {
  position: relative;
  width: min(100%, 62.5rem);
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-voice__card {
    width: 100%;
  }
}
.p-questionnaire-voice__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 100vmax;
  background-color: var(--voice-bubble-color);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-voice__card::before {
    border-radius: 1rem;
  }
}
.p-questionnaire-voice__card::after {
  content: "";
  position: absolute;
  z-index: 0;
  background-color: var(--voice-bubble-color);
  pointer-events: none;
}

.p-questionnaire-voice__card--tail-bl::after {
  width: 4.375rem;
  height: 4.625rem;
  mask-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%2070%2074'%3e%3cg%20id='_メインコンテンツ'%20data-name='メインコンテンツ'%3e%3cpath%20d='M3.42,7.23c-12.93,12.65,13.22,40.95,37.66,55.22,9.18,5.36,33.39,15.67,28.2,9.79-14.69-16.63-25.97-19.14-1.08-61.56C76.17-2.9,13.82-2.94,3.42,7.23Z'/%3e%3c/g%3e%3c/svg%3e");
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-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%2070%2074'%3e%3cg%20id='_メインコンテンツ'%20data-name='メインコンテンツ'%3e%3cpath%20d='M3.42,7.23c-12.93,12.65,13.22,40.95,37.66,55.22,9.18,5.36,33.39,15.67,28.2,9.79-14.69-16.63-25.97-19.14-1.08-61.56C76.17-2.9,13.82-2.94,3.42,7.23Z'/%3e%3c/g%3e%3c/svg%3e");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  bottom: -2.5625rem;
  left: 4.75rem;
  transform: none;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-voice__card--tail-bl::after {
    zoom: 0.6;
    left: 2.375rem;
  }
}

.p-questionnaire-voice__card--tail-br::after {
  width: 4.375rem;
  height: 4.625rem;
  mask-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%2070%2074'%3e%3cg%20id='_メインコンテンツ'%20data-name='メインコンテンツ'%3e%3cpath%20d='M66.58,7.23c12.93,12.65-13.22,40.95-37.66,55.22-9.18,5.36-33.39,15.67-28.2,9.79,14.69-16.63,25.97-19.14,1.08-61.56C-6.17-2.9,56.18-2.94,66.58,7.23Z'/%3e%3c/g%3e%3c/svg%3e");
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-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%2070%2074'%3e%3cg%20id='_メインコンテンツ'%20data-name='メインコンテンツ'%3e%3cpath%20d='M66.58,7.23c12.93,12.65-13.22,40.95-37.66,55.22-9.18,5.36-33.39,15.67-28.2,9.79,14.69-16.63,25.97-19.14,1.08-61.56C-6.17-2.9,56.18-2.94,66.58,7.23Z'/%3e%3c/g%3e%3c/svg%3e");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  bottom: -2.5625rem;
  right: 13.75rem;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-voice__card--tail-br::after {
    zoom: 0.6;
    right: 6.875rem;
  }
}

.p-questionnaire-voice__card--tail-bc::after {
  width: 4.375rem;
  height: 4.625rem;
  mask-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%2070%2074'%3e%3cg%20id='_メインコンテンツ'%20data-name='メインコンテンツ'%3e%3cpath%20d='M66.58,7.23c12.93,12.65-13.22,40.95-37.66,55.22-9.18,5.36-33.39,15.67-28.2,9.79,14.69-16.63,25.97-19.14,1.08-61.56C-6.17-2.9,56.18-2.94,66.58,7.23Z'/%3e%3c/g%3e%3c/svg%3e");
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-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%2070%2074'%3e%3cg%20id='_メインコンテンツ'%20data-name='メインコンテンツ'%3e%3cpath%20d='M66.58,7.23c12.93,12.65-13.22,40.95-37.66,55.22-9.18,5.36-33.39,15.67-28.2,9.79,14.69-16.63,25.97-19.14,1.08-61.56C-6.17-2.9,56.18-2.94,66.58,7.23Z'/%3e%3c/g%3e%3c/svg%3e");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  bottom: -2.5625rem;
  left: 50%;
  translate: 2.125rem 0;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-voice__card--tail-bc::after {
    zoom: 0.6;
    translate: 1.0625rem 0;
  }
}

.p-questionnaire-voice__card--tail-tl::after {
  width: 4.1875rem;
  height: 5.1875rem;
  mask-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%2067.21%2083.3'%3e%3cg%20id='_メインコンテンツ'%20data-name='メインコンテンツ'%3e%3cpath%20d='M47.31,81.74C31.69,90.87,11.3,58.16,4,30.83,1.25,20.55-2.3-5.52,2,1.05c12.15,18.56,11.6,30.11,59.09,17.3,15.21-4.1-1.23,56.04-13.79,63.39Z'/%3e%3c/g%3e%3c/svg%3e");
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-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%2067.21%2083.3'%3e%3cg%20id='_メインコンテンツ'%20data-name='メインコンテンツ'%3e%3cpath%20d='M47.31,81.74C31.69,90.87,11.3,58.16,4,30.83,1.25,20.55-2.3-5.52,2,1.05c12.15,18.56,11.6,30.11,59.09,17.3,15.21-4.1-1.23,56.04-13.79,63.39Z'/%3e%3c/g%3e%3c/svg%3e");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  top: 0.3125rem;
  left: -0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-voice__card--tail-tl::after {
    mask-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%2070%2074'%3e%3cg%20id='_メインコンテンツ'%20data-name='メインコンテンツ'%3e%3cpath%20d='M66.58,7.23c12.93,12.65-13.22,40.95-37.66,55.22-9.18,5.36-33.39,15.67-28.2,9.79,14.69-16.63,25.97-19.14,1.08-61.56C-6.17-2.9,56.18-2.94,66.58,7.23Z'/%3e%3c/g%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-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%2070%2074'%3e%3cg%20id='_メインコンテンツ'%20data-name='メインコンテンツ'%3e%3cpath%20d='M66.58,7.23c12.93,12.65-13.22,40.95-37.66,55.22-9.18,5.36-33.39,15.67-28.2,9.79,14.69-16.63,25.97-19.14,1.08-61.56C-6.17-2.9,56.18-2.94,66.58,7.23Z'/%3e%3c/g%3e%3c/svg%3e");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    zoom: 0.6;
    bottom: -2.5625rem;
    left: 50%;
    translate: 1.0625rem 0;
  }
}

.p-questionnaire-voice__card + .p-questionnaire-voice__card--tail-tl {
  margin-block-start: 4rem;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-voice__card + .p-questionnaire-voice__card--tail-tl {
    margin-block-start: 3rem;
  }
}

.p-questionnaire-voice__card + .p-questionnaire-voice__card {
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-voice__card + .p-questionnaire-voice__card {
    margin-block-start: 2.5rem;
  }
}

.p-questionnaire-voice__card--left {
  margin-inline-end: auto;
}

.p-questionnaire-voice__card--center {
  width: min(100%, 62.5rem);
  margin-inline: auto;
  translate: -1.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-voice__card--center {
    width: 100%;
    translate: 0 0;
  }
}

.p-questionnaire-voice__card--right {
  width: min(100%, 62.5rem);
  margin-inline-start: auto;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-voice__card--right {
    width: 100%;
  }
}

.p-questionnaire-voice__card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 2.25rem;
  align-items: flex-start;
  padding: 2rem 2.75rem 1.75rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-voice__card-inner {
    gap: 1rem;
    padding: 1rem 1.375rem 0.875rem 1rem;
  }
}

.p-questionnaire-voice__avatar {
  flex-shrink: 0;
  width: 6rem;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-voice__avatar {
    width: 4rem;
  }
}

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

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

.p-questionnaire-voice__tag {
  display: inline-block;
  min-width: 10rem;
  padding: 0.5rem 0.8125rem;
  border-radius: 100vmax;
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-questionnaire-voice__tag {
    min-width: 7.5rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
  }
}

.p-questionnaire-voice__text {
  display: flex;
  align-items: center;
  min-height: 4rem;
  margin-block-start: 0.25rem;
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-questionnaire-voice__text {
    margin-block-start: 0.5rem;
    font-size: 1rem;
    line-height: 1.714;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.p-single__content h1,
.p-single h1:not(.p-single__title) {
  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: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single__content h1,
  .p-single h1:not(.p-single__title) {
    margin-block-start: 4rem;
    font-size: 2.25rem;
  }
}

.p-single__content h2,
.p-single h2 {
  margin-block-start: 2.5rem;
  padding-inline-start: 1rem;
  border-inline-start: 0.25rem solid var(--color-accent);
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single__content h2,
  .p-single h2 {
    margin-block-start: 3.5rem;
    padding-inline-start: 1.25rem;
    font-size: 1.75rem;
  }
}

.p-single__content h3,
.p-single h3 {
  margin-block-start: 2rem;
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single__content h3,
  .p-single h3 {
    margin-block-start: 2.5rem;
    font-size: 1.5rem;
  }
}

.p-single__content h4,
.p-single h4 {
  margin-block-start: 1.5rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single__content h4,
  .p-single h4 {
    margin-block-start: 2rem;
    font-size: 1.25rem;
  }
}

.p-single__content p,
.p-single p {
  margin-block-start: 1rem;
  color: var(--color-text);
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-single__content p,
  .p-single p {
    margin-block-start: 1.25rem;
  }
}

.p-single__content ul,
.p-single__content ol,
.p-single ul,
.p-single ol {
  margin-block-start: 1rem;
  padding-inline-start: 1.5rem;
  color: var(--color-text);
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-single__content ul,
  .p-single__content ol,
  .p-single ul,
  .p-single ol {
    margin-block-start: 1.25rem;
    padding-inline-start: 2rem;
  }
}

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

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

.p-single__content li,
.p-single li {
  margin-block-start: 0.5rem;
  line-height: 1.8;
}

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

.p-single__content a:hover {
  opacity: 0.8;
}

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

.p-single__content blockquote,
.p-single blockquote {
  margin-block-start: 1.5rem;
  padding-block: 1rem;
  padding-inline: 1.5rem 1.5rem;
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .p-single__content blockquote,
  .p-single blockquote {
    margin-block-start: 2rem;
    padding-block: 1.25rem;
    padding-inline: 2rem 2rem;
  }
}

.p-single__content blockquote p,
.p-single blockquote p {
  margin-block-start: 0;
}

.p-single__content code,
.p-single code {
  padding-block: 0.125rem;
  padding-inline: 0.375rem;
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-primary);
  font-family: monospace;
  font-size: 0.875rem;
}

.p-single__content pre,
.p-single pre {
  overflow-x: auto;
  margin-block-start: 1.5rem;
  padding-block: 1rem;
  padding-inline: 1rem;
  border-radius: 8px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-family: monospace;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single__content pre,
  .p-single pre {
    padding-block: 1.5rem;
    padding-inline: 1.5rem;
  }
}

.p-single__content pre code,
.p-single pre code {
  padding-block: 0;
  padding-inline: 0;
  background-color: transparent;
}

.p-single__content table,
.p-single table {
  width: 100%;
  margin-block-start: 1.5rem;
  border: 0.0625rem solid var(--color-border-gray);
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .p-single__content table,
  .p-single table {
    margin-block-start: 2rem;
  }
}

.p-single__content th,
.p-single__content td,
.p-single th,
.p-single td {
  padding-block: 0.75rem;
  padding-inline: 1rem;
  line-height: 1.6;
  text-align: start;
}
@media screen and (max-width: 767px) {
  .p-single__content th,
  .p-single__content td,
  .p-single th,
  .p-single td {
    padding-block: 1rem;
    padding-inline: 1.25rem;
  }
}

.p-single__content th,
.p-single th {
  background-color: var(--color-gray);
  color: var(--color-text);
  font-weight: 700;
}

.p-single__content td,
.p-single td {
  color: var(--color-text);
}

.p-single__content hr,
.p-single hr {
  margin-block-start: 2rem;
  border: none;
  border-top: 0.0625rem solid var(--color-border-gray);
}
@media screen and (max-width: 767px) {
  .p-single__content hr,
  .p-single hr {
    margin-block-start: 3rem;
  }
}

.p-single__content strong,
.p-single strong {
  color: var(--color-text);
  font-weight: 700;
}

.p-single__content em,
.p-single em {
  font-style: italic;
}

.p-single__content .wp-block-buttons,
.p-single .wp-block-buttons {
  margin-block-start: 1.5rem;
  text-align: center;
}
.p-single__content .wp-block-buttons a,
.p-single .wp-block-buttons a {
  color: var(--color-white);
  text-decoration: none;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-single__content .wp-block-buttons a:hover,
  .p-single .wp-block-buttons a:hover {
    opacity: 0.8;
  }
}

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

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

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

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

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

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

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

.p-single__content-pagination-center {
  justify-self: center;
}
@media screen and (max-width: 767px) {
  .p-single__content-pagination-center .c-button02 {
    gap: 0.625rem;
  }
  .p-single__content-pagination-center .c-button02__text {
    font-size: max(0.75rem, 8px);
    font-weight: 500;
    line-height: 18.07;
    letter-spacing: 0.4em;
  }
  .p-single__content-pagination-center .c-button02__arrow {
    width: 0.625rem;
    height: 0.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-single__content-pagination-center {
    justify-self: center;
  }
}

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

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

.p-single__content-pagination-button {
  padding: 0.625rem 1.4375rem;
  background-color: var(--color-base);
  border: 1px solid var(--color-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3.9375rem;
  transition: background-color var(--duration) ease, color var(--duration) ease;
}
@media screen and (max-width: 767px) {
  .p-single__content-pagination-button {
    gap: 1.25rem;
    padding: 0.625rem 1rem;
  }
}
@media (hover: hover) {
  .p-single__content-pagination-button:hover .p-single__content-pagination-button-arrow {
    transform: translateX(0.625rem);
  }
}

.p-single__content-pagination-button-text {
  font-size: max(1rem, 8px);
  font-weight: 500;
  line-height: 1.63;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-single__content-pagination-button-text {
    font-size: max(0.875rem, 8px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
}

.p-single__content-pagination-button-arrow {
  width: 0.5rem;
  height: 0.875rem;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 14' width='8' height='14'%3E%3Cpath d='M1 13l6-6-6-6' fill='none' stroke='%23008ad2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: var(--color-primary);
  transition: transform var(--duration) ease, filter var(--duration) ease;
}

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

.p-single--post .p-single__related-title {
  margin-block-end: 1.5rem;
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 700;
}
@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: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single--post .p-single__related-item-title {
    font-size: 1rem;
  }
}

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

.p-thanks__title {
  text-align: center;
  font-size: max(1.25rem, 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.125rem, 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-top-about {
  position: relative;
  overflow: hidden;
  z-index: 4;
  margin-block-start: -18.375rem;
  padding-block: 25rem 15.5rem;
}
@media (width > 1920px) {
  .p-top-about {
    margin-block-start: -25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about {
    margin-block-start: max(-32.8205128205vw, -13.25rem);
    padding-block: max(10.5rem, 42.0512820513vw) 6.5rem;
  }
}

.p-top-about__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("../images/bg_top_about.webp") no-repeat center top/cover;
}
@media screen and (max-width: 767px) {
  .p-top-about__bg {
    background-image: url("../images/bg_top_about_sp.webp");
  }
}

.p-top-about__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4.75rem;
  width: min(100%, 81.25rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__inner {
    gap: 2.25rem;
    width: min(100%, 36.25rem);
    padding-inline: 1.25rem;
  }
}

.p-top-about__header {
  display: grid;
  gap: 3rem;
  justify-items: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-about__header {
    gap: 1.25rem;
  }
}

.p-top-about__title-wrap {
  position: relative;
  width: 100%;
  align-items: center;
  gap: 1rem;
}

.p-top-about__title-deco {
  pointer-events: none;
  position: absolute;
  top: 0;
}
.p-top-about__title-deco img {
  display: block;
  width: 100%;
  height: auto;
}

.p-top-about__title-deco--left {
  top: -1.625rem;
  left: -5.5rem;
  width: 27.125rem;
}
@media screen and (max-width: 1440px) {
  .p-top-about__title-deco--left {
    top: -1rem;
    left: -3.375rem;
    width: 18.75rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-top-about__title-deco--left {
    width: 15rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__title-deco--left {
    top: -3.5rem;
    left: -1.25rem;
    width: 11.25rem;
  }
}

.p-top-about__title-deco--right {
  top: -4.5rem;
  right: -9rem;
  width: 31.25rem;
}
@media screen and (max-width: 1440px) {
  .p-top-about__title-deco--right {
    top: -3rem;
    right: -6.25rem;
    width: 22.3125rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-top-about__title-deco--right {
    top: -2.25rem;
    right: -4.5rem;
    width: 15rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__title-deco--right {
    top: -4.375rem;
    right: -3rem;
    width: 12.375rem;
  }
}

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

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

.p-top-about__card {
  display: grid;
  overflow: hidden;
  color: var(--color-text);
  text-decoration: none;
}
@media (any-hover: hover) {
  .p-top-about__card:hover {
    opacity: 1;
  }
  .p-top-about__card:hover .p-top-about__card-image {
    scale: 1.05;
  }
  .p-top-about__card:hover .p-top-about__card-icon {
    background-color: var(--color-primary);
  }
}

.p-top-about__card-media {
  margin: 0;
  overflow: hidden;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__card-media {
    border-radius: 0.75rem;
  }
}

.p-top-about__card-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 560/420;
  object-fit: cover;
  transition: scale var(--duration);
}

.p-top-about__card-body {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__card-body {
    margin-block-start: 1.125rem;
  }
}

.p-top-about__card-text {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.p-top-about__card-title {
  margin: 0;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-top-about__card-title {
    font-size: 1.25rem;
  }
}

.p-top-about__card-title-num {
  font-family: var(--ff-en);
  font-weight: 700;
}

.p-top-about__card-sub {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-top-about__card-sub {
    font-size: 0.9375rem;
  }
}

.p-top-about__card-icon {
  display: block;
  flex-shrink: 0;
  width: 5rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color-text);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.875rem auto;
  transition: scale var(--duration), background-color var(--duration);
}
@media screen and (max-width: 1023px) {
  .p-top-about__card-icon {
    width: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__card-icon {
    width: 3.5rem;
  }
}

.p-top-about__card-icon--arrow {
  background-size: 1.1875rem auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 19'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23fff; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M1.5,9.5h16' /%3E%3Cpath class='cls-1' d='M9.5,1.5l8,8-8,8' /%3E%3C/svg%3E%0A");
}
@media screen and (max-width: 1023px) {
  .p-top-about__card-icon--arrow {
    background-size: 0.875rem auto;
  }
}

.p-top-about__card-icon--external {
  background-size: 1.4375rem auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 23 23'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23fff; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3px; %7D %3C/style%3E%3C/defs%3E%3Cpolyline class='cls-1' points='13.32 1.5 21.5 1.5 21.5 9.68' /%3E%3Cpolyline class='cls-1' points='17.86 14.23 17.86 21.5 1.5 21.5 1.5 5.14 8.77 5.14' /%3E%3Cline class='cls-1' x1='10.59' y1='12.41' x2='20.59' y2='2.41' /%3E%3C/svg%3E%0A");
}
@media screen and (max-width: 1023px) {
  .p-top-about__card-icon--external {
    background-size: 1.125rem auto;
  }
}

.p-top-environment {
  position: relative;
  z-index: 6;
  margin-block-start: -4rem;
  padding-inline: 3.125rem;
  padding-block: 7.75rem 7.0625rem;
  border-radius: 5rem;
  background: url("../images/bg_top_environment.webp") no-repeat center top/cover;
}
@media screen and (max-width: 767px) {
  .p-top-environment {
    margin-block-start: -2.125rem;
    padding-inline: 1.25rem;
    padding-block: 3.25rem 3.4375rem;
    border-radius: 2.5rem;
    background: url("../images/bg_top_environment_sp.webp") no-repeat center top/cover;
  }
}

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

.p-top-environment__header {
  display: grid;
  gap: 3rem;
  justify-items: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-environment__header {
    gap: 1.5rem;
  }
}

.p-top-environment__header-deco {
  position: absolute;
  top: -2.5rem;
  left: 50%;
  translate: calc(-50% - 22.0625rem) 0;
  width: 15.875rem;
}
@media screen and (max-width: 1023px) {
  .p-top-environment__header-deco {
    top: -1.5rem;
    translate: calc(-50% - 13.75rem) 0;
    width: 11.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-environment__header-deco {
    top: -2.25rem;
    translate: calc(-50% - 6.1875rem) 0;
    width: 7.125rem;
  }
}
.p-top-environment__header-deco img {
  display: block;
  width: 100%;
  height: auto;
}

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

.p-top-environment__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5rem;
  margin-block-start: 4.75rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .p-top-environment__cards {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-environment__cards {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.1875rem;
    margin-block-start: 2rem;
  }
}

.p-top-environment__card {
  display: grid;
  overflow: hidden;
  color: var(--color-text);
  text-decoration: none;
}
@media (any-hover: hover) {
  .p-top-environment__card:hover {
    opacity: 1;
  }
  .p-top-environment__card:hover .p-top-environment__card-image {
    scale: 1.05;
  }
  .p-top-environment__card:hover .p-top-environment__card-icon {
    background-color: var(--color-primary);
  }
}

.p-top-environment__card-media {
  margin: 0;
  overflow: hidden;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-environment__card-media {
    border-radius: 0.75rem;
  }
}

.p-top-environment__card-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 560/360;
  object-fit: cover;
  transition: scale var(--duration);
}

.p-top-environment__card-body {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-top-environment__card-body {
    margin-block-start: 1.125rem;
  }
}

.p-top-environment__card-title {
  margin: 0;
  min-width: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-top-environment__card-title {
    font-size: 1.25rem;
  }
}

.p-top-environment__card-icon {
  display: block;
  flex-shrink: 0;
  width: 5rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color-text);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 19'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23fff; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M1.5,9.5h16' /%3E%3Cpath class='cls-1' d='M9.5,1.5l8,8-8,8' /%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.1875rem auto;
  transition: scale var(--duration), background-color var(--duration);
}
@media screen and (max-width: 1023px) {
  .p-top-environment__card-icon {
    width: 4rem;
    background-size: 0.875rem auto;
  }
}
@media screen and (max-width: 767px) {
  .p-top-environment__card-icon {
    width: 3.5rem;
  }
}

.p-top-environment__card-text {
  margin: 0;
  margin-block-start: 1.125rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-top-environment__card-text {
    margin-block-start: 1rem;
    font-size: 0.875rem;
    line-height: 1.714;
  }
}

.p-top-faq {
  padding-block: 6.875rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-faq {
    padding-block: 3.25rem 3.5rem;
  }
}

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

.p-top-faq__header {
  display: grid;
  gap: 3.5rem;
  justify-items: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-faq__header {
    gap: 1.75rem;
  }
}

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

.p-top-faq__list {
  margin-block-start: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-faq__list {
    margin-block-start: 0.375rem;
  }
}

.p-top-faq__more-wrap {
  margin-block-start: 5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-faq__more-wrap {
    margin-block-start: 2.375rem;
  }
}

.p-top-intro {
  position: relative;
  overflow: hidden;
  margin-block-start: -9.375rem;
  padding-block-start: 8.4375rem;
  padding-block-end: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-intro {
    margin-block-start: -2.5rem;
    padding-block-start: 5.875rem;
    padding-block-end: 3.75rem;
  }
}

.p-top-intro__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("../images/bg_top_intro.webp") no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-top-intro__bg {
    background: url("../images/bg_top_intro_sp.webp") no-repeat center center/cover;
  }
}

.p-top-intro__inner {
  position: relative;
  z-index: 8;
  display: grid;
  gap: 4rem;
  width: min(100%, 83.6875rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-intro__inner {
    gap: 0;
    width: min(100%, 36rem);
    padding-inline: 1.125rem;
  }
}

.p-top-intro__deco {
  position: absolute;
  top: 20.9375rem;
  right: -16.25rem;
  width: 30rem;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 1440px) {
  .p-top-intro__deco {
    top: 19.6875rem;
    width: 25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-intro__deco {
    position: static;
    width: 10.5rem;
    margin-inline-start: auto;
    margin-block-start: -0.5rem;
    translate: 0.875rem 0;
  }
}

.p-top-intro__blend {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
}

.p-top-intro__title {
  color: var(--color-text);
  font-size: clamp(2rem, -0.25rem + 4.69vw, 3.5rem);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-top-intro__title {
    font-size: 1.5rem;
    line-height: 1.58;
  }
}

.p-top-intro__body {
  display: grid;
  gap: 2.125rem;
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
  text-align: center;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-top-intro__body {
    margin-block-start: 1.25rem;
    gap: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.714;
  }
}

.p-top-intro__slider-wrap {
  position: relative;
  z-index: 4;
  margin-block-start: 4.75rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-intro__slider-wrap {
    margin-block-start: 2rem;
  }
}

.p-top-intro__swiper-container {
  width: 100%;
  overflow: visible;
}

.p-top-intro__swiper {
  overflow: visible;
}

.p-top-intro__swiper .swiper-wrapper {
  transition-timing-function: linear;
}
@media (prefers-reduced-motion: reduce) {
  .p-top-intro__swiper .swiper-wrapper {
    transition-timing-function: ease;
  }
}

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

.p-top-intro__slide {
  width: 25rem;
}
@media screen and (max-width: 1023px) {
  .p-top-intro__slide {
    width: 18.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-intro__slide {
    width: 12.5rem;
  }
}

.p-top-intro__slide--lower {
  margin-block-start: 2.5rem;
}

.p-top-intro__media {
  margin: 0;
}

.p-top-intro__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  aspect-ratio: 400/300;
  object-fit: cover;
}

.p-top-people {
  position: relative;
  z-index: 5;
  margin-block-start: -30rem;
  padding-block: 7.5rem 10.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-people {
    margin-block-start: -3.75rem;
    padding-block: 3.25rem 5.875rem;
  }
}

.p-top-people__header-chars-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.p-top-people__header-chars-item--01 {
  top: 0.75rem;
  left: 50%;
  z-index: 1;
  width: 4.75rem;
  height: 6.125rem;
  translate: calc(-50% - 25.6875rem) 0;
}
@media screen and (max-width: 767px) {
  .p-top-people__header-chars-item--01 {
    top: -0.25rem;
    width: 2.125rem;
    height: 2.75rem;
    translate: calc(-50% - 10.375rem) 0;
  }
}

.p-top-people__header-chars-item--02 {
  top: -2.4375rem;
  left: 50%;
  z-index: 0;
  width: 4.125rem;
  height: 6.875rem;
  translate: calc(-50% - 17.1875rem) 0;
}
@media screen and (max-width: 767px) {
  .p-top-people__header-chars-item--02 {
    top: -1.5625rem;
    width: 1.8125rem;
    height: 3rem;
    translate: calc(-50% - 6.1875rem) 0;
  }
}

.p-top-people__header-chars-item--03 {
  top: -3.75rem;
  left: 50%;
  z-index: 0;
  width: 3.375rem;
  height: 6.5rem;
  translate: calc(-50% - 10.75rem) 0;
}
@media screen and (max-width: 767px) {
  .p-top-people__header-chars-item--03 {
    top: -2rem;
    width: 1.625rem;
    height: 3.125rem;
    translate: calc(-50% - 3.75rem) 0;
  }
}

.p-top-people__header-chars-item--04 {
  top: -1.25rem;
  left: 50%;
  z-index: 1;
  width: 2.3125rem;
  height: 5.75rem;
  translate: calc(-50% + 13.8125rem) 0;
}
@media screen and (max-width: 767px) {
  .p-top-people__header-chars-item--04 {
    top: -1.0625rem;
    width: 1.125rem;
    height: 2.75rem;
    translate: calc(-50% + 3.125rem) 0;
  }
}

.p-top-people__header-chars-item--05 {
  top: 0.5rem;
  left: 50%;
  z-index: 0;
  width: 4.375rem;
  height: 5.625rem;
  translate: calc(-50% + 27.1875rem) 0;
}
@media screen and (max-width: 767px) {
  .p-top-people__header-chars-item--05 {
    top: -0.875rem;
    width: 2rem;
    height: 2.5rem;
    translate: calc(-50% + 7.125rem) 0;
  }
}

.p-top-people__header-chars-item--06 {
  top: 2.3125rem;
  left: 50%;
  z-index: 1;
  width: 3.75rem;
  height: 6.125rem;
  translate: calc(-50% + 34.375rem) 0;
}
@media screen and (max-width: 767px) {
  .p-top-people__header-chars-item--06 {
    top: -0.1875rem;
    width: 1.6875rem;
    height: 2.75rem;
    translate: calc(-50% + 10.3125rem) 0;
  }
}

.p-top-people__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("../images/bg_top_people.webp") no-repeat center top/cover;
}
@media screen and (max-width: 767px) {
  .p-top-people__bg {
    background-image: url("../images/bg_top_people_sp.webp");
  }
}

.p-top-people__inner {
  position: relative;
  z-index: 1;
  gap: 3.5rem;
  width: min(100%, 81.25rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-people__inner {
    gap: 2rem;
    width: min(100%, 36.25rem);
    padding-inline: 1.25rem;
  }
}

.p-top-people__header {
  position: relative;
  display: grid;
  gap: 3rem;
  justify-items: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-people__header {
    gap: 1.25rem;
  }
}

.p-top-people__lead {
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-top-people__lead {
    font-size: 0.875rem;
    line-height: 1.714;
  }
}

.p-top-people__slider {
  position: relative;
  margin-block-start: 4.625rem;
  margin-inline: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .p-top-people__slider {
    margin-block-start: 3.5rem;
  }
}

.p-top-people__swiper {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-people__swiper {
    overflow: visible;
  }
}

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

.p-top-people__cards-item.swiper-slide {
  width: 21.625rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-top-people__cards-item.swiper-slide {
    width: 17.5rem;
  }
}

.p-top-people__nav {
  position: absolute;
  top: 13.125rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(51, 51, 51, 0.2);
  border-radius: 50%;
  background-color: var(--color-text);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 19'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23fff; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M1.5,9.5h16' /%3E%3Cpath class='cls-1' d='M9.5,1.5l8,8-8,8' /%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1rem auto;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
  cursor: pointer;
  translate: -50% -50%;
  transition: background-color var(--duration), opacity var(--duration), box-shadow var(--duration), scale var(--duration);
}
@media screen and (max-width: 1023px) {
  .p-top-people__nav {
    width: 3.75rem;
    height: 3.75rem;
    background-size: 0.875rem auto;
  }
}
@media screen and (max-width: 767px) {
  .p-top-people__nav {
    top: 10.625rem;
    width: 3.5rem;
    height: 3.5rem;
  }
}
@media (any-hover: hover) {
  .p-top-people__nav:hover:not(.swiper-button-disabled) {
    background-color: var(--color-primary);
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
    scale: 1.1;
  }
}
.p-top-people__nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.p-top-people__nav--prev {
  left: calc(50% - 35rem);
  rotate: 180deg;
}
@media screen and (max-width: 1440px) {
  .p-top-people__nav--prev {
    left: calc(50% - 10.625rem);
  }
}
@media screen and (max-width: 767px) {
  .p-top-people__nav--prev {
    left: calc(50% - 9.75rem);
  }
}

.p-top-people__nav--next {
  left: calc(50% + 35rem);
}
@media screen and (max-width: 1440px) {
  .p-top-people__nav--next {
    left: calc(50% + 10.625rem);
  }
}
@media screen and (max-width: 767px) {
  .p-top-people__nav--next {
    left: calc(50% + 9.75rem);
  }
}

.p-top-people__pagination {
  position: static;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-top-people__pagination {
    gap: 1.25rem;
    margin-block-start: 2.5rem;
  }
}

.p-top-people__pagination .swiper-pagination-bullet {
  width: 0.75rem;
  height: 0.75rem;
  margin: 0 !important;
  border-radius: 50%;
  background-color: #999999;
  opacity: 1;
  transition: background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-top-people__pagination .swiper-pagination-bullet {
    width: 0.5rem;
    height: 0.5rem;
  }
}

.p-top-people__pagination .swiper-pagination-bullet-active {
  background-color: var(--color-text);
}

.p-top-people__card {
  display: grid;
  gap: 1.25rem;
  color: var(--color-text);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-top-people__card {
    gap: 0.75rem;
  }
}
@media (any-hover: hover) {
  .p-top-people__card:hover .p-top-people__card-image {
    scale: 1.05;
  }
  .p-top-people__card:hover .p-top-people__card-icon {
    background-color: var(--color-primary);
  }
}

.p-top-people__card-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-people__card-media {
    border-radius: 0.75rem;
  }
}

.p-top-people__card-media--empty {
  aspect-ratio: 220/300;
  background-color: #d9d9d9;
}

.p-top-people__card-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 346/420;
  object-fit: cover;
  transition: scale var(--duration);
}

.p-top-people__card-label {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1.875rem 0.9375rem;
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-top-people__card-label {
    padding: 1.25rem 0.625rem;
    font-size: 0.875rem;
  }
}

.p-top-people__card-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: 0.04em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-people__card-title {
    font-size: 1.125rem;
    line-height: 1.77;
  }
}

.p-top-people__card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  margin-block-start: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-people__card-meta {
    gap: 0.75rem;
    margin-block-start: 0.5625rem;
  }
}

.p-top-people__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-top-people__card-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 62.4375rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-top-people__card-tag {
    padding: 0.3125rem 0.9375rem;
    font-size: 0.875rem;
  }
}

.p-top-people__card-tag--new {
  background-color: var(--color-orange);
  color: var(--color-white);
}

.p-top-people__card-tag--mid {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.p-top-people__card-year {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-top-people__card-year {
    font-size: 0.875rem;
  }
}

.p-top-people__card-footer {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  margin-block-start: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-people__card-footer {
    margin-block-start: 1rem;
  }
}

.p-top-people__card-initial {
  font-family: var(--ff-en);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-top-people__card-initial {
    font-size: 1.5rem;
  }
}

.p-top-people__card-icon {
  display: block;
  flex-shrink: 0;
  width: 3rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color-text);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 19'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23fff; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M1.5,9.5h16' /%3E%3Cpath class='cls-1' d='M9.5,1.5l8,8-8,8' /%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.75rem auto;
  transition: background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-top-people__card-icon {
    width: 2.5rem;
    background-size: 0.625rem auto;
  }
}

.p-top-people__more-wrap {
  margin-block-start: 4.8125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-people__more-wrap {
    margin-block-start: 2.5rem;
  }
}

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

.p-top-survey__inner {
  width: 100%;
}

.p-top-survey__link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 1.25rem;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-top-survey__link {
    border-radius: 0.75rem;
  }
}
@media (any-hover: hover) {
  .p-top-survey__link:hover {
    opacity: 1;
  }
  .p-top-survey__link:hover .p-top-survey__image {
    scale: 1.1;
  }
  .p-top-survey__link:hover .p-top-survey__button-icon {
    background-color: var(--color-primary);
  }
}

.p-top-survey__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1693/677;
  object-fit: cover;
  transition: scale ease 0.6s;
}
@media screen and (max-width: 767px) {
  .p-top-survey__image {
    aspect-ratio: 350/480;
  }
}

.p-top-survey__button {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
  display: flex;
  gap: 1.125rem;
  align-items: center;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-top-survey__button {
    right: 0.5rem;
    bottom: 0.5rem;
    gap: 0.5rem;
    font-size: 0.875rem;
  }
}

.p-top-survey__button-icon {
  display: block;
  flex-shrink: 0;
  width: 5rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color-text);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 19'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23fff; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M1.5,9.5h16' /%3E%3Cpath class='cls-1' d='M9.5,1.5l8,8-8,8' /%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1rem auto;
  transition: background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-top-survey__button-icon {
    width: 2.5rem;
    background-size: 0.625rem auto;
  }
}

.p-top-work {
  position: relative;
  z-index: 5;
  margin-block-start: -10.5rem;
  padding-block: 11.5rem 36.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-work {
    margin-block-start: -3.75rem;
    padding-block: 4.375rem 7.5rem;
  }
}

.p-top-work__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("../images/bg_top_work.webp") no-repeat center top/cover;
}
@media screen and (max-width: 767px) {
  .p-top-work__bg {
    background-image: url("../images/bg_top_work_sp.webp");
  }
}

.p-top-work__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4.75rem;
  width: min(100%, 81.25rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-work__inner {
    gap: 2.25rem;
    width: min(100%, 36.25rem);
    padding-inline: 1.25rem;
  }
}

.p-top-work__header {
  position: relative;
  display: grid;
  gap: 3rem;
  justify-items: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-work__header {
    gap: 1.25rem;
  }
}

.p-top-work__header-deco {
  position: absolute;
  top: -8rem;
  left: 50%;
  translate: calc(-50% - 1.75rem) 0;
  width: min(100%, 20.875rem);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-top-work__header-deco {
    top: -3.3125rem;
    translate: -50% 0;
    width: min(100%, 9.625rem);
  }
}
.p-top-work__header-deco img {
  display: block;
  width: 100%;
  height: auto;
}

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

@media screen and (max-width: 767px) {
  .p-top-work__slider {
    margin-inline: calc(50% - 50vw);
    overflow: hidden;
  }
}

@media screen and (max-width: 767px) {
  .p-top-work__swiper {
    overflow: visible;
  }
}

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

@media screen and (min-width: 768px) {
  .p-top-work__swiper .swiper-wrapper {
    gap: 2rem 2.5rem;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    transform: none !important;
  }
  .p-top-work__cards-item.swiper-slide {
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
  }
}
@media screen and (max-width: 1023px) {
  .p-top-work__swiper .swiper-wrapper {
    gap: 2rem 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-work__swiper .swiper-wrapper {
    gap: 0;
  }
}
.p-top-work__pagination {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-top-work__pagination {
    position: static;
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-block-start: 2.1875rem;
  }
}

.p-top-work__pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  margin: 0 !important;
  border-radius: 50%;
  background-color: #999999;
  opacity: 1;
  transition: background-color var(--duration);
}

.p-top-work__pagination .swiper-pagination-bullet-active {
  background-color: var(--color-text);
}

.p-top-work__card {
  display: grid;
  gap: 1.25rem;
  color: var(--color-text);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-top-work__card {
    gap: 0.75rem;
  }
}
@media (any-hover: hover) {
  .p-top-work__card:hover {
    opacity: 1;
  }
  .p-top-work__card:hover .p-top-work__card-image {
    scale: 1.05;
  }
  .p-top-work__card:hover .p-top-work__card-icon {
    background-color: var(--color-primary);
  }
}

.p-top-work__card-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-work__card-media {
    border-radius: 0.75rem;
  }
}

.p-top-work__card-media--empty {
  aspect-ratio: 260/195;
  background-color: #d9d9d9;
}

.p-top-work__card-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 260/195;
  object-fit: cover;
  transition: scale var(--duration);
}

.p-top-work__card-icon {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
  display: block;
  width: 3rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color-text);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 19'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23fff; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M1.5,9.5h16' /%3E%3Cpath class='cls-1' d='M9.5,1.5l8,8-8,8' /%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.875rem auto;
  transition: background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-top-work__card-icon {
    right: 1rem;
    bottom: 1rem;
    width: 2.5rem;
    background-size: 0.75rem auto;
  }
}

.p-top-work__card-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.33;
}
@media screen and (max-width: 767px) {
  .p-top-work__card-title {
    font-size: 1.125rem;
    line-height: 1.77;
  }
}

.p-top-work__card-text {
  margin-block-start: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-work__card-text {
    margin-block-start: 0.125rem;
    font-size: 0.875rem;
    line-height: 1.714;
  }
}

.p-under-mv {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.p-under-mv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("../images/bg_under_mv.webp") no-repeat center bottom/cover;
}
@media screen and (max-width: 767px) {
  .p-under-mv__bg {
    background-position: 20% top;
  }
}

.p-under-mv__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 120rem);
  aspect-ratio: 1920/560;
  max-height: 35rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-under-mv__inner {
    aspect-ratio: 390/520;
    width: min(100%, 36.25rem);
    padding-inline: 1.25rem;
    max-height: 45rem;
  }
}

.p-under-mv__stage {
  position: relative;
  width: 100%;
  height: 100%;
}

.p-under-mv__content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: grid;
  gap: 1rem;
  width: min(100%, 33.3333333333vw);
  translate: calc(-50% - 14.5833333333vw) calc(-50% - 0.8333333333vw);
}
@media screen and (max-width: 767px) {
  .p-under-mv__content {
    top: calc(var(--header-height) + 8.2051282051vw);
    left: 1.25rem;
    gap: 0.75rem;
    width: calc(100% - 2.5rem);
    translate: 0;
  }
}

.p-under-mv__label {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-under-mv__label {
    gap: 0.5rem;
  }
}

.p-under-mv__label-line {
  flex-shrink: 0;
  width: 2.5rem;
  height: 0.1875rem;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-under-mv__label-line {
    width: 2rem;
    height: 0.125rem;
  }
}

.p-under-mv__label-text {
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: 1.25vw;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-under-mv__label-text {
    font-size: 3.5897435897vw;
  }
}

.p-under-mv__title {
  display: grid;
  margin: 0;
  color: var(--color-text);
  font-size: 3.3333333333vw;
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-under-mv__title {
    gap: 0.25rem;
    font-size: 1.75rem;
  }
}
.p-under-mv__title--small {
  font-size: 2.5vw;
}
@media screen and (max-width: 767px) {
  .p-under-mv__title--small {
    font-size: min(2.25rem, 7.1794871795vw);
  }
}

.p-under-mv__title-line-number {
  font-family: var(--ff-en);
}

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

.p-under-mv__photo-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-under-mv__photo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.p-under-mv__photo {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: calc(-50% + 18.75vw) calc(-50% + 1.0416666667vw);
  z-index: 2;
  width: 25vw;
  margin: 0;
  border-radius: 6.25vw;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-under-mv__photo {
    top: 50%;
    left: 50%;
    width: min(70%, 23.75rem);
    border-radius: 15.3846153846vw;
    translate: -50% calc(-50% + 3rem);
  }
}
.p-under-mv__photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 480/320;
  object-fit: cover;
}

.p-under-mv__birds {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: calc(-50% + 5.2083333333vw) calc(-50% - 6.25vw);
  z-index: 3;
  width: 8.3333333333vw;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-under-mv__birds {
    top: 50%;
    left: 50%;
    width: min(70%, 5rem);
    translate: calc(-50% - 13.125rem) calc(-50% - 1.5rem);
  }
}
@media (width <= 580px) {
  .p-under-mv__birds {
    width: min(50%, 15.3846153846vw);
    translate: calc(-50% - 27.6923076923vw) calc(-50% - 1.0256410256vw);
  }
}

.p-under-mv__blend {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
}

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

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

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

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

.p-work-archive__cards-item {
  min-width: 0;
}

.p-work-card {
  display: grid;
  gap: 1.25rem;
  color: var(--color-text);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-work-card {
    gap: 0.75rem;
  }
}
@media (any-hover: hover) {
  .p-work-card:hover {
    opacity: 1;
  }
  .p-work-card:hover .p-work-card__image {
    scale: 1.05;
  }
  .p-work-card:hover .p-work-card__icon {
    background-color: var(--color-primary);
  }
}

.p-work-card__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-work-card__media {
    border-radius: 0.75rem;
  }
}

.p-work-card__media--empty {
  aspect-ratio: 260/195;
  background-color: #d9d9d9;
}

.p-work-card__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 260/195;
  object-fit: cover;
  transition: scale var(--duration);
}

.p-work-card__icon {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
  display: block;
  width: 3rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color-text);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 19'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23fff; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M1.5,9.5h16' /%3E%3Cpath class='cls-1' d='M9.5,1.5l8,8-8,8' /%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.875rem auto;
  transition: background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-work-card__icon {
    right: 1rem;
    bottom: 1rem;
    width: 2.5rem;
    background-size: 0.75rem auto;
  }
}

.p-work-card__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.33;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-work-card__title {
    font-size: 1.125rem;
    line-height: 1.77;
  }
}

.p-work-card__text {
  margin-block-start: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-work-card__text {
    margin-block-start: 0.125rem;
    font-size: 0.875rem;
    line-height: 1.714;
  }
}

.p-work-archive__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-text);
  --_pagination-active-text: var(--color-white);
  --_pagination-border: var(--color-border);
  --_pagination-border-hover: var(--color-text);
  margin-block-start: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-work-archive__pagination {
    margin-block-start: 0.25rem;
  }
}

.p-work-archive__empty {
  padding-block: 3.75rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-work-archive__empty {
    padding-block: 2.5rem;
    font-size: 0.875rem;
  }
}

.p-work-archive__empty p {
  margin: 0;
}

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

.p-work-single__inner {
  display: grid;
  gap: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-work-single__inner {
    gap: 2.5rem;
  }
}

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

.p-work-single__title {
  margin: 0;
}

.p-work-single__intro {
  display: grid;
  grid-template-columns: minmax(0, 27.0625rem) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .p-work-single__intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }
}

.p-work-single__intro-media {
  margin: 0;
  overflow: hidden;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-work-single__intro-media {
    border-radius: 0.75rem;
  }
}

.p-work-single__intro-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 433/286;
  object-fit: cover;
}

.p-work-single__intro-body {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

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

.p-work-single__section .c-section-item-heading,
.p-work-single__intro-body .c-section-item-heading {
  margin: 0;
}

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

.p-work-single__schedule {
  display: grid;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-work-single__schedule-item {
  position: relative;
  display: grid;
  grid-template-columns: 8.75rem 1.25rem minmax(0, 1fr);
  gap: 1.25rem 2.5rem;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-work-single__schedule-item {
    grid-template-columns: 6.25rem 1rem minmax(0, 1fr);
    gap: 0.75rem 1rem;
    padding-block: 1rem;
  }
}
.p-work-single__schedule-item:not(:last-child) .p-work-single__schedule-marker::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 1.25rem;
  left: 11.75rem;
  width: 0.1875rem;
  height: calc(100% + 1.5rem);
  background-color: #fcdde2;
  translate: -50% 0;
}
@media screen and (max-width: 767px) {
  .p-work-single__schedule-item:not(:last-child) .p-work-single__schedule-marker::after {
    top: 1.5rem;
    left: 7.6875rem;
    height: calc(100% + 2rem);
  }
}

.p-work-single__schedule-time {
  margin: 0.25rem 0 0;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.66;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-work-single__schedule-time {
    margin-block-start: 0.125rem;
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.p-work-single__schedule-marker {
  width: 1rem;
  height: auto;
  aspect-ratio: 1/1;
  margin-block-start: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-work-single__schedule-marker {
    width: 0.875rem;
    height: 0.875rem;
    margin-block-start: 0.375rem;
  }
}

.p-work-single__schedule-body {
  display: grid;
  gap: 0.5rem;
  min-width: 0;
}

.p-work-single__schedule-title {
  margin: 0;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.66;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-work-single__schedule-title {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.p-work-single__schedule-detail {
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-work-single__schedule-detail {
    font-size: 0.875rem;
    line-height: 1.714;
  }
}

.p-work-single__careers {
  display: flex;
  justify-content: flex-end;
  margin-block-start: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-work-single__careers {
    justify-content: center;
  }
}

.p-work-single__gallery {
  padding-block: 3.5rem 5rem;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .p-work-single__gallery {
    padding-block: 2.5rem 3rem;
  }
}

.p-work-single__gallery-slider {
  position: relative;
  margin-inline: calc(50% - 50vw);
}

.p-work-single__gallery-static {
  min-width: 0;
}

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

.p-work-single__gallery-grid--single {
  grid-template-columns: minmax(0, 36.5625rem);
  justify-content: center;
  margin-inline: auto;
}
@media screen and (max-width: 1023px) {
  .p-work-single__gallery-grid--single {
    grid-template-columns: minmax(0, 27.5rem);
  }
}
@media screen and (max-width: 767px) {
  .p-work-single__gallery-grid--single {
    grid-template-columns: minmax(0, 1fr);
  }
}

.p-work-single__gallery-grid-item {
  min-width: 0;
  aspect-ratio: 585/395;
}

.p-work-single__gallery-swiper {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-work-single__gallery-swiper {
    overflow: visible;
  }
}

.p-work-single__gallery-slides {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-work-single__gallery-swiper .swiper-wrapper {
  align-items: center;
}

.p-work-single__gallery-slide.swiper-slide {
  flex-shrink: 0;
  width: 36.5625rem;
  height: auto;
  aspect-ratio: 585/395;
  scale: 0.75;
  transform-origin: center center;
  transition: scale 0.6s ease, translate 0.6s ease;
}
@media screen and (max-width: 1023px) {
  .p-work-single__gallery-slide.swiper-slide {
    width: 27.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-work-single__gallery-slide.swiper-slide {
    width: 17.5rem;
    scale: 0.85;
  }
}

.p-work-single__gallery-slide.swiper-slide-active {
  scale: 1;
  translate: 0 0;
}

.p-work-single__gallery-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 1rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-work-single__gallery-figure {
    border-radius: 0.75rem;
  }
}

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

.p-work-single__gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.375rem;
  height: 3.375rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: var(--color-text);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 19'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23fff; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M1.5,9.5h16' /%3E%3Cpath class='cls-1' d='M9.5,1.5l8,8-8,8' /%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1rem auto;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
  cursor: pointer;
  translate: -50% -50%;
  transition: background-color var(--duration), opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-work-single__gallery-nav {
    width: 2.75rem;
    height: 2.75rem;
    background-size: 0.75rem auto;
  }
}
@media (any-hover: hover) {
  .p-work-single__gallery-nav:hover {
    background-color: var(--color-primary);
  }
}
.p-work-single__gallery-nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.p-work-single__gallery-nav--prev {
  left: calc(50% - 21.25rem);
  rotate: 180deg;
}
@media screen and (max-width: 1023px) {
  .p-work-single__gallery-nav--prev {
    left: calc(50% - 16.25rem);
  }
}
@media screen and (max-width: 767px) {
  .p-work-single__gallery-nav--prev {
    left: calc(50% - 9.375rem);
  }
}

.p-work-single__gallery-nav--next {
  left: calc(50% + 21.25rem);
}
@media screen and (max-width: 1023px) {
  .p-work-single__gallery-nav--next {
    left: calc(50% + 16.25rem);
  }
}
@media screen and (max-width: 767px) {
  .p-work-single__gallery-nav--next {
    left: calc(50% + 9.375rem);
  }
}

.p-work-single__interviews {
  padding-block: 3.5rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-work-single__interviews {
    padding-block: 2.5rem 3rem;
  }
}

.p-work-single__interviews-inner {
  display: grid;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-work-single__interviews-inner {
    gap: 2rem;
  }
}

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

.p-work-single__interviews-item {
  min-width: 0;
}

.p-work-single__pagination {
  margin-block-start: 2.5rem;
}

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

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

.p-work-single__pagination-center {
  justify-self: center;
}

.p-work-single__pagination-next {
  min-width: 0;
  text-align: right;
}

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

@keyframes u-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.u-fade-in {
  opacity: 0;
}
.u-fade-in.is-inview {
  animation: u-fade-in 1s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .u-fade-in {
    opacity: 1;
  }
  .u-fade-in.is-inview {
    animation: none;
  }
}
@keyframes u-fade-up {
  from {
    opacity: 0;
    translate: 0 3.125rem;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
.u-fade-up {
  opacity: 0;
}
.u-fade-up.is-inview {
  animation: u-fade-up 1s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .u-fade-up {
    opacity: 1;
  }
  .u-fade-up.is-inview {
    animation: 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;
}