@charset "UTF-8";
/*! 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;
}
@property --root-font-size {
  syntax: "<length>";
  inherits: false;
  initial-value: 16px;
}
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}
:root {
  /* inner */
  --inner: min(1080px, 100%);
  --inner-sp: min(500px, 100%);
  --padding-inner: 20px;
  /* z-index */
  --z-index-header: 900;
  /* color */
  --color-white: #fff;
  --color-text: #0d2936;
  --color-black: #000;
  --color-gray: #f0f0f0;
  --color-border: #aaaaaf;
  --color-accent: #408f95;
  --color-primary: #234f5e;
  --color-secondary: #00f;
  --color-orange: #f57c00;
  /* font-weight */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  /* brand color */
  --color-brand-red: #E7000B;
  --color-text-main: #222222;
  /* font-family */
  --base-font-family: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  --title-font-family: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  --label-font-family: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  --font-noto: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  --font-zen: "Zen Kaku Gothic New", sans-serif;
  --font-roboto: "Roboto", sans-serif;
  --font-lato: "Lato", sans-serif;
  --to-rem: calc(100vw / 1340);
  --fz-base: rem(16);
  --lh-base: 1.5;
  --ls-base: 0.1em;
  --space-xs: rem(8);
  --space-sm: rem(16);
  --space-md: rem(24);
  --space-lg: rem(32);
  --space-xl: rem(48);
  /* transition duration */
  --duration: 0.3s;
  /* header height */
  --header-height: rem(80);
}
@media screen and (width >= 1341px) {
  :root {
    --to-rem: 1px;
  }
}
@media screen and (width <= 767px) and (width >= 601px) {
  :root {
    --to-rem: 1px;
  }
}
@media screen and (width <= 600px) {
  :root {
    --to-rem: calc(100vw / 390);
  }
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
/* アンカーリンクのスクロール位置を固定ヘッダー分ずらす */
[id] {
  scroll-margin-top: var(--header-height);
}
a[href^=tel] {
  text-decoration: none;
}
a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  /* 強調をなくす */
}
a:hover {
  text-decoration: none;
}
img,
svg {
  vertical-align: middle;
}
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
:where(:any-link, button, [type=button], [type=reset], [type=submit], label[for], select, summary, [role=tab], [role=button]) {
  cursor: pointer;
}
:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}
:focus:not(:focus-visible) {
  outline: none;
}
input[type=text] {
  font-size: 1rem;
  /* = 16px */
}
textarea {
  field-sizing: content;
}
body {
  overflow-x: clip;
  font-family: var(--base-font-family);
  font-weight: var(--fw-regular);
  color: var(--color-text);
}
body.is-loading {
  opacity: 0;
}
body.is-loaded {
  opacity: 1;
  transition: opacity 0.15s ease;
}
body.is-leaving {
  opacity: 0;
  transition: opacity 0.15s ease;
  pointer-events: none;
}
.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}
.u-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}
.l-inner {
  max-width: calc(1160 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: calc(540 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.l-main {
  margin-block-start: var(--header-height);
}
.c-button {
  position: relative;
  display: inline-block;
  padding: calc(14 * var(--to-rem)) calc(60 * var(--to-rem));
  border: 1px solid currentcolor;
  background-color: var(--color-white);
  color: var(--color-black);
  font-size: calc(15 * var(--to-rem));
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.3s;
}
.c-button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(20 * var(--to-rem));
  width: calc(8 * var(--to-rem));
  height: calc(8 * var(--to-rem));
  border-top: 2px solid var(--color-black);
  border-right: 2px solid var(--color-black);
  translate: 0 -50%;
  rotate: 45deg;
  transition: rotate 0.3s, translate 0.3s;
}
@media (any-hover: hover) {
  .c-button:hover {
    opacity: 0.7;
  }
  .c-button:hover::before {
    translate: 5px -50%;
  }
}
.c-button[data-color=black] {
  border-color: var(--color-black);
  background-color: var(--color-black);
  color: var(--color-white);
}
.c-button[data-color=black]::before {
  border-top: 2px solid currentcolor;
  border-right: 2px solid currentcolor;
}
/**
 * ページネーション共通コンポーネント
 *
 * 親（プロジェクト）から上書きする場合:
 *   - 呼び出し元で親クラスで 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: calc(8 * var(--to-rem));
  justify-content: center;
}
.c-pagination__item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: calc(40 * var(--to-rem));
  min-width: calc(40 * var(--to-rem));
  padding: 0 calc(12 * var(--to-rem));
  border: 1px solid var(--_pagination-border);
  background-color: var(--_pagination-bg);
  color: var(--_pagination-text);
  font-size: calc(14 * var(--to-rem));
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
@media screen and (max-width: 767px) {
  .c-pagination__item {
    height: calc(44 * var(--to-rem));
    min-width: calc(44 * var(--to-rem));
    font-size: calc(15 * var(--to-rem));
  }
}
@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: var(--fw-medium, 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-title {
  display: grid;
  gap: calc(8 * var(--to-rem));
  justify-items: center;
  width: max-content;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    gap: calc(12 * var(--to-rem));
  }
}
.c-section-title[data-align=center] {
  justify-items: center;
  text-align: center;
}
.c-section-title[data-align=left] {
  justify-items: start;
  text-align: left;
}
.c-section-title[data-align=right] {
  justify-items: end;
  text-align: right;
}
.c-section-title::after {
  content: "";
  display: block;
  width: 60%;
  height: calc(3 * var(--to-rem));
  background-color: var(--color-orange);
}
@media screen and (max-width: 767px) {
  .c-section-title::after {
    width: 80%;
  }
}
.c-section-title__main {
  color: blue;
  font-family: var(--title-font-family);
  font-size: calc(32 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-section-title__main {
    font-size: calc(48 * var(--to-rem));
  }
}
.c-section-title__sub {
  color: var(--color-text);
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-regular);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .c-section-title__sub {
    font-size: calc(16 * var(--to-rem));
  }
}
.c-triangle {
  display: inline-block;
  width: calc(64 * var(--to-rem));
  aspect-ratio: 1/1;
  background-color: var(--color-black);
}
.c-triangle[data-direction=top] {
  clip-path: var(--clip-triangle-top);
}
.c-triangle[data-direction=bottom] {
  clip-path: var(--clip-triangle-bottom);
}
.c-triangle[data-direction=left] {
  clip-path: var(--clip-triangle-left);
}
.c-triangle[data-direction=right] {
  clip-path: var(--clip-triangle-right);
}
.c-triangle[data-direction=lower-left] {
  clip-path: var(--clip-triangle-lower-left);
}
.c-triangle[data-direction=upper-left] {
  clip-path: var(--clip-triangle-upper-left);
}
.c-triangle[data-direction=lower-right] {
  clip-path: var(--clip-triangle-lower-right);
}
.c-triangle[data-direction=upper-right] {
  clip-path: var(--clip-triangle-upper-right);
}
.p-about {
  position: relative;
  padding-block: calc(120 * var(--to-rem));
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-about {
    padding-block: calc(60 * var(--to-rem));
  }
}
.p-about__bg-wrap {
  max-width: calc(1830 * var(--to-rem));
  margin-inline: auto;
  padding-inline: calc(40 * var(--to-rem));
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about__bg-wrap {
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-about__bg-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(0 * var(--to-rem));
  width: calc(200 * var(--to-rem));
  height: calc(200 * var(--to-rem));
  background-image: url("../mikan-orange-left.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-about__bg-wrap::before {
    left: calc(-30 * var(--to-rem));
    top: 20%;
    width: calc(120 * var(--to-rem));
    height: calc(120 * var(--to-rem));
  }
}
.p-about__inner {
  width: 100%;
  max-width: calc(1280 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem));
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about__inner {
    padding-inline: calc(0 * var(--to-rem));
  }
}
.p-about__label {
  width: calc(104 * var(--to-rem));
  height: calc(18 * var(--to-rem));
  margin-inline: auto;
}
.p-about__label img {
  display: inline-block;
  display: block;
  height: 100%;
  width: auto;
}
.p-about__title {
  margin-block-start: calc(35 * var(--to-rem));
  text-align: center;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: calc(32 * var(--to-rem));
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: #f57c00;
}
@media screen and (max-width: 767px) {
  .p-about__title {
    margin-block-start: calc(20 * var(--to-rem));
    font-size: calc(24 * var(--to-rem));
  }
}
.p-about__lead {
  margin-block-start: calc(35 * var(--to-rem));
  margin-inline: auto;
  max-width: calc(700 * var(--to-rem));
  font-weight: var(--fw-medium);
  font-size: calc(18 * var(--to-rem));
  line-height: 1.8;
  letter-spacing: 0.1111em;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-about__lead {
    margin-block-start: calc(20 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
  }
}
.p-about__content {
  display: flex;
  align-items: center;
  gap: calc(80 * var(--to-rem));
  margin-block-start: calc(96 * var(--to-rem));
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-about__content {
    flex-direction: column;
    margin-block-start: calc(50 * var(--to-rem));
    gap: calc(40 * var(--to-rem));
  }
}
.p-about__detail {
  flex: 0 0 calc(540 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-about__detail {
    flex: none;
    width: 100%;
  }
}
.p-about__detailTitle {
  font-weight: var(--fw-medium);
  font-size: calc(24 * var(--to-rem));
  line-height: 1.8;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-about__detailTitle {
    font-size: calc(18 * var(--to-rem));
  }
}
.p-about__detailText {
  margin-block-start: calc(58 * var(--to-rem));
  font-weight: var(--fw-medium);
  font-size: calc(16 * var(--to-rem));
  line-height: 1.8;
  letter-spacing: 0.125em;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-about__detailText {
    margin-block-start: calc(30 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
  }
}
.p-about__detailText2 {
  margin-top: calc(0 * var(--to-rem));
}
.p-about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: calc(15 * var(--to-rem));
  margin-block-start: calc(58 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-about__tags {
    margin-block-start: calc(30 * var(--to-rem));
  }
}
.p-about__tag {
  padding-block: calc(8 * var(--to-rem));
  padding-inline: calc(20 * var(--to-rem));
  border: calc(1 * var(--to-rem)) solid #f68b1e;
  border-radius: calc(20 * var(--to-rem));
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: calc(13 * var(--to-rem));
  line-height: 1.8;
  color: #f68b1e;
  background-color: #fef5ee;
}
.p-about__image {
  flex: 1;
  height: calc(500 * var(--to-rem));
  border-radius: calc(20 * var(--to-rem));
  overflow: hidden;
  box-shadow: 0 calc(4 * var(--to-rem)) calc(4 * var(--to-rem)) rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .p-about__image {
    width: 100%;
    height: calc(280 * var(--to-rem));
  }
}
.p-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-aboutHero {
  position: relative;
  overflow: hidden;
}
.p-aboutHero__inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f9f9f9;
}
.p-aboutHero__content {
  position: relative;
  z-index: 1;
  max-width: calc(1264 * var(--to-rem));
  width: 100%;
  padding-block: calc(120 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-aboutHero__content {
    padding-block: calc(48 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-aboutHero__tagline {
  font-family: var(--font-lato);
  font-weight: 800;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-brand-red);
}
.p-aboutHero__title {
  margin-top: calc(12 * var(--to-rem));
  font-family: var(--font-zen);
  font-weight: var(--fw-bold);
  font-size: calc(48 * var(--to-rem));
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-text-main);
}
@media screen and (max-width: 767px) {
  .p-aboutHero__title {
    font-size: calc(36 * var(--to-rem));
  }
}
.p-aboutHero__lead {
  margin-top: calc(12 * var(--to-rem));
  font-family: var(--font-roboto);
  font-weight: var(--fw-medium);
  font-size: calc(18 * var(--to-rem));
  line-height: 1.5;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-aboutHero__lead {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-aboutHero__bgText {
  position: absolute;
  right: 0;
  bottom: calc(-93 * var(--to-rem));
  font-family: var(--font-lato);
  font-weight: 800;
  font-size: calc(160 * var(--to-rem));
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-brand-red);
  opacity: 0.1;
  pointer-events: none;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-aboutHero__bgText {
    font-size: calc(48 * var(--to-rem));
    left: calc(65 * var(--to-rem));
    bottom: auto;
    top: calc(129 * var(--to-rem));
    right: auto;
  }
}
.p-aboutHero__breadcrumb {
  padding-block: calc(16 * var(--to-rem));
  padding-inline: calc(112 * var(--to-rem));
  background-color: #fff;
  border-bottom: 1px solid #f0f0f0;
}
@media screen and (max-width: 767px) {
  .p-aboutHero__breadcrumb {
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-aboutHero__breadcrumbInner {
  display: flex;
  align-items: center;
}
.p-aboutHero__breadcrumbLink {
  font-family: var(--font-noto);
  font-weight: var(--fw-regular);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.4285714286;
  color: #aaa;
  text-decoration: none;
  transition: color var(--duration) ease;
}
.p-aboutHero__breadcrumbLink:hover {
  color: var(--color-brand-red);
}
.p-aboutHero__breadcrumbSep {
  padding-inline: calc(8 * var(--to-rem));
  font-size: calc(14 * var(--to-rem));
  color: #ccc;
}
.p-aboutHero__breadcrumbCurrent {
  font-family: var(--font-noto);
  font-weight: var(--fw-medium);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.4285714286;
  color: var(--color-text-main);
}
.p-aboutCorporate {
  padding-block: calc(96 * var(--to-rem));
  padding-inline: calc(112 * var(--to-rem));
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-aboutCorporate {
    padding-block: calc(64 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-aboutCorporate__inner {
  display: flex;
  align-items: center;
  gap: calc(48 * var(--to-rem));
  max-width: calc(1216 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-aboutCorporate__inner {
    flex-direction: column;
    gap: calc(40 * var(--to-rem));
  }
}
.p-aboutCorporate__data {
  flex-shrink: 0;
}
.p-aboutCorporate__sectionTitle {
  margin-bottom: calc(40 * var(--to-rem));
}
.p-aboutCorporate__tagline {
  font-family: var(--font-lato);
  font-weight: 800;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-brand-red);
}
.p-aboutCorporate__heading {
  margin-top: calc(16 * var(--to-rem));
  font-family: var(--font-zen);
  font-weight: var(--fw-bold);
  font-size: calc(40 * var(--to-rem));
  line-height: 1.2;
  color: var(--color-text-main);
}
@media screen and (max-width: 767px) {
  .p-aboutCorporate__heading {
    font-size: calc(32 * var(--to-rem));
  }
}
.p-aboutCorporate__table {
  width: calc(816 * var(--to-rem));
  border-top: 1px solid #e5e7eb;
}
@media screen and (max-width: 767px) {
  .p-aboutCorporate__table {
    width: 100%;
  }
}
.p-aboutCorporate__row {
  display: flex;
  border-bottom: 1px solid #e5e7eb;
}
@media screen and (max-width: 767px) {
  .p-aboutCorporate__row {
    flex-direction: column;
  }
}
.p-aboutCorporate__term {
  display: flex;
  align-items: center;
  width: calc(200 * var(--to-rem));
  padding: calc(20 * var(--to-rem)) calc(24 * var(--to-rem));
  background-color: #f9f9f9;
  font-family: var(--font-roboto);
  font-weight: var(--fw-bold);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.6;
  color: var(--color-text-main);
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-aboutCorporate__term {
    width: 100%;
  }
}
.p-aboutCorporate__detail {
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
  align-items: start;
  padding: calc(20 * var(--to-rem)) calc(24 * var(--to-rem));
  font-family: var(--font-roboto);
  font-weight: var(--fw-regular);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.6;
  color: #444;
  flex: 1;
}
.p-aboutCorporate__mapLink {
  display: inline-flex;
  align-items: center;
  gap: calc(4 * var(--to-rem));
  flex-shrink: 0;
  white-space: nowrap;
  font-family: var(--font-noto);
  font-weight: var(--fw-bold);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.4285714286;
  color: #E60013;
  text-decoration: none;
  transition: opacity var(--duration) ease;
}
.p-aboutCorporate__mapLink:hover {
  opacity: 0.7;
}
.p-aboutCorporate__map {
  flex: 1;
  align-self: stretch;
  min-height: calc(500 * var(--to-rem));
  border-radius: calc(8 * var(--to-rem));
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-aboutCorporate__map {
    width: 100%;
    flex: none;
    height: calc(300 * var(--to-rem));
    min-height: auto;
  }
}
.p-aboutCorporate__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.p-aboutPhilosophy {
  position: relative;
  display: flex;
  gap: calc(80 * var(--to-rem));
  padding-block: calc(96 * var(--to-rem));
  padding-inline: calc(112 * var(--to-rem));
  background-color: #f9f9f9;
}
@media screen and (max-width: 767px) {
  .p-aboutPhilosophy {
    flex-direction: column;
    gap: calc(80 * var(--to-rem));
    padding-block: calc(64 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-aboutPhilosophy__deco {
  position: absolute;
  z-index: 0;
  width: calc(334 * var(--to-rem));
  height: calc(96 * var(--to-rem));
  background-color: var(--color-brand-red);
  border-radius: calc(16 * var(--to-rem));
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-aboutPhilosophy__deco {
    width: calc(96 * var(--to-rem));
    height: calc(96 * var(--to-rem));
  }
}
.p-aboutPhilosophy__deco--top {
  top: calc(-12 * var(--to-rem));
  left: calc(-12 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-aboutPhilosophy__deco--top {
    top: calc(-12 * var(--to-rem));
    left: calc(-12 * var(--to-rem));
  }
}
.p-aboutPhilosophy__deco--bottom {
  right: calc(-12 * var(--to-rem));
  bottom: calc(-12 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-aboutPhilosophy__deco--bottom {
    right: calc(-12 * var(--to-rem));
    bottom: calc(-12 * var(--to-rem));
  }
}
.p-aboutPhilosophy__left {
  flex-shrink: 0;
  max-width: calc(480 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-aboutPhilosophy__left {
    max-width: 100%;
  }
}
.p-aboutPhilosophy__tagline {
  font-family: var(--font-lato);
  font-weight: 800;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-brand-red);
}
.p-aboutPhilosophy__heading {
  margin-top: calc(16 * var(--to-rem));
  font-family: var(--font-zen);
  font-weight: var(--fw-bold);
  font-size: calc(40 * var(--to-rem));
  line-height: 1.2;
  color: var(--color-text-main);
}
@media screen and (max-width: 767px) {
  .p-aboutPhilosophy__heading {
    font-size: calc(32 * var(--to-rem));
  }
}
.p-aboutPhilosophy__lead {
  margin-top: calc(16 * var(--to-rem));
  font-family: var(--font-zen);
  font-weight: var(--fw-bold);
  font-size: calc(20 * var(--to-rem));
  line-height: 1.6;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-aboutPhilosophy__lead {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-aboutPhilosophy__actions {
  margin-top: calc(48 * var(--to-rem));
}
.p-aboutPhilosophy__corpLink {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: calc(16 * var(--to-rem));
  padding: calc(12 * var(--to-rem)) calc(24 * var(--to-rem));
  border: 1px solid #ccc;
  border-radius: calc(50 * var(--to-rem));
  font-family: var(--font-noto);
  font-weight: var(--fw-bold);
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  color: var(--color-text-main);
  text-decoration: none;
  background-color: #fff;
  transition: background-color var(--duration) ease, border-color var(--duration) ease;
}
.p-aboutPhilosophy__corpLink:hover {
  border-color: var(--color-text-main);
  background-color: #f5f5f5;
}
.p-aboutPhilosophy__right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
  flex: 1;
}
.p-aboutPhilosophy__accordion {
  position: relative;
  z-index: 1;
  background-color: #fff;
  border-radius: calc(8 * var(--to-rem));
}
.p-aboutPhilosophy__accordionSummary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: calc(32 * var(--to-rem));
  cursor: pointer;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-aboutPhilosophy__accordionSummary {
    padding: calc(32 * var(--to-rem));
  }
}
.p-aboutPhilosophy__accordionSummary::-webkit-details-marker {
  display: none;
}
.p-aboutPhilosophy__accordionHead {
  display: flex;
  gap: calc(16 * var(--to-rem));
}
.p-aboutPhilosophy__accordionNum {
  font-family: var(--font-noto);
  font-weight: var(--fw-bold);
  font-size: calc(18 * var(--to-rem));
  line-height: 1.5555555556;
  letter-spacing: 0.02em;
  color: #e60012;
}
.p-aboutPhilosophy__accordionTitle {
  display: flex;
  align-items: center;
  gap: calc(8 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-aboutPhilosophy__accordionTitle {
    flex-direction: column;
    align-items: flex-start;
    gap: calc(8 * var(--to-rem));
  }
}
.p-aboutPhilosophy__accordionName {
  font-family: var(--font-noto);
  font-weight: var(--fw-bold);
  font-size: calc(20 * var(--to-rem));
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--color-text-main);
}
.p-aboutPhilosophy__accordionSub {
  font-family: var(--font-noto);
  font-weight: var(--fw-regular);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.4285714286;
  letter-spacing: 0.0286em;
  color: #444;
}
.p-aboutPhilosophy__accordionIcon {
  flex-shrink: 0;
  transition: transform var(--duration) ease;
  color: var(--color-text-main);
}
details[open] .p-aboutPhilosophy__accordionIcon {
  transform: rotate(180deg);
}
.p-aboutPhilosophy__accordionBody {
  padding: calc(0 * var(--to-rem)) calc(48 * var(--to-rem)) calc(40 * var(--to-rem));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(32 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-aboutPhilosophy__accordionBody {
    padding: calc(0 * var(--to-rem)) calc(24 * var(--to-rem)) calc(40 * var(--to-rem));
    gap: calc(32 * var(--to-rem));
  }
}
.p-aboutPhilosophy__accordionText {
  font-family: var(--font-noto);
  font-weight: var(--fw-regular);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.4285714286;
  letter-spacing: 0.03em;
  color: #333;
  width: 100%;
}
.p-aboutPhilosophy__tagList {
  display: grid;
  grid-template-columns: repeat(2, calc(240 * var(--to-rem)));
  gap: calc(16 * var(--to-rem));
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-aboutPhilosophy__tagList {
    grid-template-columns: 1fr;
  }
}
.p-aboutPhilosophy__tag {
  display: flex;
  align-items: center;
  gap: calc(12 * var(--to-rem));
  width: calc(240 * var(--to-rem));
  padding: calc(16 * var(--to-rem));
  font-family: var(--font-noto);
  font-weight: var(--fw-medium);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.4285714286;
  letter-spacing: 0.0286em;
  color: var(--color-text-main);
  background-color: #f9f9f9;
  border-radius: calc(4 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-aboutPhilosophy__tag {
    width: 100%;
  }
}
.p-aboutPhilosophy__tag::before {
  content: "";
  flex-shrink: 0;
  width: calc(6 * var(--to-rem));
  height: calc(6 * var(--to-rem));
  background-color: var(--color-brand-red);
  border-radius: calc(50 * var(--to-rem));
}
.p-aboutWorksNav {
  position: relative;
  padding-block: calc(96 * var(--to-rem));
  padding-inline: calc(112 * var(--to-rem));
  background-color: #f9f9f9;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-aboutWorksNav {
    padding-block: calc(64 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-aboutWorksNav__bgText {
  position: absolute;
  top: calc(182 * var(--to-rem));
  left: calc(257 * var(--to-rem));
  font-family: var(--font-lato);
  font-weight: 800;
  font-size: calc(160 * var(--to-rem));
  line-height: 1.5;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.03);
  pointer-events: none;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-aboutWorksNav__bgText {
    font-size: calc(60 * var(--to-rem));
    top: calc(100 * var(--to-rem));
    left: calc(20 * var(--to-rem));
  }
}
.p-aboutWorksNav__inner {
  position: relative;
  z-index: 1;
  max-width: calc(1216 * var(--to-rem));
  margin-inline: auto;
}
.p-aboutWorksNav__sectionTitle {
  margin-bottom: calc(80 * var(--to-rem));
  text-align: center;
}
.p-aboutWorksNav__tagline {
  font-family: var(--font-lato);
  font-weight: 800;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-brand-red);
}
.p-aboutWorksNav__heading {
  margin-top: calc(16 * var(--to-rem));
  font-family: var(--font-zen);
  font-weight: var(--fw-bold);
  font-size: calc(48 * var(--to-rem));
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-text-main);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-aboutWorksNav__heading {
    font-size: calc(32 * var(--to-rem));
  }
}
.p-aboutWorksNav__cards {
  display: flex;
  gap: calc(24 * var(--to-rem));
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .p-aboutWorksNav__cards {
    flex-direction: column;
  }
}
.p-aboutWorksNav__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;
  border-radius: calc(16 * var(--to-rem));
  background-color: #fff;
  text-decoration: none;
  overflow: hidden;
  transition: box-shadow var(--duration) ease;
}
.p-aboutWorksNav__card:hover {
  box-shadow: 0 calc(4 * var(--to-rem)) calc(16 * var(--to-rem)) rgba(0, 0, 0, 0.08);
}
.p-aboutWorksNav__cardContent {
  display: flex;
  flex-direction: column;
  gap: calc(24 * var(--to-rem));
  padding: calc(32 * var(--to-rem));
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-aboutWorksNav__cardContent {
    gap: 0;
    padding: calc(24 * var(--to-rem));
  }
}
.p-aboutWorksNav__cardTagline {
  display: flex;
  align-items: center;
  gap: calc(16 * var(--to-rem));
}
.p-aboutWorksNav__cardDot {
  width: calc(6 * var(--to-rem));
  height: calc(6 * var(--to-rem));
  border-radius: 50%;
  background-color: var(--color-brand-red);
  flex-shrink: 0;
}
.p-aboutWorksNav__cardLabel {
  font-family: var(--font-lato);
  font-weight: 800;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-text-main);
}
.p-aboutWorksNav__cardTitle {
  font-family: var(--font-zen);
  font-weight: var(--fw-bold);
  font-size: calc(20 * var(--to-rem));
  line-height: 1.4;
  color: var(--color-text-main);
}
@media screen and (max-width: 767px) {
  .p-aboutWorksNav__cardTitle {
    margin-top: calc(8 * var(--to-rem));
  }
}
.p-aboutWorksNav__cardArrow {
  align-self: flex-end;
  margin-top: auto;
  color: var(--color-text-main);
  transition: transform var(--duration) ease;
}
@media screen and (max-width: 767px) {
  .p-aboutWorksNav__cardArrow {
    margin-top: calc(24 * var(--to-rem));
  }
}
.p-aboutWorksNav__card:hover .p-aboutWorksNav__cardArrow {
  transform: translate(calc(4 * var(--to-rem)), calc(-4 * var(--to-rem)));
}
.p-aboutWorksNav__cardPicture {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-aboutWorksNav__cardPicture {
    aspect-ratio: auto;
    height: calc(171 * var(--to-rem));
  }
}
.p-aboutWorksNav__cardImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-access {
  padding-block: calc(100 * var(--to-rem)) calc(166 * var(--to-rem));
  background-color: #fff8f5;
}
@media screen and (max-width: 767px) {
  .p-access {
    padding-block: calc(60 * var(--to-rem));
  }
}
.p-access__inner {
  max-width: calc(1416 * var(--to-rem));
  margin-inline: auto;
  padding-inline: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-access__inner {
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-access__label {
  text-align: center;
  height: calc(18 * var(--to-rem));
}
.p-access__label img {
  display: inline-block;
}
.p-access__title {
  margin-block-start: calc(35 * var(--to-rem));
  text-align: center;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: calc(32 * var(--to-rem));
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: #f57c00;
}
@media screen and (max-width: 767px) {
  .p-access__title {
    margin-block-start: calc(20 * var(--to-rem));
    font-size: calc(24 * var(--to-rem));
  }
}
.p-access__lead {
  margin-block-start: calc(35 * var(--to-rem));
  text-align: center;
  margin-inline: auto;
  max-width: calc(700 * var(--to-rem));
  font-weight: var(--fw-medium);
  font-size: calc(18 * var(--to-rem));
  line-height: 1;
  letter-spacing: 0.1111em;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-access__lead {
    margin-block-start: calc(20 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
  }
}
.p-access__locations {
  margin-top: calc(96 * var(--to-rem));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(59 * var(--to-rem));
}
@media screen and (max-width: 1023px) {
  .p-access__locations {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-access__locations {
    grid-template-columns: 1fr;
    gap: calc(48 * var(--to-rem));
    margin-block-start: calc(40 * var(--to-rem));
  }
}
.p-access__location {
  display: flex;
  flex-direction: column;
  gap: calc(92 * var(--to-rem));
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-access__location {
    gap: calc(24 * var(--to-rem));
  }
}
.p-access__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
}
.p-access__locationName {
  font-weight: var(--fw-medium);
  font-size: calc(24 * var(--to-rem));
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.0833em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-access__locationName {
    font-size: calc(18 * var(--to-rem));
  }
}
.p-access__details {
  display: flex;
  flex-direction: column;
  gap: calc(30 * var(--to-rem));
  margin-block-start: calc(30 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-access__details {
    gap: calc(20 * var(--to-rem));
    margin-block-start: calc(20 * var(--to-rem));
  }
}
.p-access__detailItem {
  display: flex;
  flex-direction: column;
  gap: calc(12 * var(--to-rem));
}
.p-access__detailTerm {
  font-weight: var(--fw-bold);
  font-size: calc(18 * var(--to-rem));
  line-height: 1;
  letter-spacing: 0.1111em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-access__detailTerm {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-access__detailData {
  font-weight: var(--fw-medium);
  font-size: calc(16 * var(--to-rem));
  line-height: 2.5;
  letter-spacing: 0.1111em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-access__detailData {
    font-size: calc(13 * var(--to-rem));
  }
}
.p-access__detailData span {
  color: #00E;
}
.p-access__map {
  aspect-ratio: 1/1;
  width: 100%;
  border-radius: calc(20 * var(--to-rem));
  overflow: hidden;
}
.p-access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}
@media screen and (max-width: 767px) {
  .p-access__map {
    aspect-ratio: 4/3;
  }
}
.p-appeal {
  position: relative;
  padding-block: calc(100 * var(--to-rem));
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-appeal {
    padding-block: calc(60 * var(--to-rem));
  }
}
.p-appeal__bg-wrap {
  position: relative;
  max-width: calc(1652 * var(--to-rem));
  margin-inline: auto;
  padding-inline: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-appeal__bg-wrap {
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-appeal__bg-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc(200 * var(--to-rem));
  height: calc(200 * var(--to-rem));
  background-image: url("../mikan-orange-right.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-appeal__bg-wrap::after {
    right: calc(-30 * var(--to-rem));
    top: 20%;
    width: calc(120 * var(--to-rem));
    height: calc(120 * var(--to-rem));
  }
}
.p-appeal__inner {
  max-width: calc(1208 * var(--to-rem));
  padding-inline: calc(20 * var(--to-rem));
  margin-inline: auto;
  text-align: center;
}
.p-appeal__label {
  display: inline-block;
  height: calc(18 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-appeal__label {
    height: calc(22 * var(--to-rem));
  }
}
.p-appeal__title {
  margin-block-start: calc(35 * var(--to-rem));
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: calc(32 * var(--to-rem));
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: #f57c00;
}
@media screen and (max-width: 767px) {
  .p-appeal__title {
    margin-block-start: calc(20 * var(--to-rem));
    font-size: calc(24 * var(--to-rem));
  }
}
.p-appeal__lead {
  margin-block-start: calc(35 * var(--to-rem));
  margin-inline: auto;
  max-width: calc(700 * var(--to-rem));
  font-weight: var(--fw-medium);
  font-size: calc(18 * var(--to-rem));
  line-height: 1.8;
  letter-spacing: 0.1111em;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-appeal__lead {
    margin-block-start: calc(20 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
  }
}
.p-appeal__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(80 * var(--to-rem));
  margin-block-start: calc(78 * var(--to-rem));
  padding: 0;
  list-style: none;
  text-align: left;
}
@media screen and (min-width: 1440px) {
  .p-appeal__list {
    gap: calc(80 * var(--to-rem)) calc(40 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-appeal__list {
    grid-template-columns: 1fr;
    gap: calc(40 * var(--to-rem));
    margin-block-start: calc(40 * var(--to-rem));
  }
}
.p-appeal__item {
  display: flex;
  gap: calc(30 * var(--to-rem));
  max-width: calc(546 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-appeal__item {
    max-width: 100%;
    gap: calc(20 * var(--to-rem));
  }
}
.p-appeal__itemNum {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(50 * var(--to-rem));
  height: calc(50 * var(--to-rem));
  border-radius: 50%;
  background-color: #f68b1e;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: calc(16 * var(--to-rem));
  line-height: 1;
  color: #ffffff;
}
.p-appeal__itemBody {
  flex: 1;
}
.p-appeal__itemTitle {
  font-weight: var(--fw-medium);
  font-size: calc(18 * var(--to-rem));
  line-height: 1.6;
  letter-spacing: 0.1111em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-appeal__itemTitle {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-appeal__itemText {
  margin-block-start: calc(13 * var(--to-rem));
  font-weight: var(--fw-medium);
  font-size: calc(13 * var(--to-rem));
  line-height: 1.8;
  letter-spacing: 0.1538em;
  color: #666666;
}
.p-archive {
  padding-block: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive {
    padding-block: calc(80 * var(--to-rem));
  }
}
.p-archive__inner {
  max-width: calc(var(--inner) + var(--padding-inner) * 2);
}
.p-archive__header {
  margin-block-end: calc(40 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-archive__header {
    margin-block-end: calc(60 * var(--to-rem));
  }
}
.p-archive__title {
  margin-block-end: calc(16 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive__title {
    margin-block-end: calc(24 * var(--to-rem));
  }
}
.p-archive__description {
  margin-block-start: calc(16 * var(--to-rem));
  color: var(--color-text);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-archive__description {
    margin-block-start: calc(24 * var(--to-rem));
    font-size: calc(16 * var(--to-rem));
  }
}
.p-archive__list {
  display: grid;
  gap: calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive__list {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(32 * var(--to-rem));
  }
}
@media screen and (max-width: 1023px) {
  .p-archive__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-archive__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: calc(16 * var(--to-rem));
  border: 1px solid var(--color-gray);
  border-radius: 12px;
  background-color: var(--color-white);
  text-decoration: none;
  transition: translate 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-archive__link {
    padding: calc(20 * var(--to-rem));
  }
}
@media (any-hover: hover) {
  .p-archive__link:hover {
    box-shadow: 0 8px 24px oklch(from var(--color-black) l c h/10%);
    translate: 0 calc(-4 * var(--to-rem));
  }
}
.p-archive__thumbnail {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  margin-block-end: calc(16 * var(--to-rem));
  border-radius: 8px;
  background-color: var(--color-gray);
}
@media screen and (max-width: 767px) {
  .p-archive__thumbnail {
    margin-block-end: calc(20 * var(--to-rem));
  }
}
.p-archive__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.3s ease;
}
@media (any-hover: hover) {
  .p-archive__link:hover .p-archive__thumbnail img {
    scale: 1.05;
  }
}
.p-archive__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: calc(12 * var(--to-rem));
}
.p-archive__item-title {
  margin: 0;
  color: var(--color-text);
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-archive__item-title {
    font-size: calc(20 * var(--to-rem));
  }
}
.p-archive__meta {
  display: flex;
  flex-wrap: wrap;
  gap: calc(12 * var(--to-rem));
  align-items: center;
  color: var(--color-text);
  font-size: calc(12 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive__meta {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-archive__date {
  display: inline-block;
}
.p-archive__categories {
  display: flex;
  flex-wrap: wrap;
  gap: calc(8 * var(--to-rem));
}
.p-archive__category {
  display: inline-block;
  padding: calc(4 * var(--to-rem)) calc(12 * var(--to-rem));
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-size: calc(11 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive__category {
    font-size: calc(12 * var(--to-rem));
  }
}
.p-archive__excerpt {
  color: var(--color-text);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-archive__excerpt {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-archive__pagination {
  margin-block-start: calc(48 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive__pagination {
    margin-block-start: calc(60 * var(--to-rem));
  }
}
.p-archive__empty {
  padding-block: calc(60 * var(--to-rem));
  color: var(--color-text);
  font-size: calc(16 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-archive__empty {
    padding-block: calc(80 * var(--to-rem));
    font-size: calc(18 * var(--to-rem));
  }
}
.p-single__back {
  margin-block-start: calc(48 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-single__back {
    margin-block-start: calc(60 * var(--to-rem));
  }
}
.p-archive--works .p-archive__link {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  padding: 0;
  border: none;
  border-radius: 12px;
  box-shadow: 0 calc(2 * var(--to-rem)) calc(8 * var(--to-rem)) oklch(from var(--color-black) l c h/8%);
  background-color: var(--color-white);
  text-decoration: none;
}
.p-archive--works .p-archive__thumbnail {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  margin-block-end: 0;
  border-radius: 12px 12px 0 0;
}
.p-archive--works .p-archive__thumbnail img {
  transition: scale 0.5s ease;
}
@media (any-hover: hover) {
  .p-archive--works .p-archive__link:has(.p-archive__thumbnail):hover .p-archive__thumbnail img {
    scale: 1.1;
  }
}
.p-archive--works .p-archive__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: calc(12 * var(--to-rem));
  padding: calc(20 * var(--to-rem));
}
.p-archive--works .p-archive__meta {
  display: flex;
  flex-wrap: wrap;
  gap: calc(12 * var(--to-rem));
  align-items: center;
  margin-block-end: calc(8 * var(--to-rem));
  color: var(--color-text);
  font-size: calc(12 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive--works .p-archive__meta {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-archive--works .p-archive__date {
  display: inline-block;
}
.p-archive--works .p-archive__category {
  display: inline-block;
  padding: calc(4 * var(--to-rem)) calc(12 * var(--to-rem));
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-size: calc(11 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive--works .p-archive__category {
    font-size: calc(12 * var(--to-rem));
  }
}
.p-archive--works .p-archive__item-title {
  margin: 0;
  margin-block-end: calc(8 * var(--to-rem));
  color: var(--color-text);
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-archive--works .p-archive__item-title {
    margin-block-end: calc(12 * var(--to-rem));
    font-size: calc(18 * var(--to-rem));
    line-height: 1.6;
  }
}
.p-archive--works .p-archive__excerpt {
  display: -webkit-box;
  overflow: hidden;
  margin-block-start: 0;
  color: var(--color-text);
  font-size: calc(13 * var(--to-rem));
  line-height: 1.7;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 767px) {
  .p-archive--works .p-archive__excerpt {
    font-size: calc(14 * var(--to-rem));
    line-height: 1.8;
  }
}
.p-archive--works .p-archive__client,
.p-archive--works .p-archive__period {
  display: flex;
  gap: calc(8 * var(--to-rem));
  align-items: center;
  color: var(--color-text);
  font-size: calc(12 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive--works .p-archive__client,
  .p-archive--works .p-archive__period {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-archive--works .p-archive__client-label,
.p-archive--works .p-archive__period-label {
  font-weight: var(--fw-medium);
}
.p-archive--works .p-archive__technologies {
  display: flex;
  flex-wrap: wrap;
  gap: calc(8 * var(--to-rem));
  margin-block-start: calc(12 * var(--to-rem));
}
.p-archive--works .p-archive__technology {
  display: inline-block;
  padding: calc(4 * var(--to-rem)) calc(12 * var(--to-rem));
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-size: calc(11 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive--works .p-archive__technology {
    font-size: calc(12 * var(--to-rem));
  }
}
.p-ashirai {
  width: calc(200 * var(--to-rem));
  height: calc(200 * var(--to-rem));
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.p-ashirai img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-ashirai {
    width: calc(120 * var(--to-rem));
    height: calc(120 * var(--to-rem));
  }
}
.p-ashirai--mv {
  right: calc(-40 * var(--to-rem));
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-ashirai--mv {
    right: calc(-30 * var(--to-rem));
    top: auto;
    bottom: calc(-40 * var(--to-rem));
    transform: none;
  }
}
.p-ashirai--about {
  position: absolute;
  top: 0;
  left: calc(0 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-ashirai--about {
    left: calc(-30 * var(--to-rem));
    top: 20%;
  }
}
.p-ashirai--facility {
  left: calc(-60 * var(--to-rem));
  top: 30%;
}
@media screen and (max-width: 767px) {
  .p-ashirai--facility {
    left: calc(-30 * var(--to-rem));
    top: 20%;
  }
}
.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-careerpathHero {
  position: relative;
  overflow: hidden;
}
.p-careerpathHero__inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f9f9f9;
}
.p-careerpathHero__content {
  position: relative;
  z-index: 1;
  max-width: calc(1264 * var(--to-rem));
  width: 100%;
  padding-block: calc(120 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-careerpathHero__content {
    padding-block: calc(48 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-careerpathHero__tagline {
  font-family: var(--font-lato);
  font-weight: 800;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-brand-red);
}
.p-careerpathHero__heading {
  margin-top: calc(12 * var(--to-rem));
  font-family: var(--font-zen);
  font-weight: var(--fw-bold);
  font-size: calc(48 * var(--to-rem));
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-text-main);
}
@media screen and (max-width: 767px) {
  .p-careerpathHero__heading {
    font-size: calc(32 * var(--to-rem));
  }
}
.p-careerpathHero__bgText {
  position: absolute;
  right: 0;
  bottom: calc(-93 * var(--to-rem));
  font-family: var(--font-lato);
  font-weight: 800;
  font-size: calc(160 * var(--to-rem));
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-brand-red);
  opacity: 0.1;
  pointer-events: none;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-careerpathHero__bgText {
    font-size: calc(48 * var(--to-rem));
    left: calc(65 * var(--to-rem));
    bottom: auto;
    top: calc(129 * var(--to-rem));
    right: auto;
  }
}
.p-breadcrumb {
  background-color: #ffffff;
  border-top: calc(1 * var(--to-rem)) solid #f0f0f0;
}
.p-breadcrumb__inner {
  max-width: calc(1280 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem));
  padding-block: calc(16 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-breadcrumb__inner {
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: calc(8 * var(--to-rem));
  list-style: none;
}
.p-breadcrumb__item {
  font-size: calc(14 * var(--to-rem));
  line-height: 1.5;
  color: #666666;
}
.p-breadcrumb__item + .p-breadcrumb__item::before {
  content: ">";
  margin-right: calc(8 * var(--to-rem));
  color: #999999;
}
.p-breadcrumb__link {
  color: #222222;
  text-decoration: none;
}
.p-breadcrumb__link:hover {
  text-decoration: underline;
}
.p-careerpathSteps {
  position: relative;
  padding-block: calc(128 * var(--to-rem));
  background-color: #ffffff;
  overflow-x: clip;
  overflow-y: visible;
}
@media screen and (max-width: 767px) {
  .p-careerpathSteps {
    padding-block: calc(64 * var(--to-rem));
  }
}
.p-careerpathSteps__inner {
  max-width: calc(1280 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-careerpathSteps__inner {
    max-width: 100%;
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-careerpathSteps__tagline {
  font-family: var(--font-lato);
  font-weight: 800;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  text-transform: uppercase;
  color: #e7000b;
}
.p-careerpathSteps__heading {
  margin-top: calc(16 * var(--to-rem));
  font-family: var(--font-zen);
  font-weight: 700;
  font-size: calc(48 * var(--to-rem));
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-careerpathSteps__heading {
    font-size: calc(36 * var(--to-rem));
  }
}
.p-careerpathSteps__body {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: calc(80 * var(--to-rem));
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-careerpathSteps__body {
    margin-top: calc(48 * var(--to-rem));
  }
}
.p-careerpathSteps__timelineBar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: calc(16 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-careerpathSteps__timelineBar {
    display: none;
  }
}
.p-careerpathSteps__timelineLine {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.p-careerpathSteps__row {
  display: flex;
  align-items: flex-start;
  gap: calc(80 * var(--to-rem));
}
.p-careerpathSteps__row + .p-careerpathSteps__row {
  margin-top: calc(32 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-careerpathSteps__row {
    gap: 0;
  }
  .p-careerpathSteps__row + .p-careerpathSteps__row {
    margin-top: calc(24 * var(--to-rem));
  }
}
.p-careerpathSteps__periodLabel {
  flex-shrink: 0;
  width: calc(340 * var(--to-rem));
  padding-left: calc(32 * var(--to-rem));
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-careerpathSteps__periodLabel {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-careerpathSteps__periodLabel--empty {
    display: none;
  }
}
.p-careerpathSteps__periodStage {
  font-family: var(--font-roboto);
  font-weight: 500;
  font-size: calc(48 * var(--to-rem));
  font-style: italic;
  line-height: 1;
  color: var(--color-brand-red);
  white-space: nowrap;
}
.p-careerpathSteps__periodYear {
  font-family: var(--font-roboto);
  font-weight: 500;
  font-size: calc(16 * var(--to-rem));
  line-height: 2.2;
  color: var(--color-brand-red);
}
.p-careerpathSteps__card {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: calc(24 * var(--to-rem));
  padding: calc(32 * var(--to-rem));
  background-color: #ffffff;
  border-left: calc(3 * var(--to-rem)) solid #e7000b;
  border-radius: calc(8 * var(--to-rem));
  box-shadow: 0 calc(2 * var(--to-rem)) calc(8 * var(--to-rem)) 0 rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 767px) {
  .p-careerpathSteps__card {
    padding: calc(16 * var(--to-rem));
    gap: calc(16 * var(--to-rem));
  }
}
.p-careerpathSteps__cardHeader {
  padding-bottom: calc(16 * var(--to-rem));
  border-bottom: calc(1 * var(--to-rem)) solid #f3f4f6;
}
.p-careerpathSteps__card--simple .p-careerpathSteps__cardHeader {
  padding-bottom: 0;
  border-bottom: none;
}
.p-careerpathSteps__cardTitle {
  font-family: var(--font-roboto);
  font-weight: 700;
  font-size: calc(24 * var(--to-rem));
  line-height: 1.4;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-careerpathSteps__cardTitle {
    font-size: calc(20 * var(--to-rem));
  }
}
.p-careerpathSteps__skillList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(8 * var(--to-rem)) calc(16 * var(--to-rem));
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-careerpathSteps__skillList {
    grid-template-columns: 1fr;
    gap: calc(8 * var(--to-rem));
  }
}
.p-careerpathSteps__skillItem {
  position: relative;
  padding-left: calc(16 * var(--to-rem));
  font-family: var(--font-roboto);
  font-weight: 400;
  font-size: calc(14 * var(--to-rem));
  line-height: 1.6;
  color: #222222;
}
.p-careerpathSteps__skillItem::before {
  content: "";
  position: absolute;
  top: calc(0.5lh - 3 * var(--to-rem));
  left: 0;
  width: calc(6 * var(--to-rem));
  height: calc(6 * var(--to-rem));
  border-radius: 50%;
  background-color: #e7000b;
}
.p-careerpathSteps__mission {
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--to-rem));
}
.p-careerpathSteps__missionLabel {
  display: inline-block;
  width: fit-content;
  padding: calc(4 * var(--to-rem)) calc(8 * var(--to-rem));
  font-weight: 700;
  font-size: calc(12 * var(--to-rem));
  line-height: 1.33;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e7000b;
  background-color: rgba(231, 0, 11, 0.05);
}
.p-careerpathSteps__missionText {
  font-weight: 500;
  font-size: calc(14 * var(--to-rem));
  line-height: 1.6;
  color: #333333;
}
.p-careerpathSteps__decoSvg {
  position: absolute;
  right: calc(0 * var(--to-rem));
  top: calc(230 * var(--to-rem));
  width: calc(264 * var(--to-rem));
  height: calc(264 * var(--to-rem));
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-careerpathSteps__decoSvg {
    width: calc(132 * var(--to-rem));
    height: calc(132 * var(--to-rem));
    top: calc(349 * var(--to-rem));
  }
}
.p-careerpathSteps__entryLabel {
  display: block;
  font-family: var(--font-roboto);
  font-weight: 700;
  font-size: calc(16 * var(--to-rem));
  line-height: 2.2;
  color: var(--color-brand-red);
}
.p-careerpathSteps__dotPattern {
  position: absolute;
  left: 0;
  bottom: calc(-120 * var(--to-rem));
  width: calc(320 * var(--to-rem));
  height: calc(206 * var(--to-rem));
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-careerpathSteps__dotPattern {
    width: calc(160 * var(--to-rem));
    height: calc(103 * var(--to-rem));
  }
}
.p-careerpathFlow {
  padding-block: calc(112 * var(--to-rem));
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-careerpathFlow {
    padding-block: calc(64 * var(--to-rem));
  }
}
.p-careerpathFlow__inner {
  max-width: calc(1280 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-careerpathFlow__inner {
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-careerpathFlow__titleBlock {
  text-align: center;
}
.p-careerpathFlow__tagline {
  font-family: var(--font-lato);
  font-weight: 800;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  text-transform: uppercase;
  color: #e7000b;
}
.p-careerpathFlow__heading {
  margin-top: calc(16 * var(--to-rem));
  font-family: var(--font-zen);
  font-weight: 700;
  font-size: calc(40 * var(--to-rem));
  line-height: 1.2;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-careerpathFlow__heading {
    font-size: calc(28 * var(--to-rem));
  }
}
.p-careerpathFlow__cards {
  position: relative;
  display: flex;
  gap: calc(32 * var(--to-rem));
  margin-top: calc(80 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-careerpathFlow__cards {
    flex-direction: column;
    margin-top: calc(48 * var(--to-rem));
  }
}
.p-careerpathFlow__cards::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: calc(1216 * var(--to-rem));
  height: calc(2 * var(--to-rem));
  background-color: #e5e7eb;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-careerpathFlow__cards::before {
    display: none;
  }
}
.p-careerpathFlow__card {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: calc(25 * var(--to-rem));
  padding-top: calc(56 * var(--to-rem));
  background-color: #ffffff;
  border: calc(1 * var(--to-rem)) solid #e0e0e0;
  border-radius: calc(12 * var(--to-rem));
  box-shadow: 0 calc(1 * var(--to-rem)) calc(2 * var(--to-rem)) 0 rgba(0, 0, 0, 0.05);
}
.p-careerpathFlow__stepBadge {
  position: absolute;
  top: calc(16 * var(--to-rem));
  right: calc(16 * var(--to-rem));
  padding: calc(4 * var(--to-rem)) calc(16 * var(--to-rem));
  font-family: var(--font-lato);
  font-weight: 800;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #222222;
  border-radius: calc(50 * var(--to-rem));
}
.p-careerpathFlow__stepBadge--accent {
  background-color: #e7000b;
}
.p-careerpathFlow__cardIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(48 * var(--to-rem));
  height: calc(48 * var(--to-rem));
  border-radius: 50%;
  background-color: #f3f4f6;
}
.p-careerpathFlow__cardIcon img {
  width: calc(20 * var(--to-rem));
  height: calc(20 * var(--to-rem));
}
.p-careerpathFlow__cardIcon--accent {
  background-color: #fef2f2;
}
.p-careerpathFlow__cardTitle {
  margin-top: calc(16 * var(--to-rem));
  font-weight: 700;
  font-size: calc(20 * var(--to-rem));
  line-height: 1.4;
  color: #222222;
}
.p-careerpathFlow__cardDesc {
  margin-top: calc(12 * var(--to-rem));
  font-size: calc(14 * var(--to-rem));
  line-height: 1.43;
  color: #333333;
}
.p-careerpathFaq {
  padding-block: calc(112 * var(--to-rem));
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-careerpathFaq {
    padding-block: calc(64 * var(--to-rem));
  }
}
.p-careerpathFaq__inner {
  max-width: calc(896 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-careerpathFaq__inner {
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-careerpathFaq__titleBlock {
  text-align: center;
}
.p-careerpathFaq__tagline {
  font-family: var(--font-lato);
  font-weight: 800;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  text-transform: uppercase;
  color: #e60013;
}
.p-careerpathFaq__heading {
  margin-top: calc(16 * var(--to-rem));
  font-family: var(--font-zen);
  font-weight: 700;
  font-size: calc(40 * var(--to-rem));
  line-height: 1.2;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-careerpathFaq__heading {
    font-size: calc(28 * var(--to-rem));
  }
}
.p-careerpathFaq__list {
  margin-top: calc(80 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-careerpathFaq__list {
    margin-top: calc(48 * var(--to-rem));
  }
}
.p-careerpathFaq__item {
  padding: calc(8 * var(--to-rem)) calc(16 * var(--to-rem));
  border-bottom: calc(1 * var(--to-rem)) solid #cccccc;
}
.p-careerpathFaq__question {
  display: flex;
  align-items: center;
  gap: calc(16 * var(--to-rem));
  padding-block: calc(20 * var(--to-rem));
  cursor: pointer;
  list-style: none;
}
.p-careerpathFaq__question::-webkit-details-marker {
  display: none;
}
.p-careerpathFaq__dot {
  flex-shrink: 0;
  width: calc(8 * var(--to-rem));
  height: calc(8 * var(--to-rem));
  border-radius: 50%;
  background-color: #e7000b;
}
.p-careerpathFaq__questionText {
  flex: 1;
  font-weight: 700;
  font-size: calc(18 * var(--to-rem));
  line-height: 1.5;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-careerpathFaq__questionText {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-careerpathFaq__icon {
  flex-shrink: 0;
  width: calc(32 * var(--to-rem));
  height: calc(32 * var(--to-rem));
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 20.394C16.1251 20.394 16.2253 20.3562 16.332 20.2495L22.9248 13.6577C23.034 13.5485 23.0693 13.4498 23.0693 13.3335C23.0693 13.2172 23.0339 13.1185 22.9248 13.0093C22.8208 12.9052 22.7183 12.8648 22.584 12.8647C22.4494 12.8647 22.3464 12.9051 22.2422 13.0093L22.2412 13.0103L16.4707 18.7485L15.999 19.2173L9.75781 12.9761C9.65416 12.8724 9.56552 12.8433 9.45801 12.8472C9.33232 12.8518 9.22411 12.8945 9.10938 13.0093C9.00523 13.1134 8.96484 13.2156 8.96484 13.3501C8.96486 13.4846 9.00522 13.5868 9.10938 13.6909L15.668 20.2495C15.7747 20.3563 15.875 20.394 16 20.394Z' fill='%23222222' stroke='%23222222' stroke-width='1.33333'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: calc(32 * var(--to-rem)) calc(32 * var(--to-rem));
  transition: transform 0.3s ease;
}
.p-careerpathFaq__item.is-open .p-careerpathFaq__icon {
  transform: rotate(180deg);
}
.p-careerpathFaq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.p-careerpathFaq__item.is-open .p-careerpathFaq__answer {
  grid-template-rows: 1fr;
}
.p-careerpathFaq__answerText {
  overflow: hidden;
  padding-right: calc(48 * var(--to-rem));
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  color: #333333;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-careerpathFaq__answerText {
    padding-right: calc(0 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
  }
}
.p-careerpathFaq__item.is-open .p-careerpathFaq__answerText {
  padding-bottom: calc(24 * var(--to-rem));
  opacity: 1;
}
.p-contact__complete {
  padding-block: calc(80 * var(--to-rem));
  text-align: center;
}
.p-contact__complete-title {
  font-size: calc(32 * var(--to-rem));
  font-weight: var(--fw-bold);
}
@media screen and (max-width: 767px) {
  .p-contact__complete-title {
    font-size: calc(40 * var(--to-rem));
  }
}
.p-contact__complete-text {
  margin-block-start: calc(30 * var(--to-rem));
  color: var(--color-text);
  font-size: calc(16 * var(--to-rem));
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-contact__complete-text {
    font-size: calc(18 * var(--to-rem));
  }
}
.p-contact__complete-button {
  margin-block-start: calc(50 * var(--to-rem));
  margin-inline: auto;
}
.p-contact {
  padding-block: calc(96 * var(--to-rem)) calc(112 * var(--to-rem));
  background-color: #f9f9f9;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding-block: calc(64 * var(--to-rem)) calc(80 * var(--to-rem));
  }
}
.p-contact__inner {
  max-width: calc(832 * var(--to-rem));
  padding-inline: calc(32 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-contact__inner {
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-contact__steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block: calc(48 * var(--to-rem));
  position: relative;
}
.p-contact__steps::before {
  content: "";
  position: absolute;
  top: calc(16 * var(--to-rem));
  left: 0;
  right: 0;
  height: calc(2 * var(--to-rem));
  background-color: #e5e7eb;
  border-radius: calc(9999 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-contact__steps {
    margin-block: calc(32 * var(--to-rem));
  }
}
.p-contact__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(8 * var(--to-rem));
  z-index: 1;
}
.p-contact__step:first-child {
  padding-left: calc(48 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-contact__step:first-child {
    padding-left: calc(16 * var(--to-rem));
  }
}
.p-contact__step:last-child {
  padding-right: calc(48 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-contact__step:last-child {
    padding-right: calc(16 * var(--to-rem));
  }
}
.p-contact__stepNum {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(32 * var(--to-rem));
  height: calc(32 * var(--to-rem));
  border-radius: 50%;
  border: calc(1 * var(--to-rem)) solid #d1d5db;
  background-color: #ffffff;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: calc(12 * var(--to-rem));
  line-height: 1.33;
  color: #444444;
}
.p-contact__stepNum--active {
  border: none;
  background-color: #e7000b;
  color: #ffffff;
  font-weight: 700;
}
.p-contact__stepText {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: calc(12 * var(--to-rem));
  line-height: 1.33;
  letter-spacing: 0.025em;
  color: #444444;
}
.p-contact__stepText--active {
  font-weight: 700;
  color: #e7000b;
}
.p-contact__stepLine {
  flex: 1;
  height: calc(2 * var(--to-rem));
  background-color: transparent;
}
.p-contact__card {
  background-color: #ffffff;
  border: calc(1 * var(--to-rem)) solid #f3f4f6;
  border-radius: calc(12 * var(--to-rem));
  box-shadow: 0 calc(8 * var(--to-rem)) calc(30 * var(--to-rem)) 0 rgba(0, 0, 0, 0.04);
  overflow: hidden;
}
.p-contact__cardHead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(8 * var(--to-rem));
  padding: calc(40 * var(--to-rem)) calc(32 * var(--to-rem)) calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-contact__cardHead {
    padding: calc(32 * var(--to-rem)) calc(20 * var(--to-rem)) calc(20 * var(--to-rem));
  }
}
.p-contact__cardTitle {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: calc(24 * var(--to-rem));
  line-height: 1.33;
  letter-spacing: 0.05em;
  text-align: center;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-contact__cardTitle {
    font-size: calc(20 * var(--to-rem));
  }
}
.p-contact__cardDesc {
  font-family: var(--font-noto);
  font-weight: 300;
  font-size: calc(14 * var(--to-rem));
  line-height: 1.43;
  letter-spacing: 0.025em;
  text-align: center;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-contact__cardDesc {
    font-size: calc(13 * var(--to-rem));
  }
}
.p-contact__form {
  display: flex;
  flex-direction: column;
  gap: calc(32 * var(--to-rem));
  padding: 0 calc(40 * var(--to-rem)) calc(40 * var(--to-rem));
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-contact__form {
    padding: 0 calc(20 * var(--to-rem)) calc(24 * var(--to-rem));
    gap: calc(24 * var(--to-rem));
  }
}
.p-contact__form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: calc(32 * var(--to-rem));
}
.p-contact__radios {
  padding: calc(16 * var(--to-rem)) 0;
}
.p-contact__radios .wpcf7-radio {
  display: flex;
  gap: calc(24 * var(--to-rem));
}
.p-contact__radios .wpcf7-list-item {
  display: flex;
  align-items: center;
  flex: 1;
  gap: calc(12 * var(--to-rem));
  margin: 0;
  cursor: pointer;
}
.p-contact__radios .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: calc(12 * var(--to-rem));
  cursor: pointer;
  width: 100%;
}
.p-contact__radios input[type=radio] {
  display: block;
  appearance: none;
  width: calc(18 * var(--to-rem));
  height: calc(18 * var(--to-rem));
  border: calc(1 * var(--to-rem)) solid #444444;
  border-radius: 50%;
  background-color: #ffffff;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}
.p-contact__radios input[type=radio]:checked {
  border-color: #e7000b;
}
.p-contact__radios input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(10 * var(--to-rem));
  height: calc(10 * var(--to-rem));
  border-radius: 50%;
  background-color: #e7000b;
}
.p-contact__radios .wpcf7-list-item-label {
  font-family: var(--font-roboto);
  font-weight: 400;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  color: #444444;
  cursor: pointer;
}
.p-contact__fieldGroup {
  display: flex;
  gap: calc(32 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-contact__fieldGroup {
    flex-direction: column;
    gap: calc(24 * var(--to-rem));
  }
}
.p-contact__fieldGroup > .p-contact__row {
  flex: 1;
}
.p-contact__row {
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--to-rem));
}
.p-contact__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-contact__labelText {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: calc(13 * var(--to-rem));
  line-height: 1.5;
  letter-spacing: 0.025em;
  color: #222222;
}
.p-contact__required {
  display: inline-block;
  padding: calc(2 * var(--to-rem)) calc(8 * var(--to-rem));
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: calc(10 * var(--to-rem));
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #e7000b;
  background-color: #fef2f2;
  border: calc(1 * var(--to-rem)) solid #fee2e2;
  border-radius: calc(4 * var(--to-rem));
}
.p-contact__field input[type=text],
.p-contact__field input[type=email],
.p-contact__field input[type=tel],
.p-contact__field select,
.p-contact__field textarea {
  display: block;
  width: 100%;
  padding: calc(15 * var(--to-rem)) calc(16 * var(--to-rem));
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: calc(15 * var(--to-rem));
  line-height: 1.2;
  letter-spacing: 0.025em;
  color: #333333;
  background-color: #f9fafb;
  border: calc(1 * var(--to-rem)) solid #e5e7eb;
  border-radius: calc(8 * var(--to-rem));
  outline: none;
  transition: border-color 0.2s ease;
}
.p-contact__field input::placeholder,
.p-contact__field textarea::placeholder {
  color: #aaaaaa;
}
.p-contact__field input:focus,
.p-contact__field select:focus,
.p-contact__field textarea:focus {
  border-color: #e7000b;
}
.p-contact__field select {
  appearance: none;
  padding-right: calc(44 * var(--to-rem));
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0.75L4.5 5.25L9 0.75' stroke='%23444444' stroke-width='1.6875' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right calc(16 * var(--to-rem)) center;
  background-size: calc(10 * var(--to-rem)) calc(6 * var(--to-rem));
  cursor: pointer;
}
.p-contact__field textarea {
  min-height: calc(140 * var(--to-rem));
  resize: vertical;
  line-height: 1.625;
}
.p-contact__note {
  font-family: var(--font-noto);
  font-weight: 300;
  font-size: calc(12 * var(--to-rem));
  line-height: 1.33;
  letter-spacing: 0.025em;
  color: #444444;
  text-align: right;
}
.p-contact__fileUpload {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: calc(32 * var(--to-rem)) calc(24 * var(--to-rem));
  background-color: #ffffff;
  border: calc(1 * var(--to-rem)) dashed #d1d5db;
  border-radius: calc(8 * var(--to-rem));
  cursor: pointer;
  overflow: hidden;
}
.p-contact__fileUploadInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(8 * var(--to-rem));
}
.p-contact__fileIcon {
  width: calc(24 * var(--to-rem));
  height: calc(30 * var(--to-rem));
}
.p-contact__fileTexts {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-contact__fileAction {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: calc(14 * var(--to-rem));
  line-height: 1.43;
  letter-spacing: 0.025em;
  text-align: center;
  color: #e7000b;
}
.p-contact__fileSub {
  margin-top: calc(4 * var(--to-rem));
  font-family: var(--font-noto);
  font-weight: 300;
  font-size: calc(12 * var(--to-rem));
  line-height: 1.33;
  letter-spacing: 0.025em;
  text-align: center;
  color: #444444;
}
.p-contact__fileHint {
  font-family: var(--font-noto);
  font-weight: 300;
  font-size: calc(10 * var(--to-rem));
  line-height: 1.5;
  text-align: center;
  color: #444444;
}
.p-contact__fileUpload .wpcf7-form-control-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.p-contact__fileUpload input[type=file] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.p-contact__fileUpload.is-selected {
  border-color: #e7000b;
  border-style: solid;
}
.p-contact__fileUpload.is-dragover {
  border-color: #e7000b;
  background-color: #fef2f2;
}
.p-contact__fileSelected {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  pointer-events: auto;
}
.p-contact__fileSelectedInfo {
  display: flex;
  align-items: center;
  gap: calc(12 * var(--to-rem));
  min-width: 0;
}
.p-contact__fileSelectedIcon {
  flex-shrink: 0;
}
.p-contact__fileSelectedMeta {
  display: flex;
  flex-direction: column;
  gap: calc(2 * var(--to-rem));
  min-width: 0;
}
.p-contact__fileSelectedName {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: calc(14 * var(--to-rem));
  line-height: 1.43;
  color: #222222;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.p-contact__fileSelectedSize {
  font-family: var(--font-noto);
  font-weight: 300;
  font-size: calc(12 * var(--to-rem));
  line-height: 1.33;
  color: #888888;
}
.p-contact__fileRemove {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(32 * var(--to-rem));
  height: calc(32 * var(--to-rem));
  font-size: calc(20 * var(--to-rem));
  color: #aaaaaa;
  background: none;
  border: calc(1 * var(--to-rem)) solid #e5e7eb;
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.p-contact__fileRemove:hover {
  color: #e7000b;
  border-color: #e7000b;
}
.p-contact__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(24 * var(--to-rem));
  padding-top: calc(32 * var(--to-rem));
  border-top: calc(1 * var(--to-rem)) solid #f3f4f6;
}
.p-contact__security {
  display: flex;
  align-items: center;
  gap: calc(6 * var(--to-rem));
  font-family: var(--font-noto);
  font-weight: 300;
  font-size: calc(12 * var(--to-rem));
  line-height: 1.33;
  letter-spacing: 0.025em;
  color: #444444;
}
.p-contact__security::before {
  content: "";
  display: inline-block;
  width: calc(10 * var(--to-rem));
  height: calc(13 * var(--to-rem));
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='13' viewBox='0 0 16 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.7542 4.27481V3.04936C6.7542 2.53639 6.56896 2.09466 6.19847 1.72417C5.82799 1.35369 5.38626 1.16845 4.87328 1.16845C4.36031 1.16845 3.91858 1.35369 3.54809 1.72417C3.17761 2.09466 2.99237 2.53639 2.99237 3.04936V4.27481H6.7542ZM4.01832 9.37608C4.26531 9.62307 4.5503 9.74656 4.87328 9.74656C5.19627 9.74656 5.48126 9.62307 5.72824 9.37608C5.97523 9.12909 6.09873 8.8441 6.09873 8.52112C6.09873 8.19813 5.97523 7.91315 5.72824 7.66616C5.48126 7.41917 5.19627 7.29567 4.87328 7.29567C4.5503 7.29567 4.26531 7.41917 4.01832 7.66616C3.77133 7.91315 3.64784 8.19813 3.64784 8.52112C3.64784 8.8441 3.77133 9.12909 4.01832 9.37608ZM8.52112 4.27481C8.8441 4.27481 9.12909 4.39355 9.37608 4.63104C9.62307 4.86853 9.74656 5.14877 9.74656 5.47176V11.5705C9.74656 11.8935 9.62307 12.1737 9.37608 12.4112C9.12909 12.6487 8.8441 12.7674 8.52112 12.7674H1.22545C0.90246 12.7674 0.617472 12.6487 0.370483 12.4112C0.123494 12.1737 0 11.8935 0 11.5705V5.47176C0 5.14877 0.123494 4.86853 0.370483 4.63104C0.617472 4.39355 0.90246 4.27481 1.22545 4.27481H1.82392V3.04936C1.82392 2.2134 2.12316 1.49618 2.72163 0.89771C3.3201 0.299237 4.03732 0 4.87328 0C5.70925 0 6.42646 0.299237 7.02494 0.89771C7.62341 1.49618 7.92265 2.2134 7.92265 3.04936V4.27481H8.52112Z' fill='%23444444'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}
.p-contact__footer .wpcf7-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(16 * var(--to-rem));
  width: calc(288 * var(--to-rem));
  height: calc(60 * var(--to-rem));
  padding: calc(16 * var(--to-rem)) calc(60 * var(--to-rem));
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: calc(15 * var(--to-rem));
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  color: #ffffff;
  background: #e7000b;
  border: none;
  border-radius: calc(8 * var(--to-rem));
  box-shadow: 0 calc(2 * var(--to-rem)) calc(4 * var(--to-rem)) calc(-2 * var(--to-rem)) rgba(0, 0, 0, 0.1), 0 calc(4 * var(--to-rem)) calc(6 * var(--to-rem)) calc(-1 * var(--to-rem)) rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 767px) {
  .p-contact__footer .wpcf7-submit {
    width: 100%;
  }
}
.p-contact__footer .wpcf7-submit:hover {
  opacity: 0.85;
}
.wpcf7-form:not(.invalid):not(.unaccepted) .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7-form:not(.invalid):not(.unaccepted) .wpcf7-not-valid {
  border-color: transparent;
}
.wpcf7-not-valid-tip {
  font-family: var(--font-noto);
  font-size: calc(12 * var(--to-rem));
  line-height: 1.5;
  color: #e7000b;
  margin-top: calc(4 * var(--to-rem));
}
.wpcf7-not-valid {
  border-color: #e7000b !important;
}
.wpcf7-response-output {
  margin: calc(16 * var(--to-rem)) 0 0 !important;
  padding: calc(12 * var(--to-rem)) calc(16 * var(--to-rem)) !important;
  border-radius: calc(8 * var(--to-rem)) !important;
  font-family: var(--font-noto);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.5;
}
.wpcf7-spinner {
  display: none;
}
.p-contactConfirm__radios {
  padding: calc(16 * var(--to-rem)) 0;
}
.p-contactConfirm__radioItem {
  display: flex;
  align-items: center;
  gap: calc(12 * var(--to-rem));
}
.p-contactConfirm__radioCircle {
  width: calc(18 * var(--to-rem));
  height: calc(18 * var(--to-rem));
  border: calc(1 * var(--to-rem)) solid #444444;
  border-radius: 50%;
  flex-shrink: 0;
}
.p-contactConfirm__radioLabel {
  font-family: var(--font-roboto);
  font-weight: 400;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  color: #444444;
}
.p-contactConfirm__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(32 * var(--to-rem)) calc(48 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-contactConfirm__grid {
    grid-template-columns: 1fr;
    gap: calc(24 * var(--to-rem));
  }
}
.p-contactConfirm__gridItem {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}
.p-contactConfirm__fieldLabel {
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  color: #333333;
}
.p-contactConfirm__fieldValue {
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  color: #333333;
}
.p-contactConfirm__file {
  display: flex;
  flex-direction: column;
}
.p-contactConfirm__fileRow {
  display: flex;
  align-items: center;
  gap: calc(12 * var(--to-rem));
  padding: calc(12 * var(--to-rem)) 0;
  border-bottom: calc(1 * var(--to-rem)) solid #f3f4f6;
}
.p-contactConfirm__fileIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(8 * var(--to-rem));
  background: #fef2f2;
  border-radius: calc(4 * var(--to-rem));
  flex-shrink: 0;
}
.p-contactConfirm__fileName {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: calc(15 * var(--to-rem));
  line-height: 1.5;
  color: #333333;
}
.p-contactConfirm__textarea {
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--to-rem));
}
.p-contactConfirm__textareaBox {
  background: #f9fafb;
  border: calc(1 * var(--to-rem)) solid #f3f4f6;
  border-radius: calc(8 * var(--to-rem));
  padding: calc(16 * var(--to-rem));
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: calc(14 * var(--to-rem));
  line-height: 1.625;
  color: #333333;
  white-space: pre-wrap;
  word-break: break-all;
}
.p-contactConfirm__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: calc(24 * var(--to-rem));
  padding-top: calc(32 * var(--to-rem));
  border-top: calc(1 * var(--to-rem)) solid #f3f4f6;
}
.p-contactConfirm__actions input[type=hidden],
.p-contactConfirm__actions .wpcf7-form-control-wrap[data-name=multistep-confirm] {
  display: none !important;
  width: 0;
  height: 0;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .p-contactConfirm__actions {
    flex-direction: column-reverse;
    gap: calc(16 * var(--to-rem));
  }
}
.p-contactConfirm__actions .wpcf7-previous,
.p-contactConfirm__actions .wpcf7-back {
  order: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 192px;
  padding: 16px 24px;
  text-align: center;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: calc(14 * var(--to-rem));
  line-height: 1.5;
  letter-spacing: 0.025em;
  color: #4b5563;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
@media screen and (max-width: 767px) {
  .p-contactConfirm__actions .wpcf7-previous,
  .p-contactConfirm__actions .wpcf7-back {
    width: 100%;
  }
}
.p-contactConfirm__actions .wpcf7-previous:hover,
.p-contactConfirm__actions .wpcf7-back:hover {
  background-color: #f9fafb;
}
.p-contactConfirm__actions .wpcf7-submit {
  order: 2;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 288px;
  height: 60px;
  padding: 16px 48px 16px 60px;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: calc(15 * var(--to-rem));
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #ffffff;
  background-color: #e7000b;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 6H11M11 6L6.5 1.5M11 6L6.5 10.5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 40px center;
  background-size: 12px 12px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.1), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: opacity 0.2s ease;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contactConfirm__actions .wpcf7-submit {
    width: 100%;
  }
}
.p-contactConfirm__actions .wpcf7-submit:hover {
  opacity: 0.85;
}
.p-contact__thanksBody {
  padding: 0 calc(40 * var(--to-rem)) calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-contact__thanksBody {
    padding: 0 calc(20 * var(--to-rem)) calc(24 * var(--to-rem));
  }
}
.p-contact__thanksBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(288 * var(--to-rem));
  height: calc(52 * var(--to-rem));
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: calc(14 * var(--to-rem));
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #444444;
  background: #ffffff;
  border: calc(1 * var(--to-rem)) solid #d1d5db;
  border-radius: calc(8 * var(--to-rem));
  text-decoration: none;
  transition: background-color 0.2s ease;
}
@media screen and (max-width: 767px) {
  .p-contact__thanksBtn {
    width: 100%;
  }
}
.p-contact__thanksBtn:hover {
  background-color: #f9fafb;
}
.p-contactCta {
  max-width: calc(1440 * var(--to-rem));
  margin-inline: auto;
  padding: calc(112 * var(--to-rem)) calc(192 * var(--to-rem));
  background: #f9f9f9;
}
@media screen and (max-width: 767px) {
  .p-contactCta {
    padding: calc(72 * var(--to-rem)) calc(20 * var(--to-rem));
  }
}
.p-contactCta__card {
  position: relative;
  max-width: calc(1056 * var(--to-rem));
  margin-inline: auto;
  background-color: var(--color-brand-red);
  border-radius: calc(24 * var(--to-rem));
  padding: calc(64 * var(--to-rem));
  box-shadow: 0 calc(8 * var(--to-rem)) calc(10 * var(--to-rem)) calc(-6 * var(--to-rem)) rgba(0, 0, 0, 0.1), 0 calc(20 * var(--to-rem)) calc(25 * var(--to-rem)) calc(-5 * var(--to-rem)) rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-contactCta__card {
    padding: calc(96 * var(--to-rem)) calc(16 * var(--to-rem));
  }
}
.p-contactCta__decoText {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(114 * var(--to-rem));
  font-family: var(--font-lato);
  font-weight: 800;
  font-size: calc(116 * var(--to-rem));
  line-height: 1;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #000;
  opacity: 0.08;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-contactCta__decoText {
    font-size: calc(42 * var(--to-rem));
    left: 50%;
    transform: translateX(-50%);
    top: calc(158 * var(--to-rem));
  }
}
.p-contactCta__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(24 * var(--to-rem));
}
.p-contactCta__headingWrap {
  text-align: center;
}
.p-contactCta__heading {
  font-family: var(--font-zen);
  font-weight: 700;
  font-size: calc(48 * var(--to-rem));
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-contactCta__heading {
    font-size: calc(24 * var(--to-rem));
    line-height: 1.9;
    letter-spacing: -0.02em;
  }
}
.p-contactCta__descWrap {
  max-width: calc(672 * var(--to-rem));
  text-align: center;
}
.p-contactCta__desc {
  font-family: var(--font-roboto);
  font-weight: 500;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
}
@media screen and (max-width: 767px) {
  .p-contactCta__desc {
    display: none;
  }
}
.p-contactCta__buttons {
  display: flex;
  justify-content: center;
  gap: calc(16 * var(--to-rem));
  padding-top: calc(16 * var(--to-rem));
  max-width: calc(928 * var(--to-rem));
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-contactCta__buttons {
    flex-direction: column;
    align-items: center;
  }
}
.p-contactCta__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: calc(64 * var(--to-rem));
  padding: calc(16 * var(--to-rem)) calc(32 * var(--to-rem));
  border-radius: calc(50 * var(--to-rem));
  text-decoration: none;
  box-shadow: 0 calc(8 * var(--to-rem)) calc(10 * var(--to-rem)) calc(-6 * var(--to-rem)) rgba(0, 0, 0, 0.1), 0 calc(20 * var(--to-rem)) calc(25 * var(--to-rem)) calc(-5 * var(--to-rem)) rgba(0, 0, 0, 0.1);
  transition: background-color var(--duration), color var(--duration), border-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-contactCta__btn {
    height: calc(56 * var(--to-rem));
    padding: calc(8 * var(--to-rem)) calc(32 * var(--to-rem));
  }
}
.p-contactCta__btnText {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: calc(18 * var(--to-rem));
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-contactCta__btnText {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-contactCta__btnArrow {
  display: flex;
  align-items: center;
  padding-left: calc(8 * var(--to-rem));
}
.p-contactCta__btn--primary {
  background-color: #ffffff;
  border: calc(2 * var(--to-rem)) solid var(--color-brand-red);
  color: var(--color-brand-red);
}
@media (any-hover: hover) {
  .p-contactCta__btn--primary:hover {
    background-color: var(--color-brand-red);
    border-color: #ffffff;
    color: #ffffff;
  }
}
.p-contactCta__btn--secondary {
  background-color: var(--color-brand-red);
  border: calc(2 * var(--to-rem)) solid #ffffff;
  color: #ffffff;
}
@media (any-hover: hover) {
  .p-contactCta__btn--secondary:hover {
    background-color: #ffffff;
    border-color: var(--color-brand-red);
    color: var(--color-brand-red);
  }
}
.p-contactCta__parttime {
  display: none;
  padding-top: calc(8 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contactCta__parttime {
    display: block;
  }
}
.p-contactCta__parttimeLink {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  color: #ffffff;
  text-decoration: none;
  transition: opacity var(--duration);
}
.p-contactCta__parttimeLink:hover {
  opacity: 0.7;
}
.p-cta {
  padding-block: calc(100 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-cta {
    padding-block: calc(60 * var(--to-rem));
  }
}
.p-cta__bg-wrap {
  position: relative;
  overflow: hidden;
  max-width: calc(1416 * var(--to-rem));
  margin-inline: auto;
  padding-inline: calc(40 * var(--to-rem));
}
.p-cta__bg-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: calc(200 * var(--to-rem));
  height: calc(200 * var(--to-rem));
  background-image: url("../mikan-orange-left.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-cta__bg-wrap::before {
    left: calc(-30 * var(--to-rem));
    top: auto;
    bottom: calc(0 * var(--to-rem));
    transform: none;
    width: calc(120 * var(--to-rem));
    height: calc(120 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-cta__bg-wrap {
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-cta__inner {
  max-width: calc(840 * var(--to-rem));
  padding-inline: calc(20 * var(--to-rem));
  margin-inline: auto;
  text-align: center;
}
.p-cta__title {
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: calc(32 * var(--to-rem));
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: #f57c00;
}
@media screen and (max-width: 767px) {
  .p-cta__title {
    font-size: calc(22 * var(--to-rem));
  }
}
.p-cta__lead {
  margin-block-start: calc(35 * var(--to-rem));
  margin-inline: auto;
  max-width: calc(700 * var(--to-rem));
  font-weight: var(--fw-medium);
  font-size: calc(18 * var(--to-rem));
  line-height: 1.8;
  letter-spacing: 0.1111em;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-cta__lead {
    margin-block-start: calc(20 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
  }
}
.p-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(20 * var(--to-rem));
  margin-block-start: calc(95 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-cta__buttons {
    flex-direction: column;
    align-items: center;
    margin-block-start: calc(48 * var(--to-rem));
    gap: calc(16 * var(--to-rem));
  }
}
.p-cta__btn {
  display: inline-block;
  padding-block: calc(19 * var(--to-rem));
  padding-inline: calc(60 * var(--to-rem));
  border-radius: calc(999 * var(--to-rem));
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: calc(16 * var(--to-rem));
  line-height: 2;
  text-align: center;
  white-space: nowrap;
  transition: background-color var(--duration), color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-cta__btn {
    padding-inline: calc(40 * var(--to-rem));
    font-size: calc(15 * var(--to-rem));
    width: 100%;
    max-width: calc(320 * var(--to-rem));
  }
}
.p-cta__btn--apply {
  background-color: #ffffff;
  border: 2px solid #f68b1e;
  color: #f68b1e;
}
.p-cta__btn--line {
  background-color: #06c755;
  border: 2px solid #06c755;
  color: #ffffff;
}
@media (any-hover: hover) {
  .p-cta__btn--apply:hover {
    background-color: #f68b1e;
    color: #ffffff;
  }
  .p-cta__btn--line:hover {
    background-color: #ffffff;
    color: #06c755;
  }
}
.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: red;
  font-size: calc(18 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-dev-notice__title {
    font-size: calc(20 * var(--to-rem));
  }
}
.p-dev-notice__text code {
  padding-block: calc(2 * var(--to-rem));
  padding-inline: calc(6 * var(--to-rem));
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--color-primary);
  font-family: "Courier New", Courier, monospace;
  font-size: calc(13 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-dev-notice__text code {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-dev-notice__list {
  display: flex;
  flex-direction: column;
  gap: calc(12 * var(--to-rem));
  margin: 0;
  padding-inline-start: calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-dev-notice__list {
    gap: calc(16 * var(--to-rem));
    padding-inline-start: calc(32 * var(--to-rem));
  }
}
.p-dev-notice__item {
  display: flex;
  flex-direction: column;
  gap: calc(4 * var(--to-rem));
  line-height: 1.8;
}
.p-dev-notice__item strong {
  color: var(--color-primary);
  font-weight: var(--fw-bold);
}
.p-dev-notice__item code {
  padding-block: calc(2 * var(--to-rem));
  padding-inline: calc(6 * var(--to-rem));
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--color-primary);
  font-family: "Courier New", Courier, monospace;
  font-size: calc(13 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-dev-notice__item code {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-error {
  padding-block: calc(60 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-error {
    padding-block: calc(80 * var(--to-rem));
  }
}
.p-error__header {
  margin-block-end: calc(24 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-error__header {
    margin-block-end: calc(32 * var(--to-rem));
  }
}
.p-error__title {
  color: var(--color-text);
  font-size: calc(24 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-error__title {
    font-size: calc(32 * var(--to-rem));
  }
}
.p-error__content {
  max-width: calc(640 * var(--to-rem));
  margin-inline: auto;
  color: var(--color-text);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-error__content {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-error__content p + p {
  margin-block-start: calc(24 * var(--to-rem));
}
.p-facility {
  padding-block: calc(100 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-facility {
    padding-block: calc(60 * var(--to-rem));
  }
}
.p-facility__bg-wrap {
  position: relative;
  max-width: calc(1852 * var(--to-rem));
  margin-inline: auto;
  padding-inline: calc(40 * var(--to-rem));
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-facility__bg-wrap {
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-facility__bg-wrap::before {
  content: "";
  position: absolute;
  top: calc(547 * var(--to-rem));
  left: calc(0 * var(--to-rem));
  width: calc(200 * var(--to-rem));
  height: calc(200 * var(--to-rem));
  background-image: url("../mikan-orange-left.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-facility__bg-wrap::before {
    left: calc(-30 * var(--to-rem));
    top: 20%;
    width: calc(120 * var(--to-rem));
    height: calc(120 * var(--to-rem));
  }
}
.p-facility__inner {
  max-width: calc(1200 * var(--to-rem));
  padding-inline: calc(20 * var(--to-rem));
  margin-inline: auto;
  text-align: center;
}
.p-facility__label {
  display: inline-block;
  height: calc(20 * var(--to-rem));
}
.p-facility__title {
  margin-block-start: calc(35 * var(--to-rem));
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: calc(32 * var(--to-rem));
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: #f57c00;
}
@media screen and (max-width: 767px) {
  .p-facility__title {
    margin-block-start: calc(20 * var(--to-rem));
    font-size: calc(24 * var(--to-rem));
  }
}
.p-facility__lead {
  margin-block-start: calc(35 * var(--to-rem));
  margin-inline: auto;
  max-width: calc(700 * var(--to-rem));
  font-weight: var(--fw-medium);
  font-size: calc(18 * var(--to-rem));
  line-height: 1;
  letter-spacing: 0.1111em;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-facility__lead {
    margin-block-start: calc(20 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
  }
}
.p-facility__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(40 * var(--to-rem));
  margin-block-start: calc(35 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-facility__grid {
    grid-template-columns: 1fr;
    gap: calc(24 * var(--to-rem));
    margin-block-start: calc(30 * var(--to-rem));
  }
}
.p-facility__figure {
  display: flex;
  flex-direction: column;
  gap: calc(15 * var(--to-rem));
}
.p-facility__caption {
  font-weight: 350;
  font-size: calc(13 * var(--to-rem));
  line-height: 1.8;
  text-align: center;
  color: #999999;
}
.p-facility__imageWrap {
  border-radius: calc(20 * var(--to-rem));
  overflow: hidden;
  height: calc(380 * var(--to-rem));
}
.p-facility__imageWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-facility__imageWrap {
    height: calc(220 * var(--to-rem));
  }
}
.p-facility__imageWrap--placeholder {
  background-color: #f5f5f5;
}
.p-flow {
  padding-block: calc(100 * var(--to-rem));
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-flow {
    padding-block: calc(60 * var(--to-rem));
  }
}
.p-flow__bg-wrap {
  position: relative;
  overflow: hidden;
  max-width: calc(1594 * var(--to-rem));
  margin-inline: auto;
  padding-inline: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-flow__bg-wrap {
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-flow__bg-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc(200 * var(--to-rem));
  height: calc(200 * var(--to-rem));
  background-image: url("../mikan-orange-right.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-flow__bg-wrap::after {
    right: calc(-30 * var(--to-rem));
    top: 20%;
    width: calc(120 * var(--to-rem));
    height: calc(120 * var(--to-rem));
  }
}
.p-flow__inner {
  max-width: calc(946 * var(--to-rem));
  margin-inline: auto;
  padding-inline: calc(40 * var(--to-rem));
  margin-inline: auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-flow__inner {
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-flow__label {
  display: inline-block;
  height: calc(20 * var(--to-rem));
}
.p-flow__title {
  margin-block-start: calc(35 * var(--to-rem));
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: calc(32 * var(--to-rem));
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: #f57c00;
}
@media screen and (max-width: 767px) {
  .p-flow__title {
    margin-block-start: calc(20 * var(--to-rem));
    font-size: calc(24 * var(--to-rem));
  }
}
.p-flow__lead {
  margin-block-start: calc(35 * var(--to-rem));
  margin-inline: auto;
  max-width: calc(700 * var(--to-rem));
  font-weight: var(--fw-medium);
  font-size: calc(18 * var(--to-rem));
  line-height: 1;
  letter-spacing: 0.1111em;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-flow__lead {
    margin-block-start: calc(20 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
  }
}
.p-flow__steps {
  display: flex;
  justify-content: center;
  gap: calc(30 * var(--to-rem));
  margin-block-start: calc(96 * var(--to-rem));
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-flow__steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(40 * var(--to-rem)) calc(20 * var(--to-rem));
    margin-block-start: calc(50 * var(--to-rem));
  }
}
@media screen and (max-width: 600px) {
  .p-flow__steps {
    grid-template-columns: 1fr;
    gap: calc(32 * var(--to-rem));
  }
}
.p-flow__step {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-flow__step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: calc(50 * var(--to-rem));
  right: calc(-30 * var(--to-rem));
  font-weight: 900;
  font-size: calc(32 * var(--to-rem));
  line-height: 1.125;
  color: #f68b1e;
}
@media screen and (max-width: 767px) {
  .p-flow__step:not(:last-child)::after {
    display: none;
  }
}
.p-flow__stepBadge {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(60 * var(--to-rem));
  height: calc(60 * var(--to-rem));
  border-radius: 50%;
  background-color: #f68b1e;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: calc(24 * var(--to-rem));
  line-height: 1;
  color: #ffffff;
}
.p-flow__stepTitle {
  margin-block-start: calc(25 * var(--to-rem));
  font-weight: var(--fw-medium);
  font-size: calc(18 * var(--to-rem));
  line-height: 1;
  letter-spacing: 0.1111em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-flow__stepTitle {
    font-size: calc(15 * var(--to-rem));
  }
}
.p-flow__stepDesc {
  margin-block-start: calc(29 * var(--to-rem));
  font-weight: var(--fw-medium);
  font-size: calc(13 * var(--to-rem));
  line-height: 1.6;
  letter-spacing: 0.1538em;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-flow__stepDesc {
    margin-block-start: calc(16 * var(--to-rem));
  }
}
.p-footer {
  background-color: #ffffff;
  padding-block: calc(80 * var(--to-rem));
  padding-inline: calc(64 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-block: calc(48 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-footer__inner {
  max-width: calc(1440 * var(--to-rem));
  margin-inline: auto;
}
.p-footer__main {
  display: flex;
  justify-content: space-between;
  gap: calc(64 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-footer__main {
    flex-direction: column;
    gap: calc(32 * var(--to-rem));
  }
}
.p-footer__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.p-footer__logoArea {
  display: flex;
  align-items: center;
  gap: calc(12 * var(--to-rem));
}
.p-footer__logoWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(64 * var(--to-rem));
  height: calc(64 * var(--to-rem));
  background-color: var(--color-brand-red);
  border-radius: calc(41 * var(--to-rem));
  flex-shrink: 0;
  overflow: hidden;
}
.p-footer__logoImg {
  width: calc(51 * var(--to-rem));
  height: calc(51 * var(--to-rem));
  border-radius: calc(41 * var(--to-rem));
  object-fit: cover;
}
.p-footer__companyName {
  font-family: var(--font-zen);
  font-weight: 500;
  font-size: calc(22 * var(--to-rem));
  line-height: 1;
  letter-spacing: -0.02em;
  color: #222222;
}
.p-footer__social {
  display: flex;
  justify-content: end;
  gap: calc(12 * var(--to-rem));
  margin-left: auto;
}
.p-footer__socialLink {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(24 * var(--to-rem));
  height: calc(24 * var(--to-rem));
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-footer__socialLink:hover {
    opacity: 0.7;
  }
}
.p-footer__socialLink svg {
  width: calc(24 * var(--to-rem));
  height: calc(24 * var(--to-rem));
}
.p-footer__navColumns {
  display: flex;
  gap: calc(32 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-footer__navColumns {
    flex-direction: column;
    gap: calc(32 * var(--to-rem));
  }
}
.p-footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: calc(32 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-footer__right {
    align-items: flex-start;
  }
}
.p-footer__navCol {
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
}
.p-footer__navHeading {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  color: #333333;
}
.p-footer__navList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
}
.p-footer__navLink {
  display: flex;
  align-items: center;
  gap: calc(8 * var(--to-rem));
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: calc(14 * var(--to-rem));
  line-height: 1.43;
  color: #333333;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-footer__navLink:hover {
    opacity: 0.7;
  }
}
.p-footer__navDot {
  width: calc(4 * var(--to-rem));
  height: calc(4 * var(--to-rem));
  border-radius: 50%;
  background-color: var(--color-brand-red);
  flex-shrink: 0;
}
.p-footer__credits {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: calc(80 * var(--to-rem));
  padding-top: calc(32 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-footer__credits {
    flex-direction: column;
    gap: calc(24 * var(--to-rem));
  }
}
.p-footer__copyright {
  font-family: var(--font-roboto);
  font-weight: 400;
  font-size: calc(14 * var(--to-rem));
  line-height: 1.6;
  color: #222222;
}
.p-footer__creditsLinks {
  display: flex;
  gap: calc(24 * var(--to-rem));
}
.p-footer__creditsLink {
  font-family: var(--font-roboto);
  font-weight: 400;
  font-size: calc(14 * var(--to-rem));
  line-height: 1.5;
  color: #222222;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-footer__creditsLink:hover {
    opacity: 0.7;
  }
}
.p-form {
  --_form-color-text: var(--color-text);
  --_form-color-bg: var(--color-white);
  --_form-color-badge-text: var(--color-white);
  --_form-color-badge-bg: var(--color-orange);
  --_form-color-accent: var(--color-accent);
  --_form-color-border: var(--color-border);
  --_form-color-primary: var(--color-primary);
  max-width: calc(800 * var(--to-rem));
  margin-inline: auto;
}
.p-form > * {
  margin-block-start: calc(40 * var(--to-rem));
}
.p-form > *:nth-last-child(2) {
  margin-block-start: calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-form > * {
    margin-block-start: calc(48 * var(--to-rem));
  }
  .p-form > *:nth-last-child(2) {
    margin-block-start: calc(24 * var(--to-rem));
  }
}
.p-form__item {
  display: grid;
  gap: calc(8 * var(--to-rem));
}
.p-form__label {
  display: block;
  color: var(--_form-color-text);
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-bold);
}
.p-form__label--required {
  position: relative;
  padding-inline-end: calc(50 * var(--to-rem));
}
.p-form__label--required::after {
  content: "必須";
  position: absolute;
  top: 50%;
  right: 0;
  padding-block: calc(8 * var(--to-rem));
  padding-inline: calc(16 * var(--to-rem));
  border-radius: 4px;
  background-color: var(--_form-color-badge-bg);
  color: var(--_form-color-badge-text);
  font-size: calc(12 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1;
  translate: 0 -50%;
}
.p-form__input,
.p-form__select,
.p-form__textarea {
  width: 100%;
  padding: calc(14 * var(--to-rem)) calc(16 * var(--to-rem));
  border: 1px solid var(--_form-color-border);
  border-radius: 8px;
  background-color: var(--_form-color-bg);
  color: var(--_form-color-text);
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.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);
}
@media screen and (max-width: 767px) {
  .p-form__input,
  .p-form__select,
  .p-form__textarea {
    padding: calc(16 * var(--to-rem)) calc(20 * var(--to-rem));
  }
}
.p-form__select {
  position: relative;
  padding-inline-end: calc(48 * var(--to-rem));
  cursor: pointer;
  appearance: none;
}
.p-form__select-wrap {
  position: relative;
}
.p-form__select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(16 * var(--to-rem));
  clip-path: var(--clip-triangle-bottom);
  width: calc(12 * var(--to-rem));
  height: calc(8 * var(--to-rem));
  border: none;
  background-color: var(--_form-color-primary);
  pointer-events: none;
  translate: 0 -50%;
}
.p-form__textarea {
  min-height: calc(160 * var(--to-rem));
}
.p-form__radio-group {
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-form__radio-group {
    flex-flow: row wrap;
    gap: calc(32 * var(--to-rem)) calc(40 * var(--to-rem));
  }
}
.p-form__radio {
  display: flex;
  flex-wrap: wrap;
  row-gap: calc(8 * var(--to-rem));
  align-items: center;
  cursor: pointer;
}
.p-form__radio input[type=radio] {
  position: relative;
  width: calc(20 * var(--to-rem));
  height: calc(20 * var(--to-rem));
  margin: 0;
  margin-inline-end: calc(16 * var(--to-rem));
  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: calc(8 * var(--to-rem));
  height: calc(8 * var(--to-rem));
  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: calc(16 * var(--to-rem));
  user-select: none;
}
.p-form__checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.p-form__checkbox input[type=checkbox] {
  position: relative;
  width: calc(20 * var(--to-rem));
  height: calc(20 * var(--to-rem));
  margin: 0;
  margin-inline-end: calc(8 * var(--to-rem));
  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: calc(2 * var(--to-rem));
  left: calc(5 * var(--to-rem));
  width: calc(6 * var(--to-rem));
  height: calc(10 * var(--to-rem));
  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: calc(16 * var(--to-rem));
  user-select: none;
}
.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__button-wrap {
  text-align: center;
}
.p-form__error {
  display: block;
  color: var(--_form-color-badge-bg);
  font-size: calc(14 * var(--to-rem));
}
.p-form__success {
  padding: calc(24 * var(--to-rem));
  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: calc(16 * var(--to-rem));
  text-align: center;
}
.p-form__radio .wpcf7-list-item-label,
.p-form__radio .wpcf7-li label {
  color: var(--_form-color-text);
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  user-select: none;
}
.p-form__checkbox .wpcf7-form-control-wrap,
.p-form__checkbox .wpcf7-form-control {
  display: flex;
  align-items: center;
}
.p-form__radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
}
.p-form__item .wpcf7-list-item {
  display: flex;
  align-items: center;
}
.p-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #f5f0f0;
}
.p-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: calc(40 * var(--to-rem));
  padding-block: calc(12 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem));
  max-width: calc(1440 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding: calc(8 * var(--to-rem)) calc(20 * var(--to-rem));
  }
}
.p-header__logo {
  flex-shrink: 0;
}
.p-header__logoLink {
  display: flex;
  align-items: center;
  gap: calc(12 * var(--to-rem));
  text-decoration: none;
  transition: opacity var(--duration) ease;
}
.p-header__logoLink:hover {
  opacity: 0.7;
}
.p-header__logoIcon {
  width: calc(64 * var(--to-rem));
  height: calc(64 * var(--to-rem));
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-header__logoIcon {
    width: calc(48 * var(--to-rem));
    height: calc(48 * var(--to-rem));
  }
}
.p-header__logoIcon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-header__logoText {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: var(--fw-medium);
  font-size: calc(22 * var(--to-rem));
  line-height: 1;
  letter-spacing: -0.02em;
  color: #222;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-header__logoText {
    display: none;
  }
}
.p-header__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: calc(16 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-header__right {
    display: none;
  }
}
.p-header__navList {
  display: flex;
  align-items: center;
  gap: calc(8 * var(--to-rem));
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-header__navLink {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: calc(20 * var(--to-rem));
  font-family: "Noto Sans JP", sans-serif;
  font-weight: var(--fw-bold);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.4285714286;
  color: #222;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--duration) ease;
}
.p-header__navLink:hover {
  color: #e7000b;
}
.p-header__cta {
  display: flex;
  align-items: center;
}
.p-header__ctaLink {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: calc(16 * var(--to-rem));
  height: calc(64 * var(--to-rem));
  font-family: "Roboto", sans-serif;
  font-weight: var(--fw-bold);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.6;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid #e7000b;
  transition: background-color var(--duration) ease, color var(--duration) ease;
}
.p-header__ctaLink--new {
  background-color: #fff;
  color: #e7000b;
  border-radius: 8px 0 0 8px;
}
.p-header__ctaLink--new:hover {
  background-color: #e7000b;
  color: #fff;
}
.p-header__ctaLink--career {
  background-color: #e7000b;
  color: #fff;
  border-radius: 0 8px 8px 0;
}
.p-header__ctaLink--career:hover {
  background-color: #fff;
  color: #e7000b;
}
.p-header__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: calc(6 * var(--to-rem));
    width: calc(48 * var(--to-rem));
    height: calc(48 * var(--to-rem));
    padding: calc(6 * var(--to-rem)) calc(3 * var(--to-rem));
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    z-index: 1000;
  }
}
.p-header__hamburgerBar {
  display: block;
  width: calc(18 * var(--to-rem));
  height: calc(2 * var(--to-rem));
  background-color: #e7000b;
  border-radius: calc(2 * var(--to-rem));
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.2s ease;
  transform-origin: center center;
}
.js-hamburger.is-open .p-header__hamburgerBar:nth-child(1) {
  transform: translateY(calc(8 * var(--to-rem))) rotate(45deg);
}
.js-hamburger.is-open .p-header__hamburgerBar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.js-hamburger.is-open .p-header__hamburgerBar:nth-child(3) {
  transform: translateY(calc(-8 * var(--to-rem))) rotate(-45deg);
}
.p-header__spCta {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__spCta {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: calc(16 * var(--to-rem));
    top: calc(419 * var(--to-rem));
    padding: calc(10 * var(--to-rem)) calc(20 * var(--to-rem));
    background-color: #e7000b;
    border: calc(2 * var(--to-rem)) solid #ffffff;
    border-radius: calc(60 * var(--to-rem));
    font-family: var(--font-roboto);
    font-weight: 700;
    font-size: calc(12 * var(--to-rem));
    line-height: 1.5;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    z-index: 100;
    box-shadow: 0 calc(2 * var(--to-rem)) calc(8 * var(--to-rem)) rgba(0, 0, 0, 0.15);
    transition: opacity var(--duration);
  }
}
@media (any-hover: hover) {
  .p-header__spCta:hover {
    opacity: 0.8;
  }
}
.p-drawer {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-drawer {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 800;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), visibility 0.35s, transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .p-drawer.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}
.p-drawer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  padding-block-start: calc(100 * var(--to-rem));
  padding-inline: calc(20 * var(--to-rem));
  gap: calc(40 * var(--to-rem));
}
.p-drawer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(8 * var(--to-rem));
}
.p-drawer__link {
  display: block;
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-bold);
  color: #222;
  text-decoration: none;
  padding: calc(16 * var(--to-rem));
  width: calc(260 * var(--to-rem));
  text-align: center;
  transition: color var(--duration) ease;
}
.p-drawer__link:hover {
  color: #e7000b;
}
.p-drawer__cta {
  display: flex;
  align-items: center;
}
.p-drawer__ctaLink {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: calc(14 * var(--to-rem));
  width: calc(130 * var(--to-rem));
  font-weight: var(--fw-bold);
  font-size: calc(14 * var(--to-rem));
  text-decoration: none;
  border: 2px solid #e7000b;
}
.p-drawer__ctaLink--new {
  background-color: #fff;
  color: #e7000b;
  border-radius: 8px 0 0 8px;
}
.p-drawer__ctaLink--career {
  background-color: #e7000b;
  color: #fff;
  border-radius: 0 8px 8px 0;
}
.p-interview {
  padding-block: calc(112 * var(--to-rem));
  padding-inline: calc(112 * var(--to-rem));
  background-color: #f9f9f9;
}
@media screen and (max-width: 767px) {
  .p-interview {
    padding: calc(64 * var(--to-rem)) calc(20 * var(--to-rem));
  }
}
.p-interview__inner {
  max-width: calc(1216 * var(--to-rem));
  margin-inline: auto;
}
.p-interview__layout {
  display: flex;
  align-items: start;
  gap: calc(80 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-interview__layout {
    flex-direction: column;
    gap: 0;
    filter: drop-shadow(0 calc(2 * var(--to-rem)) calc(8 * var(--to-rem)) rgba(0, 0, 0, 0.04));
  }
}
.p-interview__left {
  width: calc(520 * var(--to-rem));
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-interview__left {
    width: 100%;
    display: contents;
  }
}
@media screen and (max-width: 767px) {
  .p-interview__left2 {
    margin-top: calc(0 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-interview__titleBlock {
    order: 1;
    margin-bottom: calc(40 * var(--to-rem));
  }
}
.p-interview__taglineText {
  font-family: var(--font-lato);
  font-weight: 800;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-brand-red);
}
.p-interview__headingWrap {
  margin-top: calc(16 * var(--to-rem));
}
.p-interview__heading {
  font-family: var(--font-zen);
  font-weight: 700;
  font-size: calc(48 * var(--to-rem));
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-interview__heading {
    font-size: calc(36 * var(--to-rem));
  }
}
.p-interview__desc {
  margin-top: calc(24 * var(--to-rem));
  font-family: var(--font-roboto);
  font-weight: 400;
  font-size: calc(18 * var(--to-rem));
  line-height: 1.5;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-interview__desc {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-interview__btns {
  margin-top: calc(32 * var(--to-rem));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(16 * var(--to-rem));
}
.p-interview__btn {
  display: inline-flex;
  align-items: center;
  gap: calc(16 * var(--to-rem));
  padding-block: calc(12 * var(--to-rem));
  padding-inline: calc(24 * var(--to-rem));
  border: calc(1 * var(--to-rem)) solid #cccccc;
  border-radius: calc(50 * var(--to-rem));
  background-color: #ffffff;
  text-decoration: none;
  color: #222222;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-interview__btn2 {
    margin-top: calc(16 * var(--to-rem));
  }
}
@media (any-hover: hover) {
  .p-interview__btn:hover {
    opacity: 0.7;
  }
}
.p-interview__btnText {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
}
.p-interview__slider {
  margin-top: calc(48 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-interview__slider {
    margin-top: 0;
    order: 2;
    width: 100%;
    max-width: 100%;
    background-color: #ffffff;
    border-radius: calc(8 * var(--to-rem)) calc(8 * var(--to-rem)) 0 0;
    padding: calc(56 * var(--to-rem)) calc(16 * var(--to-rem)) calc(0 * var(--to-rem));
    overflow: hidden;
  }
}
.p-interview__swiper {
  width: 100%;
  border-radius: calc(24 * var(--to-rem));
  overflow: hidden;
}
.p-interview__slideImgWrap {
  width: 100%;
  height: calc(320 * var(--to-rem));
  overflow: hidden;
  border: calc(3 * var(--to-rem)) solid #cccccc;
  border-radius: calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-interview__slideImgWrap {
    height: calc(196 * var(--to-rem));
    border-width: calc(1.875 * var(--to-rem));
    border-radius: calc(15 * var(--to-rem));
  }
}
.p-interview__slideImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-interview__pagination {
  display: flex;
  justify-content: flex-start;
  gap: calc(8 * var(--to-rem));
  margin-top: calc(4 * var(--to-rem));
  padding-block: calc(8 * var(--to-rem));
  padding-inline: calc(16 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-interview__pagination {
    justify-content: flex-start;
  }
}
.p-interview__pagination .swiper-pagination-bullet {
  width: calc(8 * var(--to-rem));
  height: calc(8 * var(--to-rem));
  background-color: #d9d9d9;
  border-radius: 50%;
  opacity: 1;
  margin: 0;
}
.p-interview__pagination .swiper-pagination-bullet-active {
  background-color: var(--color-brand-red);
}
.p-interview__right {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-interview__right {
    width: 100%;
    order: 3;
    background-color: #ffffff;
    border-radius: 0 0 calc(8 * var(--to-rem)) calc(8 * var(--to-rem));
    padding: calc(0 * var(--to-rem)) calc(16 * var(--to-rem)) calc(56 * var(--to-rem));
  }
}
.p-interview__profiles {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.p-interview__profileCard {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  pointer-events: none;
}
.p-interview__profileCard.is-active {
  position: relative;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.p-interview__profileCard.is-prev {
  transform: translateY(-100%);
  opacity: 0;
}
.p-interview__article {
  padding: calc(56 * var(--to-rem));
  background-color: #ffffff;
  border-radius: calc(8 * var(--to-rem));
  box-shadow: 0 calc(2 * var(--to-rem)) calc(8 * var(--to-rem)) 0 rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 767px) {
  .p-interview__article {
    padding: calc(48 * var(--to-rem)) calc(0 * var(--to-rem)) calc(0 * var(--to-rem));
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    min-height: auto !important;
  }
}
@media screen and (max-width: 767px) {
  .p-interview__articleBody {
    display: none;
  }
}
.p-interview__articleHead {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: calc(32 * var(--to-rem));
  border-bottom: calc(1 * var(--to-rem)) solid #cccccc;
}
@media screen and (max-width: 767px) {
  .p-interview__articleHead {
    flex-direction: column;
    align-items: flex-start;
    gap: calc(8 * var(--to-rem));
  }
}
.p-interview__articleProfile {
  flex-shrink: 0;
}
.p-interview__articleMeta {
  display: flex;
  align-items: center;
  gap: calc(12 * var(--to-rem));
}
.p-interview__articleNum {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: calc(8 * var(--to-rem)) calc(8 * var(--to-rem));
  background-color: var(--color-brand-red);
  flex-shrink: 0;
  white-space: nowrap;
}
.p-interview__articleNumText {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: calc(10 * var(--to-rem));
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #ffffff;
}
.p-interview__articleRoleEn {
  width: 100%;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: calc(12 * var(--to-rem));
  line-height: 1.33;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666666;
}
.p-interview__articleName {
  margin-top: calc(12 * var(--to-rem));
  font-family: var(--font-noto);
  font-weight: 900;
  font-size: calc(30 * var(--to-rem));
  line-height: 1.2;
  letter-spacing: 0.025em;
  color: #222222;
}
.p-interview__articlePosition {
  margin-top: calc(8 * var(--to-rem));
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: calc(14 * var(--to-rem));
  line-height: 1.43;
  letter-spacing: 0.025em;
  color: #444444;
}
.p-interview__articleDate {
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: calc(12 * var(--to-rem));
  line-height: 1.33;
  letter-spacing: 0.05em;
  text-align: right;
  color: #666666;
}
.p-interview__articleBody {
  position: relative;
  margin-top: calc(32 * var(--to-rem));
  padding: calc(48 * var(--to-rem));
  display: flex;
  flex-direction: column;
  gap: calc(48 * var(--to-rem));
  background: rgba(249, 249, 249, 0.5);
  border: calc(1 * var(--to-rem)) solid #f2f3f5;
  border-radius: calc(4 * var(--to-rem));
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-interview__articleBody {
    display: none;
  }
}
.p-interview__articleKeywordLabel {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: calc(10 * var(--to-rem));
  line-height: 1.8;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: left;
  color: #666666;
}
.p-interview__articleKanji {
  width: calc(128 * var(--to-rem));
  margin-top: calc(16 * var(--to-rem));
  padding: calc(16 * var(--to-rem));
  background-color: #ffffff;
  border: calc(1 * var(--to-rem)) solid #f5f5f5;
  border-radius: calc(2 * var(--to-rem));
  box-shadow: 0 calc(1 * var(--to-rem)) calc(2 * var(--to-rem)) 0 rgba(0, 0, 0, 0.05);
  text-align: center;
}
.p-interview__articleKanjiChar {
  font-family: var(--font-zen);
  font-weight: 500;
  font-size: calc(32 * var(--to-rem));
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--color-brand-red);
}
.p-interview__articleContent {
  display: flex;
  flex-direction: column;
  gap: calc(24 * var(--to-rem));
}
.p-interview__articleQuote {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: calc(20 * var(--to-rem));
  line-height: 1.625;
  letter-spacing: 0.06em;
  color: #222222;
}
.p-interview__articleDecide {
  display: flex;
  flex-direction: column;
  gap: calc(12 * var(--to-rem));
  padding: calc(4 * var(--to-rem)) 0 calc(4 * var(--to-rem)) calc(24 * var(--to-rem));
  border-left: calc(2 * var(--to-rem)) solid rgba(231, 0, 11, 0.2);
}
.p-interview__articleDecideLabel {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: calc(14 * var(--to-rem));
  line-height: 1.43;
  letter-spacing: 0.025em;
  color: #222222;
}
.p-interview__articleDecideText {
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: calc(14 * var(--to-rem));
  line-height: 2;
  letter-spacing: 0.0457em;
  color: #444444;
}
.p-interview__articleDot {
  position: absolute;
  top: calc(-192 * var(--to-rem));
  right: calc(-130 * var(--to-rem));
  width: calc(325 * var(--to-rem));
  height: calc(325 * var(--to-rem));
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-interview__articleDot {
    display: none;
  }
}
.p-interview__articleDotImgWrap {
  width: 100%;
  height: 100%;
}
.p-interview__articleDotImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-interview__articleIcon {
  position: absolute;
  top: calc(34 * var(--to-rem));
  left: calc(29 * var(--to-rem));
  width: calc(21 * var(--to-rem));
  height: calc(15 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-interview__articleIcon {
    display: none;
  }
}
.p-interview__articleIconImgWrap {
  width: 100%;
  height: 100%;
}
.p-interview__articleIconImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-interview__articleBgSvg {
  position: absolute;
  top: calc(-192 * var(--to-rem));
  right: calc(-130 * var(--to-rem));
  width: calc(325 * var(--to-rem));
  height: calc(325 * var(--to-rem));
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-interview__articleBgSvg {
    display: none;
  }
}
.p-interview__articleBgSvgImgWrap {
  width: 100%;
  height: 100%;
}
.p-interview__articleBgSvgImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-interviewHero {
  position: relative;
  overflow: hidden;
}
.p-interviewHero__inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f9f9f9;
}
.p-interviewHero__content {
  position: relative;
  z-index: 1;
  max-width: calc(1264 * var(--to-rem));
  width: 100%;
  padding-block: calc(120 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-interviewHero__content {
    padding-block: calc(48 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-interviewHero__tagline {
  font-family: var(--font-lato);
  font-weight: 800;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-brand-red);
}
.p-interviewHero__title {
  margin-top: calc(12 * var(--to-rem));
  font-family: var(--font-zen);
  font-weight: var(--fw-bold);
  font-size: calc(48 * var(--to-rem));
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-text-main);
}
@media screen and (max-width: 767px) {
  .p-interviewHero__title {
    font-size: calc(36 * var(--to-rem));
  }
}
.p-interviewHero__bgText {
  position: absolute;
  right: 0;
  bottom: calc(-93 * var(--to-rem));
  font-family: var(--font-lato);
  font-weight: 800;
  font-size: calc(160 * var(--to-rem));
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-brand-red);
  opacity: 0.1;
  pointer-events: none;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-interviewHero__bgText {
    font-size: calc(48 * var(--to-rem));
    left: calc(65 * var(--to-rem));
    bottom: auto;
    top: calc(129 * var(--to-rem));
    right: auto;
  }
}
.p-interviewHero__breadcrumb {
  padding-block: calc(16 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem));
  max-width: calc(1264 * var(--to-rem));
  margin-inline: auto;
  background-color: #fff;
  border-bottom: 1px solid #f0f0f0;
}
@media screen and (max-width: 767px) {
  .p-interviewHero__breadcrumb {
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-interviewHero__breadcrumbInner {
  display: flex;
  align-items: center;
  gap: calc(8 * var(--to-rem));
}
.p-interviewHero__breadcrumbLink {
  font-size: calc(14 * var(--to-rem));
  line-height: 1.43;
  color: #aaaaaa;
  text-decoration: none;
}
.p-interviewHero__breadcrumbSep {
  font-size: calc(14 * var(--to-rem));
  color: #cccccc;
}
.p-interviewHero__breadcrumbCurrent {
  font-weight: 500;
  font-size: calc(14 * var(--to-rem));
  line-height: 1.43;
  color: #222222;
}
.p-interviewPage {
  padding-block: calc(96 * var(--to-rem));
  padding-inline: calc(112 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-interviewPage {
    padding-block: calc(64 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-interviewPage__inner {
  max-width: calc(1216 * var(--to-rem));
  margin-inline: auto;
}
.p-interviewPage__filters {
  display: flex;
  justify-content: center;
  gap: calc(32 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-interviewPage__filters {
    display: none;
  }
}
.p-interviewPage__filterTab {
  display: flex;
  align-items: center;
  gap: calc(16 * var(--to-rem));
  padding: calc(32 * var(--to-rem));
  width: calc(341 * var(--to-rem));
  background-color: #ffffff;
  border: calc(1 * var(--to-rem)) solid #e5e7eb;
  border-radius: calc(8 * var(--to-rem));
  box-shadow: 0 calc(2 * var(--to-rem)) calc(8 * var(--to-rem)) 0 rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: box-shadow 0.3s;
}
.p-interviewPage__filterTab:hover {
  box-shadow: 0 calc(4 * var(--to-rem)) calc(16 * var(--to-rem)) 0 rgba(0, 0, 0, 0.08);
}
.p-interviewPage__filterDot {
  width: calc(8 * var(--to-rem));
  height: calc(8 * var(--to-rem));
  border-radius: 50%;
  background-color: #e7000b;
  flex-shrink: 0;
}
.p-interviewPage__filterLabel {
  font-weight: 700;
  font-size: calc(20 * var(--to-rem));
  line-height: 1.4;
  color: #222222;
}
.p-interviewPage__articles {
  margin-top: calc(96 * var(--to-rem));
}
.p-interviewPage__article {
  padding: calc(56 * var(--to-rem));
  background-color: #ffffff;
  border-radius: calc(8 * var(--to-rem));
  box-shadow: 0 calc(2 * var(--to-rem)) calc(8 * var(--to-rem)) 0 rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 767px) {
  .p-interviewPage__article {
    padding: calc(32 * var(--to-rem)) calc(16 * var(--to-rem));
  }
}
.p-interviewPage__article + .p-interviewPage__article {
  margin-top: calc(64 * var(--to-rem));
}
.p-interviewPage__articleHead {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: calc(32 * var(--to-rem));
  border-bottom: calc(1 * var(--to-rem)) solid #cccccc;
}
@media screen and (max-width: 767px) {
  .p-interviewPage__articleHead {
    flex-direction: column;
    align-items: stretch;
    gap: calc(8 * var(--to-rem));
  }
}
.p-interviewPage__articleHeadLeft {
  display: flex;
  align-items: flex-end;
  gap: calc(48 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-interviewPage__articleHeadLeft {
    flex-direction: column;
    align-items: stretch;
    gap: calc(16 * var(--to-rem));
  }
}
.p-interviewPage__articlePhoto {
  display: block;
  width: calc(318 * var(--to-rem));
  height: calc(196 * var(--to-rem));
  object-fit: cover;
  border-radius: calc(15 * var(--to-rem));
  border: calc(1.875 * var(--to-rem)) solid #cccccc;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-interviewPage__articlePhoto {
    width: 100%;
    height: auto;
    aspect-ratio: 318/196;
  }
}
.p-interviewPage__articleMeta {
  display: flex;
  align-items: center;
  gap: calc(12 * var(--to-rem));
}
.p-interviewPage__articleNum {
  padding-block: calc(2 * var(--to-rem));
  padding-inline: calc(8 * var(--to-rem));
  background-color: #e7000b;
  font-weight: 700;
  font-size: calc(10 * var(--to-rem));
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #ffffff;
}
.p-interviewPage__articleRoleEn {
  font-weight: 700;
  font-size: calc(12 * var(--to-rem));
  line-height: 1.33;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666666;
}
.p-interviewPage__articleName {
  margin-top: calc(8 * var(--to-rem));
  font-weight: 900;
  font-size: calc(30 * var(--to-rem));
  line-height: 1.2;
  letter-spacing: 0.025em;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-interviewPage__articleName {
    font-size: calc(24 * var(--to-rem));
  }
}
.p-interviewPage__articlePosition {
  margin-top: calc(4 * var(--to-rem));
  font-weight: 500;
  font-size: calc(14 * var(--to-rem));
  line-height: 1.43;
  letter-spacing: 0.025em;
  color: #444444;
}
.p-interviewPage__articleDate {
  font-size: calc(12 * var(--to-rem));
  line-height: 1.33;
  letter-spacing: 0.05em;
  color: #666666;
  text-align: right;
}
.p-interviewPage__articleBody {
  position: relative;
  margin-top: calc(48 * var(--to-rem));
  padding: calc(48 * var(--to-rem));
  background-color: rgba(249, 249, 249, 0.5);
  border: calc(1 * var(--to-rem)) solid #f2f3f5;
  border-radius: calc(4 * var(--to-rem));
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-interviewPage__articleBody {
    padding: calc(32 * var(--to-rem)) calc(16 * var(--to-rem));
  }
}
.p-interviewPage__articleKeywordLabel {
  font-weight: 700;
  font-size: calc(10 * var(--to-rem));
  line-height: 1.8;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  color: #666666;
}
.p-interviewPage__articleKanji {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(128 * var(--to-rem));
  height: calc(128 * var(--to-rem));
  margin-top: calc(16 * var(--to-rem));
  margin-inline: auto;
  background-color: #ffffff;
  border: calc(1 * var(--to-rem)) solid #f5f5f5;
  border-radius: calc(2 * var(--to-rem));
  box-shadow: 0 calc(1 * var(--to-rem)) calc(2 * var(--to-rem)) 0 rgba(0, 0, 0, 0.05);
}
.p-interviewPage__articleKanjiChar {
  font-family: var(--font-zen);
  font-weight: 500;
  font-size: calc(32 * var(--to-rem));
  line-height: 1;
  letter-spacing: 0.02em;
  color: #e7000b;
}
.p-interviewPage__articleQuote {
  margin-top: calc(48 * var(--to-rem));
  font-weight: 700;
  font-size: calc(20 * var(--to-rem));
  line-height: 1.6;
  color: #222222;
}
.p-interviewPage__articleQA {
  display: flex;
  gap: calc(48 * var(--to-rem));
  margin-top: calc(48 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-interviewPage__articleQA {
    flex-direction: column;
    gap: calc(0 * var(--to-rem));
  }
}
.p-interviewPage__articleQAGroup {
  flex: 1;
}
.p-interviewPage__articleQAItem {
  padding-left: calc(24 * var(--to-rem));
  border-left: calc(2 * var(--to-rem)) solid rgba(231, 0, 11, 0.2);
}
.p-interviewPage__articleQAItem + .p-interviewPage__articleQAItem {
  margin-top: calc(32 * var(--to-rem));
}
.p-interviewPage__articleQAItem--last {
  border-left-color: #d1d5db;
}
.p-interviewPage__articleQuestion {
  font-weight: 700;
  font-size: calc(14 * var(--to-rem));
  line-height: 1.6;
  color: #222222;
}
.p-interviewPage__articleAnswer {
  margin-top: calc(12 * var(--to-rem));
  font-size: calc(14 * var(--to-rem));
  line-height: 2;
  letter-spacing: 0.046em;
  color: #444444;
}
.p-interviewPage__articleDot {
  position: absolute;
  top: calc(-48 * var(--to-rem));
  right: calc(-48 * var(--to-rem));
  width: calc(320 * var(--to-rem));
  height: calc(320 * var(--to-rem));
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-interviewPage__articleDot {
    display: none;
  }
}
.p-interviewPage__articleDotImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-interviewPage__articleIcon {
  position: absolute;
  bottom: calc(24 * var(--to-rem));
  right: calc(24 * var(--to-rem));
  width: calc(21 * var(--to-rem));
  height: calc(15 * var(--to-rem));
  pointer-events: none;
}
.p-interviewPage__articleIconImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-interviewPage__articleBgSvg {
  position: absolute;
  bottom: calc(-40 * var(--to-rem));
  right: calc(-40 * var(--to-rem));
  width: calc(325 * var(--to-rem));
  height: calc(325 * var(--to-rem));
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-interviewPage__articleBgSvg {
    display: none;
  }
}
.p-interviewPage__articleBgSvgImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-interviewInsights {
  padding-block: calc(96 * var(--to-rem));
  padding-inline: calc(112 * var(--to-rem));
  background-color: #f9f9f9;
  border: calc(1 * var(--to-rem)) solid #f2f3f5;
  border-radius: calc(4 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-interviewInsights {
    padding-block: calc(64 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-interviewInsights__inner {
  max-width: calc(1216 * var(--to-rem));
  margin-inline: auto;
}
.p-interviewInsights__tagline {
  font-family: var(--font-lato);
  font-weight: 700;
  font-size: calc(14 * var(--to-rem));
  line-height: 1.43;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e7000b;
}
.p-interviewInsights__heading {
  margin-top: calc(16 * var(--to-rem));
  font-weight: 700;
  font-size: calc(30 * var(--to-rem));
  line-height: 1.47;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-interviewInsights__heading {
    font-size: calc(24 * var(--to-rem));
  }
}
.p-interviewInsights__cards {
  display: flex;
  gap: calc(24 * var(--to-rem));
  margin-top: calc(64 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-interviewInsights__cards {
    flex-direction: column;
    margin-top: calc(32 * var(--to-rem));
  }
}
.p-interviewInsights__card {
  flex: 1;
  padding: calc(32 * var(--to-rem));
  background-color: #ffffff;
  border: calc(1 * var(--to-rem)) solid #e5e7eb;
  border-radius: calc(8 * var(--to-rem));
  box-shadow: 0 calc(2 * var(--to-rem)) calc(8 * var(--to-rem)) 0 rgba(0, 0, 0, 0.04);
}
.p-interviewInsights__cardIconWrap {
  width: calc(48 * var(--to-rem));
  height: calc(48 * var(--to-rem));
}
.p-interviewInsights__cardIcon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-interviewInsights__cardTitle {
  margin-top: calc(24 * var(--to-rem));
  font-weight: 700;
  font-size: calc(20 * var(--to-rem));
  line-height: 1.4;
  color: #222222;
}
.p-interviewInsights__cardText {
  margin-top: calc(12 * var(--to-rem));
  font-size: calc(14 * var(--to-rem));
  line-height: 2;
  letter-spacing: 0.046em;
  color: #444444;
}
.p-interviewVoice {
  padding-block: calc(96 * var(--to-rem));
  background-color: #ffffff;
}
.p-interviewVoice__inner {
  max-width: calc(1280 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-interviewVoice__inner {
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-interviewVoice__titleBlock {
  text-align: center;
}
.p-interviewVoice__tagline {
  font-family: var(--font-lato);
  font-weight: 800;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  text-transform: uppercase;
  color: #e60013;
}
.p-interviewVoice__heading {
  margin-top: calc(16 * var(--to-rem));
  font-family: var(--font-zen);
  font-weight: 700;
  font-size: calc(40 * var(--to-rem));
  line-height: 1.2;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-interviewVoice__heading {
    font-size: calc(28 * var(--to-rem));
  }
}
.p-interviewVoice__cloudGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(24 * var(--to-rem));
  margin-top: calc(96 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-interviewVoice__cloudGrid {
    grid-template-columns: 1fr;
    gap: calc(16 * var(--to-rem));
    margin-top: calc(80 * var(--to-rem));
  }
}
.p-interviewVoice__cloudItem {
  display: block;
  width: 100%;
}
.p-interviewVoice__cloudItem--full {
  grid-column: 1/-1;
}
.p-interviewVoice__cloudImg {
  display: block;
  width: 100%;
  height: auto;
}
.p-jobs {
  padding-block: calc(100 * var(--to-rem));
  background-color: #fef5ee;
}
@media screen and (max-width: 767px) {
  .p-jobs {
    padding-block: calc(60 * var(--to-rem));
  }
}
.p-jobs__inner {
  max-width: calc(1200 * var(--to-rem));
  padding-inline: calc(20 * var(--to-rem));
  margin-inline: auto;
  text-align: center;
}
.p-jobs__label {
  display: inline-block;
  height: calc(20 * var(--to-rem));
}
.p-jobs__title {
  margin-block-start: calc(35 * var(--to-rem));
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: calc(32 * var(--to-rem));
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: #f57c00;
}
@media screen and (max-width: 767px) {
  .p-jobs__title {
    margin-block-start: calc(20 * var(--to-rem));
    font-size: calc(24 * var(--to-rem));
  }
}
.p-jobs__filter {
  margin-block-start: calc(35 * var(--to-rem));
  margin-inline: auto;
  max-width: calc(700 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-jobs__filter {
    margin-block-start: calc(20 * var(--to-rem));
  }
}
.p-jobs__filterLabel {
  font-weight: var(--fw-medium);
  font-size: calc(18 * var(--to-rem));
  line-height: 1;
  letter-spacing: 0.1111em;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-jobs__filterLabel {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-jobs__filterButtons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(20 * var(--to-rem));
  margin-block-start: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-jobs__filterButtons {
    margin-block-start: calc(24 * var(--to-rem));
    gap: calc(12 * var(--to-rem));
  }
}
.p-jobs__filterBtn {
  height: calc(45 * var(--to-rem));
  padding-inline: calc(20 * var(--to-rem));
  border-radius: calc(20 * var(--to-rem));
  background-color: #c6ecd2;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: calc(18 * var(--to-rem));
  line-height: 1;
  color: #666666;
  cursor: pointer;
  border: none;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-jobs__filterBtn {
    font-size: calc(14 * var(--to-rem));
    height: calc(38 * var(--to-rem));
  }
}
@media (any-hover: hover) {
  .p-jobs__filterBtn:hover {
    opacity: 0.7;
  }
}
.p-jobs__cards {
  display: flex;
  gap: calc(40 * var(--to-rem));
  margin-block-start: calc(96 * var(--to-rem));
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-jobs__cards {
    flex-direction: column;
    margin-block-start: calc(50 * var(--to-rem));
    gap: calc(32 * var(--to-rem));
    margin-block-start: calc(40 * var(--to-rem));
  }
}
.p-jobs__card {
  flex: 1;
  border-radius: calc(12 * var(--to-rem));
  background-color: #ffffff;
  border: 2px solid #eeeeee;
  box-shadow: 0 calc(4 * var(--to-rem)) calc(4 * var(--to-rem)) rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.p-jobs__cardImage {
  width: 100%;
  height: calc(250 * var(--to-rem));
  overflow: hidden;
}
.p-jobs__cardImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-jobs__cardImage {
    height: calc(180 * var(--to-rem));
  }
}
.p-jobs__cardBody {
  display: flex;
  flex-direction: column;
  gap: calc(20 * var(--to-rem));
  padding-block: calc(40 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-jobs__cardBody {
    padding-block: calc(24 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
    gap: calc(16 * var(--to-rem));
  }
}
.p-jobs__cardTitle {
  font-weight: var(--fw-medium);
  font-size: calc(24 * var(--to-rem));
  line-height: 1;
  letter-spacing: 0.0833em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-jobs__cardTitle {
    font-size: calc(18 * var(--to-rem));
  }
}
.p-jobs__cardDesc {
  font-weight: var(--fw-medium);
  font-size: calc(16 * var(--to-rem));
  line-height: 1;
  letter-spacing: 0.125em;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-jobs__cardDesc {
    font-size: calc(13 * var(--to-rem));
  }
}
.p-jobs__cardDetails {
  display: flex;
  flex-direction: column;
  gap: calc(10 * var(--to-rem));
  padding-block-start: calc(10 * var(--to-rem));
  padding-block-end: calc(15 * var(--to-rem));
}
.p-jobs__cardRow {
  display: flex;
  gap: calc(10 * var(--to-rem));
}
.p-jobs__cardTerm {
  min-width: calc(70 * var(--to-rem));
  font-weight: var(--fw-medium);
  font-size: calc(13 * var(--to-rem));
  line-height: 1;
  letter-spacing: 0.1538em;
  color: #999999;
}
.p-jobs__cardData {
  flex: 1;
  font-weight: var(--fw-medium);
  font-size: calc(13 * var(--to-rem));
  line-height: 1;
  letter-spacing: 0.1538em;
  color: #666666;
}
.p-jobs__cardBtn {
  display: block;
  padding-block: calc(15 * var(--to-rem));
  border-radius: calc(8 * var(--to-rem));
  background-color: #f68b1e;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: calc(24 * var(--to-rem));
  line-height: 1.79;
  text-align: center;
  color: #ffffff;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-jobs__cardBtn {
    font-size: calc(18 * var(--to-rem));
  }
}
@media (any-hover: hover) {
  .p-jobs__cardBtn:hover {
    opacity: 0.7;
  }
}
.p-mv {
  position: relative;
  width: 100%;
  margin-top: calc(120 * var(--to-rem));
  overflow: hidden;
}
.p-mv .swiper-wrapper {
  transition-timing-function: linear;
}
.p-mv__sliderTop {
  width: 100%;
  height: calc(255 * var(--to-rem));
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-mv__sliderTop {
    height: calc(160 * var(--to-rem));
  }
}
.p-mv__sliderBottom {
  width: 100%;
  height: calc(255 * var(--to-rem));
  margin-top: calc(12 * var(--to-rem));
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-mv__sliderBottom {
    height: calc(160 * var(--to-rem));
    margin-top: calc(8 * var(--to-rem));
  }
}
.p-mv__slideTop {
  width: calc(312 * var(--to-rem));
  height: 100%;
  border-radius: calc(16 * var(--to-rem));
  overflow: hidden;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-mv__slideTop {
    width: calc(240 * var(--to-rem));
    border-radius: calc(12 * var(--to-rem));
  }
}
.p-mv__slideBottom {
  width: calc(312 * var(--to-rem));
  height: 100%;
  border-radius: calc(16 * var(--to-rem));
  overflow: hidden;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-mv__slideBottom {
    width: calc(240 * var(--to-rem));
    border-radius: calc(12 * var(--to-rem));
  }
}
.p-mv__slideImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-mv__overlay {
  max-width: calc(1280 * var(--to-rem) + 40 * var(--to-rem) * 2);
  margin-top: calc(30 * var(--to-rem));
  margin-inline: auto;
  padding-inline: calc(40 * var(--to-rem));
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-mv__overlay {
    padding-inline: calc(12 * var(--to-rem));
  }
}
.p-mv__overTop {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: calc(-82 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-mv__overTop {
    margin-top: calc(-50 * var(--to-rem));
  }
}
.p-mv__logoWrap {
  width: calc(260 * var(--to-rem));
  height: calc(112 * var(--to-rem));
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-mv__logoWrap {
    width: calc(140 * var(--to-rem));
    height: calc(60 * var(--to-rem));
  }
}
.p-mv__logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-mv__logo {
    display: none;
  }
}
.p-mv__pill {
  width: calc(475 * var(--to-rem));
  padding-block: calc(16 * var(--to-rem));
  background-color: var(--color-brand-red);
  border: calc(4 * var(--to-rem)) solid #ffffff;
  border-radius: calc(60 * var(--to-rem));
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-mv__pill {
    display: none;
  }
}
.p-mv__pillText {
  font-family: var(--font-roboto);
  font-weight: 700;
  font-size: calc(20 * var(--to-rem));
  line-height: 1.4;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-mv__pillText {
    font-size: calc(13 * var(--to-rem));
  }
}
.p-mv__component {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: calc(24 * var(--to-rem));
  margin-top: calc(0 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-mv__component {
    margin-top: calc(14 * var(--to-rem));
    flex-direction: column;
    align-items: stretch;
    gap: calc(24 * var(--to-rem));
  }
}
.p-mv__heading {
  flex: 1;
  min-width: 0;
}
.p-mv__catchSub {
  font-family: var(--font-zen);
  font-weight: 900;
  font-size: calc(40 * var(--to-rem));
  line-height: 1.2;
  letter-spacing: -0.0875em;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-mv__catchSub {
    font-size: calc(20 * var(--to-rem));
  }
}
.p-mv__catchMainWrap {
  position: relative;
  margin-top: calc(8 * var(--to-rem));
  font-family: var(--font-zen);
  font-weight: 900;
  font-size: calc(96 * var(--to-rem));
  line-height: 1.2;
  letter-spacing: calc(1.125 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-mv__catchMainWrap {
    font-size: calc(48 * var(--to-rem));
    margin-top: calc(4 * var(--to-rem));
  }
}
.p-mv__catchRed {
  color: var(--color-brand-red);
}
.p-mv__catchBlack {
  color: #222222;
}
.p-mv__catchExclaim {
  font-size: calc(104 * var(--to-rem));
  line-height: 1;
  letter-spacing: -0.0144em;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-mv__catchExclaim {
    font-size: calc(72 * var(--to-rem));
    display: inline-block;
    vertical-align: bottom;
    transform: rotate(20deg);
  }
}
.p-mv__headingBar {
  width: 100%;
  height: calc(8 * var(--to-rem));
  margin-top: calc(0 * var(--to-rem));
  background-color: var(--color-brand-red);
}
@media screen and (max-width: 767px) {
  .p-mv__headingBar {
    height: calc(4 * var(--to-rem));
  }
}
.p-mv__cta {
  display: flex;
  gap: calc(16 * var(--to-rem));
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-mv__cta {
    justify-content: center;
    gap: calc(16 * var(--to-rem));
  }
}
.p-mv__ctaBtn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: calc(240 * var(--to-rem));
  height: calc(60 * var(--to-rem));
  padding-inline: calc(24 * var(--to-rem));
  border-radius: calc(60 * var(--to-rem));
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: calc(18 * var(--to-rem));
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-mv__ctaBtn {
    width: calc(160 * var(--to-rem));
    height: calc(48 * var(--to-rem));
    padding-inline: calc(16 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
  }
}
@media (any-hover: hover) {
  .p-mv__ctaBtn:hover {
    opacity: 0.8;
  }
}
.p-mv__ctaBtn--primary {
  background-color: var(--color-brand-red);
  color: #ffffff;
}
.p-mv__ctaBtn--secondary {
  background-color: #ffffff;
  border: calc(1 * var(--to-rem)) solid #666666;
  color: #222222;
}
.p-news-list {
  padding-block: calc(48 * var(--to-rem)) calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-news-list {
    padding-block: calc(40 * var(--to-rem)) calc(60 * var(--to-rem));
  }
}
.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;
  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);
}
.p-news-list__item {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.p-news-list__item:not(:last-child) {
  border-bottom: 1px solid var(--color-gray);
}
@media (any-hover: hover) {
  .p-news-list__item:hover {
    background-color: oklch(from var(--color-gray) l c h/50%);
  }
}
.p-news-list__card {
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--to-rem));
  padding: calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-news-list__card {
    gap: calc(12 * var(--to-rem));
    padding: calc(32 * var(--to-rem));
  }
}
.p-news-list__meta {
  display: flex;
  gap: calc(8 * var(--to-rem));
  align-items: center;
  color: var(--color-border-gray);
  font-size: calc(12 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-news-list__meta {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-news-list__separator {
  color: var(--color-border-gray);
}
.p-news-list__content {
  display: flex;
  gap: calc(16 * var(--to-rem));
  justify-content: space-between;
  align-items: center;
}
.p-news-list__main {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: calc(8 * var(--to-rem));
}
.p-news-list__card .p-news-list__title {
  margin: 0;
  color: var(--color-text);
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-news-list__card .p-news-list__title {
    font-size: calc(18 * var(--to-rem));
  }
}
.p-news-list__excerpt {
  color: var(--color-border-gray);
  font-size: calc(13 * var(--to-rem));
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-news-list__excerpt {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-news-list__arrow {
  flex-shrink: 0;
  width: calc(20 * var(--to-rem));
  height: calc(20 * var(--to-rem));
  color: var(--color-border-gray);
  transition: color 0.2s ease, transform 0.2s ease;
}
.p-news-list__arrow svg {
  width: 100%;
  height: 100%;
}
.p-news-list__item:hover .p-news-list__arrow {
  color: var(--color-text);
  transform: translateX(calc(4 * var(--to-rem)));
}
.p-news-list__empty {
  padding: calc(60 * var(--to-rem));
  border-radius: 10px;
  box-shadow: 0 1px 3px oklch(from var(--color-black) l c h/10%), 0 1px 2px oklch(from var(--color-black) l c h/10%);
  background-color: var(--color-white);
  color: var(--color-border-gray);
  font-size: calc(16 * var(--to-rem));
  text-align: center;
}
.p-news-list__empty p {
  margin: 0;
}
.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-philosophy {
  padding-block: calc(100 * var(--to-rem));
  background-color: #fef5ee;
}
@media screen and (max-width: 767px) {
  .p-philosophy {
    padding-block: calc(60 * var(--to-rem));
  }
}
.p-philosophy__inner {
  width: 100%;
  max-width: calc(1280 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem));
  margin-inline: auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-philosophy__inner {
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-philosophy__label {
  display: inline-block;
  height: calc(19 * var(--to-rem));
}
.p-philosophy__title {
  margin-block-start: calc(35 * var(--to-rem));
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: calc(32 * var(--to-rem));
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: #f57c00;
}
@media screen and (max-width: 767px) {
  .p-philosophy__title {
    margin-block-start: calc(20 * var(--to-rem));
    font-size: calc(24 * var(--to-rem));
  }
}
.p-philosophy__lead {
  margin-block-start: calc(35 * var(--to-rem));
  margin-inline: auto;
  max-width: calc(700 * var(--to-rem));
  font-weight: var(--fw-medium);
  font-size: calc(18 * var(--to-rem));
  line-height: 1.8;
  letter-spacing: 0.1111em;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-philosophy__lead {
    margin-block-start: calc(20 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
  }
}
.p-philosophy__cards {
  display: flex;
  justify-content: center;
  gap: calc(60 * var(--to-rem));
  margin-block-start: calc(96 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-philosophy__cards {
    margin-block-start: calc(50 * var(--to-rem));
    flex-direction: column;
    gap: calc(40 * var(--to-rem));
  }
}
.p-philosophy__card {
  flex: 1;
  max-width: calc(346 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-philosophy__card {
    max-width: 100%;
    width: 100%;
  }
}
.p-philosophy__cardIcon {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: calc(100 * var(--to-rem));
}
.p-philosophy__cardIcon img {
  max-height: 100%;
  object-fit: contain;
}
.p-philosophy__cardTitle {
  margin-block-start: calc(30 * var(--to-rem));
  font-weight: var(--fw-medium);
  font-size: calc(24 * var(--to-rem));
  line-height: 1;
  letter-spacing: 0.0833em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-philosophy__cardTitle {
    font-size: calc(20 * var(--to-rem));
  }
}
.p-philosophy__cardText {
  margin-block-start: calc(32 * var(--to-rem));
  font-weight: var(--fw-medium);
  font-size: calc(13 * var(--to-rem));
  line-height: 1.8;
  letter-spacing: 0.1538em;
  color: #666666;
}
.p-child-instructor {
  display: flex;
  justify-content: center;
  padding-block: calc(60 * var(--to-rem)) calc(80 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-child-instructor {
    padding-block: calc(40 * var(--to-rem)) calc(60 * var(--to-rem));
  }
}
.p-child-instructor__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: calc(840 * var(--to-rem));
  padding-inline: calc(20 * var(--to-rem));
}
.p-child-instructor__label {
  display: inline-block;
  padding: calc(7 * var(--to-rem)) calc(24 * var(--to-rem));
  background-color: #f68b1e;
  border-radius: 4px;
  font-weight: var(--fw-medium);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.8;
  color: var(--color-white);
}
.p-child-instructor__heading {
  margin-top: calc(43 * var(--to-rem));
  width: 100%;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: calc(32 * var(--to-rem));
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: var(--color-orange);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-child-instructor__heading {
    font-size: calc(24 * var(--to-rem));
    margin-top: calc(28 * var(--to-rem));
  }
}
.p-child-instructor__text {
  margin-top: calc(46 * var(--to-rem));
  font-weight: var(--fw-medium);
  font-size: calc(18 * var(--to-rem));
  line-height: 1.8;
  letter-spacing: 0.1111em;
  color: #666666;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-child-instructor__text {
    font-size: calc(14 * var(--to-rem));
    margin-top: calc(28 * var(--to-rem));
  }
}
.p-child-instructor__tags {
  margin-top: calc(56 * var(--to-rem));
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(10 * var(--to-rem));
  width: 100%;
}
.p-child-instructor__tag {
  display: inline-block;
  padding: calc(7 * var(--to-rem)) calc(16 * var(--to-rem));
  background-color: #c6ecd2;
  border-radius: calc(20 * var(--to-rem));
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: calc(13 * var(--to-rem));
  line-height: 1.8;
  color: #666666;
}
.p-child-instructor__hero-image {
  margin-top: calc(35 * var(--to-rem));
  width: 100%;
  min-height: calc(404 * var(--to-rem));
  border-radius: calc(20 * var(--to-rem));
  overflow: hidden;
}
.p-child-instructor__hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-child-instructor__hero-image {
    min-height: calc(220 * var(--to-rem));
  }
}
.p-child-instructor__buttons {
  margin-top: calc(66 * var(--to-rem));
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-child-instructor__buttons {
    gap: calc(12 * var(--to-rem));
    margin-top: calc(46 * var(--to-rem));
  }
}
.p-child-instructor__btn {
  display: inline-block;
  padding: calc(18 * var(--to-rem)) calc(50 * var(--to-rem));
  border-radius: 999px;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: calc(16 * var(--to-rem));
  line-height: 2;
  text-align: center;
  transition: background-color var(--duration), color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-child-instructor__btn {
    width: 100%;
    max-width: calc(280 * var(--to-rem));
    padding: calc(14 * var(--to-rem)) calc(40 * var(--to-rem));
  }
}
.p-child-instructor__btn--apply {
  background-color: var(--color-white);
  border: 2px solid #f68b1e;
  color: #f68b1e;
}
.p-child-instructor__btn--line {
  background-color: #06c755;
  border: 2px solid #06c755;
  color: var(--color-white);
}
@media (any-hover: hover) {
  .p-child-instructor__btn--apply:hover {
    background-color: #f68b1e;
    color: #ffffff;
  }
  .p-child-instructor__btn--line:hover {
    background-color: #ffffff;
    color: #06c755;
  }
}
.p-candidate-profile {
  padding-top: calc(129 * var(--to-rem));
  padding-bottom: calc(80 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-candidate-profile {
    padding-top: calc(60 * var(--to-rem));
    padding-bottom: calc(40 * var(--to-rem));
  }
}
.p-candidate-profile__bg-wrap {
  position: relative;
  overflow: hidden;
  max-width: calc(1480 * var(--to-rem));
  margin-inline: auto;
  padding-inline: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-candidate-profile__bg-wrap {
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-candidate-profile__bg-wrap::before {
  content: "";
  position: absolute;
  bottom: calc(183 * var(--to-rem));
  left: calc(0 * var(--to-rem));
  width: calc(200 * var(--to-rem));
  height: calc(200 * var(--to-rem));
  background-image: url("../mikan-orange-left.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-candidate-profile__bg-wrap::before {
    left: calc(-30 * var(--to-rem));
    width: calc(120 * var(--to-rem));
    height: calc(120 * var(--to-rem));
  }
}
.p-candidate-profile__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(60 * var(--to-rem));
  width: 100%;
  max-width: calc(840 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-candidate-profile__inner {
    gap: calc(40 * var(--to-rem));
  }
}
.p-candidate-profile__heading {
  width: 100%;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: calc(32 * var(--to-rem));
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: var(--color-orange);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-candidate-profile__heading {
    font-size: calc(24 * var(--to-rem));
  }
}
.p-candidate-profile__list {
  width: 100%;
  max-width: calc(600 * var(--to-rem));
  list-style: none;
}
.p-candidate-profile__item {
  position: relative;
  padding: calc(20 * var(--to-rem)) 0 calc(20 * var(--to-rem)) calc(30 * var(--to-rem));
  font-weight: var(--fw-medium);
  font-size: calc(16 * var(--to-rem));
  line-height: 1.6;
  letter-spacing: 0.125em;
  color: #333333;
}
.p-candidate-profile__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(28 * var(--to-rem));
  width: calc(6 * var(--to-rem));
  height: calc(6 * var(--to-rem));
  background-color: #f68b1e;
  border-radius: 3px;
}
.p-facility-info {
  background-color: #fef5ee;
  padding-block: calc(79 * var(--to-rem));
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-facility-info {
    padding-block: calc(50 * var(--to-rem));
  }
}
.p-facility-info__inner {
  display: flex;
  flex-direction: column;
  gap: calc(60 * var(--to-rem));
  width: 100%;
  max-width: calc(840 * var(--to-rem));
  padding-inline: calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-facility-info__inner {
    gap: calc(40 * var(--to-rem));
  }
}
.p-facility-info__heading {
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: calc(32 * var(--to-rem));
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: var(--color-orange);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-facility-info__heading {
    font-size: calc(24 * var(--to-rem));
  }
}
.p-facility-info__body {
  display: flex;
  align-items: center;
  gap: calc(61 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-facility-info__body {
    flex-direction: column;
    gap: calc(40 * var(--to-rem));
  }
}
.p-facility-info__text-block {
  display: flex;
  flex-direction: column;
  gap: calc(40 * var(--to-rem));
  flex: 1;
  min-width: 0;
  max-width: calc(443 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-facility-info__text-block {
    max-width: 100%;
  }
}
.p-facility-info__name {
  font-weight: var(--fw-medium);
  font-size: calc(18 * var(--to-rem));
  line-height: 1.6;
  letter-spacing: 0.1111em;
  color: #333333;
}
.p-facility-info__paragraphs {
  display: flex;
  flex-direction: column;
  gap: calc(30 * var(--to-rem));
}
.p-facility-info__text {
  font-weight: var(--fw-medium);
  font-size: calc(16 * var(--to-rem));
  line-height: 1.8;
  letter-spacing: 0.125em;
  color: #666666;
}
.p-facility-info__image {
  flex: 1;
  min-width: 0;
  border-radius: calc(20 * var(--to-rem));
  overflow: hidden;
}
.p-facility-info__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}
@media screen and (max-width: 767px) {
  .p-facility-info__image img {
    aspect-ratio: 16/9;
  }
}
.p-job-description {
  padding-block: calc(80 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-job-description {
    padding-block: calc(50 * var(--to-rem));
  }
}
.p-job-description__bg-wrap {
  position: relative;
  overflow: hidden;
  max-width: calc(1416 * var(--to-rem));
  margin-inline: auto;
  padding-inline: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-job-description__bg-wrap {
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-job-description__bg-wrap::after {
  content: "";
  position: absolute;
  top: calc(50 * var(--to-rem));
  right: calc(0 * var(--to-rem));
  width: calc(200 * var(--to-rem));
  height: calc(200 * var(--to-rem));
  background-image: url("../mikan-orange-right.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-job-description__bg-wrap::after {
    right: calc(-30 * var(--to-rem));
    width: calc(120 * var(--to-rem));
    height: calc(120 * var(--to-rem));
  }
}
.p-job-description__bg-wrap::before {
  content: "";
  position: absolute;
  bottom: calc(169 * var(--to-rem));
  left: calc(0 * var(--to-rem));
  width: calc(200 * var(--to-rem));
  height: calc(200 * var(--to-rem));
  background-image: url("../mikan-orange-left.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-job-description__bg-wrap::before {
    left: calc(-30 * var(--to-rem));
    width: calc(120 * var(--to-rem));
    height: calc(120 * var(--to-rem));
  }
}
.p-job-description__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(80 * var(--to-rem));
  width: 100%;
  max-width: calc(840 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-job-description__inner {
    gap: calc(50 * var(--to-rem));
  }
}
.p-job-description__heading {
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: calc(32 * var(--to-rem));
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: var(--color-orange);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-job-description__heading {
    font-size: calc(24 * var(--to-rem));
  }
}
.p-job-description__body {
  display: flex;
  flex-direction: column;
  gap: calc(52 * var(--to-rem));
  width: 100%;
  max-width: calc(700 * var(--to-rem));
}
.p-job-description__section {
  display: flex;
  flex-direction: column;
  gap: calc(52 * var(--to-rem));
}
.p-job-description__subtitle {
  padding-left: calc(15 * var(--to-rem));
  border-left: 4px solid #f68b1e;
  font-weight: var(--fw-medium);
  font-size: calc(24 * var(--to-rem));
  line-height: 1.4;
  letter-spacing: 0.0833em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-job-description__subtitle {
    font-size: calc(18 * var(--to-rem));
  }
}
.p-job-description__list {
  list-style: none;
  padding-bottom: calc(30 * var(--to-rem));
}
.p-job-description__item {
  position: relative;
  padding: calc(15 * var(--to-rem)) 0 calc(15 * var(--to-rem)) calc(25 * var(--to-rem));
  font-weight: var(--fw-medium);
  font-size: calc(16 * var(--to-rem));
  line-height: 1.6;
  letter-spacing: 0.125em;
  color: #333333;
}
.p-job-description__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(23 * var(--to-rem));
  width: calc(6 * var(--to-rem));
  height: calc(6 * var(--to-rem));
  background-color: #f68b1e;
  border-radius: 3px;
}
.p-job-description__schedule {
  background-color: #fef5ee;
  border-radius: calc(8 * var(--to-rem));
  padding: calc(59 * var(--to-rem)) calc(40 * var(--to-rem)) calc(40 * var(--to-rem));
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-job-description__schedule {
    padding: calc(24 * var(--to-rem)) calc(20 * var(--to-rem));
  }
}
.p-job-description__schedule-row {
  display: flex;
  gap: calc(30 * var(--to-rem));
  padding: calc(34 * var(--to-rem)) 0 calc(34 * var(--to-rem));
  border-bottom: 1px solid #f0e5d8;
}
.p-job-description__schedule-row:first-child {
  padding-top: 0;
}
.p-job-description__schedule-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-job-description__schedule-row {
    gap: calc(16 * var(--to-rem));
  }
}
.p-job-description__schedule-time {
  flex-shrink: 0;
  min-width: calc(120 * var(--to-rem));
  font-weight: var(--fw-medium);
  font-size: calc(16 * var(--to-rem));
  line-height: 1.6;
  letter-spacing: 0.125em;
  color: #f68b1e;
}
@media screen and (max-width: 767px) {
  .p-job-description__schedule-time {
    min-width: calc(100 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
  }
}
.p-job-description__schedule-task {
  font-weight: var(--fw-medium);
  font-size: calc(16 * var(--to-rem));
  line-height: 1.6;
  letter-spacing: 0.125em;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-job-description__schedule-task {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-job-description__note {
  font-weight: var(--fw-medium);
  font-size: calc(16 * var(--to-rem));
  line-height: 1.8;
  letter-spacing: 0.125em;
  color: #666666;
  text-align: center;
}
.p-work-appeal {
  display: flex;
  justify-content: center;
  padding-block: calc(80 * var(--to-rem));
  padding-inline: calc(20 * var(--to-rem));
  background: #FEF5EE;
}
@media screen and (max-width: 767px) {
  .p-work-appeal {
    padding-block: calc(50 * var(--to-rem));
  }
}
.p-work-appeal__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(60 * var(--to-rem));
  width: 100%;
  max-width: calc(840 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-work-appeal__inner {
    gap: calc(40 * var(--to-rem));
  }
}
.p-work-appeal__heading {
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: calc(32 * var(--to-rem));
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: var(--color-orange);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-work-appeal__heading {
    font-size: calc(24 * var(--to-rem));
  }
}
.p-work-appeal__list {
  display: flex;
  flex-direction: column;
  gap: calc(99 * var(--to-rem));
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-work-appeal__list {
    gap: calc(50 * var(--to-rem));
  }
}
.p-work-appeal__item {
  display: flex;
  flex-direction: column;
  gap: calc(30 * var(--to-rem));
}
.p-work-appeal__subtitle {
  font-weight: var(--fw-medium);
  font-size: calc(24 * var(--to-rem));
  line-height: 1.4;
  letter-spacing: 0.0833em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-work-appeal__subtitle {
    font-size: calc(18 * var(--to-rem));
  }
}
.p-work-appeal__text {
  font-weight: var(--fw-medium);
  font-size: calc(16 * var(--to-rem));
  line-height: 1.8;
  letter-spacing: 0.125em;
  color: #666666;
}
.p-training-support {
  display: flex;
  justify-content: center;
  padding-block: calc(80 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-training-support {
    padding-block: calc(50 * var(--to-rem));
  }
}
.p-training-support__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(56 * var(--to-rem));
  max-width: calc(880 * var(--to-rem));
  margin-inline: auto;
  padding-inline: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-training-support__inner {
    padding-inline: calc(20 * var(--to-rem));
    gap: calc(40 * var(--to-rem));
  }
}
.p-training-support__heading {
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: calc(32 * var(--to-rem));
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: var(--color-orange);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-training-support__heading {
    font-size: calc(24 * var(--to-rem));
  }
}
.p-training-support__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(30 * var(--to-rem));
  width: 100%;
}
.p-training-support__sub-heading {
  font-weight: var(--fw-medium);
  font-size: calc(18 * var(--to-rem));
  line-height: 1.6;
  letter-spacing: 0.1111em;
  color: #999999;
  text-align: center;
}
.p-training-support__timeline {
  display: flex;
  justify-content: center;
  gap: calc(30 * var(--to-rem));
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-training-support__timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(16 * var(--to-rem));
  }
}
.p-training-support__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(38 * var(--to-rem));
  flex: 1;
  max-width: calc(178 * var(--to-rem));
  padding-block: calc(29 * var(--to-rem));
  background-color: #fef5ee;
  border-radius: calc(8 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-training-support__card {
    max-width: 100%;
    gap: calc(20 * var(--to-rem));
    padding: calc(20 * var(--to-rem)) calc(16 * var(--to-rem));
  }
}
.p-training-support__week {
  font-weight: var(--fw-medium);
  font-size: calc(16 * var(--to-rem));
  line-height: 1.6;
  letter-spacing: 0.125em;
  color: #f68b1e;
  text-align: center;
}
.p-training-support__card-title {
  font-weight: var(--fw-medium);
  font-size: calc(16 * var(--to-rem));
  line-height: 1.6;
  letter-spacing: 0.125em;
  color: #333333;
  text-align: center;
}
.p-training-support__card-caption {
  font-weight: var(--fw-medium);
  font-size: calc(13 * var(--to-rem));
  line-height: 1.6;
  letter-spacing: 0.1538em;
  color: #666666;
  text-align: center;
}
.p-training-support__image {
  width: 100%;
  border-radius: calc(20 * var(--to-rem));
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.p-training-support__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 800/415;
}
@media screen and (max-width: 767px) {
  .p-training-support__image img {
    aspect-ratio: 16/9;
  }
}
.p-training-support__list {
  list-style: none;
  width: 100%;
  max-width: calc(600 * var(--to-rem));
}
.p-training-support__item {
  position: relative;
  padding: calc(15 * var(--to-rem)) 0 calc(15 * var(--to-rem)) calc(25 * var(--to-rem));
  font-weight: var(--fw-medium);
  font-size: calc(16 * var(--to-rem));
  line-height: 1.6;
  letter-spacing: 0.125em;
  color: #333333;
}
.p-training-support__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(23 * var(--to-rem));
  width: calc(6 * var(--to-rem));
  height: calc(6 * var(--to-rem));
  background-color: #f68b1e;
  border-radius: 3px;
}
.p-job-requirements {
  padding-block: calc(79 * var(--to-rem)) calc(119 * var(--to-rem));
  background-color: #fef5ee;
}
@media screen and (max-width: 767px) {
  .p-job-requirements {
    padding-block: calc(50 * var(--to-rem)) calc(60 * var(--to-rem));
  }
}
.p-job-requirements__bg-wrap {
  position: relative;
  overflow: hidden;
  max-width: calc(1606 * var(--to-rem));
  margin-inline: auto;
  padding-inline: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-job-requirements__bg-wrap {
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-job-requirements__bg-wrap::after {
  content: "";
  position: absolute;
  top: calc(92 * var(--to-rem));
  right: calc(0 * var(--to-rem));
  width: calc(233 * var(--to-rem));
  height: calc(233 * var(--to-rem));
  background-image: url("../mikan-orange-right.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-job-requirements__bg-wrap::after {
    left: 0;
    top: calc(40 * var(--to-rem));
    width: calc(120 * var(--to-rem));
    height: calc(120 * var(--to-rem));
  }
}
.p-job-requirements__bg-wrap::before {
  content: "";
  position: absolute;
  bottom: calc(0 * var(--to-rem));
  left: calc(0 * var(--to-rem));
  width: calc(244 * var(--to-rem));
  height: calc(244 * var(--to-rem));
  background-image: url("../mikan-orange-left.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-job-requirements__bg-wrap::before {
    left: calc(-30 * var(--to-rem));
    width: calc(120 * var(--to-rem));
    height: calc(120 * var(--to-rem));
  }
}
.p-job-requirements__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(60 * var(--to-rem));
  width: 100%;
  max-width: calc(840 * var(--to-rem));
  margin-inline: auto;
  padding-inline: calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-job-requirements__inner {
    gap: calc(40 * var(--to-rem));
  }
}
.p-job-requirements__heading {
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: calc(32 * var(--to-rem));
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: var(--color-orange);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-job-requirements__heading {
    font-size: calc(24 * var(--to-rem));
  }
}
.p-job-requirements__table {
  width: 100%;
}
.p-job-requirements__row {
  display: flex;
  border-bottom: 1px solid #eeeeee;
}
@media screen and (max-width: 767px) {
  .p-job-requirements__row {
    flex-direction: column;
  }
}
.p-job-requirements__cell {
  flex-shrink: 0;
  width: calc(180 * var(--to-rem));
  padding: calc(19 * var(--to-rem)) calc(20 * var(--to-rem)) calc(20 * var(--to-rem));
  background-color: #fef5ee;
  font-weight: var(--fw-medium);
  font-size: calc(16 * var(--to-rem));
  line-height: 1;
  letter-spacing: 0.125em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-job-requirements__cell {
    width: 100%;
    padding: calc(16 * var(--to-rem)) calc(16 * var(--to-rem)) calc(8 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
    font-weight: var(--fw-bold);
  }
}
.p-job-requirements__data {
  flex: 1;
  padding: calc(19 * var(--to-rem)) calc(20 * var(--to-rem)) calc(20 * var(--to-rem));
  font-weight: var(--fw-medium);
  font-size: calc(16 * var(--to-rem));
  line-height: 1.8;
  letter-spacing: 0.125em;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-job-requirements__data {
    padding: calc(8 * var(--to-rem)) calc(16 * var(--to-rem)) calc(16 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
  }
}
.p-recruit-voice {
  display: flex;
  justify-content: center;
  padding-block: calc(80 * var(--to-rem));
  padding-inline: calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-recruit-voice {
    padding-block: calc(50 * var(--to-rem));
  }
}
.p-recruit-voice__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(60 * var(--to-rem));
  max-width: calc(1280 * var(--to-rem));
  margin-inline: auto;
  padding-inline: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-recruit-voice__inner {
    padding-inline: calc(20 * var(--to-rem));
    gap: calc(40 * var(--to-rem));
  }
}
.p-recruit-voice__heading {
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: calc(32 * var(--to-rem));
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: var(--color-orange);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit-voice__heading {
    font-size: calc(24 * var(--to-rem));
  }
}
.p-recruit-voice__cards {
  display: flex;
  justify-content: center;
  gap: calc(50 * var(--to-rem));
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .p-recruit-voice__cards {
    gap: calc(40 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-voice__cards {
    flex-direction: column;
    align-items: center;
    gap: calc(40 * var(--to-rem));
  }
}
.p-recruit-voice__card {
  width: calc(324 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit-voice__card {
    width: 100%;
    max-width: calc(280 * var(--to-rem));
  }
}
.p-recruit-voice__photo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(240 * var(--to-rem));
  height: calc(250 * var(--to-rem));
  margin-inline: auto;
  background-color: #f5f5f5;
  border-radius: calc(20 * var(--to-rem));
  overflow: hidden;
}
.p-recruit-voice__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-recruit-voice__photo-placeholder {
  font-weight: 350;
  font-size: calc(13 * var(--to-rem));
  line-height: 1.8;
  color: #999999;
}
.p-recruit-voice__role {
  margin-block-start: calc(19 * var(--to-rem));
  font-weight: var(--fw-medium);
  font-size: calc(13 * var(--to-rem));
  line-height: 1;
  letter-spacing: 0.1538em;
  color: #999999;
  text-align: center;
}
.p-recruit-voice__text {
  margin-block-start: calc(27 * var(--to-rem));
  font-weight: var(--fw-medium);
  font-size: calc(16 * var(--to-rem));
  line-height: 1.8;
  letter-spacing: 0.125em;
  color: #666666;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-recruit-voice__text {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-recruit-flow {
  padding-block: calc(79 * var(--to-rem));
  background-color: #fef5ee;
}
@media screen and (max-width: 767px) {
  .p-recruit-flow {
    padding-block: calc(50 * var(--to-rem));
  }
}
.p-recruit-flow__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(60 * var(--to-rem));
  max-width: calc(940 * var(--to-rem));
  margin-inline: auto;
  padding-inline: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-recruit-flow__inner {
    padding-inline: calc(20 * var(--to-rem));
    gap: calc(40 * var(--to-rem));
  }
}
.p-recruit-flow__heading {
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: calc(32 * var(--to-rem));
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: var(--color-orange);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit-flow__heading {
    font-size: calc(24 * var(--to-rem));
  }
}
.p-recruit-flow__steps {
  display: flex;
  justify-content: center;
  gap: calc(27 * var(--to-rem));
  list-style: none;
  padding: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-recruit-flow__steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(40 * var(--to-rem)) calc(20 * var(--to-rem));
  }
}
@media screen and (max-width: 600px) {
  .p-recruit-flow__steps {
    grid-template-columns: 1fr;
    gap: calc(32 * var(--to-rem));
  }
}
.p-recruit-flow__step {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(34 * var(--to-rem));
  max-width: calc(185 * var(--to-rem));
  background-color: #fef5ee;
  border-radius: calc(8 * var(--to-rem));
  text-align: center;
}
.p-recruit-flow__step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 54%;
  right: calc(-24 * var(--to-rem));
  transform: translateY(-50%);
  font-weight: 900;
  font-size: calc(32 * var(--to-rem));
  color: #f68b1e;
}
@media screen and (max-width: 767px) {
  .p-recruit-flow__step:not(:last-child)::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-flow__step {
    max-width: 100%;
  }
}
.p-recruit-flow__badge {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(60 * var(--to-rem));
  height: calc(60 * var(--to-rem));
  border-radius: 50%;
  background-color: #f68b1e;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: calc(24 * var(--to-rem));
  line-height: 1;
  color: #ffffff;
}
.p-recruit-flow__title {
  font-weight: var(--fw-medium);
  font-size: calc(16 * var(--to-rem));
  line-height: 1;
  letter-spacing: 0.125em;
  color: #333333;
  text-align: center;
}
.p-recruit-flow__caption {
  font-weight: var(--fw-medium);
  font-size: calc(13 * var(--to-rem));
  line-height: 1.8;
  letter-spacing: 0.1538em;
  color: #666666;
  text-align: center;
}
.p-recruit-faq {
  display: flex;
  justify-content: center;
  padding-block: calc(80 * var(--to-rem)) calc(40 * var(--to-rem));
  padding-inline: calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-recruit-faq {
    padding-block: calc(50 * var(--to-rem)) calc(30 * var(--to-rem));
  }
}
.p-recruit-faq__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(59 * var(--to-rem));
  max-width: calc(880 * var(--to-rem));
  margin-inline: auto;
  padding-inline: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-recruit-faq__inner {
    padding-inline: calc(20 * var(--to-rem));
    gap: calc(40 * var(--to-rem));
  }
}
.p-recruit-faq__heading {
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: calc(32 * var(--to-rem));
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: var(--color-orange);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit-faq__heading {
    font-size: calc(24 * var(--to-rem));
  }
}
.p-recruit-faq__list {
  display: flex;
  flex-direction: column;
  gap: calc(39 * var(--to-rem));
  width: 100%;
  max-width: calc(700 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-recruit-faq__list {
    gap: calc(28 * var(--to-rem));
  }
}
.p-recruit-faq__item {
  display: flex;
  flex-direction: column;
  gap: calc(15 * var(--to-rem));
}
.p-recruit-faq__question {
  position: relative;
  padding-left: calc(30 * var(--to-rem));
}
.p-recruit-faq__q-label {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: var(--fw-bold);
  font-size: calc(16 * var(--to-rem));
  line-height: 1.8;
  font-family: "Noto Sans JP";
  color: #f68b1e;
}
.p-recruit-faq__q-text {
  font-weight: var(--fw-medium);
  font-size: calc(16 * var(--to-rem));
  line-height: 1.8;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-recruit-faq__q-text {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-recruit-faq__answer {
  position: relative;
  padding-left: calc(30 * var(--to-rem));
}
.p-recruit-faq__a-label {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: var(--fw-bold);
  font-size: calc(15 * var(--to-rem));
  line-height: 2;
  color: #333333;
}
.p-recruit-faq__a-text {
  font-weight: 350;
  font-size: calc(15 * var(--to-rem));
  line-height: 2;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-recruit-faq__a-text {
    font-size: calc(13 * var(--to-rem));
  }
}
.p-recruit-cta {
  background-color: #fef5ee;
  padding-block: calc(80 * var(--to-rem)) calc(129 * var(--to-rem));
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-recruit-cta {
    padding-block: calc(50 * var(--to-rem)) calc(60 * var(--to-rem));
  }
}
.p-recruit-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(50 * var(--to-rem));
  width: 100%;
  max-width: calc(840 * var(--to-rem));
  padding-inline: calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-recruit-cta__inner {
    gap: calc(36 * var(--to-rem));
  }
}
.p-recruit-cta__text {
  font-weight: var(--fw-medium);
  font-size: calc(18 * var(--to-rem));
  line-height: 1.8;
  letter-spacing: 0.1111em;
  color: #333333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit-cta__text {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-recruit-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-recruit-cta__buttons {
    gap: calc(12 * var(--to-rem));
  }
}
.p-recruit-cta__btn {
  display: inline-block;
  padding: calc(18 * var(--to-rem)) calc(50 * var(--to-rem));
  border-radius: 999px;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: calc(16 * var(--to-rem));
  line-height: 2;
  text-align: center;
  transition: background-color var(--duration), color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-recruit-cta__btn {
    width: 100%;
    max-width: calc(280 * var(--to-rem));
    padding: calc(14 * var(--to-rem)) calc(40 * var(--to-rem));
  }
}
.p-recruit-cta__btn--apply {
  background-color: var(--color-white);
  border: 2px solid #f68b1e;
  color: #f68b1e;
}
.p-recruit-cta__btn--line {
  background-color: #06c755;
  border: 2px solid #06c755;
  color: var(--color-white);
}
@media (any-hover: hover) {
  .p-recruit-cta__btn--apply:hover {
    background-color: #f68b1e;
    color: #ffffff;
  }
  .p-recruit-cta__btn--line:hover {
    background-color: #ffffff;
    color: #06c755;
  }
}
.p-recruit-access {
  display: flex;
  justify-content: center;
  padding-block: calc(80 * var(--to-rem));
  padding-inline: calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-recruit-access {
    padding-block: calc(50 * var(--to-rem));
  }
}
.p-recruit-access__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(60 * var(--to-rem));
  max-width: calc(1416 * var(--to-rem));
  margin-inline: auto;
  padding-inline: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-recruit-access__inner {
    gap: calc(40 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-recruit-access__heading {
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: calc(32 * var(--to-rem));
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: var(--color-orange);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit-access__heading {
    font-size: calc(24 * var(--to-rem));
  }
}
.p-recruit-access__locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(52 * var(--to-rem));
}
@media screen and (max-width: 1023px) {
  .p-recruit-access__locations {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-access__locations {
    grid-template-columns: 1fr;
    gap: calc(50 * var(--to-rem));
  }
}
.p-recruit-access__location {
  display: flex;
  flex-direction: column;
  gap: calc(75 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-recruit-access__location {
    flex-direction: column;
    gap: calc(24 * var(--to-rem));
  }
}
.p-recruit-access__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
}
.p-recruit-access__name {
  font-weight: var(--fw-medium);
  font-size: calc(20 * var(--to-rem));
  line-height: 1.8;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-recruit-access__name {
    font-size: calc(18 * var(--to-rem));
  }
}
.p-recruit-access__address {
  font-weight: 350;
  font-size: calc(15 * var(--to-rem));
  line-height: 2;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-recruit-access__address {
    white-space: normal;
  }
}
.p-recruit-access__contact {
  font-weight: 350;
  font-size: calc(15 * var(--to-rem));
  line-height: 2;
  color: #666666;
}
.p-recruit-access__contact span {
  color: #00E;
}
.p-recruit-access__map {
  flex: 0 0 calc(370 * var(--to-rem));
  aspect-ratio: 1/1;
  border-radius: calc(20 * var(--to-rem));
  overflow: hidden;
}
.p-recruit-access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}
@media screen and (max-width: 767px) {
  .p-recruit-access__map {
    flex: none;
    width: 100%;
    aspect-ratio: 4/3;
  }
}
.p-recruit-footer {
  display: flex;
  flex-direction: column;
  gap: calc(29 * var(--to-rem));
  padding-block-start: calc(60 * var(--to-rem));
  padding-block-end: calc(40 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem));
  background-color: #2e8b57;
}
@media screen and (max-width: 767px) {
  .p-recruit-footer {
    padding-block-start: calc(48 * var(--to-rem));
    padding-block-end: calc(32 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-recruit-footer__info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-recruit-footer__text {
  font-weight: var(--fw-medium);
  font-size: calc(15 * var(--to-rem));
  line-height: calc(30 * var(--to-rem));
  letter-spacing: 0.125em;
  color: var(--color-white);
  text-align: center;
}
.p-recruit-footer__text span {
  color: #00E;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .p-recruit-footer__text {
    font-size: calc(13 * var(--to-rem));
  }
}
.p-recruit-footer__bottom {
  text-align: center;
}
.p-recruit-footer__copyright {
  font-weight: var(--fw-medium);
  font-size: calc(13 * var(--to-rem));
  line-height: 1;
  letter-spacing: 0.1538em;
  color: rgba(255, 255, 255, 0.5);
}
.p-recruitContainer {
  padding-block: calc(160 * var(--to-rem));
  padding-inline: calc(112 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-recruitContainer {
    padding-block: calc(64 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-recruitContainer__inner {
  display: flex;
  flex-direction: column;
  gap: calc(160 * var(--to-rem));
  max-width: calc(1216 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-recruitContainer__inner {
    gap: calc(128 * var(--to-rem));
  }
}
.p-recruitSection {
  display: flex;
  flex-direction: column;
  gap: calc(48 * var(--to-rem));
}
.p-recruitSection__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: calc(32 * var(--to-rem));
  border-bottom: 1px solid #e0e0e0;
}
.p-recruitSection__headerContent {
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
}
.p-recruitSection__badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: calc(4 * var(--to-rem)) calc(24 * var(--to-rem));
  border-radius: calc(50 * var(--to-rem));
  font-family: var(--font-lato);
  font-weight: 800;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  text-transform: uppercase;
}
.p-recruitSection__badge--new {
  background-color: #d7000f;
  color: #fff;
}
.p-recruitSection__badge--mid {
  background-color: #fff;
  color: var(--color-brand-red);
  border: 1px solid var(--color-brand-red);
}
.p-recruitSection__heading {
  font-family: var(--font-zen);
  font-weight: var(--fw-bold);
  font-size: calc(40 * var(--to-rem));
  line-height: 1.2;
  color: var(--color-text-main);
}
@media screen and (max-width: 767px) {
  .p-recruitSection__heading {
    font-size: calc(32 * var(--to-rem));
  }
}
.p-recruitTable {
  display: flex;
  flex-direction: column;
  border: 1px solid #e0e0e0;
  border-radius: calc(16 * var(--to-rem));
  background-color: #fff;
  box-shadow: 0 calc(1 * var(--to-rem)) calc(2 * var(--to-rem)) rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.p-recruitTable__row {
  display: flex;
  flex-direction: column;
}
.p-recruitTable__row + .p-recruitTable__row {
  border-top: 2px solid #fff;
}
.p-recruitTable__term {
  display: flex;
  align-items: center;
  padding: calc(16 * var(--to-rem)) calc(32 * var(--to-rem));
  background-color: #f9f9f9;
  font-family: var(--font-noto);
  font-weight: var(--fw-bold);
  font-size: calc(16 * var(--to-rem));
  line-height: 1.8;
  color: var(--color-text-main);
}
@media screen and (max-width: 767px) {
  .p-recruitTable__term {
    padding: calc(8 * var(--to-rem)) calc(24 * var(--to-rem));
  }
}
.p-recruitTable__data {
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--to-rem));
  padding: calc(24 * var(--to-rem)) calc(32 * var(--to-rem));
  border-left: 1px solid #e0e0e0;
  font-family: var(--font-noto);
  font-weight: var(--fw-regular);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.4285714286;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-recruitTable__data {
    padding: calc(24 * var(--to-rem)) calc(16 * var(--to-rem));
    border-left: none;
  }
}
.p-recruitTable__jobTitle {
  font-family: var(--font-noto);
  font-weight: var(--fw-bold);
  font-size: calc(18 * var(--to-rem));
  line-height: 1.5555555556;
  color: #333;
}
.p-recruitTable__jobDesc {
  font-family: var(--font-noto);
  font-weight: var(--fw-regular);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.4285714286;
  color: #444;
}
.p-recruitTable__benefitsList {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-recruitTable__benefitItem {
  display: flex;
  align-items: center;
  gap: calc(8 * var(--to-rem));
  font-family: var(--font-noto);
  font-weight: var(--fw-regular);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.4285714286;
  color: var(--color-text-main);
}
.p-recruitTable__benefitItem + .p-recruitTable__benefitItem {
  margin-top: calc(12 * var(--to-rem));
}
.p-recruitTable__benefitIcon {
  flex-shrink: 0;
  width: calc(15 * var(--to-rem));
  height: calc(15 * var(--to-rem));
  color: var(--color-brand-red);
}
.p-recruitFlow {
  padding-block: calc(96 * var(--to-rem));
  padding-inline: calc(112 * var(--to-rem));
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-recruitFlow {
    padding-block: calc(64 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-recruitFlow__inner {
  display: flex;
  flex-direction: column;
  gap: calc(80 * var(--to-rem));
  max-width: calc(1216 * var(--to-rem));
  margin-inline: auto;
}
.p-recruitFaq {
  padding-block: calc(96 * var(--to-rem));
  padding-inline: calc(112 * var(--to-rem));
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-recruitFaq {
    padding-block: calc(64 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-recruitFaq__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(80 * var(--to-rem));
  max-width: calc(1216 * var(--to-rem));
  margin-inline: auto;
}
.p-sample {
  padding-block: calc(60 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-sample {
    padding-block: calc(80 * var(--to-rem));
  }
}
.p-sample__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: calc(16 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-sample__inner {
    gap: calc(24 * var(--to-rem));
  }
}
.p-sample__title {
  margin-block-start: calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-sample__title {
    margin-block-start: calc(32 * var(--to-rem));
  }
}
.p-sample__button-wrap {
  width: min(15rem, 100%);
}
.p-sample__button-wrap > * {
  width: 100%;
}
.p-sample__divider {
  width: 100%;
  height: 1px;
  max-width: calc(600 * var(--to-rem));
  margin: 0;
  border: 0;
  background-color: var(--color-gray);
}
.p-sample__bg {
  width: 100%;
  height: calc(300 * var(--to-rem));
  max-width: calc(600 * var(--to-rem));
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-sample__bg {
    height: calc(400 * var(--to-rem));
  }
}
.p-sample__image {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: calc(512 * var(--to-rem));
  border-radius: 8px;
}
.p-sample__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100 * var(--to-rem));
  background: linear-gradient(to top, var(--color-white), transparent);
  pointer-events: none;
}
.p-sample__image img {
  display: block;
  width: 100%;
  height: auto;
}
.p-sample p {
  margin: 0;
  color: var(--color-text);
  font-size: calc(14 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-sample p {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-single {
  padding-block: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-single {
    padding-block: calc(80 * var(--to-rem));
  }
}
.p-single__inner {
  max-width: calc(var(--inner) + var(--padding-inner) * 2);
}
.p-single__header {
  margin-block-start: calc(32 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-single__header {
    margin-block-start: calc(48 * var(--to-rem));
  }
}
.p-single__subtitle {
  margin-block-end: calc(8 * var(--to-rem));
  color: var(--color-text);
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-medium);
}
@media screen and (max-width: 767px) {
  .p-single__subtitle {
    margin-block-end: calc(12 * var(--to-rem));
    font-size: calc(16 * var(--to-rem));
  }
}
.p-single__title {
  margin-block-start: calc(16 * var(--to-rem));
  color: var(--color-text);
  font-size: calc(24 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single__title {
    margin-block-start: calc(24 * var(--to-rem));
    font-size: calc(32 * var(--to-rem));
  }
}
.p-single__summary {
  margin-block-start: calc(24 * var(--to-rem));
  padding-block: calc(16 * var(--to-rem));
  padding-inline: calc(16 * var(--to-rem));
  border-radius: 8px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-single__summary {
    margin-block-start: calc(32 * var(--to-rem));
    padding-block: calc(20 * var(--to-rem));
    padding-inline: calc(24 * var(--to-rem));
    font-size: calc(16 * var(--to-rem));
  }
}
.p-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: calc(16 * var(--to-rem));
  align-items: center;
  margin-block-start: calc(16 * var(--to-rem));
  color: var(--color-border-gray);
  font-size: calc(14 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-single__meta {
    margin-block-start: calc(24 * var(--to-rem));
  }
}
.p-single__author {
  display: inline-block;
  color: var(--color-text);
  font-size: calc(14 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-single__author {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-single__date {
  display: inline-block;
}
.p-single__categories {
  display: flex;
  flex-wrap: wrap;
  gap: calc(8 * var(--to-rem));
}
.p-single__category {
  display: inline-block;
  padding-block: calc(4 * var(--to-rem));
  padding-inline: calc(12 * var(--to-rem));
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-primary);
  font-size: calc(12 * var(--to-rem));
  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: calc(32 * var(--to-rem));
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .p-single__thumbnail {
    margin-block-start: calc(48 * var(--to-rem));
  }
}
.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: calc(32 * var(--to-rem));
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .p-single__featured-image {
    margin-block-start: calc(48 * var(--to-rem));
  }
}
.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: calc(48 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-single__content {
    margin-block-start: calc(64 * var(--to-rem));
  }
}
.p-single__content h1,
.p-single h1:not(.p-single__title) {
  margin-block-start: calc(48 * var(--to-rem));
  padding-block-end: calc(16 * var(--to-rem));
  border-bottom: calc(2 * var(--to-rem)) solid var(--color-gray);
  color: var(--color-text);
  font-size: calc(28 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single__content h1,
  .p-single h1:not(.p-single__title) {
    margin-block-start: calc(64 * var(--to-rem));
    font-size: calc(36 * var(--to-rem));
  }
}
.p-single__content h2,
.p-single h2 {
  margin-block-start: calc(40 * var(--to-rem));
  padding-block-start: calc(16 * var(--to-rem));
  padding-inline-start: calc(16 * var(--to-rem));
  border-inline-start: calc(4 * var(--to-rem)) solid var(--color-accent);
  color: var(--color-text);
  font-size: calc(24 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single__content h2,
  .p-single h2 {
    margin-block-start: calc(56 * var(--to-rem));
    padding-inline-start: calc(20 * var(--to-rem));
    font-size: calc(28 * var(--to-rem));
  }
}
.p-single__content h3,
.p-single h3 {
  margin-block-start: calc(32 * var(--to-rem));
  color: var(--color-text);
  font-size: calc(20 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single__content h3,
  .p-single h3 {
    margin-block-start: calc(40 * var(--to-rem));
    font-size: calc(24 * var(--to-rem));
  }
}
.p-single__content h4,
.p-single h4 {
  margin-block-start: calc(24 * var(--to-rem));
  color: var(--color-text);
  font-size: calc(18 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single__content h4,
  .p-single h4 {
    margin-block-start: calc(32 * var(--to-rem));
    font-size: calc(20 * var(--to-rem));
  }
}
.p-single__content p,
.p-single p {
  margin-block-start: calc(16 * var(--to-rem));
  color: var(--color-text);
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-single__content p,
  .p-single p {
    margin-block-start: calc(20 * var(--to-rem));
  }
}
.p-single__content ul,
.p-single__content ol,
.p-single ul,
.p-single ol {
  margin-block-start: calc(16 * var(--to-rem));
  padding-inline-start: calc(24 * var(--to-rem));
  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: calc(20 * var(--to-rem));
    padding-inline-start: calc(32 * var(--to-rem));
  }
}
.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: calc(8 * var(--to-rem));
  line-height: 1.8;
}
.p-single__content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: calc(2 * var(--to-rem));
  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: calc(24 * var(--to-rem));
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .p-single__content img {
    margin-block-start: calc(32 * var(--to-rem));
  }
}
.p-single__content blockquote,
.p-single blockquote {
  margin-block-start: calc(24 * var(--to-rem));
  padding-block: calc(16 * var(--to-rem));
  padding-inline: calc(24 * var(--to-rem)) calc(24 * var(--to-rem));
  border-inline-start: calc(4 * var(--to-rem)) solid var(--color-accent);
  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: calc(32 * var(--to-rem));
    padding-block: calc(20 * var(--to-rem));
    padding-inline: calc(32 * var(--to-rem)) calc(32 * var(--to-rem));
  }
}
.p-single__content blockquote p,
.p-single blockquote p {
  margin-block-start: 0;
}
.p-single__content code,
.p-single code {
  padding-block: calc(2 * var(--to-rem));
  padding-inline: calc(6 * var(--to-rem));
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-primary);
  font-family: monospace;
  font-size: calc(14 * var(--to-rem));
}
.p-single__content pre,
.p-single pre {
  overflow-x: auto;
  margin-block-start: calc(24 * var(--to-rem));
  padding-block: calc(16 * var(--to-rem));
  padding-inline: calc(16 * var(--to-rem));
  border-radius: 8px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-family: monospace;
  font-size: calc(14 * var(--to-rem));
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single__content pre,
  .p-single pre {
    padding-block: calc(24 * var(--to-rem));
    padding-inline: calc(24 * var(--to-rem));
  }
}
.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: calc(24 * var(--to-rem));
  border: calc(1 * var(--to-rem)) solid var(--color-border-gray);
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .p-single__content table,
  .p-single table {
    margin-block-start: calc(32 * var(--to-rem));
  }
}
.p-single__content th,
.p-single__content td,
.p-single th,
.p-single td {
  padding-block: calc(12 * var(--to-rem));
  padding-inline: calc(16 * var(--to-rem));
  border: calc(1 * var(--to-rem)) solid var(--color-border-gray);
  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: calc(16 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-single__content th,
.p-single th {
  background-color: var(--color-gray);
  color: var(--color-text);
  font-weight: var(--fw-bold);
}
.p-single__content td,
.p-single td {
  color: var(--color-text);
}
.p-single__content hr,
.p-single hr {
  margin-block-start: calc(32 * var(--to-rem));
  border: none;
  border-top: calc(1 * var(--to-rem)) solid var(--color-border-gray);
}
@media screen and (max-width: 767px) {
  .p-single__content hr,
  .p-single hr {
    margin-block-start: calc(48 * var(--to-rem));
  }
}
.p-single__content strong,
.p-single strong {
  color: var(--color-text);
  font-weight: var(--fw-bold);
}
.p-single__content em,
.p-single em {
  font-style: italic;
}
.p-single__tags {
  display: flex;
  flex-wrap: wrap;
  gap: calc(8 * var(--to-rem));
  margin-block-start: calc(48 * var(--to-rem));
  padding-block: calc(24 * var(--to-rem));
  border-top: calc(1 * var(--to-rem)) solid var(--color-border-gray);
}
@media screen and (max-width: 767px) {
  .p-single__tags {
    margin-block-start: calc(64 * var(--to-rem));
    padding-block: calc(32 * var(--to-rem));
  }
}
.p-single__tag {
  display: inline-block;
  padding-block: calc(4 * var(--to-rem));
  padding-inline: calc(12 * var(--to-rem));
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-accent);
  font-size: calc(12 * var(--to-rem));
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-single__tag {
    font-size: calc(14 * var(--to-rem));
  }
}
@media (any-hover: hover) {
  .p-single__tag:hover {
    opacity: 0.8;
  }
}
.p-single__tag--custom {
  color: var(--color-text);
  cursor: default;
}
.p-single__navigation {
  display: grid;
  gap: calc(16 * var(--to-rem));
  margin-block-start: calc(48 * var(--to-rem));
  padding-block-start: calc(32 * var(--to-rem));
  border-top: calc(1 * var(--to-rem)) solid var(--color-border-gray);
}
@media screen and (max-width: 767px) {
  .p-single__navigation {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(24 * var(--to-rem));
    margin-block-start: calc(64 * var(--to-rem));
    padding-block-start: calc(48 * var(--to-rem));
  }
}
.p-single__nav-item {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-single__nav-item--prev {
    text-align: start;
  }
}
@media screen and (max-width: 767px) {
  .p-single__nav-item--next {
    text-align: end;
  }
}
.p-single__nav-link {
  display: block;
  padding-block: calc(16 * var(--to-rem));
  padding-inline: calc(16 * var(--to-rem));
  border-radius: 8px;
  background-color: var(--color-gray);
  color: var(--color-text);
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-single__nav-link {
    padding-block: calc(20 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
@media (any-hover: hover) {
  .p-single__nav-link:hover {
    opacity: 0.8;
  }
}
.p-single__nav-label {
  display: block;
  margin-block-start: calc(8 * var(--to-rem));
  color: var(--color-border-gray);
  font-size: calc(12 * var(--to-rem));
}
.p-single__nav-title {
  display: block;
  color: var(--color-text);
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single__nav-title {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-single--works .p-single__works-info {
  display: grid;
  gap: calc(24 * var(--to-rem));
  margin-block-start: calc(32 * var(--to-rem));
  padding-block: calc(24 * var(--to-rem));
  padding-inline: calc(24 * var(--to-rem));
  border-radius: 8px;
  background-color: var(--color-gray);
}
@media screen and (max-width: 767px) {
  .p-single--works .p-single__works-info {
    gap: calc(32 * var(--to-rem));
    margin-block-start: calc(48 * var(--to-rem));
    padding-block: calc(32 * var(--to-rem));
    padding-inline: calc(32 * var(--to-rem));
  }
}
.p-single--works .p-single__works-item {
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-single--works .p-single__works-item {
    flex-direction: row;
    align-items: center;
  }
}
.p-single--works .p-single__works-label {
  min-width: calc(120 * var(--to-rem));
  color: var(--color-text);
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-medium);
}
@media screen and (max-width: 767px) {
  .p-single--works .p-single__works-label {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-single--works .p-single__works-value {
  color: var(--color-text);
  font-size: calc(14 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-single--works .p-single__works-value {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-single--works .p-single__works-technologies {
  display: flex;
  flex-wrap: wrap;
  gap: calc(8 * var(--to-rem));
}
.p-single--works .p-single__works-technology {
  display: inline-block;
  padding: calc(4 * var(--to-rem)) calc(12 * var(--to-rem));
  border-radius: 4px;
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: calc(12 * var(--to-rem));
}
.p-single--works .p-single__works-url {
  color: var(--color-accent);
  font-size: calc(14 * var(--to-rem));
  text-decoration: underline;
  text-underline-offset: calc(2 * var(--to-rem));
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-single--works .p-single__works-url {
    font-size: calc(16 * var(--to-rem));
  }
}
@media (any-hover: hover) {
  .p-single--works .p-single__works-url:hover {
    opacity: 0.8;
  }
}
.p-single--works .p-single__gallery {
  margin-block-start: calc(48 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-single--works .p-single__gallery {
    margin-block-start: calc(64 * var(--to-rem));
  }
}
.p-single--works .p-single__gallery-title {
  margin-block-end: calc(24 * var(--to-rem));
  color: var(--color-text);
  font-size: calc(20 * var(--to-rem));
  font-weight: var(--fw-bold);
}
@media screen and (max-width: 767px) {
  .p-single--works .p-single__gallery-title {
    margin-block-end: calc(32 * var(--to-rem));
    font-size: calc(24 * var(--to-rem));
  }
}
.p-single--works .p-single__gallery-list {
  display: grid;
  gap: calc(16 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-single--works .p-single__gallery-list {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(24 * var(--to-rem));
  }
}
.p-single--works .p-single__gallery-item {
  overflow: hidden;
  border-radius: 8px;
  background-color: var(--color-gray);
}
.p-single--works .p-single__gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.p-single--post .p-single__related {
  margin-block-start: calc(48 * var(--to-rem));
  padding-block-start: calc(32 * var(--to-rem));
  border-top: calc(1 * var(--to-rem)) solid var(--color-border-gray);
}
@media screen and (max-width: 767px) {
  .p-single--post .p-single__related {
    margin-block-start: calc(64 * var(--to-rem));
    padding-block-start: calc(48 * var(--to-rem));
  }
}
.p-single--post .p-single__related-title {
  margin-block-end: calc(24 * var(--to-rem));
  color: var(--color-text);
  font-size: calc(20 * var(--to-rem));
  font-weight: var(--fw-bold);
}
@media screen and (max-width: 767px) {
  .p-single--post .p-single__related-title {
    margin-block-end: calc(32 * var(--to-rem));
    font-size: calc(24 * var(--to-rem));
  }
}
.p-single--post .p-single__related-list {
  display: grid;
  gap: calc(16 * var(--to-rem));
}
@media screen and (max-width: 600px) {
  .p-single--post .p-single__related-list {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(24 * var(--to-rem));
  }
}
@media screen and (max-width: 1023px) {
  .p-single--post .p-single__related-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-single--post .p-single__related-link {
  display: grid;
  gap: calc(12 * var(--to-rem));
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 600px) {
  .p-single--post .p-single__related-link {
    grid-template-columns: calc(120 * var(--to-rem)) 1fr;
    align-items: start;
  }
}
@media (any-hover: hover) {
  .p-single--post .p-single__related-link: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: calc(8 * var(--to-rem));
}
.p-single--post .p-single__related-date {
  color: var(--color-text);
  font-size: calc(12 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-single--post .p-single__related-date {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-single--post .p-single__related-item-title {
  margin: 0;
  color: var(--color-text);
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single--post .p-single__related-item-title {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-topLinks {
  padding-block: calc(112 * var(--to-rem));
  padding-inline: calc(64 * var(--to-rem));
  background-color: #f9f9f9;
}
@media screen and (max-width: 767px) {
  .p-topLinks {
    padding: calc(64 * var(--to-rem)) calc(20 * var(--to-rem));
  }
}
.p-topLinks__inner {
  max-width: calc(1312 * var(--to-rem));
  margin-inline: auto;
}
.p-topLinks__row {
  display: flex;
  gap: calc(32 * var(--to-rem));
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .p-topLinks__row {
    flex-direction: column;
  }
}
.p-topLinks__card {
  display: flex;
  flex-direction: column;
  flex: 1;
  border: calc(1 * var(--to-rem)) solid #cccccc;
  border-radius: calc(16 * var(--to-rem));
  background-color: #ffffff;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-topLinks__card:hover {
    opacity: 0.8;
  }
}
.p-topLinks__imgWrap {
  width: 100%;
  height: calc(171 * var(--to-rem));
  overflow: hidden;
}
.p-topLinks__picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-topLinks__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-topLinks__body {
  padding: calc(24 * var(--to-rem));
  flex: 1;
  display: flex;
  flex-direction: column;
}
.p-topLinks__tag {
  display: flex;
  align-items: center;
  gap: calc(16 * var(--to-rem));
}
.p-topLinks__tagDot {
  display: block;
  width: calc(6 * var(--to-rem));
  height: calc(6 * var(--to-rem));
  border-radius: 50%;
  background-color: var(--color-brand-red);
  flex-shrink: 0;
}
.p-topLinks__tagText {
  font-family: var(--font-lato);
  font-weight: 800;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  text-transform: uppercase;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-topLinks__tagText {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-topLinks__heading {
  margin-top: calc(8 * var(--to-rem));
  font-family: var(--font-roboto);
  font-weight: 700;
  font-size: calc(24 * var(--to-rem));
  line-height: 1.4;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-topLinks__heading {
    font-size: calc(18 * var(--to-rem));
  }
}
.p-topLinks__arrow {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .p-topLinks__arrow {
    margin-top: calc(24 * var(--to-rem));
  }
}
.p-teamsvoice {
  position: relative;
  padding-block: calc(96 * var(--to-rem));
  background-color: #ffffff;
  overflow: hidden;
}
.p-teamsvoice__decoText {
  position: absolute;
  font-weight: 900;
  font-size: calc(160 * var(--to-rem));
  color: var(--color-brand-red);
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-teamsvoice__decoText {
    display: none;
  }
}
.p-teamsvoice__decoText--vertical {
  right: max(24 * var(--to-rem), 50% - 800 * var(--to-rem));
  bottom: calc(350 * var(--to-rem));
  font-family: var(--font-zen);
}
.p-teamsvoice__decoText--horizontal {
  left: calc(49% - 1231 * var(--to-rem));
  top: calc(312 * var(--to-rem));
  letter-spacing: -0.05em;
  font-family: var(--font-lato);
  white-space: nowrap;
}
.p-teamsvoice__decoHachi {
  position: absolute;
  right: max(-158 * var(--to-rem), 50% - 878 * var(--to-rem));
  top: calc(-183 * var(--to-rem));
  width: calc(668 * var(--to-rem));
  height: calc(851 * var(--to-rem));
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-teamsvoice__decoHachi {
    display: block;
    width: calc(200 * var(--to-rem));
    height: calc(255 * var(--to-rem));
    right: calc(-106 * var(--to-rem));
    top: calc(-96 * var(--to-rem));
    opacity: 0.8;
  }
}
.p-teamsvoice__decoHachiImgWrap {
  width: 100%;
  height: 100%;
}
.p-teamsvoice__decoHachiImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-teamsvoice__inner {
  position: relative;
  z-index: 1;
  max-width: calc(1080 * var(--to-rem));
  margin-inline: auto;
  padding-inline: calc(40 * var(--to-rem));
  margin-inline: auto;
  padding-inline: calc(40 * var(--to-rem));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(100 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-teamsvoice__inner {
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-teamsvoice__titleBlock {
  max-width: calc(520 * var(--to-rem));
  text-align: center;
}
.p-teamsvoice__taglineText {
  font-family: var(--font-lato);
  font-weight: 800;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-brand-red);
}
.p-teamsvoice__heading {
  margin-top: calc(16 * var(--to-rem));
  font-family: var(--font-zen);
  font-weight: 700;
  font-size: calc(48 * var(--to-rem));
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-teamsvoice__heading {
    font-size: calc(36 * var(--to-rem));
  }
}
.p-teamsvoice__btns {
  margin-top: calc(32 * var(--to-rem));
}
.p-teamsvoice__btn {
  display: inline-flex;
  align-items: center;
  gap: calc(16 * var(--to-rem));
  padding-block: calc(12 * var(--to-rem));
  padding-inline: calc(24 * var(--to-rem));
  border: calc(1 * var(--to-rem)) solid #cccccc;
  border-radius: calc(50 * var(--to-rem));
  background-color: #ffffff;
  text-decoration: none;
  color: #222222;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-teamsvoice__btn:hover {
    opacity: 0.7;
  }
}
.p-teamsvoice__btnText {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
}
.p-teamsvoice__cards {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: calc(36 * var(--to-rem));
}
.p-teamsvoice__cardsRow {
  display: flex;
  align-items: flex-start;
  gap: calc(48 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-teamsvoice__cardsRow {
    flex-direction: column;
    gap: calc(24 * var(--to-rem));
  }
}
.p-teamsvoice__cardsCol {
  display: flex;
  flex-direction: column;
  gap: calc(32 * var(--to-rem));
  flex: 1;
  min-width: 0;
}
.p-teamsvoice__card {
  background-color: #ffffff;
  border: calc(1 * var(--to-rem)) solid #eeeeee;
  border-radius: calc(16 * var(--to-rem));
  box-shadow: 0 0 calc(10 * var(--to-rem)) calc(10 * var(--to-rem)) rgba(0, 0, 0, 0.1);
  padding: calc(32 * var(--to-rem)) calc(24 * var(--to-rem));
}
.p-teamsvoice__cardHeader {
  display: flex;
  align-items: center;
  gap: calc(24 * var(--to-rem));
}
.p-teamsvoice__cardQ {
  font-family: var(--font-lato);
  font-weight: 800;
  font-size: calc(48 * var(--to-rem));
  line-height: 1.42;
  color: var(--color-brand-red);
  flex-shrink: 0;
}
.p-teamsvoice__cardQ--gradient {
  background: linear-gradient(0deg, #e7000b 0%, #ff6467 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.p-teamsvoice__cardTitleWrap {
  padding-bottom: calc(3 * var(--to-rem));
  border-bottom: calc(3 * var(--to-rem)) solid var(--color-brand-red);
}
.p-teamsvoice__cardTitleWrap--gradient {
  border-image: linear-gradient(0deg, #e7000b 0%, #ff6467 100%) 1;
}
.p-teamsvoice__cardTitle {
  font-family: var(--font-roboto);
  font-weight: 700;
  font-size: calc(24 * var(--to-rem));
  line-height: 1.4;
  color: #333333;
}
.p-teamsvoice__card--atmosphere {
  flex-shrink: 0;
  width: calc(368 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-teamsvoice__card--atmosphere {
    width: 100%;
  }
}
.p-teamsvoice__cardContent {
  margin-top: calc(24 * var(--to-rem));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(30 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-teamsvoice__cardContent {
    margin-top: calc(12 * var(--to-rem));
    gap: calc(36 * var(--to-rem));
  }
}
.p-teamsvoice__pieChart {
  width: calc(237 * var(--to-rem));
}
.p-teamsvoice__pieChartImgWrap {
  width: 100%;
}
.p-teamsvoice__pieChartImg {
  display: block;
  width: 100%;
  height: auto;
}
.p-teamsvoice__barChart {
  width: 100%;
  max-width: calc(320 * var(--to-rem));
}
.p-teamsvoice__barChartImgWrap {
  width: 100%;
}
.p-teamsvoice__barChartImg {
  display: block;
  width: 100%;
  height: auto;
}
.p-teamsvoice__meritList {
  margin-top: calc(24 * var(--to-rem));
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
}
.p-teamsvoice__meritItem {
  display: flex;
  align-items: center;
  gap: calc(16 * var(--to-rem));
}
.p-teamsvoice__meritIconWrap {
  width: calc(48 * var(--to-rem));
  height: calc(48 * var(--to-rem));
  flex-shrink: 0;
}
.p-teamsvoice__meritIcon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-teamsvoice__meritText--1st {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: calc(20 * var(--to-rem));
  line-height: 1.5;
  color: var(--color-brand-red);
}
.p-teamsvoice__meritText--2nd {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  color: #222222;
}
.p-teamsvoice__meritText--3rd {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  color: #222222;
}
.p-teamsvoice__card--wordcloud {
  background-color: #ffffff;
  border-radius: calc(18 * var(--to-rem));
  box-shadow: 0 0 calc(10 * var(--to-rem)) calc(6 * var(--to-rem)) rgba(0, 0, 0, 0.05);
  padding-block: calc(25 * var(--to-rem)) calc(48 * var(--to-rem));
  padding-inline: calc(24 * var(--to-rem)) calc(36 * var(--to-rem));
}
.p-teamsvoice__wordcloudImgWrap {
  width: 100%;
  margin-top: calc(33 * var(--to-rem));
}
.p-teamsvoice__wordcloudImg {
  display: block;
  width: 100%;
  height: auto;
}
.p-teamsvoice__card--growth {
  width: 100%;
}
.p-teamsvoice__growthAnswers {
  margin-top: calc(24 * var(--to-rem));
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
}
.p-teamsvoice__growthRow {
  display: flex;
  align-items: stretch;
  gap: calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-teamsvoice__growthRow {
    flex-direction: column;
  }
}
.p-teamsvoice__growthCol {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
}
.p-teamsvoice__growthColTop {
  display: flex;
  flex-direction: column;
  gap: calc(12 * var(--to-rem));
  width: calc(517 * var(--to-rem));
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-teamsvoice__growthColTop {
    width: 100%;
  }
}
.p-teamsvoice__growthBubble {
  background-color: #ffffff;
  display: flex;
  flex-shrink: 0;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-teamsvoice__growthBubble {
    white-space: nowrap;
    border: calc(2.265 * var(--to-rem)) solid #222222 !important;
    background-color: #ffffff;
  }
}
.p-teamsvoice__growthBubble--hero {
  padding: calc(16 * var(--to-rem)) calc(24 * var(--to-rem));
  border: calc(1 * var(--to-rem)) solid #222222;
  border-radius: calc(4 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-teamsvoice__growthBubble--hero {
    padding: calc(18 * var(--to-rem)) calc(18 * var(--to-rem));
    white-space: nowrap;
  }
}
.p-teamsvoice__growthBubble--base {
  padding: calc(12 * var(--to-rem)) calc(16 * var(--to-rem));
  border: calc(1 * var(--to-rem)) solid #222222;
  border-radius: calc(4 * var(--to-rem));
}
.p-teamsvoice__growthBubble--long {
  padding: calc(12 * var(--to-rem)) calc(16 * var(--to-rem));
  border: calc(1 * var(--to-rem)) solid #222222;
  border-radius: calc(4 * var(--to-rem));
}
.p-teamsvoice__growthBubble--mini {
  padding: calc(12 * var(--to-rem)) calc(16 * var(--to-rem));
  border: calc(1 * var(--to-rem)) solid #222222;
  border-radius: calc(4 * var(--to-rem));
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-teamsvoice__growthBubble--mini {
    padding: calc(18.118 * var(--to-rem));
  }
}
.p-teamsvoice__growthBubble--w255,
.p-teamsvoice__growthBubble--w210 {
  min-width: 0;
}
.p-teamsvoice__growthGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(15 * var(--to-rem)) calc(10 * var(--to-rem));
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-teamsvoice__growthGrid {
    display: flex;
    flex-direction: column;
    gap: calc(12 * var(--to-rem));
    white-space: normal;
  }
}
.p-teamsvoice__growthBubbleText {
  font-family: var(--font-noto);
  font-weight: 700;
  color: #222222;
}
.p-teamsvoice__growthBubbleText--hero {
  font-size: calc(21 * var(--to-rem));
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.p-teamsvoice__growthBubbleText--base {
  font-size: calc(15 * var(--to-rem));
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-teamsvoice__growthBubbleText--base {
    font-size: calc(12 * var(--to-rem));
  }
}
.p-teamsvoice__growthBubbleText--long {
  font-size: calc(15 * var(--to-rem));
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-teamsvoice__growthBubbleText--long {
    font-size: calc(23.808 * var(--to-rem));
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: calc(1.19 * var(--to-rem));
  }
}
.p-teamsvoice__growthBubbleText--mini {
  font-size: calc(16 * var(--to-rem));
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-teamsvoice__growthBubbleText--mini {
    font-size: calc(16 * var(--to-rem));
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}
.p-teamsvoice__growthRed1 {
  color: var(--color-brand-red);
  font-size: calc(26 * var(--to-rem));
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: calc(1.3 * var(--to-rem));
}
.p-teamsvoice__growthRed {
  color: var(--color-brand-red);
  font-size: calc(26 * var(--to-rem));
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: calc(1.304 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-teamsvoice__growthRed {
    font-size: calc(20 * var(--to-rem));
  }
}
.p-teamsvoice__growthRed2-1 {
  color: var(--color-brand-red);
  font-size: calc(30.3 * var(--to-rem));
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: calc(1.515 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-teamsvoice__growthRed2-1 {
    font-size: calc(40 * var(--to-rem));
    line-height: 1.2;
  }
}
.p-teamsvoice__growthRed2-2 {
  color: var(--color-brand-red);
  font-size: calc(18.5 * var(--to-rem));
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: calc(0.926 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-teamsvoice__growthRed2-2 {
    font-size: calc(23 * var(--to-rem));
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: calc(1.19 * var(--to-rem));
  }
}
.p-teamsvoice__growthRedMini {
  color: var(--color-brand-red);
  font-size: calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-teamsvoice__growthRedMini {
    font-size: calc(20 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-teamsvoice__growthText3 {
    font-size: calc(19.674 * var(--to-rem));
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: calc(0.984 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-teamsvoice__growthText4 {
    font-size: calc(19 * var(--to-rem));
    line-height: 1.5;
    letter-spacing: calc(0.984 * var(--to-rem));
  }
}
.p-timeline {
  position: relative;
  padding: calc(112 * var(--to-rem));
  display: flex;
  justify-content: center;
  background: #f9f9f9;
}
@media screen and (max-width: 767px) {
  .p-timeline {
    padding: calc(64 * var(--to-rem)) calc(20 * var(--to-rem));
  }
}
.p-timeline__decoRect {
  position: absolute;
  width: calc(600 * var(--to-rem));
  height: calc(200 * var(--to-rem));
  background-color: var(--color-brand-red);
  border-radius: calc(40 * var(--to-rem));
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-timeline__decoRect {
    width: calc(100 * var(--to-rem));
    height: calc(100 * var(--to-rem));
    border-radius: calc(28 * var(--to-rem));
  }
}
.p-timeline__decoRect--top {
  left: max(92 * var(--to-rem), 50% - 628 * var(--to-rem));
  top: calc(90 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-timeline__decoRect--top {
    left: calc(4 * var(--to-rem));
    top: calc(48 * var(--to-rem));
  }
}
.p-timeline__decoRect--bottom {
  right: max(92 * var(--to-rem), 50% - 628 * var(--to-rem));
  bottom: calc(90 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-timeline__decoRect--bottom {
    right: calc(8 * var(--to-rem));
    bottom: calc(48 * var(--to-rem));
  }
}
.p-timeline__card {
  position: relative;
  z-index: 1;
  max-width: calc(1216 * var(--to-rem));
  width: 100%;
  background-color: #ffffff;
  border-radius: calc(24 * var(--to-rem));
  box-shadow: 0 calc(8 * var(--to-rem)) calc(10 * var(--to-rem)) calc(-6 * var(--to-rem)) rgba(0, 0, 0, 0.1), 0 calc(20 * var(--to-rem)) calc(25 * var(--to-rem)) calc(-5 * var(--to-rem)) rgba(0, 0, 0, 0.1);
  padding: calc(64 * var(--to-rem)) 0 calc(64 * var(--to-rem)) calc(96 * var(--to-rem));
  display: flex;
  flex-direction: column;
  gap: calc(32 * var(--to-rem));
  overflow-y: hidden;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .p-timeline__card {
    padding: calc(32 * var(--to-rem)) 0;
  }
}
.p-timeline__header {
  display: flex;
  align-items: center;
  gap: calc(40 * var(--to-rem));
  padding-right: calc(96 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-timeline__header {
    flex-direction: column;
    padding-inline: calc(16 * var(--to-rem));
  }
}
.p-timeline__titleBlock {
  width: calc(550 * var(--to-rem));
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: calc(32 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-timeline__titleBlock {
    width: 100%;
  }
}
.p-timeline__taglineText {
  font-family: var(--font-lato);
  font-weight: 800;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-brand-red);
}
.p-timeline__content {
  display: flex;
  flex-direction: column;
  gap: calc(24 * var(--to-rem));
}
.p-timeline__heading {
  font-family: var(--font-zen);
  font-weight: 700;
  font-size: calc(48 * var(--to-rem));
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-timeline__heading {
    font-size: calc(36 * var(--to-rem));
  }
}
.p-timeline__text {
  font-family: var(--font-roboto);
  font-weight: 400;
  font-size: calc(18 * var(--to-rem));
  line-height: 1.5;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-timeline__text {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-timeline__btn {
  display: inline-flex;
  align-items: center;
  gap: calc(16 * var(--to-rem));
  padding: calc(12 * var(--to-rem)) calc(24 * var(--to-rem));
  border: calc(1 * var(--to-rem)) solid #cccccc;
  border-radius: calc(50 * var(--to-rem));
  background-color: #ffffff;
  text-decoration: none;
  color: #222222;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-timeline__btn:hover {
    opacity: 0.7;
  }
}
.p-timeline__btnText {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
}
.p-timeline__heroImgWrap {
  flex: 1;
  min-width: 0;
  border-radius: calc(24 * var(--to-rem));
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-timeline__heroImgWrap {
    width: 100%;
  }
}
.p-timeline__heroImg {
  display: block;
  width: 100%;
  height: calc(326 * var(--to-rem));
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-timeline__heroImg {
    height: calc(239 * var(--to-rem));
  }
}
.p-timeline__progress {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.p-timeline__progress::-webkit-scrollbar {
  display: none;
}
.p-timeline__track {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: calc(8 * var(--to-rem));
  min-width: max-content;
  padding-block: calc(8 * var(--to-rem));
  padding-left: calc(32 * var(--to-rem));
}
.p-timeline__entry {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  width: calc(272 * var(--to-rem));
  flex-shrink: 0;
}
.p-timeline__entry > :first-child {
  margin-bottom: calc(46 * var(--to-rem));
}
.p-timeline__entry > :last-child {
  margin-top: calc(16 * var(--to-rem));
}
.p-timeline__entryContent {
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--to-rem));
  height: calc(96 * var(--to-rem));
}
.p-timeline__entryContent:first-child {
  justify-content: flex-end;
}
.p-timeline__entrySpace {
  height: calc(96 * var(--to-rem));
}
.p-timeline__entryYear {
  font-family: var(--font-roboto);
  font-weight: 700;
  font-size: calc(24 * var(--to-rem));
  line-height: 1.4;
  color: var(--color-brand-red);
}
@media screen and (max-width: 767px) {
  .p-timeline__entryYear {
    font-size: calc(20 * var(--to-rem));
    line-height: 1.4;
  }
}
.p-timeline__entryYear--lg {
  font-size: calc(32 * var(--to-rem));
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-timeline__entryYear--lg {
    font-size: calc(24 * var(--to-rem));
    line-height: 1.3;
  }
}
.p-timeline__entryDesc {
  font-family: var(--font-roboto);
  font-weight: 400;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  color: #222222;
}
.p-timeline__entryDesc--bold {
  font-weight: 700;
}
.p-timeline__entryLine {
  display: flex;
  align-items: center;
  height: calc(16 * var(--to-rem));
  gap: calc(8 * var(--to-rem));
}
.p-timeline__entryDot {
  width: calc(16 * var(--to-rem));
  height: calc(16 * var(--to-rem));
  border-radius: 50%;
  background-color: #ffffff;
  border: calc(3 * var(--to-rem)) solid var(--color-brand-red);
  flex-shrink: 0;
  box-sizing: border-box;
}
.p-timeline__entryDot--first {
  width: calc(24 * var(--to-rem));
  height: calc(24 * var(--to-rem));
  background-color: var(--color-brand-red);
  border: none;
}
.p-timeline__entryBar {
  flex: 1;
  height: calc(3 * var(--to-rem));
  background-color: #222222;
}
.p-timeline__entryBar:first-child {
  display: none;
}
.p-timeline__entry--first .p-timeline__entryBar:first-child {
  display: block;
  flex: none;
  width: calc(32 * var(--to-rem));
  margin-left: calc(-32 * var(--to-rem));
}
.p-timeline__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: calc(96 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-timeline__footer {
    flex-direction: column;
    align-items: flex-end;
    gap: calc(16 * var(--to-rem));
    padding-inline: calc(16 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-timeline__logoWrap {
    align-self: stretch;
    padding: calc(12 * var(--to-rem)) calc(16 * var(--to-rem));
  }
}
.p-timeline__logoImgWrap {
  width: calc(173 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-timeline__logoImgWrap {
    width: calc(141 * var(--to-rem));
  }
}
.p-timeline__logoImg {
  display: block;
  width: 100%;
  height: auto;
}
.p-timeline__nav {
  display: flex;
  align-items: center;
  gap: calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-timeline__nav {
    width: calc(120 * var(--to-rem));
    justify-content: space-between;
    gap: 0;
  }
}
.p-timeline__navBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(48 * var(--to-rem));
  height: calc(48 * var(--to-rem));
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-timeline__navBtn:hover {
    opacity: 0.6;
  }
}
.p-voice {
  padding-block: calc(100 * var(--to-rem));
  background-color: #fef5ee;
}
@media screen and (max-width: 767px) {
  .p-voice {
    padding-block: calc(60 * var(--to-rem));
  }
}
.p-voice__inner {
  max-width: calc(1200 * var(--to-rem));
  padding-inline: calc(20 * var(--to-rem));
  margin-inline: auto;
  text-align: center;
}
.p-voice__label {
  display: inline-block;
  height: calc(20 * var(--to-rem));
}
.p-voice__title {
  margin-block-start: calc(35 * var(--to-rem));
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: calc(32 * var(--to-rem));
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: #f57c00;
}
@media screen and (max-width: 767px) {
  .p-voice__title {
    margin-block-start: calc(20 * var(--to-rem));
    font-size: calc(24 * var(--to-rem));
  }
}
.p-voice__lead {
  margin-block-start: calc(35 * var(--to-rem));
  margin-inline: auto;
  max-width: calc(700 * var(--to-rem));
  font-weight: var(--fw-medium);
  font-size: calc(18 * var(--to-rem));
  line-height: 1.8;
  letter-spacing: 0.1111em;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-voice__lead {
    margin-block-start: calc(20 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
  }
}
.p-voice__cards {
  display: flex;
  gap: calc(40 * var(--to-rem));
  margin-block-start: calc(96 * var(--to-rem));
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-voice__cards {
    flex-direction: column;
    margin-block-start: calc(50 * var(--to-rem));
    gap: calc(24 * var(--to-rem));
    margin-block-start: calc(40 * var(--to-rem));
  }
}
.p-voice__card {
  flex: 1;
  padding-block: calc(40 * var(--to-rem));
  padding-inline: calc(30 * var(--to-rem));
  border-radius: calc(12 * var(--to-rem));
  background-color: #ffffff;
  box-shadow: 0 calc(4 * var(--to-rem)) calc(4 * var(--to-rem)) rgba(0, 0, 0, 0.25);
}
.p-voice__profile {
  display: flex;
  align-items: center;
  gap: calc(15 * var(--to-rem));
}
.p-voice__profileAvatar {
  flex-shrink: 0;
  width: calc(60 * var(--to-rem));
  height: calc(60 * var(--to-rem));
  border-radius: 50%;
  background-color: #f5f5f5;
  overflow: hidden;
}
.p-voice__profileAvatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-voice__profileInfo {
  flex: 1;
}
.p-voice__profileName {
  font-weight: var(--fw-medium);
  font-size: calc(16 * var(--to-rem));
  line-height: 1;
  letter-spacing: 0.125em;
  color: #333333;
}
.p-voice__profileRole {
  margin-block-start: calc(4 * var(--to-rem));
  font-weight: var(--fw-medium);
  font-size: calc(13 * var(--to-rem));
  line-height: 1;
  letter-spacing: 0.1538em;
  color: #999999;
}
.p-voice__text {
  margin-block-start: calc(25 * var(--to-rem));
  font-weight: var(--fw-medium);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.8;
  letter-spacing: 0.1538em;
  color: #666666;
}
.p-works-list {
  padding-block: calc(48 * var(--to-rem)) calc(32 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-works-list {
    padding-block: calc(40 * var(--to-rem)) calc(60 * var(--to-rem));
  }
}
.p-works-list__filter {
  display: flex;
  flex-wrap: wrap;
  gap: calc(8 * var(--to-rem));
  margin-block-start: calc(32 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-works-list__filter {
    gap: calc(12 * var(--to-rem));
  }
}
.p-works-list__filter-btn {
  padding: calc(10 * var(--to-rem)) calc(20 * var(--to-rem));
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background-color: transparent;
  color: var(--color-text);
  font-family: inherit;
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-medium);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
@media screen and (max-width: 767px) {
  .p-works-list__filter-btn {
    padding: calc(10 * var(--to-rem)) calc(24 * var(--to-rem));
    font-size: calc(15 * var(--to-rem));
  }
}
@media (any-hover: hover) {
  .p-works-list__filter-btn:hover:not(.is-active) {
    border-color: var(--color-border);
    background-color: var(--color-gray);
  }
}
.p-works-list__filter-btn.is-active {
  border-color: var(--color-accent);
  background-color: var(--color-accent);
  color: var(--color-white);
}
.p-works-list__grid {
  --_card-widht: rem(320);
  display: grid;
  gap: calc(24 * var(--to-rem));
  margin-block-start: calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-works-list__grid {
    grid-template-columns: repeat(auto-fill, minmax(min(var(--_card-widht), 100%), 1fr));
    gap: calc(32 * var(--to-rem));
    margin-block-start: calc(32 * var(--to-rem));
  }
}
.p-works-list__card {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
@media (any-hover: hover) {
  .p-works-list__card:hover .p-works-list__thumbnail img {
    scale: 1.05;
  }
}
.p-works-list__link {
  display: grid;
  grid-template-rows: minmax(0, 1fr);
}
.p-works-list__thumbnail {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.p-works-list__thumbnail img {
  transition: scale 0.4s ease;
}
.p-works-list__badge {
  position: absolute;
  top: calc(12 * var(--to-rem));
  left: calc(12 * var(--to-rem));
  padding: calc(6 * var(--to-rem)) calc(12 * var(--to-rem));
  border-radius: 4px;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: calc(12 * var(--to-rem));
  font-weight: var(--fw-medium);
}
.p-works-list__content {
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  gap: calc(8 * var(--to-rem));
  padding: calc(20 * var(--to-rem));
}
.p-works-list__card-title {
  color: var(--color-text);
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-works-list__card-title {
    font-size: calc(18 * var(--to-rem));
  }
}
.p-works-list__client {
  color: oklch(from var(--color-text) l c h/70%);
  font-size: calc(12 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-works-list__client {
    font-size: calc(13 * var(--to-rem));
  }
}
.p-works-list__date {
  color: oklch(from var(--color-text) l c h/70%);
  font-size: calc(12 * var(--to-rem));
}
.p-works-list__empty {
  padding-block: calc(60 * var(--to-rem));
  color: oklch(from var(--color-text) l c h/70%);
  font-size: calc(16 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-works-list__empty {
    padding-block: calc(80 * var(--to-rem));
    font-size: calc(18 * var(--to-rem));
  }
}
.p-worksNav {
  position: relative;
  padding: calc(112 * var(--to-rem)) calc(64 * var(--to-rem));
  background-color: #f9f9f9;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-worksNav {
    padding: calc(64 * var(--to-rem)) calc(20 * var(--to-rem));
  }
}
.p-worksNav__decoText {
  position: absolute;
  right: max(0px, 50% - 720 * var(--to-rem));
  top: calc(182 * var(--to-rem));
  font-family: var(--font-lato);
  font-weight: 800;
  font-size: calc(160 * var(--to-rem));
  line-height: 1.5;
  text-transform: uppercase;
  color: #f9f9f9;
  text-shadow: 0 0 calc(1 * var(--to-rem)) rgba(0, 0, 0, 0.03);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .p-worksNav__decoText {
    display: none;
  }
}
.p-worksNav__inner {
  position: relative;
  z-index: 1;
  max-width: calc(1312 * var(--to-rem));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(80 * var(--to-rem));
}
.p-worksNav__titleBlock {
  max-width: calc(520 * var(--to-rem));
  text-align: center;
}
.p-worksNav__taglineText {
  font-family: var(--font-lato);
  font-weight: 800;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-brand-red);
}
.p-worksNav__content {
  margin-top: calc(16 * var(--to-rem));
}
.p-worksNav__heading {
  font-family: var(--font-zen);
  font-weight: 700;
  font-size: calc(48 * var(--to-rem));
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-worksNav__heading {
    font-size: calc(32 * var(--to-rem));
  }
}
.p-worksNav__cards {
  display: flex;
  gap: calc(32 * var(--to-rem));
  align-items: stretch;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-worksNav__cards {
    flex-direction: column;
  }
}
.p-worksNav__card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: calc(1 * var(--to-rem)) solid #cccccc;
  border-radius: calc(16 * var(--to-rem));
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-worksNav__card:hover {
    opacity: 0.8;
  }
}
.p-worksNav__cardBody {
  display: flex;
  flex-direction: column;
  gap: calc(24 * var(--to-rem));
  padding: calc(24 * var(--to-rem));
  background-color: #ffffff;
  flex: 1;
}
.p-worksNav__cardTop {
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--to-rem));
}
.p-worksNav__cardTagline {
  display: flex;
  align-items: center;
  gap: calc(16 * var(--to-rem));
}
.p-worksNav__cardDot {
  width: calc(6 * var(--to-rem));
  height: calc(6 * var(--to-rem));
  border-radius: 50%;
  background-color: var(--color-brand-red);
  flex-shrink: 0;
}
.p-worksNav__cardTaglineText {
  font-family: var(--font-lato);
  font-weight: 800;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  text-transform: uppercase;
  color: #222222;
}
.p-worksNav__cardHeading {
  font-family: var(--font-roboto);
  font-weight: 700;
  font-size: calc(24 * var(--to-rem));
  line-height: 1.4;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-worksNav__cardHeading {
    font-size: calc(20 * var(--to-rem));
  }
}
.p-worksNav__cardArrow {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: auto;
}
.p-worksNav__cardImgWrap {
  width: 100%;
}
.p-worksNav__cardImg {
  display: block;
  width: 100%;
  height: calc(171 * var(--to-rem));
  object-fit: cover;
}
:root {
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);
}
@media (width <= 767px) {
  [data-only-device=md] {
    display: none;
  }
}
@media (width >= 768px) {
  [data-only-device=sm] {
    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__inline-block {
  display: inline-block;
}
.u-text__indent {
  padding-inline-start: 1em;
  text-indent: -1em;
}