@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;
}
html {
  font-size: 100%;
}
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 {
  background-color: var(--color-page-bg);
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-weight: var(--fw-regular);
}
@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 {
  /* ====================================================
   * リキッドレイアウト設定
   * PC: 1280px基準 / SP: 390px基準
   * 1280px以上 → 固定値（左右余白が広がる）
   * 1280px ~ 768px → PCカンプ基準のリキッド
   * 767px ~ 390px → SPカンプ基準のリキッド
   *
   * 使い方: calc(数値 * var(--to-rem));
   * カンプの数値をそのまま入れるだけでリキッドになる
   * ==================================================== */
  --to-rem: min(calc(100vw / 1280), 1px);
  /* inner（コンテンツ幅） */
  --inner: min(1080px, 100%);
  --inner-sp: min(calc(340 * (100vw / 390)), 100%);
  --padding-inner: calc(20 * var(--to-rem));
  /* z-index */
  --z-index-header: 900;
  /* color */
  --color-white: #fff;
  --color-page-bg: #faf9f7;
  --color-text: #0d2936;
  --color-black: #000;
  --color-gray: #f0f0f0;
  --color-border: #aaaaaf;
  --color-accent: #408f95;
  --color-primary: #234f5e;
  --color-secondary: #00f;
  --color-orange: #de8430;
  /* font-weight */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  /* font-family */
  --font-noto-sans-jp: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  --font-shippori: "Shippori Mincho", "Noto Serif JP", serif;
  --font-alegreya: "Alegreya Sans", sans-serif;
  --font-albert: "Albert Sans", sans-serif;
  --base-font-family: var(--font-shippori);
  --title-font-family: var(--font-alegreya);
  /* transition duration */
  --duration: 0.3s;
  /* header height（ヘッダーはリキッドから除外するため固定値） */
  --header-height: 96px;
  /* SP用リキッド単位: 390px基準でビューポート比例、600pxで固定 */
}
@media screen and (width >= 768px) {
  :root {
    --header-height: 104px;
  }
}
@media screen and (width <= 767px) {
  :root {
    --to-rem: min(calc(100vw / 390), calc(600px / 390));
  }
}
.l-header {
  position: fixed;
  inset: 0;
  z-index: var(--z-index-header);
}
.l-inner {
  max-width: calc(var(--inner) + var(--padding-inner) * 2);
  margin-inline: auto;
  padding-inline: var(--padding-inner);
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: calc(var(--inner-sp) + var(--padding-inner) * 2);
  }
}
.l-main {
  background-color: var(--color-page-bg);
}
/* ===== 共通ボタン ===== */
/* Primary Large: グラデーションボタン */
.c-button--primary-lg {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(8 * var(--to-rem));
  min-height: calc(48 * var(--to-rem));
  padding: 0 calc(16 * var(--to-rem));
  border: none;
  border-radius: calc(8 * var(--to-rem));
  background-color: #0e5eaa;
  color: #fff;
  font-family: var(--font-shippori);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.6;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  z-index: 0;
  transition: box-shadow var(--duration);
}
.c-button--primary-lg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background-image: linear-gradient(83deg, #9adcf8 0%, #0e5eaa 100%);
  opacity: 1;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .c-button--primary-lg:hover {
    box-shadow: inset 0 0 0 1px #fff;
  }
  .c-button--primary-lg:hover::before {
    opacity: 0;
  }
}
/* Secondary Large: 白背景ボーダーボタン（大） */
.c-button--secondary-lg {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(8 * var(--to-rem));
  min-height: calc(48 * var(--to-rem));
  padding: 0 calc(16 * var(--to-rem));
  border: calc(1 * var(--to-rem)) solid #0e5eaa;
  border-radius: calc(8 * var(--to-rem));
  background-color: #fff;
  color: #0e5eaa;
  font-family: var(--font-shippori);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.6;
  text-align: center;
  text-decoration: none;
  transition: background-color var(--duration), border-color var(--duration), color var(--duration);
}
.c-button--secondary-lg svg circle {
  transition: fill var(--duration);
}
.c-button--secondary-lg svg path {
  transition: stroke var(--duration);
}
@media (any-hover: hover) {
  .c-button--secondary-lg:hover {
    background-color: #0e5eaa;
    border-color: #fff;
    color: #fff;
  }
  .c-button--secondary-lg:hover svg circle {
    fill: #fff;
  }
  .c-button--secondary-lg:hover svg path {
    stroke: #0e5eaa;
  }
}
/* Secondary Medium: 白背景ボーダーボタン（中） */
.c-button--secondary-md {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(4 * var(--to-rem));
  min-height: calc(40 * var(--to-rem));
  padding: 0 calc(12 * var(--to-rem));
  border: calc(1 * var(--to-rem)) solid #0e5eaa;
  border-radius: calc(8 * var(--to-rem));
  background-color: #fff;
  color: #0e5eaa;
  font-family: var(--font-shippori);
  font-size: max(14 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.6;
  text-align: center;
  text-decoration: none;
  transition: background-color var(--duration), border-color var(--duration), color var(--duration);
}
@media (any-hover: hover) {
  .c-button--secondary-md:hover {
    background-color: #0e5eaa;
    border-color: #fff;
    color: #fff;
  }
}
/* ===== c-page-title: ページタイトル共通コンポーネント ===== */
/* ラッパー — SP で flex-column + gap: -50px を実現 */
@media screen and (max-width: 767px) {
  .c-page-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}
/* 背景英字テキスト */
.c-page-title__en {
  position: absolute;
  z-index: 0;
  margin: 0;
  color: rgba(54, 54, 54, 0.07);
  font-family: var(--font-alegreya);
  font-size: max(200 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.2;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-page-title__en {
    --en-final-opacity: 0.07;
    position: static;
    order: 1;
    margin-block-start: calc(-42 * var(--to-rem));
    color: #363636;
    font-size: calc(80 * var(--to-rem));
    opacity: 0.07;
    text-align: center;
    white-space: nowrap;
    transform: none;
  }
}
/* ページタイトル（日本語） */
.c-page-title__main {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #363636;
  font-family: var(--font-shippori);
  font-size: max(56 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.12;
}
@media screen and (max-width: 767px) {
  .c-page-title__main {
    font-size: calc(32 * var(--to-rem));
    letter-spacing: 0.2em;
    text-align: center;
  }
}
/**
 * ページネーション共通コンポーネント
 *
 * 親（プロジェクト）から上書きする場合:
 *   - 呼び出し元で親クラスで wrap する（例: <div class="p-archive__pagination">...</div>）
 *   - プロジェクトの SCSS ではその wrapper クラスに --_pagination-* を設定する
 *   - 親の CSS ファイルに c-pagination のクラス名は書かない（コンポーネントのカプセル化）
 *
 * 上書き可能な変数: --_pagination-bg, --_pagination-text, --_pagination-text-hover,
 *   --_pagination-bg-hover, --_pagination-active-bg, --_pagination-active-text,
 *   --_pagination-border, --_pagination-border-hover
 */
.c-pagination {
  /* 色（ローカル変数。親の wrapper で上書き可能） */
  --_pagination-bg: var(--color-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-grid;
  place-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: max(14 * var(--to-rem), 12px);
  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=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: var(--color-text);
  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: max(14 * var(--to-rem), 12px);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .c-section-title__sub {
    font-size: calc(16 * var(--to-rem));
  }
}
/* ===== p-about: 阿波製紙の事業とは ===== */
.p-about {
  padding-block-start: calc(141 * var(--to-rem));
  background-color: var(--color-page-bg);
}
@media screen and (max-width: 767px) {
  .p-about {
    padding-block-start: calc(144 * var(--to-rem));
  }
}
.p-about__inner {
  width: calc(1280 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-about__inner {
    width: calc(390 * var(--to-rem));
    padding-inline: calc(32 * var(--to-rem));
  }
}
/* ===== Hero ===== */
.p-about__hero {
  position: relative;
  display: flex;
  gap: calc(198 * var(--to-rem));
  align-items: flex-start;
  width: calc(1280 * var(--to-rem));
  min-height: calc(742 * var(--to-rem));
  padding-inline-start: calc(80 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-about__hero {
    flex-direction: column;
    gap: calc(15 * var(--to-rem));
    align-items: center;
    width: calc(343 * var(--to-rem));
    min-height: auto;
    padding-inline-start: 0;
  }
}
.p-about__hero-en {
  inset-block-start: calc(424 * var(--to-rem));
  inset-inline-start: 37%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-about__hero-en {
    transform: none;
  }
}
.p-about__hero-title {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row-reverse;
  gap: calc(26 * var(--to-rem));
  margin: 0;
  padding-block-start: calc(47 * var(--to-rem));
  color: #363636;
  font-family: var(--font-shippori);
  font-size: max(70 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1;
  letter-spacing: calc(8 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-about__hero-title {
    display: block;
    padding-block-start: 0;
    font-size: calc(40 * var(--to-rem));
    line-height: 1.12;
    letter-spacing: 0.2em;
    text-align: center;
  }
}
.p-about__hero-title span {
  display: block;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .p-about__hero-title span {
    display: inline;
    writing-mode: horizontal-tb;
  }
}
.p-about__hero-image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: calc(822 * var(--to-rem));
  aspect-ratio: 822/542;
  margin: 0;
  border-radius: calc(20 * var(--to-rem)) 0 0 calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-about__hero-image {
    width: 100%;
    aspect-ratio: 343/255;
    border-radius: calc(12 * var(--to-rem));
  }
}
.p-about__hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ===== Lead ===== */
.p-about__lead {
  width: calc(930 * var(--to-rem));
  margin-inline: auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about__lead {
    width: 100%;
    margin-block-start: calc(153 * var(--to-rem));
    white-space: nowrap;
  }
}
.p-about__lead-quote {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-about__lead-quote {
    position: relative;
  }
}
.p-about__lead-quote-mark {
  position: relative;
  top: calc(-76 * var(--to-rem));
  color: #0e5eaa;
  font-family: "EB Garamond", serif;
  font-size: max(128 * var(--to-rem), 12px);
  font-weight: 700;
  line-height: 1;
  rotate: 180deg;
}
@media screen and (max-width: 767px) {
  .p-about__lead-quote-mark {
    position: absolute;
    inset-inline-start: 0;
    top: calc(-79 * var(--to-rem));
    font-size: calc(78 * var(--to-rem));
  }
}
.p-about__lead-quote-mark--end {
  top: auto;
  bottom: calc(-35 * var(--to-rem));
  align-self: flex-end;
  rotate: 0deg;
}
@media screen and (max-width: 767px) {
  .p-about__lead-quote-mark--end {
    inset-inline-start: auto;
    inset-inline-end: 0;
    bottom: calc(-78 * var(--to-rem));
  }
}
.p-about__lead-catch-wrap {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-about__lead-catch-wrap {
    align-items: center;
    width: 100%;
    gap: calc(8 * var(--to-rem));
  }
}
.p-about__lead-catch {
  margin: 0;
  color: #1b224c;
  font-family: var(--font-shippori);
  font-size: max(30 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-about__lead-catch {
    font-size: calc(24 * var(--to-rem));
    line-height: 1.6;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-about__lead-catch--sub {
    font-size: calc(21 * var(--to-rem));
  }
}
.p-about__lead-text {
  margin-block-start: calc(20 * var(--to-rem));
  color: #1c2a55;
  font-family: var(--font-shippori);
  font-size: max(19 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.6;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-about__lead-text {
    margin-block-start: calc(71 * var(--to-rem));
    font-size: calc(16 * var(--to-rem));
    line-height: 1.625;
    white-space: normal;
    text-align: left;
  }
}
/* ===== 機能紙セクション（青背景） ===== */
.p-about__function {
  margin-block: calc(95 * var(--to-rem)) calc(138 * var(--to-rem));
  padding-block: calc(120 * var(--to-rem));
  background-color: #0e5eaa;
}
@media screen and (max-width: 767px) {
  .p-about__function {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: calc(80 * var(--to-rem));
    margin-block: calc(80 * var(--to-rem)) 0;
    padding: calc(80 * var(--to-rem)) calc(20 * var(--to-rem));
  }
}
.p-about__function-inner {
  width: calc(964 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-about__function-inner {
    display: flex;
    flex-direction: column;
    gap: calc(40 * var(--to-rem));
    width: 100%;
  }
}
.p-about__function-heading {
  color: #fff;
  text-align: center;
}
.p-about__function-title {
  margin: 0;
  font-family: var(--font-shippori);
  font-size: max(36 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-about__function-title {
    font-size: calc(32 * var(--to-rem));
  }
}
.p-about__function-sub {
  margin: calc(20 * var(--to-rem)) 0 0;
  font-family: var(--font-shippori);
  font-size: max(16 * var(--to-rem), 12px);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-about__function-sub {
    margin-block-start: calc(12 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
  }
}
/* ===== 比較テーブル共通 ===== */
.p-about__compare {
  margin-block-start: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-about__compare {
    margin-block-start: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-about__compare--pc {
    display: none;
  }
}
.p-about__compare--sp {
  display: none;
  overflow: auto hidden;
}
@media screen and (max-width: 767px) {
  .p-about__compare--sp {
    display: block;
    margin-inline: calc(-20 * var(--to-rem));
    padding-inline-start: calc(20 * var(--to-rem));
    padding-block-end: calc(8 * var(--to-rem));
  }
}
/* PC比較テーブル */
.p-about__compare-head {
  display: flex;
  gap: calc(8 * var(--to-rem));
  width: calc(788 * var(--to-rem));
  margin-inline-start: calc(176 * var(--to-rem));
}
.p-about__compare-head-cell {
  width: calc(300 * var(--to-rem));
  padding: calc(16 * var(--to-rem));
  border-radius: calc(6 * var(--to-rem));
  background-color: #17406a;
  color: #fff;
  font-family: var(--font-noto-sans-jp);
  font-size: max(14 * var(--to-rem), 12px);
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: calc(1.8 * var(--to-rem));
}
.p-about__compare-head-cell--function {
  width: calc(480 * var(--to-rem));
  box-shadow: 0 0 calc(16 * var(--to-rem)) 0 rgba(255, 255, 255, 0.65);
}
.p-about__compare-row {
  display: flex;
  gap: calc(16 * var(--to-rem));
  margin-block-start: calc(8 * var(--to-rem));
}
.p-about__compare-head + .p-about__compare-row {
  margin-block-start: calc(16 * var(--to-rem));
}
.p-about__compare-label {
  display: flex;
  place-content: center;
  align-items: center;
  width: calc(160 * var(--to-rem));
  border-radius: calc(6 * var(--to-rem));
  background-color: #17406a;
  color: #fff;
  font-family: var(--font-noto-sans-jp);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: calc(2.1 * var(--to-rem));
  text-align: center;
}
.p-about__compare-cols {
  display: flex;
  flex: 1;
  gap: calc(8 * var(--to-rem));
}
.p-about__compare-cell {
  padding: calc(24 * var(--to-rem));
  border-radius: calc(6 * var(--to-rem));
}
.p-about__compare-cell--plain {
  display: flex;
  align-items: center;
  width: calc(300 * var(--to-rem));
  background-color: #e6e9ee;
}
.p-about__compare-cell--plain p {
  margin: 0;
  color: #000;
  font-family: var(--font-noto-sans-jp);
  font-size: max(15 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.5;
}
.p-about__compare-cell--function {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(480 * var(--to-rem));
  background-color: #e1f9ff;
  box-shadow: 0 0 calc(16 * var(--to-rem)) 0 rgba(255, 255, 255, 0.65);
}
.p-about__compare-note {
  margin: calc(12 * var(--to-rem)) 0 0;
  color: #0e5eaa;
  font-family: var(--font-noto-sans-jp);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: calc(2.1 * var(--to-rem));
}
/* SP比較テーブル（転置グリッド） */
.p-about__compare-sp-grid {
  display: grid;
  grid-template-columns: calc(91 * var(--to-rem)) calc(240 * var(--to-rem)) calc(288 * var(--to-rem)) calc(210 * var(--to-rem));
  grid-template-rows: calc(51 * var(--to-rem)) calc(109 * var(--to-rem)) auto;
  gap: calc(8 * var(--to-rem));
}
.p-about__compare-sp-corner {
  background: transparent;
}
.p-about__compare-sp-colhead {
  display: grid;
  place-items: center;
  padding: calc(15 * var(--to-rem)) calc(6 * var(--to-rem));
  border-radius: calc(6 * var(--to-rem));
  background-color: #17406a;
  color: #fff;
  font-family: var(--font-noto-sans-jp);
  font-size: max(14 * var(--to-rem), 12px);
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.13em;
  text-align: center;
}
.p-about__compare-sp-rowhead {
  display: grid;
  place-items: center;
  padding: calc(16 * var(--to-rem)) calc(11 * var(--to-rem));
  border-radius: calc(6 * var(--to-rem));
  background-color: #17406a;
  color: #fff;
  font-family: var(--font-noto-sans-jp);
  font-size: calc(12 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.13em;
  text-align: center;
}
.p-about__compare-sp-rowhead--function {
  box-shadow: 0 0 calc(16 * var(--to-rem)) 0 rgba(255, 255, 255, 0.65);
}
.p-about__compare-sp-cell {
  padding: calc(20 * var(--to-rem));
  border-radius: calc(6 * var(--to-rem));
}
.p-about__compare-sp-cell--plain {
  display: flex;
  align-items: center;
  background-color: #e6e9ee;
}
.p-about__compare-sp-cell--plain p {
  margin: 0;
  color: #000;
  font-family: var(--font-noto-sans-jp);
  font-size: max(15 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.5;
}
.p-about__compare-sp-cell--function {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: calc(12 * var(--to-rem));
  background-color: #e1f9ff;
  box-shadow: 0 0 calc(16 * var(--to-rem)) 0 rgba(255, 255, 255, 0.65);
}
.p-about__compare-sp-cell--function .p-about__compare-note {
  margin: 0;
}
/* チップリスト（PC/SP共通） */
.p-about__chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: calc(6 * var(--to-rem));
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-about__chip-list li {
  display: flex;
  gap: calc(2 * var(--to-rem));
  align-items: center;
  padding: calc(6 * var(--to-rem)) calc(10 * var(--to-rem)) calc(6 * var(--to-rem)) calc(8 * var(--to-rem));
  border-radius: calc(4 * var(--to-rem));
  background-color: #0e5eaa;
  color: #fff;
  font-family: var(--font-noto-sans-jp);
  font-size: max(14 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  white-space: nowrap;
}
.p-about__chip-list li img {
  width: calc(20 * var(--to-rem));
  height: calc(20 * var(--to-rem));
}
/* SP版チップは少し小さく */
.p-about__compare-sp-cell .p-about__chip-list li {
  font-size: max(13 * var(--to-rem), 13px);
}
/* ===== タブセクション ===== */
.p-about__tabs {
  margin-block-start: calc(100 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-about__tabs {
    margin-block-start: calc(32 * var(--to-rem));
  }
}
.p-about__tabs-heading {
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about__tabs-heading {
    gap: calc(12 * var(--to-rem));
  }
}
.p-about__tabs-title {
  margin: 0;
  font-family: var(--font-shippori);
  font-size: max(36 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-about__tabs-title {
    font-size: calc(32 * var(--to-rem));
  }
}
.p-about__tabs-sub {
  margin: 0;
  font-family: var(--font-shippori);
  font-size: max(16 * var(--to-rem), 12px);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-about__tabs-sub {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-about__tab-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(8 * var(--to-rem));
  margin-block-start: calc(64 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-about__tab-list {
    margin-block-start: calc(40 * var(--to-rem));
  }
}
.p-about__tab {
  padding: calc(16 * var(--to-rem));
  border: 0;
  border-radius: calc(8 * var(--to-rem)) calc(8 * var(--to-rem)) 0 0;
  background-color: #d9d9d9;
  color: #0e5eaa;
  font-family: var(--font-noto-sans-jp);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.6;
  text-align: center;
  cursor: pointer;
  transition: background-color var(--duration), color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-about__tab {
    padding: calc(12 * var(--to-rem));
    border-radius: calc(8 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
    font-weight: var(--fw-regular);
  }
}
.p-about__tab.is-active {
  background-color: #17406a;
  color: #fff;
}
.p-about__tab-body {
  padding-block-end: calc(40 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem));
  border-radius: 0 0 calc(12 * var(--to-rem)) calc(12 * var(--to-rem));
  background-color: #17406a;
}
@media screen and (max-width: 767px) {
  .p-about__tab-body {
    margin-block-start: calc(16 * var(--to-rem));
    padding: 0 calc(20 * var(--to-rem)) calc(32 * var(--to-rem));
    border-radius: calc(16 * var(--to-rem));
  }
}
.p-about__tab-panel {
  padding-block: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-about__tab-panel {
    padding-block: calc(32 * var(--to-rem)) 0;
  }
}
.p-about__tab-quote {
  position: relative;
  margin: 0;
  padding-inline: calc(72 * var(--to-rem));
  color: #fff;
  font-family: var(--font-shippori);
  font-size: max(20 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  text-align: center;
}
.p-about__tab-quote::before, .p-about__tab-quote::after {
  content: "“";
  position: absolute;
  inset-block-start: 50%;
  color: #fff;
  font-family: "EB Garamond", serif;
  font-size: max(80 * var(--to-rem), 12px);
  font-weight: 700;
  line-height: 1;
  translate: 0 -50%;
}
.p-about__tab-quote::before {
  inset-inline-start: calc(85 * var(--to-rem));
}
.p-about__tab-quote::after {
  inset-inline-end: calc(85 * var(--to-rem));
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .p-about__tab-quote {
    padding-inline: calc(18 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
    font-weight: var(--fw-regular);
    line-height: 1.4;
  }
  .p-about__tab-quote span {
    font-size: calc(16 * var(--to-rem));
    font-weight: 600;
  }
  .p-about__tab-quote p + p {
    margin-block-start: calc(8 * var(--to-rem));
  }
  .p-about__tab-quote::before, .p-about__tab-quote::after {
    inset-block-start: auto;
    font-size: calc(50 * var(--to-rem));
    translate: 0 0;
  }
  .p-about__tab-quote::before {
    inset-block-start: calc(-6 * var(--to-rem));
    inset-inline-start: 0;
  }
  .p-about__tab-quote::after {
    inset-block-end: calc(-14 * var(--to-rem));
    inset-inline-end: 0;
  }
}
/* ===== 製品カード ===== */
.p-about__cards {
  display: flex;
  flex-direction: column;
  gap: calc(24 * var(--to-rem));
  margin-block-start: calc(40 * var(--to-rem));
}
.p-about__card {
  padding: calc(56 * var(--to-rem)) 0;
  border-radius: calc(8 * var(--to-rem));
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-about__card {
    padding: calc(24 * var(--to-rem));
  }
}
.p-about__card-top {
  display: flex;
  gap: calc(60 * var(--to-rem));
  align-items: center;
  max-width: calc(782 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-about__card-top {
    flex-direction: column;
    gap: calc(16 * var(--to-rem));
    align-items: flex-start;
    max-width: none;
  }
}
.p-about__card-head {
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--to-rem));
  max-width: calc(265 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-about__card-head {
    max-width: none;
  }
}
.p-about__card-tag {
  width: fit-content;
  padding: calc(6 * var(--to-rem)) calc(12 * var(--to-rem));
  border-radius: calc(6 * var(--to-rem));
  background-color: #0e5eaa;
  color: #fff;
  font-family: var(--font-noto-sans-jp);
  font-size: calc(12 * var(--to-rem));
  line-height: 1.5;
}
.p-about__card-title {
  margin: 0;
  color: #1c2a55;
  font-family: var(--font-shippori);
  font-size: max(24 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-about__card-title {
    font-size: calc(20 * var(--to-rem));
  }
}
.p-about__card-title small {
  display: block;
  margin-block-start: calc(4 * var(--to-rem));
  font-size: max(16 * var(--to-rem), 12px);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-about__card-title small {
    margin-block-start: calc(-2 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
  }
}
.p-about__card-image {
  flex: 1;
  overflow: hidden;
  margin: 0;
  border-radius: calc(2 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-about__card-image {
    width: 100%;
  }
}
.p-about__card-image img {
  display: block;
  width: 100%;
  aspect-ratio: 502/282;
  object-fit: cover;
}
.p-about__card-section {
  max-width: calc(782 * var(--to-rem));
  margin-block-start: calc(43 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-about__card-section {
    max-width: none;
    margin-block-start: calc(32 * var(--to-rem));
  }
}
.p-about__card-section p + p {
  margin-block-start: 0;
}
.p-about__card-top + .p-about__card-section {
  margin-block-start: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-about__card-top + .p-about__card-section {
    margin-block-start: calc(39 * var(--to-rem));
  }
}
.p-about__card-section h5 {
  margin: 0;
  color: #1c2a55;
  font-family: var(--font-shippori);
  font-size: max(20 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.5;
}
.p-about__card-section h5 small {
  margin-inline-start: calc(16 * var(--to-rem));
  color: #69768b;
  font-family: var(--font-noto-sans-jp);
  font-size: calc(12 * var(--to-rem));
  font-weight: var(--fw-regular);
}
@media screen and (max-width: 767px) {
  .p-about__card-section h5 small {
    display: block;
    margin-inline-start: 0;
    margin-block-start: calc(8 * var(--to-rem));
    line-height: 1.75;
  }
}
.p-about__card-section p {
  margin-block-start: calc(9 * var(--to-rem));
  color: #0e5eaa;
  font-family: var(--font-shippori);
  font-size: max(14 * var(--to-rem), 12px);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-about__card-section p {
    margin-block-start: calc(12 * var(--to-rem));
  }
}
.p-about__chips {
  display: flex;
  flex-wrap: wrap;
  gap: calc(8 * var(--to-rem));
  margin: calc(12 * var(--to-rem)) 0 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-about__chips {
    gap: calc(9 * var(--to-rem));
  }
}
.p-about__chips li {
  padding: calc(4 * var(--to-rem)) calc(12 * var(--to-rem));
  border: 1px solid #0e5eaa;
  border-radius: calc(2 * var(--to-rem));
  color: #0e5eaa;
  font-family: var(--font-noto-sans-jp);
  font-size: max(14 * var(--to-rem), 12px);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-about__chips li {
    font-size: calc(12 * var(--to-rem));
  }
}
.p-about__chips--sm li {
  font-size: max(13 * var(--to-rem), 13px);
}
@media screen and (max-width: 767px) {
  .p-about__chips--sm li {
    font-size: calc(12 * var(--to-rem));
    white-space: nowrap;
  }
}
/* リンクボタン */
.p-about__more-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(6 * var(--to-rem));
  max-width: calc(516 * var(--to-rem));
  margin: 0 auto;
  padding: calc(24 * var(--to-rem));
  border: 2px solid #fff;
  border-radius: calc(8 * var(--to-rem));
  background-color: #0e5eaa;
  color: #fff;
  font-family: var(--font-shippori);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: background-color var(--duration), color var(--duration), border-color var(--duration);
}
@media (any-hover: hover) {
  .p-about__more-link:hover {
    background-color: #fff;
    border-color: #0e5eaa;
    color: #0e5eaa;
  }
  .p-about__more-link:hover .p-about__more-link-icon {
    background-color: #0e5eaa;
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .p-about__more-link {
    justify-content: space-between;
    max-width: none;
    margin-block-start: calc(40 * var(--to-rem));
    padding: calc(12 * var(--to-rem)) calc(24 * var(--to-rem));
    line-height: 1.45;
    text-align: left;
  }
}
.p-about__more-link-icon {
  display: inline-grid;
  flex-shrink: 0;
  place-items: center;
  width: calc(24 * var(--to-rem));
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #fff;
  color: #0e5eaa;
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1;
  transition: background-color var(--duration), color var(--duration);
}
/* ===== p-activities: 課外活動ページ ===== */
.p-activities {
  position: relative;
  overflow: hidden;
  padding-block: calc(141 * var(--to-rem)) calc(272 * var(--to-rem));
  background-color: var(--color-page-bg);
}
@media screen and (max-width: 767px) {
  .p-activities {
    padding-block: calc(110 * var(--to-rem)) calc(66 * var(--to-rem));
  }
}
.p-activities__inner {
  position: relative;
  width: calc(1280 * var(--to-rem));
  margin-inline: auto;
  padding-inline: calc(80 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-activities__inner {
    width: calc(391 * var(--to-rem));
    padding-inline: calc(24 * var(--to-rem));
  }
}
/* 背景英字テキスト */
.p-activities__hero-en {
  inset-block-start: calc(0 * var(--to-rem));
  inset-inline-start: calc(253 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-activities__hero-en {
    margin-block-start: calc(-38 * var(--to-rem));
    font-size: calc(70 * var(--to-rem));
    line-height: 1;
  }
}
/* タイトル */
.p-activities__title {
  padding-block-start: calc(120 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-activities__title {
    padding-block-start: calc(40 * var(--to-rem));
  }
}
/* ===== カードリスト ===== */
.p-activities__list {
  display: flex;
  flex-direction: column;
  gap: calc(40 * var(--to-rem));
  width: calc(930 * var(--to-rem));
  margin-block-start: calc(218 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-activities__list {
    gap: calc(80 * var(--to-rem));
    width: 100%;
    margin-block-start: calc(74 * var(--to-rem));
  }
}
/* カード */
.p-activities__card {
  display: flex;
  gap: calc(40 * var(--to-rem));
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-activities__card {
    flex-direction: column;
    gap: calc(16 * var(--to-rem));
  }
}
.p-activities__card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
  min-width: 0;
}
.p-activities__card-title {
  margin: 0;
  color: #0e5eaa;
  font-family: var(--font-shippori);
  font-size: max(30 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-activities__card-title {
    font-size: calc(30 * var(--to-rem));
  }
}
.p-activities__card-texts {
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
}
.p-activities__card-text {
  margin: 0;
  color: #1b224c;
  font-family: var(--font-shippori);
  font-size: max(14 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 2;
}
.p-activities__card-image {
  flex-shrink: 0;
  overflow: hidden;
  width: calc(349 * var(--to-rem));
  margin: 0;
  border-radius: calc(8 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-activities__card-image {
    width: 100%;
    height: calc(254 * var(--to-rem));
  }
}
.p-activities__card-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-activities__card-image img {
    height: 100%;
  }
}
.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 {
  text-align: center;
}
.p-archive__description {
  margin-block-start: calc(16 * var(--to-rem));
  color: var(--color-text);
  font-size: max(14 * var(--to-rem), 12px);
  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));
  margin-block-start: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive__list {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(32 * var(--to-rem));
    margin-block-start: calc(60 * 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__link:hover .p-archive__thumbnail img {
    scale: 1.1;
  }
}
.p-archive__thumbnail {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  background-color: var(--color-gray);
}
.p-archive__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.3s ease;
}
.p-archive__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: calc(12 * var(--to-rem));
  margin-block-start: calc(16 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive__content {
    margin-block-start: calc(20 * 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: max(14 * var(--to-rem), 12px);
  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 {
  overflow: hidden;
  padding: 0;
  border: 0;
  box-shadow: 0 calc(2 * var(--to-rem)) calc(8 * var(--to-rem)) oklch(from var(--color-black) l c h/8%);
  transition: none;
}
.p-archive--works .p-archive__thumbnail {
  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 {
  margin-block-start: 0;
  padding: calc(20 * var(--to-rem));
}
.p-archive--works .p-archive__item-title {
  margin: calc(8 * var(--to-rem)) 0 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-archive--works .p-archive__item-title {
    margin: calc(12 * var(--to-rem)) 0 0;
    font-size: calc(18 * var(--to-rem));
    line-height: 1.6;
  }
}
.p-archive--works .p-archive__excerpt {
  display: -webkit-box;
  overflow: hidden;
  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-benefits: 福利厚生と研修 ===== */
.p-benefits {
  position: relative;
  overflow: hidden;
  padding-block: calc(141 * var(--to-rem)) calc(180 * var(--to-rem));
  background-color: var(--color-page-bg);
}
@media screen and (max-width: 767px) {
  .p-benefits {
    padding-block: calc(110 * var(--to-rem)) calc(198 * var(--to-rem));
  }
}
.p-benefits__inner {
  position: relative;
  width: calc(1280 * var(--to-rem));
  margin-inline: auto;
  padding-inline: calc(80 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-benefits__inner {
    width: calc(391 * var(--to-rem));
    padding-inline: calc(24 * var(--to-rem));
  }
}
/* 背景英字テキスト */
.p-benefits__hero-en {
  inset-block-start: 0;
  inset-inline-start: calc(351 * var(--to-rem));
  line-height: 0.7;
}
@media screen and (max-width: 767px) {
  .p-benefits__hero-en {
    line-height: 1;
  }
}
/* タイトル */
.p-benefits__title {
  padding-block-start: calc(121 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-benefits__title {
    padding-block-start: calc(40 * var(--to-rem));
  }
}
/* ===== セクション共通 ===== */
.p-benefits__section {
  margin-block-start: calc(140 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-benefits__section {
    margin-block-start: calc(81 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-benefits__section + .p-benefits__section {
    margin-block-start: calc(80 * var(--to-rem));
  }
}
.p-benefits__section.p-benefits__section--training {
  margin-block-start: calc(65 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-benefits__section.p-benefits__section--training {
    margin-block-start: calc(60 * var(--to-rem));
  }
}
.p-benefits__heading {
  margin: 0;
  color: #363636;
  font-family: var(--font-shippori);
  font-size: max(43 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-benefits__heading {
    font-size: calc(28 * var(--to-rem));
  }
}
/* ===== 福利厚生カード ===== */
.p-benefits__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: calc(40 * var(--to-rem));
  margin-block-start: calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-benefits__cards {
    grid-template-columns: 1fr;
    gap: calc(16 * var(--to-rem));
  }
}
.p-benefits__card {
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
  align-items: center;
  padding: calc(24 * var(--to-rem));
  border-radius: calc(8 * var(--to-rem));
  background-color: #e6e9ee;
}
@media screen and (max-width: 767px) {
  .p-benefits__card {
    padding: calc(24 * var(--to-rem)) 0;
  }
}
.p-benefits__card--stacked .p-benefits__card-stack {
  display: flex;
  justify-content: center;
  gap: calc(17 * var(--to-rem));
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-benefits__card--stacked .p-benefits__card-stack {
    flex-direction: column;
  }
}
.p-benefits__card--stacked .p-benefits__card-text {
  margin-block-start: calc(0 * var(--to-rem));
}
.p-benefits__card-title {
  width: 100%;
  margin: 0;
  color: #363636;
  font-family: var(--font-shippori);
  font-size: max(24 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.4;
  text-align: center;
}
.p-benefits__card-stack {
  width: 100%;
}
.p-benefits__card-highlight-wrap {
  display: flex;
  gap: calc(16 * var(--to-rem));
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-benefits__card-highlight-wrap {
    gap: calc(16 * var(--to-rem));
    flex-wrap: nowrap;
  }
}
.p-benefits__card-prefix {
  color: #1c2a55;
  font-family: var(--font-shippori);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.6;
}
.p-benefits__card-badge {
  display: inline-grid;
  place-items: center;
  padding: calc(6 * var(--to-rem)) calc(12 * var(--to-rem));
  border-radius: calc(6 * var(--to-rem));
  background: linear-gradient(70deg, #9adcf8 0%, #0e5eaa 100%);
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", var(--font-shippori);
  font-size: max(20 * var(--to-rem), 12px);
  font-weight: 510;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-benefits__card-badge {
    white-space: normal;
  }
}
.p-benefits__card-badge-sm {
  font-size: max(16 * var(--to-rem), 12px);
  line-height: 1.6;
}
.p-benefits__card-text {
  margin: 0;
  color: #1c2a55;
  font-family: var(--font-shippori);
  font-size: max(12 * var(--to-rem), 10px);
  font-weight: var(--fw-regular);
  line-height: 1.75;
  text-align: center;
}
/* ===== 研修ロードマップ ===== */
.p-benefits__roadmap {
  --arrow-w: calc(13.5 * var(--to-rem));
  --step-w: calc(180 * var(--to-rem));
  --step-h: calc(54 * var(--to-rem));
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-block-start: calc(40 * var(--to-rem));
  padding: calc(24 * var(--to-rem)) calc(80 * var(--to-rem)) calc(36 * var(--to-rem));
  border-radius: calc(16 * var(--to-rem));
  background-color: #e6e9ee;
}
@media screen and (max-width: 767px) {
  .p-benefits__roadmap {
    --arrow-h: calc(10.5 * var(--to-rem));
    position: relative;
    padding: calc(24 * var(--to-rem)) calc(16 * var(--to-rem));
  }
}
/* --- ラベル行: 「研修」「キャリア形成」--- */
.p-benefits__roadmap-labels {
  display: grid;
  grid-template-columns: repeat(4, var(--step-w));
  color: #0e5eaa;
  font-family: var(--font-shippori);
  font-size: max(20 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-benefits__roadmap-labels {
    position: absolute;
    inset-block-start: calc(24 * var(--to-rem));
    inset-inline-start: calc(59 * var(--to-rem));
    display: flex;
    flex-direction: column;
    font-size: max(16 * var(--to-rem), 12px);
    line-height: 1;
  }
}
/* 「研修」→ col1, 「キャリア形成」→ col4 */
.p-benefits__roadmap-labels span:last-child {
  grid-column: 4;
}
@media screen and (max-width: 767px) {
  .p-benefits__roadmap-labels span {
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}
@media screen and (max-width: 767px) {
  .p-benefits__roadmap-labels span:last-child {
    margin-top: calc(136 * var(--to-rem));
  }
}
/* --- ステップ行 --- */
.p-benefits__roadmap-steps {
  display: flex;
  margin: calc(10 * var(--to-rem)) 0 0;
  padding: 0;
  list-style: none;
  margin-block-start: calc(-3 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-benefits__roadmap-steps {
    flex-direction: column;
    align-items: stretch;
    width: calc(180 * var(--to-rem));
    margin: 0 auto;
  }
}
.p-benefits__roadmap-step {
  --step-bg: #c9e5ff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(7 * var(--to-rem));
  width: calc(var(--step-w) + var(--arrow-w));
  min-height: var(--step-h);
  margin-inline-end: calc(-1 * var(--arrow-w) + 1px);
  padding: calc(8 * var(--to-rem)) calc(20 * var(--to-rem));
  padding-inline-end: calc(20 * var(--to-rem) + var(--arrow-w));
  background-color: var(--step-bg);
  color: #fff;
  font-family: var(--font-shippori);
  font-size: max(12 * var(--to-rem), 10px);
  font-weight: var(--fw-regular);
  line-height: 1.75;
  text-align: center;
  clip-path: polygon(0 0, calc(100% - var(--arrow-w)) 0, 100% 50%, calc(100% - var(--arrow-w)) 100%, 0 100%);
}
@media screen and (max-width: 767px) {
  .p-benefits__roadmap-step {
    width: auto;
    min-height: calc(var(--step-h) + var(--arrow-h));
    margin-inline-end: 0;
    margin-block-end: calc(-1 * var(--arrow-h) + 1px);
    padding: calc(8 * var(--to-rem)) calc(20 * var(--to-rem));
    padding-inline-end: calc(20 * var(--to-rem));
    font-size: max(10 * var(--to-rem), 10px);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--arrow-h)), 50% 100%, 0 calc(100% - var(--arrow-h)));
  }
  .p-benefits__roadmap-step span {
    font-size: max(12 * var(--to-rem), 10px);
  }
}
/* 左に切り欠き（2番目以降） */
.p-benefits__roadmap-step:not(:first-child) {
  padding-inline-start: calc(20 * var(--to-rem) + var(--arrow-w));
  clip-path: polygon(0 0, calc(100% - var(--arrow-w)) 0, 100% 50%, calc(100% - var(--arrow-w)) 100%, 0 100%, var(--arrow-w) 50%);
}
@media screen and (max-width: 767px) {
  .p-benefits__roadmap-step:not(:first-child) {
    padding-inline-start: calc(20 * var(--to-rem));
    padding-block-start: calc(8 * var(--to-rem) + var(--arrow-h));
    clip-path: polygon(0 0, 50% var(--arrow-h), 100% 0, 100% calc(100% - var(--arrow-h)), 50% 100%, 0 calc(100% - var(--arrow-h)));
  }
}
/* 最後のステップ: 右は四角 */
.p-benefits__roadmap-step:last-child {
  width: var(--step-w);
  margin-inline-end: 0;
  padding-inline-end: calc(20 * var(--to-rem));
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, var(--arrow-w) 50%);
}
@media screen and (max-width: 767px) {
  .p-benefits__roadmap-step:last-child {
    width: auto;
    min-height: calc(105 * var(--to-rem));
    margin-block-end: 0;
    padding-block-end: calc(24 * var(--to-rem));
    clip-path: polygon(0 0, 50% var(--arrow-h), 100% 0, 100% 100%, 0 100%);
  }
}
.p-benefits__roadmap-step-num {
  font-size: max(16 * var(--to-rem), 12px);
}
@media screen and (max-width: 767px) {
  .p-benefits__roadmap-step-num {
    font-size: max(12 * var(--to-rem), 10px);
  }
}
.p-benefits__roadmap-step--lv1 {
  --step-bg: #c9e5ff;
  color: #0e5eaa;
}
.p-benefits__roadmap-step--lv2 {
  --step-bg: #78afe4;
}
.p-benefits__roadmap-step--lv3 {
  --step-bg: #4c94d9;
}
.p-benefits__roadmap-step--lv4 {
  --step-bg: #287ed0;
}
/* --- 期間ラベル行 --- */
.p-benefits__roadmap-periods {
  position: relative;
  width: calc(374.5 * var(--to-rem));
  height: calc(10 * var(--to-rem));
  margin-block-start: calc(7 * var(--to-rem));
  align-self: flex-start;
  margin-inline-start: calc((100% - 720 * var(--to-rem)) / 2);
  background-image: radial-gradient(circle, #0e5eaa 50%, transparent 50%), radial-gradient(circle, #0e5eaa 50%, transparent 50%), radial-gradient(circle, #0e5eaa 50%, transparent 50%);
  background-size: calc(7 * var(--to-rem)) calc(7 * var(--to-rem));
  background-repeat: no-repeat;
  background-position: 0 calc(2 * var(--to-rem)), calc(194 * var(--to-rem) - 3.5 * var(--to-rem)) calc(2 * var(--to-rem)), calc(374.5 * var(--to-rem) - 7 * var(--to-rem)) calc(2 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-benefits__roadmap-periods {
    position: absolute;
    inset-block-start: calc(17 * var(--to-rem));
    inset-inline-end: calc(57 * var(--to-rem));
    width: calc(14 * var(--to-rem));
    height: calc(150 * var(--to-rem));
    margin: 0;
    margin-inline-start: 0;
    background-image: radial-gradient(circle, #0e5eaa 50%, transparent 50%), radial-gradient(circle, #0e5eaa 50%, transparent 50%), radial-gradient(circle, #0e5eaa 50%, transparent 50%);
    background-size: calc(7 * var(--to-rem)) calc(7 * var(--to-rem));
    background-repeat: no-repeat;
    background-position: calc(3.5 * var(--to-rem)) 0, calc(3.5 * var(--to-rem)) calc(62 * var(--to-rem)), calc(3.5 * var(--to-rem)) calc(123 * var(--to-rem));
  }
}
/* 線1: 左ドット中心→中ドット中心 */
.p-benefits__roadmap-periods::before {
  content: "";
  position: absolute;
  top: calc(5 * var(--to-rem));
  left: calc(3.5 * var(--to-rem));
  width: calc(194 * var(--to-rem) - 3.5 * var(--to-rem));
  border-top: calc(1 * var(--to-rem)) solid #0e5eaa;
}
@media screen and (max-width: 767px) {
  .p-benefits__roadmap-periods::before {
    display: block;
    top: calc(3.5 * var(--to-rem));
    left: calc(7 * var(--to-rem));
    width: 0;
    height: calc(61 * var(--to-rem));
    border-top: none;
    border-left: calc(1 * var(--to-rem)) solid #0e5eaa;
  }
}
/* 線2: 中ドット中心→右ドット中心 */
.p-benefits__roadmap-periods::after {
  content: "";
  position: absolute;
  top: calc(5 * var(--to-rem));
  left: calc(194 * var(--to-rem));
  width: calc(180.5 * var(--to-rem) - 3.5 * var(--to-rem));
  border-top: calc(1 * var(--to-rem)) solid #0e5eaa;
}
@media screen and (max-width: 767px) {
  .p-benefits__roadmap-periods::after {
    display: block;
    top: calc(64.5 * var(--to-rem));
    left: calc(7 * var(--to-rem));
    width: 0;
    height: calc(61 * var(--to-rem));
    border-top: none;
    border-left: calc(1 * var(--to-rem)) solid #0e5eaa;
  }
}
.p-benefits__roadmap-periods span {
  position: absolute;
  z-index: 1;
  top: 0;
  padding-inline: calc(4 * var(--to-rem));
  background-color: #e6e9ee;
  color: #0e5eaa;
  font-family: var(--font-shippori);
  font-size: max(10 * var(--to-rem), 10px);
  font-weight: var(--fw-medium);
  line-height: 1;
  white-space: nowrap;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-benefits__roadmap-periods span {
    position: absolute;
    writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: normal;
    padding-inline: 0;
    padding-block: calc(2 * var(--to-rem));
    transform: none;
    left: 0;
  }
}
/* 「約3週間」: 線1中央 x=97 */
.p-benefits__roadmap-periods span:first-child {
  left: calc(97 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-benefits__roadmap-periods span:first-child {
    left: 0;
    top: calc(18 * var(--to-rem));
  }
}
/* 「約6ヶ月」: 線2中央 x=284 */
.p-benefits__roadmap-periods span:last-child {
  left: calc(284 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-benefits__roadmap-periods span:last-child {
    left: 0;
    top: calc(73 * var(--to-rem));
  }
}
/* ===== 研修詳細 ===== */
.p-benefits__trainings {
  display: flex;
  flex-direction: column;
  gap: calc(42 * var(--to-rem));
  margin-block-start: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-benefits__trainings {
    width: calc(343 * var(--to-rem));
    gap: calc(45 * var(--to-rem));
  }
}
.p-benefits__training {
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
}
.p-benefits__training-title {
  margin: 0;
  color: #0e5eaa;
  font-family: var(--font-shippori);
  font-size: max(24 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.4;
}
.p-benefits__training-text {
  margin: 0;
  color: #363636;
  font-family: var(--font-shippori);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.6;
}
/* ===== p-contact: お問い合わせ ===== */
.p-contact {
  padding-block: calc(72 * var(--to-rem));
}
.p-contact__form {
  margin-block-start: calc(64 * var(--to-rem));
}
.p-contact__title {
  display: grid;
  place-items: center;
}
/* /p-contact: お問い合わせ */
.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: max(14 * var(--to-rem), 12px);
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-dev-notice__content {
    gap: calc(20 * var(--to-rem));
    font-size: calc(16 * var(--to-rem));
  }
}
.p-dev-notice__title {
  color: var(--color-text);
  font-size: calc(18 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-dev-notice__title {
    font-size: calc(20 * var(--to-rem));
  }
}
.p-dev-notice__text code {
  padding: calc(2 * var(--to-rem)) 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: calc(2 * var(--to-rem)) 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-entry: エントリーページ ===== */
.p-entry {
  /* Figma: ヘッダー下からコンテンツまでの余白 */
  padding-block-start: calc(140 * var(--to-rem));
  background-color: var(--color-page-bg);
}
@media screen and (max-width: 767px) {
  .p-entry {
    padding-block-start: calc(146 * var(--to-rem));
    padding-inline: calc(16 * var(--to-rem));
  }
}
.p-entry__inner {
  width: calc(1120 * var(--to-rem));
  margin-inline: auto;
  padding-block-end: calc(160 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-entry__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(60 * var(--to-rem));
    width: 100%;
    padding-block-end: calc(63 * var(--to-rem));
  }
}
/* -- Heading: ENTRY 透かし文字 + タイトル -- */
.p-entry__heading {
  position: relative;
  /* Figma: watermark→title→cardの配置に合わせた余白 */
  padding-block: calc(120 * var(--to-rem)) calc(84 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-entry__heading {
    padding-block: 0;
  }
}
.p-entry__heading-bg {
  inset-block-start: 0;
  inset-inline-start: calc(173 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-entry__title {
    line-height: 1.4;
  }
}
/* -- Entry buttons card -- */
.p-entry__card {
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
  padding: calc(40 * var(--to-rem)) calc(80 * var(--to-rem));
  border-radius: calc(16 * var(--to-rem));
  background-color: #e6e9ee;
}
@media screen and (max-width: 767px) {
  .p-entry__card {
    align-self: stretch;
    padding: calc(16 * var(--to-rem));
  }
}
.p-entry__button {
  min-height: calc(56 * var(--to-rem));
  padding-block: calc(17 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-entry__button {
    height: calc(48 * var(--to-rem));
    padding-block: calc(30 * var(--to-rem));
  }
}
/* -- Instagram card -- */
.p-entry__instagram {
  position: relative;
  display: flex;
  gap: calc(57 * var(--to-rem));
  align-items: center;
  margin-block-start: calc(40 * var(--to-rem));
  margin-inline: calc(8 * var(--to-rem));
  padding: calc(32 * var(--to-rem)) calc(80 * var(--to-rem)) calc(32 * var(--to-rem)) calc(128 * var(--to-rem));
  border-radius: calc(16 * var(--to-rem));
  background: linear-gradient(45deg, #9adcf8 0%, #0e5eaa 100%);
  transition: background var(--duration);
}
@media (any-hover: hover) {
  .p-entry__instagram:hover {
    background: #0e5eaa;
  }
  .p-entry__instagram:hover .p-entry__instagram-tag {
    background-color: var(--color-white);
    color: #0e5eaa;
  }
}
@media screen and (max-width: 767px) {
  .p-entry__instagram {
    flex-direction: column;
    gap: calc(36 * var(--to-rem));
    align-self: stretch;
    margin-block-start: 0;
    padding: calc(32 * var(--to-rem)) calc(24 * var(--to-rem));
  }
}
.p-entry__instagram-info {
  display: flex;
  flex-direction: column;
  gap: calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-entry__instagram-info {
    position: relative;
    align-self: stretch;
    gap: calc(12 * var(--to-rem));
  }
}
.p-entry__instagram-icon {
  width: calc(50 * var(--to-rem));
  height: calc(50 * var(--to-rem));
}
.p-entry__instagram-title {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-shippori);
  font-size: max(32 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.12;
}
@media screen and (max-width: 767px) {
  .p-entry__instagram-title {
    font-size: calc(28 * var(--to-rem));
  }
}
.p-entry__instagram-tags {
  display: flex;
  flex-direction: column;
  gap: calc(4 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-entry__instagram-tags {
    margin-block-start: calc(8 * var(--to-rem));
  }
}
.p-entry__instagram-tag {
  display: inline-block;
  width: fit-content;
  padding: calc(4 * var(--to-rem)) calc(12 * var(--to-rem));
  border-radius: calc(4 * var(--to-rem));
  background-color: #0e5eaa;
  color: var(--color-white);
  font-family: var(--font-noto-sans-jp);
  font-size: max(12 * var(--to-rem), 10px);
  font-weight: var(--fw-regular);
  line-height: 1.4;
  transition: background-color var(--duration), color var(--duration);
}
/* -- Instagram preview photos -- */
.p-entry__instagram-photos {
  width: calc(339 * var(--to-rem));
  aspect-ratio: 339/301;
  margin: 0;
  box-shadow: calc(14 * var(--to-rem)) calc(14 * var(--to-rem)) calc(22 * var(--to-rem)) 0 rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .p-entry__instagram-photos {
    width: 100%;
    aspect-ratio: auto;
    box-shadow: calc(12 * var(--to-rem)) calc(12 * var(--to-rem)) calc(19 * var(--to-rem)) 0 rgba(0, 0, 0, 0.25);
  }
}
/* -- Circle arrow link: Instagram CTA -- */
.p-entry__instagram-link {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: calc(80 * var(--to-rem));
  height: calc(80 * var(--to-rem));
  border-radius: 50%;
  background-color: var(--color-white);
  color: #0e5eaa;
  text-decoration: none;
  /* SP: info セクション内に絶対配置 */
}
@media screen and (max-width: 767px) {
  .p-entry__instagram-link {
    position: absolute;
    inset-block-start: calc(33 * var(--to-rem));
    inset-inline-end: calc(24 * var(--to-rem));
    width: calc(32 * var(--to-rem));
    height: calc(32 * var(--to-rem));
  }
}
.p-entry__instagram-link svg {
  width: calc(16 * var(--to-rem));
  height: calc(32 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-entry__instagram-link svg {
    width: calc(8 * var(--to-rem));
    height: calc(16 * var(--to-rem));
  }
}
/* /p-entry: エントリーページ */
.p-error {
  padding-block-start: calc(60 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-error {
    padding-block-start: calc(80 * var(--to-rem));
  }
}
.p-error__header {
  text-align: center;
}
.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-block-start: calc(24 * var(--to-rem));
  margin-inline: auto;
  color: var(--color-text);
  font-size: max(14 * var(--to-rem), 12px);
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-error__content {
    margin-block-start: calc(32 * var(--to-rem));
    font-size: calc(16 * var(--to-rem));
  }
}
.p-error__content p + p {
  margin-block-start: calc(24 * var(--to-rem));
}
/* ===== p-footer: フッター ===== */
.p-footer {
  background-color: var(--color-page-bg);
}
.p-footer__cta {
  position: relative;
  padding-block-end: calc(160 * var(--to-rem));
  background-color: var(--color-page-bg);
}
@media screen and (max-width: 767px) {
  .p-footer__cta {
    padding-block: calc(11 * var(--to-rem)) calc(80 * var(--to-rem));
  }
}
.p-footer__join {
  overflow: hidden;
}
.p-footer__join-track {
  display: flex;
  align-items: center;
  min-width: max-content;
  animation: footer-join-loop 24s linear infinite;
}
@media screen and (max-width: 767px) {
  .p-footer__join-track {
    translate: 0 calc(30 * var(--to-rem));
  }
}
.p-footer__join-group {
  display: inline-flex;
  gap: calc(20 * var(--to-rem));
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-footer__join-group {
    gap: calc(10 * var(--to-rem));
  }
}
.p-footer__join-group span {
  color: rgba(54, 54, 54, 0.07);
  font-family: var(--font-alegreya);
  font-size: calc(200 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1.2;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-footer__join-group span {
    font-size: calc(99.2 * var(--to-rem));
  }
}
.p-footer__cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: calc(49 * var(--to-rem));
  align-items: center;
  margin-top: calc(-238 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-footer__cta-inner {
    gap: calc(24 * var(--to-rem));
    margin-top: calc(-104 * var(--to-rem));
    padding-inline: calc(16 * var(--to-rem));
  }
}
.p-footer__lead {
  color: #252060;
  font-family: var(--font-shippori);
  font-size: calc(32 * var(--to-rem));
  line-height: 1.5;
  letter-spacing: calc(6.4 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer__lead {
    font-size: calc(24 * var(--to-rem));
    line-height: 1.4;
    letter-spacing: 0;
  }
}
.p-footer__entry-button {
  width: 100%;
  max-width: calc(552 * var(--to-rem));
  padding: calc(47 * var(--to-rem)) calc(16 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-footer__entry-button {
    max-width: calc(358 * var(--to-rem));
    padding-block: calc(27 * var(--to-rem));
  }
}
.p-footer__sub-buttons {
  display: flex;
  gap: calc(16 * var(--to-rem));
  width: 100%;
  max-width: calc(552 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-footer__sub-buttons {
    flex-direction: column;
    max-width: calc(358 * var(--to-rem));
  }
}
.p-footer__sub-button {
  display: inline-flex;
  flex: 1;
  gap: calc(8 * var(--to-rem));
  justify-content: center;
  align-items: center;
  min-width: 0;
  padding: calc(15 * var(--to-rem)) calc(16 * var(--to-rem));
  border: 1px solid #0e5eaa;
  border-radius: calc(8 * var(--to-rem));
  background-color: #fff;
  color: #0e5eaa;
  font-family: var(--font-noto-sans-jp);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.8;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color var(--duration), border-color var(--duration), color var(--duration);
}
@media (any-hover: hover) {
  .p-footer__sub-button:hover {
    background-color: #0e5eaa;
    border-color: #fff;
    color: #fff;
  }
}
.p-footer__sub-button img {
  width: calc(24 * var(--to-rem));
  height: calc(24 * var(--to-rem));
  flex-shrink: 0;
  object-fit: contain;
  transition: filter var(--duration);
}
.p-footer__sub-button:hover img {
  filter: brightness(0) invert(1);
}
.p-footer__main {
  --footer-main-content-width: calc(1120 * var(--to-rem));
  --footer-main-gutter: calc(80 * var(--to-rem));
  --footer-main-bg-offset: calc(63 * var(--to-rem));
  position: relative;
  min-height: calc(276 * var(--to-rem));
  padding-block: calc(122 * var(--to-rem)) calc(22 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-footer__main {
    min-height: calc(393 * var(--to-rem));
    padding-block: 0 calc(40 * var(--to-rem));
  }
}
.p-footer__main-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.p-footer__main-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - min(var(--footer-main-content-width), 100% - var(--footer-main-gutter) * 2) / 2 + var(--footer-main-bg-offset));
  width: calc(1600 * var(--to-rem));
  height: calc(1600 * var(--to-rem));
  border-radius: 50%;
  background-color: #1e65ae;
}
@media screen and (max-width: 767px) {
  .p-footer__main-bg::before {
    top: calc(95 * var(--to-rem));
    left: 50%;
    width: calc(930 * var(--to-rem));
    height: calc(930 * var(--to-rem));
    transform: translateX(-50%);
  }
}
.p-footer__main-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  width: min(var(--footer-main-content-width), 100% - var(--footer-main-gutter) * 2);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-footer__main-inner {
    flex-direction: column;
    gap: calc(32 * var(--to-rem));
    align-items: center;
    width: min(var(--footer-main-content-width), 100% - 16 * var(--to-rem) * 2);
  }
}
.p-footer__brand {
  display: flex;
  flex-direction: column;
  gap: calc(7 * var(--to-rem));
  width: calc(91 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-footer__brand {
    padding-block-end: calc(40 * var(--to-rem));
  }
}
.p-footer__logo-link {
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-footer__logo-link:hover {
    opacity: 0.7;
  }
}
.p-footer__logo-link img {
  width: 100%;
  height: auto;
}
.p-footer__brand-caption {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: calc(4 * var(--to-rem));
  background: linear-gradient(60.5deg, #9adcf8 0%, #0e5eaa 100%);
  color: #fff;
  font-family: var(--font-shippori);
  font-size: calc(10 * var(--to-rem));
  line-height: 1.3;
}
.p-footer__links {
  display: flex;
  flex-direction: column;
  gap: calc(12 * var(--to-rem));
  align-items: flex-end;
  width: calc(571 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-footer__links {
    gap: calc(32 * var(--to-rem));
    align-items: center;
    width: 100%;
    max-width: calc(358 * var(--to-rem));
  }
}
.p-footer__nav {
  display: flex;
  flex-direction: column;
  gap: calc(3 * var(--to-rem));
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav--pc {
    display: none;
  }
}
.p-footer__nav--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-footer__nav--sp {
    display: flex;
  }
}
.p-footer__nav-list {
  display: flex;
  gap: calc(24 * var(--to-rem));
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-list {
    gap: calc(10 * var(--to-rem));
    justify-content: center;
  }
}
.p-footer__nav-item a {
  display: inline-block;
  color: #fff;
  font-family: var(--font-shippori);
  font-size: max(12 * var(--to-rem), 10px);
  line-height: 1.8;
  text-decoration: none;
  transition: translate var(--duration);
}
@media (any-hover: hover) {
  .p-footer__nav-item a:hover {
    translate: 0 4px;
  }
}
.p-footer__requirements {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: calc(8 * var(--to-rem)) calc(12 * var(--to-rem));
  border: 1px solid #fff;
  border-radius: calc(8 * var(--to-rem));
  color: #fff;
  font-family: var(--font-shippori);
  font-size: max(14 * var(--to-rem), 12px);
  line-height: 1.6;
  text-decoration: none;
  transition: background-color var(--duration), color var(--duration);
}
@media (any-hover: hover) {
  .p-footer__requirements:hover {
    background-color: #fff;
    color: #0e5eaa;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__requirements {
    width: 100%;
  }
}
.p-footer__copyright {
  position: relative;
  z-index: 1;
  width: min(var(--footer-main-content-width), 100% - var(--footer-main-gutter) * 2);
  margin: calc(17 * var(--to-rem)) auto 0;
  color: #fff;
  font-family: var(--font-shippori);
  font-size: max(10 * var(--to-rem), 10px);
  line-height: 1.3;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    width: auto;
    margin-block-start: calc(32 * var(--to-rem));
    padding-inline: calc(16 * var(--to-rem));
    text-align: center;
  }
}
@keyframes footer-join-loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* /p-footer: フッター */
.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%;
}
:is(.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;
}
@media screen and (max-width: 767px) {
  :is(.p-form__input, .p-form__select, .p-form__textarea) {
    padding: calc(16 * var(--to-rem)) calc(20 * var(--to-rem));
  }
}
:is(.p-form__input, .p-form__select, .p-form__textarea)::placeholder {
  color: oklch(from var(--_form-color-text) l c h/50%);
}
:is(.p-form__input, .p-form__select, .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;
}
:is(.p-form__input, .p-form__select, .p-form__textarea):hover:not(:focus) {
  border-color: var(--_form-color-accent);
  opacity: 0.7;
}
:is(.p-form__input, .p-form__select, .p-form__textarea).is-error {
  border-color: var(--_form-color-badge-bg);
}
.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: 0;
  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 calc(16 * var(--to-rem)) 0 0;
  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 calc(8 * var(--to-rem)) 0 0;
  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-inline-end: 2px solid var(--_form-color-bg);
  border-block-end: 2px solid var(--_form-color-bg);
  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: max(14 * var(--to-rem), 12px);
}
.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: ヘッダー ===== */
.p-header {
  --to-rem: 1px;
  container-type: inline-size;
  height: var(--header-height);
  padding-block: calc(24 * var(--to-rem));
  background-color: transparent;
  transition: background-color var(--duration);
}
@media screen and (max-width: 1023px) {
  .p-header {
    padding-block: calc(16 * var(--to-rem));
  }
}
.p-header__inner {
  display: flex;
  gap: clamp(0px, 1vw, 16 * var(--to-rem));
  justify-content: space-between;
  align-items: center;
  margin-inline: auto;
  padding-inline-start: clamp(8 * var(--to-rem), (100vw - 1024px) * 0.3 + 8 * var(--to-rem), 60 * var(--to-rem));
  padding-inline-end: calc(28 * var(--to-rem));
}
@media screen and (max-width: 1023px) {
  .p-header__inner {
    width: auto;
    height: calc(64 * var(--to-rem));
    margin-inline: calc(12 * var(--to-rem));
    padding-inline: calc(12 * var(--to-rem));
    border-radius: calc(50 * var(--to-rem));
    box-shadow: 0 10px 12px rgba(0, 0, 0, 0.03);
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@container (max-width: 1170px) {
  .p-header__inner {
    width: auto;
    height: calc(64 * var(--to-rem));
    margin-inline: calc(12 * var(--to-rem));
    padding-inline: calc(12 * var(--to-rem));
    border-radius: calc(50 * var(--to-rem));
    box-shadow: 0 10px 12px rgba(0, 0, 0, 0.03);
    background-color: rgba(255, 255, 255, 0.8);
  }
}
.p-header__logo {
  flex-shrink: 0;
  width: calc(103 * var(--to-rem));
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: calc(73 * var(--to-rem));
    height: auto;
  }
}
.p-header__logo a {
  display: block;
  height: 100%;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-header__logo a:hover {
    opacity: 0.7;
  }
}
.p-header__logo img {
  display: block;
  width: 100%;
  height: 100%;
}
.p-header__nav {
  display: flex;
  flex: 1;
  justify-content: center;
  min-width: 0;
  margin-inline: 0;
}
@media screen and (max-width: 1023px) {
  .p-header__nav {
    display: none;
  }
}
@container (max-width: 1170px) {
  .p-header__nav {
    display: none;
  }
}
.p-header__nav-list {
  display: flex;
  flex: 0 0 auto;
  gap: clamp(10 * var(--to-rem), 9.17vw - 97.43px, 20 * var(--to-rem));
  justify-content: space-between;
  align-items: center;
  margin-inline: 0;
  padding-block: calc(16 * var(--to-rem));
  padding-inline: clamp(20 * var(--to-rem), 18.35vw - 194.87px, 40 * var(--to-rem));
  border-radius: calc(40 * var(--to-rem));
  box-shadow: 0 10px 12px rgba(0, 0, 0, 0.03);
  background-color: rgba(255, 255, 255, 0.8);
}
.p-header__nav-item > a {
  display: block;
  color: #363636;
  font-family: var(--font-shippori);
  font-size: calc(12 * var(--to-rem));
  font-weight: var(--fw-regular);
  line-height: 1.8;
  white-space: nowrap;
  transition: color var(--duration), translate var(--duration);
}
@media (any-hover: hover) {
  .p-header__nav-item > a:hover {
    color: #0e5eaa;
    translate: 0 5px;
  }
}
.p-header__utility {
  display: flex;
  flex-shrink: 1;
  align-items: center;
  min-width: 0;
}
@media screen and (max-width: 1023px) {
  .p-header__utility {
    gap: calc(16 * var(--to-rem));
  }
}
@container (max-width: 1170px) {
  .p-header__utility {
    gap: calc(16 * var(--to-rem));
  }
}
.p-header__buttons {
  display: flex;
  gap: calc(10 * var(--to-rem));
}
@media screen and (max-width: 1023px) {
  .p-header__buttons {
    display: none;
  }
}
@container (max-width: 1170px) {
  .p-header__buttons {
    display: none;
  }
}
.p-header__btn {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: calc(102 * var(--to-rem));
  height: calc(60 * var(--to-rem));
  border-radius: calc(8 * var(--to-rem));
  box-shadow: 0 10px 12px rgba(0, 0, 0, 0.03);
  background-image: linear-gradient(45deg, #9adcf8 0%, #0e5eaa 100%);
  text-decoration: none;
  transition: filter var(--duration);
}
.p-header__btn--entry {
  background-color: #0e5eaa;
  background-image: none;
  transition: box-shadow var(--duration);
}
.p-header__btn--entry::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: linear-gradient(45deg, #9adcf8 0%, #0e5eaa 100%);
  opacity: 1;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-header__btn--entry:hover {
    box-shadow: inset 0 0 0 1px #fff;
  }
  .p-header__btn--entry:hover::before {
    opacity: 0;
  }
}
.p-header__btn > * {
  position: relative;
  z-index: 1;
}
.p-header__btn-icon {
  display: block;
}
.p-header__btn-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-header__btn--instagram::before {
  content: "";
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  width: calc(250 * var(--to-rem));
  height: calc(250 * var(--to-rem));
  background: url("../images/bg_instagram_hover.webp") center/cover no-repeat;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-header__btn--instagram:hover::before {
    opacity: 1;
  }
}
.p-header__btn--instagram .p-header__btn-icon {
  width: calc(20 * var(--to-rem));
  height: calc(20 * var(--to-rem));
}
.p-header__btn--entry .p-header__btn-icon {
  width: calc(24 * var(--to-rem));
  height: calc(24 * var(--to-rem));
}
.p-header__btn-label {
  display: block;
  color: var(--color-white);
  font-family: var(--font-noto-sans-jp);
  font-size: calc(12 * var(--to-rem));
  font-weight: var(--fw-regular);
  line-height: 1.75;
}
.p-header__instagram-link {
  display: none;
}
@media screen and (max-width: 1023px) {
  .p-header__instagram-link {
    position: relative;
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    overflow: visible;
    text-decoration: none;
  }
}
@container (max-width: 1170px) {
  .p-header__instagram-link {
    position: relative;
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    overflow: visible;
    text-decoration: none;
  }
}
.p-header__instagram-link::before {
  content: "";
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  width: calc(250 * var(--to-rem));
  height: calc(250 * var(--to-rem));
  background: url("../images/bg_instagram_hover.webp") center/cover no-repeat;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-header__instagram-link:hover::before {
    opacity: 1;
  }
}
.p-header__instagram-link > * {
  position: relative;
  z-index: 1;
}
.p-header__instagram-icon--mobile {
  display: none;
}
@media screen and (max-width: 1023px) {
  .p-header__instagram-icon--mobile {
    position: relative;
    display: block;
    width: calc(28 * var(--to-rem));
    height: calc(28 * var(--to-rem));
  }
}
@container (max-width: 1170px) {
  .p-header__instagram-icon--mobile {
    position: relative;
    display: block;
    width: calc(28 * var(--to-rem));
    height: calc(28 * var(--to-rem));
  }
}
.p-header__instagram-icon-image {
  position: absolute;
  inset: 0;
}
.p-header__instagram-icon-image--blue {
  transition: opacity var(--duration);
}
.p-header__instagram-icon-image--gradient {
  mask: url("data:image/svg+xml,%3csvg%20preserveAspectRatio='none'%20width='100%25'%20height='100%25'%20overflow='visible'%20style='display:%20block;'%20viewBox='0%200%2028%2028'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20id='clippath'%3e%3cpath%20id='Vector'%20d='M14%202.52229C17.7382%202.52229%2018.181%202.53629%2019.6574%202.60372C21.0225%202.66599%2021.7638%202.89382%2022.2571%203.08569C22.9108%203.33983%2023.377%203.64281%2023.8669%204.13273C24.3567%204.62265%2024.6604%205.08893%2024.914%205.74261C25.1058%206.23589%2025.3337%206.97715%2025.3959%208.34229C25.4633%209.81866%2025.4774%2010.2613%2025.4774%2013.9997C25.4774%2017.738%2025.4634%2018.1806%2025.3959%2019.6569C25.3337%2021.0221%2025.1058%2021.7633%2024.914%2022.2566C24.6598%2022.9104%2024.3569%2023.3766%2023.8669%2023.8665C23.377%2024.3563%2022.9107%2024.6599%2022.2571%2024.9135C21.7638%2025.1054%2021.0225%2025.3332%2019.6574%2025.3955C18.1811%2025.4628%2017.7384%2025.4769%2014%2025.4769C10.2616%2025.4769%209.81911%2025.4629%208.34274%2025.3955C6.9776%2025.3332%206.23633%2025.1054%205.74306%2024.9135C5.08927%2024.6593%204.6231%2024.3563%204.13318%2023.8665C3.64337%2023.3766%203.33972%2022.9103%203.08613%2022.2566C2.89415%2021.7633%202.66644%2021.0221%202.60417%2019.6569C2.53685%2018.1807%202.52274%2017.7379%202.52274%2013.9997C2.52274%2010.2614%202.53674%209.81877%202.60417%208.34229C2.66644%206.97715%202.89426%206.23589%203.08613%205.74261C3.34028%205.08882%203.64326%204.62265%204.13318%204.13273C4.6231%203.64292%205.08938%203.33927%205.74306%203.08569C6.23633%202.89382%206.9776%202.66599%208.34274%202.60372C9.819%202.53696%2010.2618%202.52229%2014%202.52229ZM14%200C10.1978%200%209.72088%200.0162411%208.22771%200.0841175C6.73734%200.151994%205.71998%200.388889%204.82952%200.734991C3.90871%201.09297%203.12825%201.57168%202.34991%202.34991C1.57168%203.12825%201.09252%203.90871%200.734991%204.82952C0.388777%205.72009%200.151994%206.7379%200.0841175%208.22771C0.0162411%209.72088%200%2010.1978%200%2014C0%2017.8022%200.0162411%2018.2791%200.0841175%2019.7723C0.151994%2021.2627%200.388889%2022.28%200.734991%2023.1705C1.09297%2024.0913%201.57168%2024.8718%202.34991%2025.6501C3.12825%2026.4284%203.90927%2026.907%204.82952%2027.265C5.72009%2027.6112%206.7379%2027.848%208.22771%2027.9159C9.72088%2027.9838%2010.1978%2028%2014%2028C17.8022%2028%2018.2791%2027.9838%2019.7723%2027.9159C21.2627%2027.848%2022.28%2027.6111%2023.1705%2027.265C24.0913%2026.9069%2024.8718%2026.4283%2025.6501%2025.6501C26.4284%2024.8718%2026.907%2024.0907%2027.265%2023.1705C27.6112%2022.28%2027.848%2021.2621%2027.9159%2019.7723C27.9838%2018.2791%2028%2017.8022%2028%2014C28%2010.1978%2027.9838%209.72088%2027.9159%208.22771C27.848%206.73734%2027.6111%205.71998%2027.265%204.82952C26.9069%203.90871%2026.4283%203.12825%2025.6501%202.34991C24.8718%201.57168%2024.0907%201.09297%2023.1705%200.734991C22.28%200.388777%2021.2621%200.151994%2019.7723%200.0841175C18.2791%200.0162411%2017.8022%200%2014%200ZM14%206.81093C10.0295%206.81093%206.81093%2010.0295%206.81093%2014C6.81093%2017.9705%2010.0295%2021.1892%2014%2021.1892C17.9705%2021.1892%2021.1892%2017.9705%2021.1892%2014C21.1892%2010.0295%2017.9705%206.81093%2014%206.81093ZM14%2018.667C11.4228%2018.667%209.33311%2016.578%209.33311%2014.0001C9.33311%2011.4223%2011.4228%209.33322%2014%209.33322C16.5772%209.33322%2018.6669%2011.4223%2018.6669%2014.0001C18.6669%2016.578%2016.5772%2018.667%2014%2018.667ZM21.473%204.847C20.5449%204.847%2019.793%205.5989%2019.793%206.52699C19.793%207.45508%2020.5449%208.2071%2021.473%208.2071C22.4011%208.2071%2023.1531%207.45508%2023.1531%206.52699C23.1531%205.5989%2022.4012%204.847%2021.473%204.847Z'%20fill='var(--fill-0,%20black)'/%3e%3c/g%3e%3c/svg%3e") center/contain no-repeat;
  background: radial-gradient(circle at 20% 110%, #fdf497 0%, #fdf497 22%, #fd5949 46%, #d6249f 68%, #285aeb 92%);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration);
}
.p-header__instagram-icon--desktop {
  display: block;
  width: calc(24 * var(--to-rem));
  height: calc(24 * var(--to-rem));
}
@media screen and (max-width: 1023px) {
  .p-header__instagram-icon--desktop {
    display: none;
  }
}
@container (max-width: 1170px) {
  .p-header__instagram-icon--desktop {
    display: none;
  }
}
.p-header__instagram-icon--desktop img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-header__instagram-label {
  display: block;
  color: var(--color-white);
  font-family: var(--font-noto-sans-jp);
  font-size: calc(12 * var(--to-rem));
  font-weight: var(--fw-regular);
  line-height: 1.8;
  white-space: nowrap;
}
@media screen and (max-width: 1023px) {
  .p-header__instagram-label {
    display: none;
  }
}
@container (max-width: 1170px) {
  .p-header__instagram-label {
    display: none;
  }
}
.p-header__hamburger {
  display: none;
  justify-content: center;
  align-items: center;
  width: calc(40 * var(--to-rem));
  height: calc(40 * var(--to-rem));
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: calc(40 * var(--to-rem));
  box-shadow: 0 10px 12px rgba(0, 0, 0, 0.03);
  background-image: linear-gradient(82.6deg, #9adcf8 0%, #0e5eaa 100%);
  transition: filter var(--duration);
}
@media screen and (max-width: 1023px) {
  .p-header__hamburger {
    display: inline-flex;
  }
}
@container (max-width: 1170px) {
  .p-header__hamburger {
    display: inline-flex;
  }
}
@media (any-hover: hover) {
  .p-header__hamburger:hover {
    filter: brightness(1.1);
  }
}
.p-header__hamburger-icon {
  display: grid;
  place-items: center;
  width: calc(24 * var(--to-rem));
  height: calc(24 * var(--to-rem));
}
.p-header__hamburger-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* ===== p-header__drawer: SPドロワーメニュー ===== */
.p-header__drawer {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-index-header) + 1);
  display: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 1023px) {
  .p-header__drawer {
    display: flex;
    justify-content: flex-end;
  }
}
@container (max-width: 1170px) {
  .p-header__drawer {
    display: flex;
    justify-content: flex-end;
  }
}
.p-header__drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}
.p-header__drawer-overlay {
  flex: 1;
  margin: 0;
  padding: 0;
  border: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.p-header__drawer-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: calc(60 * var(--to-rem));
  width: calc(299 * var(--to-rem));
  height: 100svh;
  padding-block: calc(80 * var(--to-rem)) calc(40 * var(--to-rem));
  padding-inline: calc(32 * var(--to-rem));
  overflow-y: auto;
  background-color: #0e5eaa;
  opacity: 0;
  transition: opacity var(--duration);
}
.p-header__drawer.is-open .p-header__drawer-panel {
  opacity: 1;
}
.p-header__drawer-close {
  position: absolute;
  inset-block-start: calc(28 * var(--to-rem));
  inset-inline-end: calc(28 * var(--to-rem));
  display: grid;
  place-items: center;
  width: calc(40 * var(--to-rem));
  height: calc(40 * var(--to-rem));
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: calc(40 * var(--to-rem));
  box-shadow: 0 10px 12px rgba(0, 0, 0, 0.03);
  background-image: linear-gradient(82.6deg, #9adcf8 0%, #0e5eaa 100%);
  backdrop-filter: blur(12px);
}
.p-header__drawer-close-mark {
  position: relative;
  width: calc(18 * var(--to-rem));
  height: calc(18 * var(--to-rem));
}
.p-header__drawer-close-mark::before {
  content: "";
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 0;
  width: 100%;
  height: calc(1.5 * var(--to-rem));
  border-radius: calc(2 * var(--to-rem));
  background-color: var(--color-white);
  transform: translateY(-50%) rotate(45deg);
}
.p-header__drawer-close-mark::after {
  content: "";
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 0;
  width: 100%;
  height: calc(1.5 * var(--to-rem));
  border-radius: calc(2 * var(--to-rem));
  background-color: var(--color-white);
  transform: translateY(-50%) rotate(-45deg);
}
.p-header__drawer-title {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-alegreya);
  font-size: calc(40 * var(--to-rem));
  font-weight: var(--fw-regular);
  line-height: 1.2;
  letter-spacing: 0;
}
.p-header__drawer-nav {
  width: 100%;
}
.p-header__drawer-list {
  display: flex;
  flex-direction: column;
  gap: calc(28 * var(--to-rem));
}
.p-header__drawer-item > a {
  display: block;
  color: var(--color-white);
  font-family: var(--font-shippori);
  font-size: calc(18 * var(--to-rem));
  font-weight: var(--fw-regular);
  line-height: 1.75;
  letter-spacing: 0;
  text-decoration: none;
}
.p-header__drawer-cta {
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
  width: 100%;
  margin-block-start: auto;
}
.p-header__drawer-button {
  width: 100%;
  min-height: calc(60 * var(--to-rem));
  letter-spacing: 0;
}
.p-header__drawer-button--entry {
  border: calc(2 * var(--to-rem)) solid var(--color-white);
}
.p-header__drawer-button--requirements {
  border-width: calc(2 * var(--to-rem));
}
.p-header__drawer-instagram {
  position: relative;
  display: inline-flex;
  gap: calc(8 * var(--to-rem));
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  min-height: calc(40 * var(--to-rem));
  padding-block: calc(8 * var(--to-rem));
  padding-inline: calc(16 * var(--to-rem));
  border-radius: calc(50 * var(--to-rem));
  background-image: linear-gradient(53.34deg, #9adcf8 0%, #0e5eaa 100%);
  text-decoration: none;
}
.p-header__drawer-instagram::before {
  content: "";
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  width: calc(250 * var(--to-rem));
  height: calc(250 * var(--to-rem));
  background: url("../images/bg_instagram_hover.webp") center/cover no-repeat;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.p-header__drawer-instagram-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: calc(16 * var(--to-rem));
  height: calc(16 * var(--to-rem));
}
.p-header__drawer-instagram-icon img {
  width: 100%;
  height: 100%;
}
.p-header__drawer-instagram-label {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  font-family: var(--font-noto-sans-jp);
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-regular);
  line-height: 1.75;
  letter-spacing: 0;
}
/* /p-header__drawer: SPドロワーメニュー */
/* /p-header: ヘッダー */
/* ===== p-history: 歴史とこれから ===== */
.p-history {
  padding-block: calc(141 * var(--to-rem)) calc(210 * var(--to-rem));
  background-color: var(--color-page-bg);
}
@media screen and (max-width: 767px) {
  .p-history {
    padding-block: calc(120 * var(--to-rem)) calc(80 * var(--to-rem));
  }
}
.p-history__inner {
  position: relative;
  width: calc(1080 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-history__inner {
    width: calc(390 * var(--to-rem));
  }
}
/* 背景英字テキスト */
.p-history__hero-en {
  inset-block-start: 0;
  inset-inline-start: calc(298 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-history__hero-en {
    margin-block-start: calc(-35 * var(--to-rem));
  }
}
/* タイトル */
.p-history__title {
  padding-block-start: calc(120 * var(--to-rem));
  padding-inline-start: calc(6 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-history__title {
    padding-block-start: calc(26 * var(--to-rem));
    padding-inline-start: 0;
  }
}
/* ===== Timeline ===== */
.p-history__timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: calc(20 * var(--to-rem));
  width: calc(1080 * var(--to-rem));
  margin-inline: auto;
  margin-block-start: calc(88 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-history__timeline {
    gap: calc(16 * var(--to-rem));
    width: calc(342 * var(--to-rem));
    margin-block-start: calc(30 * var(--to-rem));
  }
}
/* 縦線（heightはJSで最後のeraを除いた値を動的に設定） */
.p-history__timeline-line {
  position: absolute;
  inset-block-start: calc(38 * var(--to-rem));
  inset-inline-start: calc(58 * var(--to-rem));
  width: calc(6 * var(--to-rem));
  border-radius: calc(3 * var(--to-rem));
  background-color: #c2cdfb;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.4s linear;
}
@media screen and (max-width: 767px) {
  .p-history__timeline-line {
    inset-block-start: calc(32 * var(--to-rem));
    inset-inline-start: calc(11 * var(--to-rem));
    width: calc(4 * var(--to-rem));
  }
}
/* 時代ラベル */
.p-history__era {
  position: relative;
}
.p-history__era-label {
  margin: 0;
  padding-block: calc(6 * var(--to-rem));
  padding-inline: calc(32 * var(--to-rem));
  border-radius: calc(6 * var(--to-rem));
  background-color: #0e5eaa;
  color: #fff;
  font-family: var(--font-shippori);
  font-size: max(18 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.6;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-history__era-label {
    padding-inline: calc(16 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
  }
}
/* 年表イベント */
.p-history__events {
  display: flex;
  flex-direction: column;
  gap: calc(24 * var(--to-rem));
  margin: 0;
  padding: calc(17 * var(--to-rem)) calc(12 * var(--to-rem)) calc(12 * var(--to-rem)) calc(112 * var(--to-rem));
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-history__events {
    gap: calc(20 * var(--to-rem));
    padding: calc(12 * var(--to-rem)) calc(12 * var(--to-rem)) calc(12 * var(--to-rem)) calc(32 * var(--to-rem));
  }
}
.p-history__event {
  display: flex;
  gap: calc(12 * var(--to-rem));
  align-items: flex-start;
}
.p-history__event-year {
  flex-shrink: 0;
  width: calc(140 * var(--to-rem));
  margin: 0;
  color: #000;
  font-family: var(--font-shippori);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-history__event-year {
    width: calc(52 * var(--to-rem));
    font-size: calc(12 * var(--to-rem));
    line-height: 1.75;
  }
}
.p-history__event-text {
  margin: 0;
  color: #000;
  font-family: var(--font-shippori);
  font-size: max(14 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-history__event-text {
    font-size: calc(12 * var(--to-rem));
    line-height: 1.75;
  }
}
/* ===== Phase（詳細コンテンツ） ===== */
.p-history__phases {
  display: flex;
  flex-direction: column;
  gap: calc(88 * var(--to-rem));
  width: calc(930 * var(--to-rem));
  margin-block-start: calc(180 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-history__phases {
    gap: calc(60 * var(--to-rem));
    width: 100%;
    padding-inline: calc(32 * var(--to-rem));
    margin-block-start: calc(79 * var(--to-rem));
  }
}
.p-history__phase {
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-history__phase {
    gap: calc(12 * var(--to-rem));
  }
}
.p-history__phase-header {
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-history__phase-header {
    gap: calc(12 * var(--to-rem));
  }
}
.p-history__phase-label {
  margin: 0;
  color: #0e5eaa;
  font-family: var(--font-shippori);
  font-size: max(20 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-history__phase-label {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-history__phase-catch {
  margin: 0;
  color: #0e5eaa;
  font-family: var(--font-shippori);
  font-size: max(30 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-history__phase-catch {
    font-size: calc(24 * var(--to-rem));
  }
}
.p-history__phase-body {
  display: flex;
  flex-direction: column;
  gap: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-history__phase-body {
    gap: calc(24 * var(--to-rem));
  }
}
.p-history__phase-image {
  overflow: hidden;
  width: 100%;
  height: calc(422 * var(--to-rem));
  margin: 0;
  border-radius: calc(12 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-history__phase-image {
    height: calc(148 * var(--to-rem));
  }
}
.p-history__phase-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-history__phase-text {
  margin: 0;
  color: #1b224c;
  font-family: var(--font-shippori);
  font-size: max(14 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 2;
}
/* ===== p-job-day: Hero ===== */
.p-job-day {
  padding-block: calc(120 * var(--to-rem)) calc(120 * var(--to-rem));
  background-color: var(--color-page-bg);
}
@media screen and (max-width: 767px) {
  .p-job-day {
    padding-block: calc(146 * var(--to-rem)) calc(0 * var(--to-rem));
  }
}
.p-job-day__inner {
  width: calc(1280 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-job-day__inner {
    width: calc(390 * var(--to-rem));
  }
}
.p-job-day__hero {
  position: relative;
  min-height: calc(628 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-job-day__hero {
    width: calc(342 * var(--to-rem));
    min-height: auto;
    margin-inline: auto;
  }
}
/* 背景英字テキスト */
.p-job-day__hero-en {
  inset-block-start: calc(-25 * var(--to-rem));
  inset-inline-start: calc(30 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-job-day__hero-en {
    position: relative;
    inset-block-start: calc(12 * var(--to-rem));
    inset-inline-start: calc(1 * var(--to-rem));
  }
}
/* タイトル（PCは縦書き配置、SPは横並び） */
.p-job-day__hero-title {
  position: absolute;
  inset-block-start: calc(66 * var(--to-rem));
  inset-inline-start: calc(80 * var(--to-rem));
  z-index: 1;
  width: calc(171 * var(--to-rem));
  margin: 0;
  color: #363636;
  font-family: var(--font-shippori);
  font-size: max(70 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.12;
}
@media screen and (max-width: 767px) {
  .p-job-day__hero-title {
    position: relative;
    inset: auto;
    display: flex;
    justify-content: center;
    width: 100%;
    font-size: calc(32 * var(--to-rem));
    letter-spacing: calc(6.4 * var(--to-rem));
    text-align: center;
  }
}
.p-job-day__hero-title-main {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: calc(98 * var(--to-rem));
  display: block;
  width: calc(73 * var(--to-rem));
  line-height: 1.12;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .p-job-day__hero-title-main {
    position: static;
    width: auto;
    word-break: normal;
  }
}
.p-job-day__hero-title-sub {
  position: absolute;
  inset-block-start: calc(155 * var(--to-rem));
  inset-inline-start: 0;
  display: block;
  width: calc(73 * var(--to-rem));
  line-height: 1.12;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .p-job-day__hero-title-sub {
    position: static;
    width: auto;
    word-break: normal;
  }
}
.p-job-day--development .p-job-day__hero-title-sub {
  inset-block-start: calc(312 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-job-day__hero-title-sub br {
    display: none;
  }
}
/* ヒーロー画像 */
.p-job-day__hero-image {
  position: absolute;
  inset-block-start: calc(60 * var(--to-rem));
  inset-inline-end: calc(0 * var(--to-rem));
  z-index: 1;
  overflow: hidden;
  width: calc(632 * var(--to-rem));
  aspect-ratio: 738/492;
  margin: 0;
  border-radius: calc(20 * var(--to-rem)) 0 0 calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-job-day__hero-image {
    position: relative;
    inset: auto;
    width: calc(342 * var(--to-rem));
    margin-block-start: calc(28 * var(--to-rem));
    aspect-ratio: 342/255;
    border-radius: calc(12 * var(--to-rem));
  }
}
.p-job-day__hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* プロフィールカード */
.p-job-day__profile {
  position: absolute;
  inset-block-start: calc(293 * var(--to-rem));
  inset-inline-start: calc(338 * var(--to-rem));
  z-index: 2;
  width: calc(604 * var(--to-rem));
  padding: calc(40 * var(--to-rem));
  border-radius: calc(10 * var(--to-rem));
  background-color: #e6e9ee;
}
@media screen and (max-width: 767px) {
  .p-job-day__profile {
    position: relative;
    inset: auto;
    width: calc(342 * var(--to-rem));
    margin-block-start: calc(15 * var(--to-rem));
    padding: calc(24 * var(--to-rem));
  }
}
.p-job-day__profile-name {
  margin: 0;
  color: #1b224c;
  font-family: var(--font-shippori);
  font-size: max(24 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-job-day__profile-name {
    font-size: calc(20 * var(--to-rem));
  }
}
.p-job-day__profile-label {
  margin-block-start: calc(20 * var(--to-rem));
  color: #1b224c;
  font-family: var(--font-shippori);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-job-day__profile-label {
    margin-block-start: calc(16 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
  }
}
.p-job-day__profile-body {
  width: calc(524 * var(--to-rem));
  margin-block-start: calc(4 * var(--to-rem));
  color: #1b224c;
  font-family: var(--font-shippori);
  font-size: max(14 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-job-day__profile-body {
    width: 100%;
    margin-block-start: calc(3 * var(--to-rem));
    font-size: calc(12 * var(--to-rem));
    line-height: 1.7;
  }
}
/* ===== p-job-day-point: 3つのポイントセクション ===== */
.p-job-day-point {
  padding-block: calc(22 * var(--to-rem)) calc(70 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-job-day-point {
    padding-block: calc(80 * var(--to-rem)) calc(60 * var(--to-rem));
  }
}
.p-job-day-point__inner {
  display: flex;
  flex-direction: column;
  gap: calc(60 * var(--to-rem));
  width: calc(1100 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-job-day-point__inner {
    gap: calc(47 * var(--to-rem));
    width: calc(390 * var(--to-rem));
    padding-inline: calc(32 * var(--to-rem));
  }
}
.p-job-day-point__item {
  display: flex;
  gap: calc(70 * var(--to-rem));
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-job-day-point__item {
    flex-direction: column;
    gap: calc(20 * var(--to-rem));
    align-items: stretch;
  }
}
.p-job-day-point__item--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-job-day-point__item--reverse {
    flex-direction: column;
  }
}
.p-job-day-point__content {
  flex: 1;
  min-width: 0;
}
.p-job-day-point__title {
  display: flex;
  gap: calc(10 * var(--to-rem));
  align-items: flex-end;
  margin: 0;
  color: #0e5eaa;
  font-family: var(--font-shippori);
  font-weight: var(--fw-regular);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-job-day-point__title {
    gap: calc(6 * var(--to-rem));
  }
}
.p-job-day-point__title-main {
  font-size: max(24 * var(--to-rem), 12px);
  line-height: 1.4;
}
.p-job-day-point__title-sub {
  font-size: max(16 * var(--to-rem), 12px);
  line-height: 1.6;
}
.p-job-day-point__body {
  max-width: calc(640 * var(--to-rem));
  margin: calc(14 * var(--to-rem)) 0 0;
  color: #1b224c;
  font-family: var(--font-shippori);
  font-size: max(14 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-job-day-point__body {
    max-width: none;
    margin-block-start: calc(16 * var(--to-rem));
    line-height: 1.8;
  }
}
.p-job-day-point__image {
  flex-shrink: 0;
  overflow: hidden;
  width: calc(400 * var(--to-rem));
  aspect-ratio: 400/200;
  margin: 0;
  border-radius: calc(12 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-job-day-point__image {
    width: 100%;
    aspect-ratio: 326/200;
  }
}
.p-job-day-point__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ===== p-job-day-cta: CTAボタン ===== */
.p-job-day-cta {
  padding-block-end: calc(120 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-job-day-cta {
    padding-block-end: calc(80 * var(--to-rem));
  }
}
.p-job-day-cta__inner {
  display: flex;
  gap: calc(12 * var(--to-rem));
  width: calc(1044 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-job-day-cta__inner {
    flex-direction: column;
    width: calc(340 * var(--to-rem));
    padding-inline: 0;
  }
}
.p-job-day-cta__button {
  flex: 1;
  min-height: calc(76 * var(--to-rem));
  padding: calc(18 * var(--to-rem)) calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-job-day-cta__button {
    min-height: calc(56 * var(--to-rem));
    padding: calc(12 * var(--to-rem)) calc(20 * var(--to-rem));
  }
}
.p-job-day-cta__label {
  white-space: nowrap;
}
.p-job-day-cta__icon {
  display: inline-grid;
  place-items: center;
  width: calc(24 * var(--to-rem));
  height: calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-job-day-cta__icon {
    display: none;
  }
}
.p-job-day-cta__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
/* ===== p-job-day-schedule: タイムライン ===== */
.p-job-day-schedule {
  padding-block-end: calc(184 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-job-day-schedule {
    padding-block-end: calc(141 * var(--to-rem));
  }
}
.p-job-day-schedule__inner {
  width: calc(1120 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-job-day-schedule__inner {
    width: calc(390 * var(--to-rem));
    padding-inline: calc(16 * var(--to-rem));
  }
}
.p-job-day-schedule__card {
  padding: calc(80 * var(--to-rem)) calc(40 * var(--to-rem));
  border-radius: calc(16 * var(--to-rem));
  background-color: #e6e9ee;
}
@media screen and (max-width: 767px) {
  .p-job-day-schedule__card {
    padding: calc(40 * var(--to-rem)) calc(19 * var(--to-rem));
    border-radius: calc(20 * var(--to-rem));
  }
}
.p-job-day-schedule__heading {
  margin: 0;
  color: #0e5eaa;
  font-family: var(--font-noto-sans-jp);
  font-size: max(24 * var(--to-rem), 12px);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-job-day-schedule__heading {
    font-size: calc(20 * var(--to-rem));
  }
}
.p-job-day-schedule__timeline {
  display: grid;
  row-gap: calc(40 * var(--to-rem));
  width: calc(638 * var(--to-rem));
  margin: calc(64 * var(--to-rem)) auto 0;
  padding: 0;
  padding-inline-start: calc(88 * var(--to-rem));
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-job-day-schedule__timeline {
    row-gap: calc(16 * var(--to-rem));
    width: 100%;
    margin-block-start: calc(40 * var(--to-rem));
    padding-inline-start: calc(36 * var(--to-rem));
  }
}
.p-job-day-schedule__item {
  position: relative;
  padding-block-end: calc(42 * var(--to-rem));
  border-bottom: calc(1 * var(--to-rem)) solid #c2cdfb;
}
@media screen and (max-width: 767px) {
  .p-job-day-schedule__item {
    padding-block-end: calc(18 * var(--to-rem));
  }
}
/* タイムラインドット */
.p-job-day-schedule__item::before {
  content: "";
  position: absolute;
  inset-block-start: calc(4 * var(--to-rem));
  inset-inline-start: calc(-88 * var(--to-rem));
  z-index: 1;
  width: calc(27 * var(--to-rem));
  height: calc(27 * var(--to-rem));
  border-radius: 50%;
  background-color: #17406a;
}
@media screen and (max-width: 767px) {
  .p-job-day-schedule__item::before {
    inset-inline-start: calc(-36 * var(--to-rem));
    width: calc(20 * var(--to-rem));
    height: calc(20 * var(--to-rem));
  }
}
/* タイムラインの縦線 */
.p-job-day-schedule__item::after {
  content: "";
  position: absolute;
  inset-block-start: calc(31 * var(--to-rem));
  inset-inline-start: calc(-76 * var(--to-rem));
  width: calc(3 * var(--to-rem));
  height: calc(100% + 40 * var(--to-rem));
  background-color: #c2cdfb;
}
@media screen and (max-width: 767px) {
  .p-job-day-schedule__item::after {
    inset-block-start: calc(25 * var(--to-rem));
    inset-inline-start: calc(-27.5 * var(--to-rem));
    height: calc(100% + 16 * var(--to-rem));
  }
}
.p-job-day-schedule__item--last {
  padding-block-end: 0;
  border-bottom: 0;
}
.p-job-day-schedule__item--last::after {
  content: none;
}
.p-job-day-schedule__time {
  margin: 0;
  color: #0e5eaa;
  font-family: "Noto Sans", var(--font-noto-sans-jp);
  font-size: max(24 * var(--to-rem), 12px);
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-job-day-schedule__time {
    font-size: calc(20 * var(--to-rem));
  }
}
.p-job-day-schedule__texts {
  margin-block-start: calc(12 * var(--to-rem));
}
.p-job-day-schedule__text {
  margin-block-start: calc(10 * var(--to-rem));
  color: #000;
  font-family: var(--font-noto-sans-jp);
  font-size: max(14 * var(--to-rem), 12px);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.13em;
}
/* ===== p-message: メッセージページ ===== */
.p-message {
  position: relative;
  overflow: hidden;
  padding-block: calc(141 * var(--to-rem)) calc(221 * var(--to-rem));
  background-color: var(--color-page-bg);
}
@media screen and (max-width: 767px) {
  .p-message {
    padding-block: calc(110 * var(--to-rem)) calc(63 * var(--to-rem));
  }
}
.p-message__inner {
  position: relative;
  z-index: 1;
  width: calc(1280 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-message__inner {
    width: calc(390 * var(--to-rem));
  }
}
/* 背景英字テキスト */
.p-message__hero-en {
  inset-block-start: 0;
  inset-inline-start: calc(343 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-message__hero-en {
    margin-block-start: calc(-35 * var(--to-rem));
  }
}
/* タイトル */
.p-message__title {
  padding-block-start: calc(120 * var(--to-rem));
  padding-inline-start: calc(80 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-message__title {
    padding-block-start: calc(36 * var(--to-rem));
    padding-inline-start: 0;
  }
}
/* コンテンツエリア（PC: 通常フロー、SP: 縦積み） */
.p-message__body {
  position: relative;
  width: calc(1120 * var(--to-rem));
  margin-block-start: calc(105 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-message__body {
    width: 390px;
    margin-block-start: calc(15 * var(--to-rem));
  }
}
/* テキストセクション */
.p-message__section--first {
  width: calc(642 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-message__section--first {
    width: calc(390 * var(--to-rem));
    padding-inline: calc(24 * var(--to-rem));
    margin-inline: auto;
  }
}
.p-message__section--second {
  margin-block-start: calc(462 * var(--to-rem));
  margin-inline-start: calc(473 * var(--to-rem));
  width: calc(647 * var(--to-rem));
}
.p-message__section--second .p-message__text {
  white-space: normal;
}
@media screen and (max-width: 767px) {
  .p-message__section--second {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(14 * var(--to-rem));
    width: calc(390 * var(--to-rem));
    margin-block-start: calc(14 * var(--to-rem));
    margin-inline-start: 0;
  }
}
/* 引用ブロック */
.p-message__quote {
  display: flex;
  gap: calc(24 * var(--to-rem));
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-message__quote {
    justify-content: center;
    gap: calc(4 * var(--to-rem));
  }
}
.p-message__quote-mark {
  width: calc(57 * var(--to-rem));
  color: #0e5eaa;
  font-family: "EB Garamond", serif;
  font-size: max(128 * var(--to-rem), 12px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  transform: rotate(180deg) translateY(59%);
}
@media screen and (max-width: 767px) {
  .p-message__quote-mark {
    width: auto;
    font-size: calc(78 * var(--to-rem));
    transform: rotate(180deg) translateY(-22%);
  }
}
.p-message__quote-mark--end {
  align-self: flex-end;
  transform: translateY(60%);
}
@media screen and (max-width: 767px) {
  .p-message__quote-mark--end {
    transform: translateY(63%);
  }
}
.p-message__section--second .p-message__quote {
  align-items: center;
}
.p-message__section--second .p-message__quote-mark {
  transform: rotate(180deg) translateY(27%);
}
@media screen and (max-width: 767px) {
  .p-message__section--second .p-message__quote-mark {
    transform: rotate(180deg) translateY(-11%);
  }
}
.p-message__section--second .p-message__quote-mark--end {
  align-self: center;
  transform: translateY(27%);
}
@media screen and (max-width: 767px) {
  .p-message__section--second .p-message__quote-mark--end {
    transform: translateY(63%);
  }
}
.p-message__quote-text {
  margin: 0;
  color: #1b224c;
  font-family: var(--font-shippori);
  font-size: max(30 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-message__quote-text {
    padding-block-start: calc(62 * var(--to-rem));
    font-size: calc(16 * var(--to-rem));
    font-weight: var(--fw-medium);
    line-height: 1.5;
  }
}
/* 本文 */
.p-message__prose {
  margin-block-start: calc(78 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-message__prose {
    width: calc(342 * var(--to-rem));
    margin-block-start: calc(80 * var(--to-rem));
    padding-inline: 0;
  }
}
.p-message__section--second .p-message__prose {
  margin-block-start: calc(37 * var(--to-rem));
}
.p-message__text {
  margin: 0;
  color: #1b224c;
  font-family: var(--font-shippori);
  font-size: max(14 * var(--to-rem), 11px);
  font-weight: var(--fw-regular);
  line-height: 2;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-message__text {
    white-space: normal;
  }
}
.p-message__text + .p-message__text {
  margin-block-start: calc(28 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-message__text + .p-message__text {
    margin-block-start: calc(28 * var(--to-rem));
  }
}
/* 署名 */
.p-message__sign {
  margin: calc(42 * var(--to-rem)) 0 0;
  color: #1b224c;
  font-family: var(--font-shippori);
  font-size: calc(20 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-message__sign {
    margin-block-start: calc(40 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
    text-align: center;
  }
}
/* ===== SP画像フロースライダー ===== */
.p-message__sp-slider {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-message__sp-slider {
    display: grid;
    gap: calc(8 * var(--to-rem));
    overflow: hidden;
    align-self: stretch;
    margin-block-start: calc(76 * var(--to-rem));
  }
}
.p-message__sp-track {
  display: flex;
  gap: calc(8 * var(--to-rem));
  width: max-content;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  will-change: transform;
}
.p-message__sp-track--forward {
  animation: message-page-scroll-forward 36s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .p-message__sp-track--forward {
    animation: none;
  }
}
.p-message__sp-track--reverse {
  animation: message-page-scroll-reverse 36s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .p-message__sp-track--reverse {
    animation: none;
  }
}
.p-message__sp-card {
  overflow: hidden;
  border-radius: calc(8 * var(--to-rem));
}
.p-message__sp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-message__sp-card--a {
  width: calc(268 * var(--to-rem));
  height: calc(194 * var(--to-rem));
}
.p-message__sp-card--b {
  width: calc(293 * var(--to-rem));
  height: calc(195 * var(--to-rem));
}
.p-message__sp-card--c {
  width: calc(268 * var(--to-rem));
  height: calc(194 * var(--to-rem));
}
.p-message__sp-card--d {
  width: calc(292 * var(--to-rem));
  height: calc(195 * var(--to-rem));
}
.p-message__sp-card--e {
  width: calc(268 * var(--to-rem));
  height: calc(194 * var(--to-rem));
}
.p-message__sp-card--f {
  width: calc(292 * var(--to-rem));
  height: calc(195 * var(--to-rem));
}
@keyframes message-page-scroll-forward {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes message-page-scroll-reverse {
  from {
    transform: translate3d(-50%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
/* ===== 装飾写真 ===== */
.p-message__photos {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-message__photos {
    display: none;
  }
}
.p-message__photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
}
.p-message__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 写真1: 左上 */
.p-message__photo--01 {
  inset-block-start: calc(868 * var(--to-rem));
  inset-inline-start: calc(140 * var(--to-rem));
  width: calc(268 * var(--to-rem));
  height: calc(194 * var(--to-rem));
  border-radius: calc(20 * var(--to-rem));
}
/* 写真2: 左下 */
.p-message__photo--02 {
  inset-block-start: calc(1002 * var(--to-rem));
  inset-inline-start: calc(-80 * var(--to-rem));
  width: calc(302 * var(--to-rem));
  height: calc(312 * var(--to-rem));
  border-radius: calc(20 * var(--to-rem));
}
.p-message__photo--02 img {
  object-position: 68% 50%;
}
/* 写真3: 中央右 */
.p-message__photo--03 {
  inset-block-start: calc(627 * var(--to-rem));
  inset-inline-start: calc(654 * var(--to-rem));
  width: calc(286 * var(--to-rem));
  height: calc(191 * var(--to-rem));
  border-radius: calc(16 * var(--to-rem));
}
/* 写真4: 右端（縦長） */
.p-message__photo--04 {
  inset-block-start: calc(565 * var(--to-rem));
  inset-inline-start: calc(882 * var(--to-rem));
  width: calc(189 * var(--to-rem));
  height: calc(336 * var(--to-rem));
  border-radius: calc(20 * var(--to-rem));
}
/* 写真5: 左下2段目 */
.p-message__photo--05 {
  inset-block-start: calc(1745 * var(--to-rem));
  inset-inline-start: calc(-119 * var(--to-rem));
  width: calc(395 * var(--to-rem));
  height: calc(222 * var(--to-rem));
  border-radius: calc(20 * var(--to-rem));
}
/* 写真6: 左下2段目-2 */
.p-message__photo--06 {
  inset-block-start: calc(1900 * var(--to-rem));
  inset-inline-start: calc(-21 * var(--to-rem));
  width: calc(389 * var(--to-rem));
  height: calc(219 * var(--to-rem));
  border-radius: calc(20 * var(--to-rem));
}
/* メイン写真（セクション2内、集合写真） */
.p-message__photo--main {
  position: relative;
  inset: auto;
  width: calc(492 * var(--to-rem));
  height: calc(328 * var(--to-rem));
  margin-block-start: calc(110 * var(--to-rem));
  border-radius: calc(16 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-message__photo--main {
    width: calc(351 * var(--to-rem));
    height: calc(234 * var(--to-rem));
    margin-block-start: calc(61 * var(--to-rem));
  }
}
.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__item:hover .p-news-list__arrow {
  color: var(--color-text);
  transform: translateX(calc(4 * var(--to-rem)));
}
.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__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-numbers: 数字で見る阿波製紙 ===== */
.p-numbers {
  position: relative;
  padding-block: calc(141 * var(--to-rem)) calc(120 * var(--to-rem));
  background-color: var(--color-page-bg);
}
@media screen and (max-width: 767px) {
  .p-numbers {
    padding-block: calc(115 * var(--to-rem)) calc(80 * var(--to-rem));
  }
}
.p-numbers__inner {
  position: relative;
  width: calc(1280 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-numbers__inner {
    width: calc(390 * var(--to-rem));
  }
}
.p-numbers img {
  display: block;
}
/* 背景英字テキスト */
.p-numbers__hero-en {
  inset-block-start: 0;
  inset-inline-start: calc(253 * var(--to-rem));
  white-space: nowrap;
}
/* タイトル */
.p-numbers__title {
  padding-block-start: calc(120 * var(--to-rem));
  padding-inline-start: calc(80 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-numbers__title {
    display: flex;
    flex-direction: column;
    gap: calc(4 * var(--to-rem));
    align-items: center;
    padding-block-start: calc(26 * var(--to-rem));
    padding-inline-start: 0;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .p-numbers__title span {
    display: block;
  }
}
/* ===== カードグリッド ===== */
.p-numbers__content {
  display: flex;
  flex-direction: column;
  gap: calc(40 * var(--to-rem));
  width: calc(1040 * var(--to-rem));
  margin-block-start: calc(119 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-numbers__content {
    gap: calc(16 * var(--to-rem));
    width: calc(358 * var(--to-rem));
    margin-block-start: calc(79 * var(--to-rem));
  }
}
.p-numbers__row--two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-numbers__row--two {
    grid-template-columns: 1fr;
    gap: calc(16 * var(--to-rem));
  }
}
.p-numbers__row--three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-numbers__row--three {
    grid-template-columns: 1fr;
    gap: calc(16 * var(--to-rem));
  }
}
.p-numbers__row--start {
  align-items: start;
}
/* ===== カード共通 ===== */
.p-numbers-card {
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
  align-items: center;
  padding: calc(24 * var(--to-rem));
  border-radius: calc(8 * var(--to-rem));
  background-color: #e6e9ee;
}
.p-numbers-card--full {
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .p-numbers-card--base .p-numbers-card__note {
    margin-block-start: calc(11 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-numbers-card--employees .p-numbers-card__note {
    margin-block-start: calc(10 * var(--to-rem));
    padding-block-end: calc(13 * var(--to-rem));
  }
}
.p-numbers-card--overseas {
  display: block;
  padding-block-end: calc(16 * var(--to-rem));
}
.p-numbers-card--overseas .p-numbers-donut {
  margin-block-start: calc(34 * var(--to-rem));
}
.p-numbers-card--overseas .p-numbers-card__note {
  margin-block-start: calc(36 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-numbers-card--overseas {
    padding-block-end: calc(23 * var(--to-rem));
  }
  .p-numbers-card--overseas .p-numbers-donut {
    margin-block-start: calc(23 * var(--to-rem));
  }
  .p-numbers-card--overseas .p-numbers-card__note {
    margin-block-start: calc(24 * var(--to-rem));
  }
}
.p-numbers-card--paid-leave .p-numbers-donut {
  margin-block-start: calc(20 * var(--to-rem));
}
.p-numbers-card--paid-leave .p-numbers-card__note--paid {
  margin-block-start: calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-numbers-card--paid-leave .p-numbers-card__note--paid {
    margin-block-start: calc(10 * var(--to-rem));
  }
}
.p-numbers-card--age {
  padding-block-end: calc(8 * var(--to-rem));
}
.p-numbers-card--gender {
  padding: calc(32 * var(--to-rem)) calc(24 * var(--to-rem)) calc(16 * var(--to-rem));
}
.p-numbers-card--paid-leave {
  padding: calc(26 * var(--to-rem)) calc(24 * var(--to-rem)) calc(16 * var(--to-rem));
}
.p-numbers-card--overtime .p-numbers-card__badge img {
  width: calc(41 * var(--to-rem));
}
.p-numbers-card__title {
  margin: 0;
  color: #363636;
  font-family: var(--font-shippori);
  font-size: max(24 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.4;
  text-align: center;
}
.p-numbers-card__badge {
  display: inline-flex;
  gap: calc(8 * var(--to-rem));
  justify-content: center;
  align-items: center;
  padding: calc(6 * var(--to-rem)) calc(11 * var(--to-rem));
  border-radius: calc(6 * var(--to-rem));
  background-image: linear-gradient(45deg, #9adcf8 0%, #0e5eaa 100%);
}
.p-numbers-card__badge img {
  width: calc(36 * var(--to-rem));
  aspect-ratio: 1;
}
.p-numbers-card__badge-text {
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", var(--font-shippori);
  font-size: max(20 * var(--to-rem), 12px);
  font-weight: 510;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
}
.p-numbers-card__note {
  margin: 0;
  color: #1c2a55;
  font-family: var(--font-shippori);
  font-size: max(12 * var(--to-rem), 9px);
  font-weight: var(--fw-regular);
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-numbers-card__note {
    width: calc(270 * var(--to-rem));
    margin-inline: auto;
  }
}
/* ===== ドーナツチャート ===== */
.p-numbers-donut {
  position: relative;
  display: grid;
  place-items: center;
  width: calc(112.5 * var(--to-rem));
  aspect-ratio: 1;
  margin-inline: auto;
}
.p-numbers-donut svg {
  display: block;
  width: 100%;
  height: 100%;
}
.p-numbers-donut__track {
  fill: none;
}
.p-numbers-donut__progress {
  fill: none;
  stroke-linecap: butt;
}
.p-numbers-donut__label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #0e5eaa;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", var(--font-shippori);
  font-size: max(20 * var(--to-rem), 12px);
  font-weight: 510;
  line-height: 1.5;
}
.p-numbers-donut--gender {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: calc(94 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-numbers-donut--gender {
    inset-inline-start: calc(79 * var(--to-rem));
  }
}
/* ===== 業界シェアパネル ===== */
.p-numbers-industry {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: calc(16 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-numbers-industry {
    grid-template-columns: 1fr;
  }
}
.p-numbers-industry__panel {
  padding: calc(24 * var(--to-rem)) calc(16 * var(--to-rem)) calc(24 * var(--to-rem)) calc(32 * var(--to-rem));
  border-radius: calc(8 * var(--to-rem));
  width: calc(488 * var(--to-rem));
  min-height: calc(198 * var(--to-rem));
  background-color: #fff;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 767px) {
  .p-numbers-industry__panel {
    width: auto;
    height: auto;
    padding: calc(34 * var(--to-rem));
  }
}
.p-numbers-industry__panel-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: calc(16 * var(--to-rem));
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-numbers-industry__panel-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(16 * var(--to-rem));
  }
}
.p-numbers-industry__copy {
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-numbers-industry__copy {
    display: contents;
  }
}
.p-numbers-industry__heading {
  margin: 0;
  color: #363636;
  font-family: var(--font-shippori);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-numbers-industry__heading {
    text-align: center;
  }
}
.p-numbers-industry__text {
  margin: 0;
  color: #1c2a55;
  font-family: var(--font-shippori);
  font-size: max(12 * var(--to-rem), 10px);
  font-weight: var(--fw-regular);
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-numbers-industry__text {
    order: 1;
    text-align: center;
  }
}
/* ===== 拠点数 ===== */
.p-numbers-base {
  display: flex;
  gap: calc(24 * var(--to-rem));
  justify-content: center;
  align-items: center;
  padding: calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-numbers-base {
    flex-wrap: wrap;
  }
}
.p-numbers-base__pair {
  display: flex;
  gap: calc(16 * var(--to-rem));
  align-items: center;
}
.p-numbers-base__pair img {
  aspect-ratio: 1;
}
.p-numbers-base__pair:nth-of-type(1) img {
  width: calc(98 * var(--to-rem));
}
.p-numbers-base__pair:nth-of-type(2) img {
  width: calc(112 * var(--to-rem));
}
.p-numbers-base__item {
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--to-rem));
  align-items: center;
}
.p-numbers-base__label {
  margin: 0;
  color: #1c2a55;
  font-family: var(--font-shippori);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.6;
}
/* ===== 従業員数 ===== */
.p-numbers-employees {
  display: inline-flex;
  gap: calc(16 * var(--to-rem));
  justify-content: center;
  align-items: center;
  padding: calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-numbers-employees {
    padding: 0 calc(24 * var(--to-rem));
  }
}
.p-numbers-employees img {
  width: calc(112 * var(--to-rem));
  aspect-ratio: 1;
}
/* ===== 年代割合チャート ===== */
.p-numbers-age {
  position: relative;
  width: calc(309 * var(--to-rem));
  height: calc(201 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-numbers-age {
    margin-inline: auto;
  }
}
.p-numbers-age__chart {
  position: absolute;
  inset-block-start: calc(30 * var(--to-rem));
  inset-inline-start: calc(84 * var(--to-rem));
  width: calc(140 * var(--to-rem));
  height: calc(140 * var(--to-rem));
}
.p-numbers-age__line {
  position: absolute;
  display: block;
  width: calc(99 * var(--to-rem));
  height: calc(1 * var(--to-rem));
  background-color: #091d2f;
}
.p-numbers-age__line::after {
  content: "";
  position: absolute;
  inset-block-start: calc(-2 * var(--to-rem));
  width: calc(5 * var(--to-rem));
  height: calc(5 * var(--to-rem));
  border-radius: 50%;
  background-color: #091d2f;
}
.p-numbers-age__line--lt {
  inset-block-start: calc(74 * var(--to-rem));
  inset-inline-start: calc(1 * var(--to-rem));
}
.p-numbers-age__line--lt::after {
  inset-inline-end: calc(-2.5 * var(--to-rem));
}
.p-numbers-age__line--lb {
  inset-block-start: calc(131 * var(--to-rem));
  inset-inline-start: calc(1 * var(--to-rem));
}
.p-numbers-age__line--lb::after {
  inset-inline-end: calc(-2.5 * var(--to-rem));
}
.p-numbers-age__line--rt {
  inset-block-start: calc(74 * var(--to-rem));
  inset-inline-start: calc(210 * var(--to-rem));
}
.p-numbers-age__line--rt::after {
  inset-inline-start: calc(-2.5 * var(--to-rem));
}
.p-numbers-age__line--rb {
  inset-block-start: calc(131 * var(--to-rem));
  inset-inline-start: calc(210 * var(--to-rem));
}
.p-numbers-age__line--rb::after {
  inset-inline-start: calc(-2.5 * var(--to-rem));
}
.p-numbers-age__label {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: calc(4 * var(--to-rem));
}
.p-numbers-age__label > span {
  color: #1c2a55;
  font-family: var(--font-shippori);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.6;
}
.p-numbers-age__label strong {
  color: #0e5eaa;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", var(--font-shippori);
  font-size: max(20 * var(--to-rem), 12px);
  font-weight: 510;
  line-height: 1.5;
}
.p-numbers-age__label--lt {
  inset-block-start: 0;
  inset-inline-start: 0;
}
.p-numbers-age__label--lb {
  inset-block-start: calc(130 * var(--to-rem));
  inset-inline-start: 0;
}
.p-numbers-age__label--rt {
  inset-block-start: 0;
  inset-inline-end: 0;
  text-align: right;
}
.p-numbers-age__label--rb {
  inset-block-start: calc(130 * var(--to-rem));
  inset-inline-end: 0;
  text-align: right;
}
/* ===== 男女割合チャート ===== */
.p-numbers-gender {
  position: relative;
  width: calc(340 * var(--to-rem));
  height: calc(150 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-numbers-gender {
    width: calc(306 * var(--to-rem));
    margin-inline: auto;
  }
}
.p-numbers-gender__line {
  position: absolute;
  display: block;
  width: calc(138 * var(--to-rem));
  height: calc(1 * var(--to-rem));
  background-color: #091d2f;
}
.p-numbers-gender__line::after {
  content: "";
  position: absolute;
  inset-block-start: calc(-2 * var(--to-rem));
  width: calc(5 * var(--to-rem));
  height: calc(5 * var(--to-rem));
  border-radius: 50%;
  background-color: #091d2f;
}
.p-numbers-gender__line--left {
  inset-block-start: calc(20 * var(--to-rem));
  inset-inline-start: 0;
}
.p-numbers-gender__line--left::after {
  inset-inline-end: calc(-2.5 * var(--to-rem));
}
.p-numbers-gender__line--right {
  inset-block-start: calc(117 * var(--to-rem));
  inset-inline-end: 0;
}
.p-numbers-gender__line--right::after {
  inset-inline-start: calc(-2.5 * var(--to-rem));
}
.p-numbers-gender__label {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: calc(0 * var(--to-rem));
}
.p-numbers-gender__label > span {
  color: #1c2a55;
  font-family: var(--font-shippori);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.6;
}
.p-numbers-gender__label strong {
  color: #0e5eaa;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", var(--font-shippori);
  font-size: max(20 * var(--to-rem), 12px);
  font-weight: 510;
  line-height: 1.5;
}
.p-numbers-gender__label--left {
  inset-block-start: calc(31 * var(--to-rem));
  inset-inline-start: 0;
}
.p-numbers-gender__label--right {
  inset-block-start: calc(54 * var(--to-rem));
  inset-inline-end: 0;
  text-align: right;
}
/* ===== p-privacy: 個人情報保護方針ページ ===== */
.p-privacy {
  overflow: hidden;
  padding-block-start: calc(143 * var(--to-rem));
  background-color: var(--color-page-bg);
}
@media screen and (max-width: 767px) {
  .p-privacy {
    padding-block-start: calc(144 * var(--to-rem));
  }
}
.p-privacy__inner {
  width: calc(1120 * var(--to-rem));
  margin-inline: auto;
  padding-block-end: calc(200 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-privacy__inner {
    /* Figma SP: 342px幅 / column / center / gap 32px */
    display: flex;
    flex-direction: column;
    gap: calc(26 * var(--to-rem));
    align-items: center;
    width: calc(342 * var(--to-rem));
    padding-block-end: calc(80 * var(--to-rem));
  }
}
/* -- Heading: PRIVACY POLICY 透かし文字 + タイトル -- */
.p-privacy__heading {
  position: relative;
  padding-block: calc(120 * var(--to-rem)) calc(64 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-privacy__heading {
    /* Figma SP: heading は親幅342pxに合わせる / gap は親の32pxで管理 */
    width: 100%;
    padding-block: 0;
  }
}
.p-privacy__heading-bg {
  inset-block-start: 0;
  inset-inline-start: calc(173 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-privacy__heading-bg {
    /* Figma SP: fontSize 60, lineHeight 1.2, overlap -30px */
    font-size: calc(60 * var(--to-rem));
    margin-block-start: calc(-30 * var(--to-rem));
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .p-privacy__title {
    /* Figma SP: fontSize 32, lineHeight 1.4, letterSpacing 20% */
    font-size: calc(32 * var(--to-rem));
    line-height: 1.4;
    letter-spacing: 0.2em;
  }
}
/* -- Body: 本文テキスト -- */
.p-privacy__body {
  color: #000;
  font-family: var(--font-shippori);
  font-size: max(14 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.6;
  margin-block-start: calc(59 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-privacy__body {
    width: calc(358 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
    margin-block-start: calc(48 * var(--to-rem));
  }
}
.p-privacy__body p {
  margin: 0;
}
/* 段落間の余白 — Figma本文中の空行に対応 */
.p-privacy__body p + p,
.p-privacy__body p + .p-privacy__list,
.p-privacy__body .p-privacy__list + p {
  margin-block-start: calc(22 * var(--to-rem));
}
/* -- 番号付きリスト -- */
.p-privacy__list {
  margin: 0;
  padding-inline-start: 1.5em;
  list-style-type: decimal;
  list-style-position: outside;
}
.p-privacy__list li {
  margin: 0;
}
/* /p-privacy: 個人情報保護方針ページ */
/* ===== p-product: 製品ができるまで ===== */
.p-product {
  position: relative;
  padding-block: calc(128 * var(--to-rem)) calc(186 * var(--to-rem));
  background-color: var(--color-page-bg);
}
@media screen and (max-width: 767px) {
  .p-product {
    padding-block: calc(146 * var(--to-rem)) calc(189 * var(--to-rem));
  }
}
.p-product__inner {
  width: calc(1280 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-product__inner {
    width: calc(390 * var(--to-rem));
  }
}
/* ===== Hero ===== */
.p-product__hero {
  position: relative;
  width: calc(1280 * var(--to-rem));
  min-height: calc(711 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-product__hero {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: auto;
    gap: calc(15 * var(--to-rem));
    align-items: center;
  }
}
/* 背景英字テキスト */
.p-product__hero-en {
  inset-block-start: calc(427 * var(--to-rem));
  inset-inline-start: 36%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-product__hero-en {
    transform: none;
  }
}
/* タイトル（PC: 縦書き、SP: 横書き） */
.p-product__hero-title {
  position: absolute;
  inset-block-start: calc(50 * var(--to-rem));
  inset-inline-start: calc(169 * var(--to-rem));
  z-index: 1;
  display: flex;
  flex-direction: row-reverse;
  width: calc(170 * var(--to-rem));
  margin: 0;
  color: #363636;
  font-family: var(--font-shippori);
  font-size: max(70 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1;
  letter-spacing: calc(8 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-product__hero-title {
    position: relative;
    inset: auto;
    flex-direction: column;
    gap: calc(4 * var(--to-rem));
    align-items: center;
    width: 100%;
    font-size: calc(32 * var(--to-rem));
    line-height: 1.12;
    letter-spacing: 0.2em;
    text-align: center;
  }
}
.p-product__hero-title span {
  display: block;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
@media screen and (max-width: 767px) {
  .p-product__hero-title span {
    writing-mode: horizontal-tb;
    margin-inline: auto;
  }
}
.p-product__hero-title span:nth-of-type(2) {
  margin-block-start: calc(30 * var(--to-rem));
  margin-inline-start: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-product__hero-title span:nth-of-type(2) {
    margin-block-start: 0;
  }
}
/* ヒーロー画像 */
.p-product__hero-image {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: calc(458 * var(--to-rem));
  z-index: 1;
  overflow: hidden;
  width: calc(822 * var(--to-rem));
  aspect-ratio: 1000/659;
  margin: 0;
  border-radius: calc(20 * var(--to-rem)) 0 0 calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-product__hero-image {
    position: relative;
    inset: auto;
    width: calc(342 * var(--to-rem));
    aspect-ratio: 342/255;
    border-radius: calc(12 * var(--to-rem));
  }
}
.p-product__hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* キャッチコピー */
.p-product__hero-catch {
  position: absolute;
  inset-block-start: calc(642 * var(--to-rem));
  inset-inline-end: calc(173 * var(--to-rem));
  z-index: 1;
  width: calc(360 * var(--to-rem));
  margin: 0;
  color: #1b224c;
  font-family: var(--font-shippori);
  font-size: max(24 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.4;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-product__hero-catch {
    position: relative;
    inset: auto;
    width: auto;
    padding-block-start: calc(16 * var(--to-rem));
    font-size: calc(18 * var(--to-rem));
    line-height: 1.7;
    letter-spacing: 0.1em;
    text-align: center;
  }
}
/* ===== Steps ===== */
.p-product__flow {
  width: calc(930 * var(--to-rem));
  margin-block-start: calc(137 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-product__flow {
    width: 100%;
    margin-block-start: calc(80 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-product__steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: calc(40 * var(--to-rem));
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-product__steps {
    gap: calc(20 * var(--to-rem));
    padding-block: calc(9 * var(--to-rem));
  }
}
/* タイムライン縦線 */
.p-product__steps::before {
  content: "";
  position: absolute;
  inset-block-start: calc(40 * var(--to-rem));
  inset-inline-start: calc(38 * var(--to-rem));
  width: calc(5 * var(--to-rem));
  height: calc(100% - 246 * var(--to-rem));
  background-color: #c2cdfb;
}
@media screen and (max-width: 767px) {
  .p-product__steps::before {
    inset-block-start: calc(30 * var(--to-rem));
    inset-inline-start: calc(28 * var(--to-rem));
    width: calc(4 * var(--to-rem));
    height: calc(100% - 350 * var(--to-rem));
  }
}
/* タイムライン矢印 */
.p-product__steps::after {
  content: "";
  position: absolute;
  inset-block-end: calc(204 * var(--to-rem));
  inset-inline-start: calc(31 * var(--to-rem));
  width: calc(20 * var(--to-rem));
  height: calc(20 * var(--to-rem));
  border-right: calc(5 * var(--to-rem)) solid #c2cdfb;
  border-bottom: calc(5 * var(--to-rem)) solid #c2cdfb;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .p-product__steps::after {
    inset-block-end: calc(322 * var(--to-rem));
    inset-inline-start: calc(22 * var(--to-rem));
    width: calc(16 * var(--to-rem));
    height: calc(16 * var(--to-rem));
    border-right-width: calc(4 * var(--to-rem));
    border-bottom-width: calc(4 * var(--to-rem));
  }
}
.p-product__step {
  position: relative;
  padding-inline-start: calc(189 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-product__step {
    padding-inline-start: calc(80 * var(--to-rem));
  }
}
/* ナンバーマーカー */
.p-product__marker {
  position: absolute;
  inset-block-start: calc(0 * var(--to-rem));
  inset-inline-start: 0;
  display: grid;
  place-items: center;
  width: calc(80 * var(--to-rem));
  height: calc(80 * var(--to-rem));
  border-radius: 50%;
  background: url("data:image/svg+xml,%3csvg%20preserveAspectRatio='none'%20width='100%25'%20height='100%25'%20overflow='visible'%20style='display:%20block;'%20viewBox='0%200%2093.4531%2093.4531'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20id='Group%201000004823'%3e%3ccircle%20id='Ellipse%2013'%20cx='46.7266'%20cy='46.7266'%20r='46.7266'%20fill='var(--fill-0,%20%2317406A)'/%3e%3ccircle%20id='Ellipse%20105'%20cx='47.0945'%20cy='47.0945'%20r='35.3209'%20stroke='var(--stroke-0,%20%23C2CDFB)'%20stroke-width='4.41511'/%3e%3c/g%3e%3c/svg%3e") center/100% 100% no-repeat;
  color: #fff;
  font-family: var(--font-noto-sans-jp);
  font-size: max(26 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
}
@media screen and (max-width: 767px) {
  .p-product__marker {
    inset-block-start: calc(-9 * var(--to-rem));
    width: calc(60 * var(--to-rem));
    height: calc(60 * var(--to-rem));
    font-size: calc(20 * var(--to-rem));
  }
}
.p-product__marker span {
  position: relative;
  z-index: 1;
}
/* ステップコンテンツ */
.p-product__step-content {
  display: grid;
  grid-template-columns: calc(442 * var(--to-rem)) calc(275 * var(--to-rem));
  gap: calc(24 * var(--to-rem));
  align-items: start;
}
@media screen and (max-width: 767px) {
  .p-product__step-content {
    grid-template-columns: 1fr;
    gap: calc(16 * var(--to-rem));
  }
}
.p-product__step:not(:last-child) .p-product__step-content {
  padding-block-end: calc(39 * var(--to-rem));
  border-bottom: 1px solid #c2cdfb;
}
@media screen and (max-width: 767px) {
  .p-product__step:not(:last-child) .p-product__step-content {
    padding-block-end: calc(21 * var(--to-rem));
  }
}
.p-product__step-title {
  margin: 0;
  color: #0e5eaa;
  font-family: var(--font-shippori);
  font-size: max(24 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-product__step-title {
    font-size: calc(20 * var(--to-rem));
  }
}
.p-product__step-body {
  margin: calc(12 * var(--to-rem)) 0 0;
  color: #000;
  font-family: var(--font-shippori);
  font-size: max(14 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-product__step-body {
    margin-block-start: calc(10 * var(--to-rem));
    font-size: calc(12 * var(--to-rem));
    line-height: 1.8;
  }
}
/* タグ（職種ラベル） */
.p-product__step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: calc(8 * var(--to-rem));
  margin: calc(12 * var(--to-rem)) 0 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-product__step-tags {
    gap: calc(4 * var(--to-rem));
    margin-block-start: calc(10 * var(--to-rem));
  }
}
.p-product__step-tags li {
  display: inline-flex;
}
.p-product__step-tag {
  display: inline-flex;
  gap: calc(8 * var(--to-rem));
  align-items: center;
  padding: calc(6 * var(--to-rem)) calc(12 * var(--to-rem));
  border-radius: calc(6 * var(--to-rem));
  background-color: #0e5eaa;
  color: #fff;
  font-family: var(--font-noto-sans-jp);
  font-size: max(14 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  text-decoration: none;
  transition: background-color var(--duration), color var(--duration), border-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-product__step-tag {
    gap: calc(7 * var(--to-rem));
    padding: calc(4 * var(--to-rem)) calc(10 * var(--to-rem));
    font-size: calc(11 * var(--to-rem));
  }
}
a.p-product__step-tag {
  border: 1px solid transparent;
}
@media (any-hover: hover) {
  a.p-product__step-tag:hover {
    background-color: #fff;
    border-color: #0e5eaa;
    color: #0e5eaa;
  }
  a.p-product__step-tag:hover .p-product__step-tag-icon {
    stroke: #0e5eaa;
  }
}
.p-product__step-tag-icon {
  width: calc(10 * var(--to-rem));
  height: calc(10 * var(--to-rem));
  stroke: #fff;
  transition: stroke var(--duration);
}
@media screen and (max-width: 767px) {
  .p-product__step-tag-icon {
    width: calc(7 * var(--to-rem));
    height: calc(7 * var(--to-rem));
  }
}
/* ステップ画像 */
.p-product__step-image {
  overflow: hidden;
  margin: 0;
  border-radius: calc(12 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-product__step-image {
    height: calc(170 * var(--to-rem));
  }
}
.p-product__step-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-product__step-image img {
    height: 100%;
  }
}
/* ===== Support ===== */
.p-product__support {
  display: grid;
  grid-template-columns: calc(508 * var(--to-rem)) calc(254 * var(--to-rem));
  gap: calc(60 * var(--to-rem));
  align-items: center;
  margin-block-start: calc(57 * var(--to-rem));
  padding: calc(40 * var(--to-rem)) calc(54 * var(--to-rem));
  border-radius: calc(12 * var(--to-rem));
  background-color: #d8dfff;
}
@media screen and (max-width: 767px) {
  .p-product__support {
    grid-template-columns: 1fr;
    gap: calc(28 * var(--to-rem));
    margin-block-start: calc(40 * var(--to-rem));
    padding: calc(24 * var(--to-rem));
    border-radius: calc(8 * var(--to-rem));
  }
}
.p-product__support-image {
  overflow: hidden;
  margin: 0;
  border-radius: calc(12 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-product__support-image {
    height: calc(170 * var(--to-rem));
  }
}
.p-product__support-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-product__support-image img {
    height: 100%;
  }
}
/* ===== Quote ===== */
.p-product__quote {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: calc(10 * var(--to-rem));
  margin-block-start: calc(141 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-product__quote {
    position: relative;
    margin-block-start: calc(80 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-product__quote-mark {
  position: relative;
  top: calc(-76 * var(--to-rem));
  color: #0e5eaa;
  font-family: "EB Garamond", serif;
  font-size: max(128 * var(--to-rem), 12px);
  font-weight: 700;
  line-height: 1;
  rotate: 180deg;
}
@media screen and (max-width: 767px) {
  .p-product__quote-mark {
    position: absolute;
    inset-inline-start: calc(32 * var(--to-rem));
    top: calc(-40 * var(--to-rem));
    font-size: calc(64 * var(--to-rem));
  }
}
.p-product__quote-mark--end {
  top: auto;
  bottom: calc(-35 * var(--to-rem));
  align-self: flex-end;
  rotate: 0deg;
}
@media screen and (max-width: 767px) {
  .p-product__quote-mark--end {
    inset-inline-start: auto;
    inset-inline-end: calc(32 * var(--to-rem));
    bottom: calc(-40 * var(--to-rem));
  }
}
.p-product__quote-text {
  margin: 0;
  color: #1b224c;
  font-family: var(--font-shippori);
  font-size: max(30 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-product__quote-text {
    font-size: calc(18 * var(--to-rem));
    line-height: 1.6;
  }
}
/* ===== p-requirements: 募集要項 ===== */
.p-requirements {
  position: relative;
  overflow: hidden;
  padding-block: calc(141 * var(--to-rem)) calc(429 * var(--to-rem));
  background-color: var(--color-page-bg);
}
@media screen and (max-width: 767px) {
  .p-requirements {
    padding-block: calc(105 * var(--to-rem)) calc(200 * var(--to-rem));
  }
}
.p-requirements__inner {
  position: relative;
  width: calc(1280 * var(--to-rem));
  margin-inline: auto;
  padding-inline: calc(80 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-requirements__inner {
    width: calc(390 * var(--to-rem));
    padding-inline: calc(24 * var(--to-rem));
  }
}
/* 背景英字テキスト */
.p-requirements__hero-en {
  inset-block-start: 0;
  inset-inline-start: calc(253 * var(--to-rem));
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-requirements__hero-en {
    margin-block-start: calc(-26 * var(--to-rem));
    font-size: calc(60 * var(--to-rem));
    line-height: 1;
  }
}
/* タイトル */
.p-requirements__title {
  padding-block-start: calc(121 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-requirements__title {
    padding-block-start: calc(45 * var(--to-rem));
  }
}
/* ===== セクション見出し（装飾のみ共通） ===== */
.p-requirements__section-title {
  margin: 0;
  color: #363636;
  font-family: var(--font-noto-sans-jp);
  font-size: max(32 * var(--to-rem), 16px);
  font-weight: var(--fw-regular);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-requirements__section-title {
    font-size: calc(24 * var(--to-rem));
  }
}
.p-requirements__section-sub {
  margin: 0;
  color: #df6600;
  font-family: var(--font-alegreya);
  font-size: max(14 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.4;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-requirements__section-sub {
    font-size: max(12 * var(--to-rem), 12px);
  }
}
/* ===== 選考の流れ ===== */
.p-requirements__selection-wrap {
  display: flex;
  align-items: flex-start;
  gap: calc(40 * var(--to-rem));
  width: calc(840 * var(--to-rem));
  margin-block-start: calc(139 * var(--to-rem));
  margin-inline-start: calc(140 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-requirements__selection-wrap {
    flex-direction: column;
    gap: calc(24 * var(--to-rem));
    width: auto;
    margin-block-start: calc(80 * var(--to-rem));
    margin-inline-start: 0;
  }
}
.p-requirements__selection-head {
  display: flex;
  flex: 0 0 calc(220 * var(--to-rem));
  flex-direction: column;
  justify-content: center;
  gap: calc(8 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-requirements__selection-head {
    flex: none;
    flex-direction: row;
    gap: calc(12 * var(--to-rem));
    align-items: baseline;
  }
}
/* ===== 求める人物像 ===== */
.p-requirements__persona-wrap {
  display: flex;
  align-items: flex-start;
  gap: calc(24 * var(--to-rem));
  width: calc(840 * var(--to-rem));
  margin-block-start: calc(102 * var(--to-rem));
  margin-inline-start: calc(140 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-requirements__persona-wrap {
    flex-direction: column;
    gap: calc(24 * var(--to-rem));
    width: auto;
    margin-block-start: calc(37 * var(--to-rem));
    margin-inline-start: 0;
  }
}
.p-requirements__persona-head {
  display: flex;
  flex: 0 0 calc(220 * var(--to-rem));
  flex-direction: column;
  justify-content: center;
  gap: calc(4 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-requirements__persona-head {
    flex: none;
    flex-direction: row;
    gap: calc(12 * var(--to-rem));
    align-items: baseline;
  }
}
/* ===== 募集一覧 ===== */
.p-requirements__recruit-wrap {
  display: flex;
  flex-direction: column;
  gap: calc(19 * var(--to-rem));
  width: calc(840 * var(--to-rem));
  margin-block-start: calc(96 * var(--to-rem));
  margin-inline-start: calc(140 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-requirements__recruit-wrap {
    flex-direction: column;
    gap: calc(5 * var(--to-rem));
    width: auto;
    margin-block-start: calc(36 * var(--to-rem));
    margin-inline-start: 0;
  }
}
.p-requirements__recruit-head {
  display: flex;
  flex-direction: row;
  gap: calc(32 * var(--to-rem));
  align-items: baseline;
}
@media screen and (max-width: 767px) {
  .p-requirements__recruit-head {
    gap: calc(12 * var(--to-rem));
  }
}
.p-requirements__selection-box {
  flex: 1 1 auto;
  min-width: 0;
  padding: calc(43 * var(--to-rem)) calc(44 * var(--to-rem));
  border-radius: calc(16 * var(--to-rem));
  background-color: #e6e9ee;
}
@media screen and (max-width: 767px) {
  .p-requirements__selection-box {
    width: 100%;
    padding: calc(40 * var(--to-rem)) calc(20 * var(--to-rem));
  }
}
.p-requirements__selection-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: calc(40 * var(--to-rem));
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-requirements__selection-steps {
    gap: calc(32 * var(--to-rem));
  }
}
/* タイムライン縦線 */
.p-requirements__selection-steps::before {
  content: "";
  position: absolute;
  inset-block-start: calc(47 * var(--to-rem));
  inset-inline-start: calc(45 * var(--to-rem));
  width: calc(5 * var(--to-rem));
  height: calc(100% - 94 * var(--to-rem));
  background-color: #c2cdfb;
}
@media screen and (max-width: 767px) {
  .p-requirements__selection-steps::before {
    inset-block-start: calc(35 * var(--to-rem));
    inset-inline-start: calc(35 * var(--to-rem));
    height: calc(100% - 70 * var(--to-rem));
  }
}
.p-requirements__selection-step {
  position: relative;
  z-index: 1;
  display: flex;
  gap: calc(40 * var(--to-rem));
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-requirements__selection-step {
    gap: calc(20 * var(--to-rem));
    align-items: flex-start;
  }
}
.p-requirements__selection-num {
  display: grid;
  place-items: center;
  flex: 0 0 calc(93 * var(--to-rem));
  width: calc(93 * var(--to-rem));
  height: calc(93 * var(--to-rem));
  border: 0;
  border-radius: 50%;
  background-color: #17406a;
  box-shadow: inset 0 0 0 calc(9 * var(--to-rem)) #17406a, inset 0 0 0 calc(13 * var(--to-rem)) #c2cdfb;
  color: #fff;
  font-family: var(--font-noto-sans-jp);
  font-size: max(30 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-requirements__selection-num {
    flex: 0 0 calc(70 * var(--to-rem));
    width: calc(70 * var(--to-rem));
    height: calc(70 * var(--to-rem));
    box-shadow: inset 0 0 0 calc(7 * var(--to-rem)) #17406a, inset 0 0 0 calc(10 * var(--to-rem)) #c2cdfb;
    font-size: calc(22 * var(--to-rem));
  }
}
.p-requirements__selection-body {
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-requirements__selection-body {
    gap: calc(16 * var(--to-rem));
  }
}
.p-requirements__selection-name {
  margin: 0;
  color: #1c2a55;
  font-family: var(--font-noto-sans-jp);
  font-size: max(24 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-requirements__selection-name {
    font-size: calc(20 * var(--to-rem));
  }
}
.p-requirements__selection-desc {
  margin: 0;
  color: #1c2a55;
  font-family: var(--font-shippori);
  font-size: max(14 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.6;
}
.p-requirements__persona-box {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: calc(32 * var(--to-rem));
  align-items: center;
  min-width: 0;
  padding: calc(40 * var(--to-rem)) calc(24 * var(--to-rem));
  border-radius: calc(16 * var(--to-rem));
  background-color: #e6e9ee;
}
@media screen and (max-width: 767px) {
  .p-requirements__persona-box {
    width: 100%;
    padding: calc(24 * var(--to-rem)) calc(20 * var(--to-rem));
  }
}
.p-requirements__persona-section {
  display: flex;
  flex-direction: column;
  gap: calc(20 * var(--to-rem));
  align-items: center;
  width: 100%;
}
.p-requirements__persona-label {
  margin: 0;
  font-family: var(--font-noto-sans-jp);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  text-align: center;
}
.p-requirements__persona-label--blue {
  color: #0e5eaa;
}
.p-requirements__persona-badges {
  display: flex;
  flex-wrap: wrap;
  gap: calc(8 * var(--to-rem));
  justify-content: center;
}
.p-requirements__persona-badge {
  display: grid;
  place-items: center;
  flex: 0 0 calc(160 * var(--to-rem));
  width: calc(160 * var(--to-rem));
  height: calc(160 * var(--to-rem));
  border-radius: 50%;
  background: linear-gradient(45deg, #9adcf8 0%, #0e5eaa 100%);
  color: #fff;
  font-family: var(--font-noto-sans-jp);
  font-size: max(14 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-requirements__persona-badge {
    flex: 0 0 calc(120 * var(--to-rem));
    width: calc(120 * var(--to-rem));
    height: calc(120 * var(--to-rem));
    font-size: max(10.5 * var(--to-rem), 10px);
  }
}
.p-requirements__persona-more {
  display: flex;
  flex-direction: column;
  gap: calc(20 * var(--to-rem));
  align-items: center;
  width: 100%;
  padding: calc(20 * var(--to-rem)) calc(24 * var(--to-rem));
  border-radius: calc(14 * var(--to-rem));
  background-color: #fff;
}
.p-requirements__persona-more-head {
  display: flex;
  flex-direction: column;
  gap: calc(4 * var(--to-rem));
  align-items: center;
}
.p-requirements__persona-more-en {
  color: #df6600;
  font-family: var(--font-alegreya);
  font-size: max(14 * var(--to-rem), 12px);
  font-weight: var(--fw-bold);
  line-height: 1.4;
  letter-spacing: 0.4em;
}
.p-requirements__persona-more-label {
  margin: 0;
  color: #df6600;
  font-family: var(--font-noto-sans-jp);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  text-align: center;
}
/* ===== 募集一覧（アコーディオン） ===== */
.p-requirements__jobs {
  display: flex;
  flex-direction: column;
}
.p-requirements__job {
  border-top: 1px solid #cdd6e3;
}
.p-requirements__job + .p-requirements__job {
  border-top: 0;
}
.p-requirements__job:last-child {
  border-bottom: 0;
}
.p-requirements__job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: calc(24 * var(--to-rem)) 0;
  border: 0;
  border-bottom: 1px solid #cdd6e3;
  background-color: transparent;
  text-align: left;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-requirements__job-header {
    padding-block: calc(20 * var(--to-rem));
  }
}
.p-requirements__job-header-left {
  display: flex;
  gap: calc(12 * var(--to-rem));
  align-items: center;
}
.p-requirements__job-dot {
  flex-shrink: 0;
  width: calc(12 * var(--to-rem));
  height: calc(12 * var(--to-rem));
  border-radius: 50%;
  background-color: #df6600;
}
.p-requirements__job-name {
  color: #0e5eaa;
  font-family: var(--font-shippori);
  font-size: max(20 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.5;
}
.p-requirements__job-chevron {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: calc(30 * var(--to-rem));
  height: calc(30 * var(--to-rem));
  border-radius: 50%;
  background-color: #0e5eaa;
  color: #fff;
  transition: transform 0.25s ease;
}
.p-requirements__job-chevron svg {
  display: block;
  width: calc(14 * var(--to-rem));
  height: calc(8 * var(--to-rem));
  transition: transform 0.25s ease;
}
.p-requirements__job.is-open .p-requirements__job-chevron svg {
  transform: rotate(180deg);
}
/* パネル */
.p-requirements__job-panel[hidden] {
  display: none;
}
.p-requirements__job-content {
  display: flex;
  flex-direction: column;
  gap: calc(32 * var(--to-rem));
  padding: calc(31 * var(--to-rem)) calc(60 * var(--to-rem)) calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-requirements__job-content {
    gap: calc(32 * var(--to-rem));
    padding: 0 calc(25 * var(--to-rem)) calc(32 * var(--to-rem));
  }
}
.p-requirements__job-top {
  display: flex;
  gap: calc(60 * var(--to-rem));
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-requirements__job-top {
    flex-direction: column;
    gap: calc(24 * var(--to-rem));
  }
}
.p-requirements__job-desc {
  flex: 1 1 auto;
  margin: 0;
  color: #000;
  font-family: var(--font-shippori);
  font-size: max(12 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-requirements__job-desc {
    padding-block-start: calc(16 * var(--to-rem));
  }
}
.p-requirements__job-image-frame {
  flex-shrink: 0;
  width: calc(320 * var(--to-rem));
  height: calc(180 * var(--to-rem));
  overflow: hidden;
  border-radius: calc(8 * var(--to-rem));
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-requirements__job-image-frame {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
}
.p-requirements__job-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* テーブル */
.p-requirements__job-table {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
.p-requirements__job-table-row {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .p-requirements__job-table-row {
    flex-direction: column;
    padding-block: calc(10 * var(--to-rem));
  }
}
.p-requirements__job-table-label {
  display: flex;
  align-items: center;
  flex: 0 0 calc(130 * var(--to-rem));
  min-height: calc(38 * var(--to-rem));
  padding: calc(16 * var(--to-rem));
  color: #0e5eaa;
  font-family: var(--font-noto-sans-jp);
  font-size: max(14 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-requirements__job-table-label {
    flex: none;
    min-height: 0;
    padding: calc(4 * var(--to-rem)) 0;
    font-size: calc(14 * var(--to-rem));
  }
}
.p-requirements__job-table-value {
  flex: 1 1 auto;
  margin: 0;
  padding: calc(16 * var(--to-rem));
  color: #000;
  font-family: var(--font-shippori);
  font-size: max(14 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-requirements__job-table-value {
    min-height: 0;
    padding: calc(8 * var(--to-rem)) 0;
    font-size: calc(14 * var(--to-rem));
  }
}
.p-requirements__job-table-value a {
  position: relative;
  color: #00c8ff;
  font-family: var(--font-shippori);
  font-weight: var(--fw-regular);
  text-decoration: none;
}
.p-requirements__job-table-value a::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-end: -2px;
  width: 0;
  height: 1px;
  background-color: #00c8ff;
  transition: width 0.3s ease;
}
.p-requirements__job-table-value a:hover::after {
  width: 100%;
}
/* ボタン */
.p-requirements__job-buttons {
  display: flex;
  gap: calc(16 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-requirements__job-buttons {
    flex-direction: column;
  }
}
.p-requirements__job-btn {
  flex: 1 1 0;
  min-height: calc(60 * 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 {
  color: var(--color-text);
  font-size: max(14 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
}
@media screen and (max-width: 767px) {
  .p-single__subtitle {
    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: calc(16 * var(--to-rem));
  border-radius: 8px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-size: max(14 * var(--to-rem), 12px);
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-single__summary {
    margin-block-start: calc(32 * var(--to-rem));
    padding: calc(20 * var(--to-rem)) 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: max(14 * var(--to-rem), 12px);
}
@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: max(14 * var(--to-rem), 12px);
}
@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: calc(4 * var(--to-rem)) 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 {
  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 {
    margin-block-start: calc(64 * var(--to-rem));
    font-size: calc(36 * var(--to-rem));
  }
}
.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 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 {
  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: calc(16 * 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: calc(20 * 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: calc(2 * var(--to-rem)) calc(6 * var(--to-rem));
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-primary);
  font-family: monospace;
  font-size: max(14 * var(--to-rem), 12px);
}
.p-single__content pre,
.p-single pre {
  overflow-x: auto;
  margin-block-start: calc(24 * var(--to-rem));
  padding: calc(16 * var(--to-rem));
  border-radius: 8px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-family: monospace;
  font-size: max(14 * var(--to-rem), 12px);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single__content pre,
  .p-single pre {
    padding: calc(24 * var(--to-rem));
  }
}
.p-single__content pre code,
.p-single pre code {
  padding: 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: calc(12 * var(--to-rem)) 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: calc(16 * var(--to-rem)) 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 {
  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__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: calc(4 * var(--to-rem)) 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));
  }
}
.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: 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: calc(20 * var(--to-rem));
  }
}
.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: max(14 * var(--to-rem), 12px);
  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: 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: 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: max(14 * var(--to-rem), 12px);
  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: max(14 * var(--to-rem), 12px);
}
@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: max(14 * var(--to-rem), 12px);
  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 {
  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 {
    font-size: calc(24 * var(--to-rem));
  }
}
.p-single--works .p-single__gallery-list {
  display: grid;
  gap: calc(16 * var(--to-rem));
  margin-block-start: calc(24 * 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));
    margin-block-start: calc(32 * 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 {
  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 {
    font-size: calc(24 * var(--to-rem));
  }
}
.p-single--post .p-single__related-list {
  display: grid;
  gap: calc(16 * var(--to-rem));
  margin-block-start: calc(24 * 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: 767px) {
  .p-single--post .p-single__related-list {
    margin-block-start: calc(32 * 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: max(14 * var(--to-rem), 12px);
  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-top-base: トップ拠点紹介 ===== */
.p-top-base {
  overflow: hidden;
  background-color: #0e5eaa;
}
.p-top-base__inner {
  display: flex;
  flex-direction: row;
  gap: calc(105 * var(--to-rem));
  width: calc(1280 * var(--to-rem));
  padding-block: calc(68 * var(--to-rem)) calc(64 * var(--to-rem));
  padding-inline-start: calc(159 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-top-base__inner {
    flex-direction: column;
    gap: calc(24 * var(--to-rem));
    width: calc(390 * var(--to-rem));
    padding: calc(0 * var(--to-rem)) calc(32 * var(--to-rem));
    padding-block-end: calc(40 * var(--to-rem));
  }
}
.p-top-base__heading {
  display: flex;
  flex-direction: row;
  gap: calc(10 * var(--to-rem));
  margin-block-start: calc(43 * var(--to-rem));
  margin-inline-start: calc(25 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-base__heading {
    flex-direction: column;
    gap: 0;
    margin-inline-start: calc(0 * var(--to-rem));
  }
}
.p-top-base__heading-en {
  margin: 0;
  padding-block-start: calc(12 * var(--to-rem));
  color: var(--color-white);
  font-family: var(--font-albert);
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-regular);
  line-height: 1.2;
  writing-mode: vertical-lr;
  align-self: flex-start;
}
@media screen and (max-width: 767px) {
  .p-top-base__heading-en {
    order: 1;
    padding-block-start: 0;
    font-family: var(--font-shippori);
    font-size: calc(28 * var(--to-rem));
    line-height: 1.4;
    writing-mode: horizontal-tb;
    transform: none;
  }
}
.p-top-base__heading-ja {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-shippori);
  font-size: calc(40 * var(--to-rem));
  font-weight: var(--fw-regular);
  line-height: 1;
  letter-spacing: calc(16 * var(--to-rem));
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .p-top-base__heading-ja {
    order: -1;
    font-size: calc(12 * var(--to-rem));
    line-height: 1.75;
    writing-mode: horizontal-tb;
    text-align: left;
    letter-spacing: calc(1 * var(--to-rem));
  }
}
.p-top-base__content {
  display: grid;
  grid-template-columns: 1fr;
  width: calc(930 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-base__content {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: calc(20 * var(--to-rem));
  }
}
.p-top-base__map-wrap {
  position: relative;
  width: calc(684 * var(--to-rem));
  border-radius: calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-base__map-wrap {
    width: auto;
    height: calc(382 * var(--to-rem));
    margin-inline-start: calc(-131 * var(--to-rem));
    margin-inline-end: calc(-12 * var(--to-rem));
    border-radius: calc(8 * var(--to-rem));
  }
}
.p-top-base__map {
  width: 100%;
  margin: 0;
}
.p-top-base__map img {
  display: block;
  width: 100%;
  height: auto;
}
.p-top-base__tab {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: calc(9 * var(--to-rem)) calc(18 * var(--to-rem));
  border: 0;
  border-radius: calc(47 * var(--to-rem));
  box-shadow: 0 calc(4 * var(--to-rem)) calc(4 * var(--to-rem)) rgba(0, 0, 0, 0.25);
  background-color: var(--color-white);
  color: #1460a3;
  font-family: var(--font-shippori);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.04em;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color var(--duration), color var(--duration), background-image var(--duration);
}
@media (any-hover: hover) {
  .p-top-base__tab:hover {
    background-color: #0e5eaa;
    color: var(--color-white);
  }
}
@media screen and (max-width: 767px) {
  .p-top-base__tab {
    padding: calc(8 * var(--to-rem)) calc(18 * var(--to-rem));
  }
}
.p-top-base__tab.is-active {
  pointer-events: none;
  border: 1px solid #9adcf8;
  background-color: transparent;
  background-image: linear-gradient(45deg, #9adcf8 0%, #0e5eaa 100%);
  color: var(--color-white);
}
.p-top-base__tab--tokushima {
  top: calc(243 * var(--to-rem));
  left: calc(512 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-base__tab--tokushima {
    top: calc(167 * var(--to-rem));
    left: calc(336 * var(--to-rem));
  }
}
.p-top-base__tab--tokyo {
  top: calc(157 * var(--to-rem));
  left: calc(566 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-base__tab--tokyo {
    top: calc(98 * var(--to-rem));
    left: calc(374 * var(--to-rem));
  }
}
.p-top-base__tab--thai {
  top: calc(375 * var(--to-rem));
  left: calc(172 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-base__tab--thai {
    top: calc(245 * var(--to-rem));
    left: calc(138 * var(--to-rem));
  }
}
.p-top-base__panel[hidden] {
  display: none;
}
@media (min-width: 769px) {
  .p-top-base__panel[hidden] {
    display: flex;
    visibility: hidden;
    pointer-events: none;
  }
}
.p-top-base__panel {
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: calc(20 * var(--to-rem));
  clip-path: inset(0 -9999px -9999px 0);
  margin-block-start: calc(-42 * var(--to-rem));
  margin-inline-start: calc(-10 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-base__panel {
    clip-path: none;
    gap: calc(6 * var(--to-rem));
    margin-block-start: 0;
    margin-inline-start: 0;
  }
}
.p-top-base__panel.is-active {
  visibility: visible;
  pointer-events: auto;
}
.p-top-base__slider {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-base__slider {
    margin-inline-end: calc((390 * var(--to-rem) - 100vw) / 2 - 32 * var(--to-rem));
  }
}
.p-top-base .splide__track {
  overflow: hidden;
}
.p-top-base__card {
  display: flex;
  flex-direction: column;
  gap: calc(4 * var(--to-rem));
  width: calc(249 * var(--to-rem));
  min-height: calc(215 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-base__card {
    width: calc(200 * var(--to-rem));
    min-height: calc(195 * var(--to-rem));
  }
}
.p-top-base__card-image {
  overflow: hidden;
  width: 100%;
  height: calc(154 * var(--to-rem));
  margin: 0;
  border-radius: calc(4 * var(--to-rem));
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-top-base__card-image {
    height: calc(140 * var(--to-rem));
  }
}
.p-top-base__card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top-base__card-body {
  display: flex;
  flex-direction: column;
  gap: calc(4 * var(--to-rem));
  flex: 1;
}
.p-top-base__card-title {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-shippori);
  font-size: max(20 * var(--to-rem), 12px);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 767px) {
  .p-top-base__card-title {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-top-base__card-loc-name {
  margin-block-start: calc(8 * var(--to-rem));
  color: var(--color-white);
  font-family: var(--font-shippori);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: calc(-0.64 * var(--to-rem));
}
.p-top-base__card-loc-name + .p-top-base__card-address {
  margin-block-start: calc(4 * var(--to-rem));
}
.p-top-base__card-address {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-shippori);
  font-size: max(12 * var(--to-rem), 10px);
  font-weight: var(--fw-regular);
  line-height: 1.2;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 767px) {
  .p-top-base__card-address {
    font-size: calc(11 * var(--to-rem));
  }
}
.p-top-base__nav {
  display: flex;
  gap: calc(16 * var(--to-rem));
  min-height: calc(60 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-base__nav {
    order: 1;
    min-height: calc(40 * var(--to-rem));
  }
}
.p-top-base__nav.is-hidden {
  visibility: hidden;
  pointer-events: none;
}
.p-top-base__nav.is-hidden-pc {
  visibility: hidden;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-top-base__nav.is-hidden-pc {
    visibility: visible;
    pointer-events: auto;
  }
}
.p-top-base__nav-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: calc(60 * var(--to-rem));
  height: calc(60 * var(--to-rem));
  border: none;
  border-radius: 50%;
  background-color: var(--color-white);
  color: #0e5eaa;
  cursor: pointer;
  transition: background-image var(--duration), color var(--duration);
}
@media (any-hover: hover) {
  .p-top-base__nav-btn:hover {
    background-color: transparent;
    background-image: linear-gradient(45deg, #9adcf8 0%, #0e5eaa 100%);
    color: var(--color-white);
  }
}
@media screen and (max-width: 767px) {
  .p-top-base__nav-btn {
    width: calc(40 * var(--to-rem));
    height: calc(40 * var(--to-rem));
  }
}
.p-top-base__nav-btn svg {
  flex-shrink: 0;
  width: calc(19 * var(--to-rem));
  height: calc(19 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-base__nav-btn svg {
    width: calc(13 * var(--to-rem));
    height: calc(13 * var(--to-rem));
  }
}
.p-top-base__nav-btn--prev svg {
  transform: rotate(180deg);
}
/* /p-top-base: トップ拠点紹介 */
/* ===== p-top-environment: トップ職場環境 ===== */
.p-top-environment {
  padding-block: calc(80 * var(--to-rem)) calc(200 * var(--to-rem));
  background-color: var(--color-page-bg);
}
@media screen and (max-width: 767px) {
  .p-top-environment {
    margin-block-start: calc(69 * var(--to-rem));
    padding-block: calc(16 * var(--to-rem)) calc(124 * var(--to-rem));
  }
}
.p-top-environment__inner {
  display: flex;
  flex-direction: column;
  gap: calc(32 * var(--to-rem));
  align-items: center;
  width: calc(1280 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-top-environment__inner {
    gap: calc(35 * var(--to-rem));
    width: calc(390 * var(--to-rem));
  }
}
.p-top-environment__panel {
  position: relative;
  width: calc(930 * var(--to-rem));
  margin-block-start: calc(90 * var(--to-rem));
  border-radius: calc(10 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-environment__panel {
    width: 100%;
    margin-block-start: 0;
    border-radius: 0;
  }
}
.p-top-environment__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  margin: 0;
  border-radius: inherit;
}
.p-top-environment__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top-environment__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background-color: rgba(219, 232, 244, 0.56);
}
.p-top-environment__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: calc(380 * var(--to-rem));
  padding-inline: calc(95 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-environment__content {
    gap: calc(26 * var(--to-rem));
    justify-content: flex-start;
    min-height: calc(549 * var(--to-rem));
    padding: calc(91 * var(--to-rem)) calc(16 * var(--to-rem)) calc(80 * var(--to-rem));
  }
}
.p-top-environment__heading-wrap {
  position: absolute;
  top: calc(-90 * var(--to-rem));
  left: 50%;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: calc(80 * var(--to-rem));
  padding: calc(26 * var(--to-rem)) calc(22 * var(--to-rem)) calc(16 * var(--to-rem));
  background-color: var(--color-white);
  translate: -50% 0;
}
@media screen and (max-width: 767px) {
  .p-top-environment__heading-wrap {
    position: static;
    width: calc(63 * var(--to-rem));
    padding: calc(16 * var(--to-rem)) calc(18 * var(--to-rem));
    border-radius: calc(4 * var(--to-rem));
    translate: none;
  }
}
.p-top-environment__heading-en {
  position: absolute;
  top: calc(73 * var(--to-rem));
  left: calc(100% - 60 * var(--to-rem));
  margin: 0;
  color: #0e5eaa;
  font-family: var(--font-albert);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.2;
  white-space: nowrap;
  rotate: 90deg;
}
@media screen and (max-width: 767px) {
  .p-top-environment__heading-en {
    display: none;
  }
}
.p-top-environment__heading-ja {
  margin: 0;
  color: #0e5eaa;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-shippori);
  font-size: max(30 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.4;
  letter-spacing: 0.4em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-environment__heading-ja {
    font-size: calc(24 * var(--to-rem));
  }
}
.p-top-environment__links {
  display: flex;
  gap: calc(16 * var(--to-rem));
  align-items: center;
  width: calc(740 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-environment__links {
    flex-direction: column;
    gap: calc(8 * var(--to-rem));
    width: 100%;
  }
}
.p-top-environment__link {
  width: 100%;
  min-width: 0;
  padding: calc(25 * var(--to-rem)) calc(20 * var(--to-rem));
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: calc(8 * var(--to-rem));
  background-color: rgba(242, 242, 242, 0.2);
  color: var(--color-white);
  font-family: var(--font-shippori);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.6;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  z-index: 0;
  transition: border-color var(--duration);
}
.p-top-environment__link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background-image: linear-gradient(45deg, #9adcf8 0%, #0e5eaa 100%);
  opacity: 0;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-top-environment__link {
    justify-content: flex-start;
    padding: calc(32 * var(--to-rem)) calc(20 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
  }
}
@media (any-hover: hover) {
  .p-top-environment__link:hover {
    border-color: #fff;
  }
  .p-top-environment__link:hover::before {
    opacity: 1;
  }
}
.p-top-environment__entry {
  width: 100%;
  max-width: calc(361 * var(--to-rem));
  padding: calc(25 * var(--to-rem)) calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-environment__entry {
    max-width: calc(358 * var(--to-rem));
  }
}
/* /p-top-environment: トップ職場環境 */
/* ===== p-top-faq: トップFAQ ===== */
.p-top-faq {
  /* FAQはフッター直前の独立セクションとして余白を確保 */
  padding: calc(168 * var(--to-rem)) 0 calc(154 * var(--to-rem));
  background-color: var(--color-page-bg);
}
@media screen and (max-width: 767px) {
  .p-top-faq {
    padding: calc(73 * var(--to-rem)) 0 calc(99 * var(--to-rem));
    padding-block-start: calc(124 * var(--to-rem));
  }
}
.p-top-faq__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: calc(1120 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-top-faq__inner {
    flex-direction: column;
    gap: calc(32 * var(--to-rem));
    width: calc(326 * var(--to-rem));
  }
}
.p-top-faq__heading {
  color: #252060;
}
.p-top-faq__sub-title {
  margin: 0;
  font-family: var(--font-albert);
  font-size: max(20 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.2;
}
.p-top-faq__title {
  margin: calc(12 * var(--to-rem)) 0 0;
  font-family: var(--font-shippori);
  font-size: max(36 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-top-faq__title {
    margin-top: calc(8 * var(--to-rem));
  }
}
.p-top-faq__list {
  width: calc(741 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-faq__list {
    width: 100%;
  }
}
.p-top-faq__item {
  padding: calc(23 * var(--to-rem)) 0 calc(34 * var(--to-rem));
  border-top: 1px solid #c8c8c8;
}
.p-top-faq__item:last-child {
  border-bottom: 1px solid #c8c8c8;
}
.p-top-faq__question-row {
  display: flex;
  gap: calc(8 * var(--to-rem));
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0;
  border: 0;
  background-color: transparent;
  text-align: left;
  cursor: pointer;
}
.p-top-faq__question-main {
  display: flex;
  flex: 1 1 auto;
  gap: calc(40 * var(--to-rem));
  align-items: center;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-top-faq__question-main {
    gap: calc(16 * var(--to-rem));
    align-items: flex-start;
  }
}
.p-top-faq__question-label {
  margin: 0;
  color: #363636;
  font-family: var(--font-shippori);
  font-size: max(14 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.9;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.p-top-faq__question-text {
  margin: 0;
  color: #363636;
  font-family: var(--font-shippori);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.9;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top-faq__question-text {
    line-height: 1.7;
  }
}
.p-top-faq__toggle-icon {
  display: block;
  flex: 0 0 auto;
  width: calc(9 * var(--to-rem));
  height: calc(9 * var(--to-rem));
  margin-right: calc(11 * var(--to-rem));
  border-right: 1px solid #1f1f1f;
  border-bottom: 1px solid #1f1f1f;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}
.p-top-faq__item.is-open .p-top-faq__toggle-icon {
  transform: rotate(-135deg);
}
.p-top-faq__answer-wrap[hidden] {
  display: none;
}
.p-top-faq__answer-box {
  display: flex;
  gap: calc(24 * var(--to-rem));
  align-items: flex-start;
  /* margin-block-start はここで管理（answer-wrap に置くと height:0 時もマージン分の隙間が生じてカクつくため） */
  margin-block-start: calc(24 * var(--to-rem));
  padding: calc(16 * var(--to-rem)) calc(24 * var(--to-rem));
  border-radius: calc(8 * var(--to-rem));
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-top-faq__answer-box {
    gap: calc(16 * var(--to-rem));
    padding: calc(16 * var(--to-rem));
  }
}
.p-top-faq__answer-label {
  margin: 0;
  color: #363636;
  font-family: var(--font-shippori);
  font-size: max(14 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.7;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.p-top-faq__answer-body {
  flex: 1 1 auto;
}
.p-top-faq__answer-body p {
  margin: 0;
  color: #363636;
  font-family: var(--font-shippori);
  font-size: max(14 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top-faq__answer-body p {
    font-size: calc(12 * var(--to-rem));
  }
}
/* /p-top-faq: トップFAQ */
/* ===== p-top-glance: トップ一目でわかる ===== */
.p-top-glance {
  position: relative;
  padding-block: calc(120 * var(--to-rem));
  background-color: #0e5eaa;
  margin-block-start: calc(0 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-glance {
    margin-block-start: calc(195 * var(--to-rem));
    padding-block: calc(80 * var(--to-rem));
  }
}
.p-top-glance__inner {
  display: flex;
  flex-direction: column;
  gap: calc(40 * var(--to-rem));
  align-items: center;
  width: calc(1121 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-top-glance__inner {
    flex-direction: row;
    gap: calc(38 * var(--to-rem));
    align-items: flex-start;
    width: calc(390 * var(--to-rem));
  }
}
.p-top-glance__catch {
  position: relative;
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-shippori);
  font-size: max(48 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.2;
  letter-spacing: calc(12 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-glance__catch {
    left: calc(20 * var(--to-rem));
    flex: 0 0 calc(32 * var(--to-rem));
    font-size: calc(24 * var(--to-rem));
    letter-spacing: calc(5 * var(--to-rem));
    text-align: initial;
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }
}
.p-top-glance__cards {
  display: flex;
  gap: calc(32 * var(--to-rem));
  justify-content: center;
  align-items: flex-end;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-glance__cards {
    display: grid;
    grid-template-columns: calc(304 * var(--to-rem));
    gap: calc(22 * var(--to-rem));
    justify-content: initial;
    align-items: initial;
    width: auto;
  }
}
.p-top-glance__card {
  position: relative;
  flex: 1;
  padding-inline-start: calc(14 * var(--to-rem));
  transform-origin: bottom center;
  transition: transform 0.4s ease;
}
.p-top-glance__card::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.65);
}
@media screen and (max-width: 767px) {
  .p-top-glance__card {
    flex: none;
    transition: none;
    padding-inline-start: calc(16 * var(--to-rem));
  }
}
@media (any-hover: hover) {
  .p-top-glance__card:hover {
    transform: scale(1.1);
  }
  .p-top-glance__cards:has(.p-top-glance__card:hover) .p-top-glance__card:not(:hover) {
    transform: scale(0.9667);
  }
}
.p-top-glance__card-link {
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
  color: var(--color-white);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-top-glance__card-link {
    gap: calc(12 * var(--to-rem));
  }
}
.p-top-glance__card-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: calc(240 * var(--to-rem));
  margin: 0;
  border-radius: calc(21 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-glance__card-image {
    width: calc(280 * var(--to-rem));
    height: calc(240 * var(--to-rem));
    border-radius: calc(8 * var(--to-rem));
  }
}
.p-top-glance__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* object-position: フレーム書き出し画像のためデフォルト(center)で表示 */
.p-top-glance__card-title {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-shippori);
  font-size: max(24 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-top-glance__card-title {
    font-size: calc(20 * var(--to-rem));
    font-weight: var(--fw-medium);
  }
}
.p-top-glance__card-description {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-shippori);
  font-size: max(13 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-top-glance__card-description {
    width: calc(280 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
    line-height: 1.6;
  }
}
.p-top-glance__card-arrow {
  position: absolute;
  inset-block-start: calc(12 * var(--to-rem));
  inset-inline-end: calc(12 * var(--to-rem));
  display: grid;
  place-items: center;
  width: calc(40 * var(--to-rem));
  height: calc(40 * var(--to-rem));
  border-radius: 50%;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
  background-color: var(--color-white);
}
.p-top-glance__card-arrow::after {
  content: "";
  width: calc(14 * var(--to-rem));
  height: calc(14 * var(--to-rem));
  background-color: #0e5eaa;
  mask: url("data:image/svg+xml,%3csvg%20width='100%25'%20height='100%25'%20viewBox='0%200%2014%2014'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%20style='display:%20block;'%3e%3cpath%20d='M0%207H14M7%200.63L14%207L7%2013.37'%20stroke='var(--stroke-0,%20white)'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e") center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-top-glance__card-arrow {
    inset-block-start: calc(8 * var(--to-rem));
    inset-inline-end: calc(8 * var(--to-rem));
    width: calc(32 * var(--to-rem));
    height: calc(32 * var(--to-rem));
  }
  .p-top-glance__card-arrow::after {
    width: calc(11 * var(--to-rem));
    height: calc(11 * var(--to-rem));
  }
}
/* ===== スクロールアニメーション ===== */
/* rule-exception: CSS_MQ_001 reason: prefers-reduced-motion はアクセシビリティ対応の
   機能クエリのため @include mq() では記述不可。直書き例外（恒久）。 */
@media (prefers-reduced-motion: no-preference) {
  /* セクション全体: フェードインアップ */
  .p-top-glance.js-animate {
    opacity: 0;
    translate: 0 40px;
    transition: opacity 0.7s ease, translate 0.7s ease;
  }
  .p-top-glance.js-animate.is-visible {
    opacity: 1;
    translate: 0 0;
  }
  /* タイトル: じわじわ出現 */
  .p-top-glance.js-animate .p-top-glance__catch {
    opacity: 0;
  }
  .p-top-glance.js-animate.is-visible .p-top-glance__catch {
    animation: text-focus-in 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.3s both;
  }
  /* カード左ボーダー線: カードが画面に入ったら上から下へ伸びる */
  .p-top-glance.js-animate .p-top-glance__card::before {
    height: 0;
    transition: height 1s ease 0.3s;
  }
  .p-top-glance.js-animate .p-top-glance__card.is-card-visible::before {
    height: 100%;
  }
}
/* /p-top-glance: トップ一目でわかる */
/* ===== p-top-interview: トップインタビュー ===== */
.p-top-interview {
  overflow: hidden;
  padding-block: calc(162 * var(--to-rem));
  background-color: var(--color-page-bg);
}
@media screen and (max-width: 767px) {
  .p-top-interview {
    overflow: visible;
    padding-block: calc(80 * var(--to-rem)) calc(88 * var(--to-rem));
  }
}
.p-top-interview__inner {
  position: relative;
  width: calc(1280 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-top-interview__inner {
    position: static;
    width: calc(390 * var(--to-rem));
    padding-inline: calc(32 * var(--to-rem));
  }
}
.p-top-interview__head {
  position: absolute;
  top: 0;
  left: calc(80 * var(--to-rem));
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-top-interview__head {
    position: static;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-block-end: calc(24 * var(--to-rem));
  }
}
.p-top-interview__title-group {
  display: flex;
  flex-direction: row;
  gap: calc(12 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-interview__title-group {
    flex-direction: column;
    gap: 0;
  }
}
.p-top-interview__title {
  order: -1;
  margin: 0;
  color: #363636;
  font-family: var(--font-albert);
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-regular);
  line-height: 1.2;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
@media screen and (max-width: 767px) {
  .p-top-interview__title {
    order: 0;
    font-family: var(--font-shippori);
    font-size: calc(28 * var(--to-rem));
    line-height: 1.4;
    writing-mode: horizontal-tb;
  }
}
.p-top-interview__sub-title {
  margin: 0;
  color: #363636;
  font-family: var(--font-shippori);
  font-size: calc(36 * var(--to-rem));
  font-weight: var(--fw-regular);
  line-height: 1.2;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: calc(7 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-interview__sub-title {
    order: -1;
    font-size: calc(12 * var(--to-rem));
    line-height: 1.75;
    writing-mode: horizontal-tb;
  }
}
.p-top-interview__instagram {
  display: inline-flex;
  align-items: center;
  gap: calc(6 * var(--to-rem));
  padding: calc(8 * var(--to-rem)) calc(16 * var(--to-rem));
  border-radius: calc(50 * var(--to-rem));
  box-shadow: 0 10px 12px rgba(0, 0, 0, 0.03);
  background: url("../images/bg_instagram_hover.webp") center/cover no-repeat;
  color: var(--color-white);
  font-family: var(--font-noto-sans-jp);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--duration);
}
@media (any-hover: hover) {
  .p-top-interview__instagram:hover {
    background: linear-gradient(45deg, #9adcf8 0%, #0e5eaa 100%);
  }
}
.p-top-interview__instagram--pc {
  font-size: max(14 * var(--to-rem), 12px);
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-top-interview__instagram--pc {
    display: none;
  }
}
.p-top-interview__instagram--sp {
  display: none;
  font-size: calc(12 * var(--to-rem));
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-top-interview__instagram--sp {
    display: inline-flex;
    margin-inline-end: calc(-12 * var(--to-rem));
  }
}
.p-top-interview__instagram-icon {
  flex-shrink: 0;
  width: calc(14 * var(--to-rem));
  height: calc(14 * var(--to-rem));
}
.p-top-interview__instagram-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-top-interview__slider-wrap {
  margin-inline-start: calc(216 * var(--to-rem));
  clip-path: inset(0 -9999px 0 0);
}
@media screen and (max-width: 767px) {
  .p-top-interview__slider-wrap {
    margin-inline-start: 0;
    margin-inline-end: calc((390 * var(--to-rem) - 100vw) / 2 - 32 * var(--to-rem));
    clip-path: none;
  }
}
.p-top-interview .splide__track {
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .p-top-interview .splide__track {
    overflow: hidden;
  }
}
.p-top-interview__card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  width: calc(300 * var(--to-rem));
  padding: calc(20 * var(--to-rem));
  border-radius: calc(24 * var(--to-rem));
  box-shadow: 10px 14px 4px rgba(0, 0, 0, 0.05);
  background-color: var(--color-white);
}
.p-top-interview__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(45deg, #9adcf8 0%, #0e5eaa 100%);
  opacity: 0;
  transition: opacity var(--duration);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-top-interview__card {
    width: calc(180 * var(--to-rem));
    padding: calc(11 * var(--to-rem));
    box-shadow: none;
  }
}
@media (any-hover: hover) {
  .p-top-interview__card:hover::before {
    opacity: 1;
  }
}
.p-top-interview__card-number {
  position: absolute;
  top: calc(20 * var(--to-rem));
  left: calc(20 * var(--to-rem));
  z-index: 2;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: calc(60 * var(--to-rem));
  height: calc(60 * var(--to-rem));
  border-radius: 50%;
  background-color: #363636;
  color: var(--color-white);
  font-family: var(--font-albert);
  font-size: max(30 * var(--to-rem), 12px);
  font-weight: 200;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-top-interview__card-number {
    top: calc(8 * var(--to-rem));
    left: calc(8 * var(--to-rem));
    width: calc(40 * var(--to-rem));
    height: calc(40 * var(--to-rem));
    font-size: calc(20 * var(--to-rem));
  }
}
.p-top-interview__card-link {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: calc(32 * var(--to-rem));
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-top-interview__card-link {
    gap: calc(11 * var(--to-rem));
  }
}
.p-top-interview__card-image {
  overflow: hidden;
  width: 100%;
  height: calc(340 * var(--to-rem));
  margin: 0;
  border-radius: calc(70 * var(--to-rem));
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-top-interview__card-image {
    height: calc(210 * var(--to-rem));
    border-radius: calc(16 * var(--to-rem));
  }
}
.p-top-interview__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.p-top-interview__card-body {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: calc(12 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-interview__card-body {
    flex-direction: column;
    align-items: flex-end;
    gap: calc(7 * var(--to-rem));
  }
}
.p-top-interview__card-text {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: calc(8 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-interview__card-text {
    align-self: stretch;
    gap: calc(6 * var(--to-rem));
  }
}
.p-top-interview__card-title {
  margin: 0;
  /* autoprefixer: ignore next */
  display: -webkit-box;
  /* autoprefixer: ignore next */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  color: #0e5eaa;
  font-family: var(--font-shippori);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  transition: color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-top-interview__card-title {
    font-size: calc(14 * var(--to-rem));
  }
}
@media (any-hover: hover) {
  .p-top-interview__card:hover .p-top-interview__card-title {
    color: var(--color-white);
  }
}
.p-top-interview__card-meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: calc(8 * var(--to-rem));
  margin: 0;
}
.p-top-interview__card-dept,
.p-top-interview__card-name {
  color: #091d2f;
  font-family: var(--font-shippori);
  font-size: max(15 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  transition: color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-top-interview__card-dept,
  .p-top-interview__card-name {
    font-size: calc(12 * var(--to-rem));
  }
}
@media (any-hover: hover) {
  .p-top-interview__card:hover .p-top-interview__card-dept,
  .p-top-interview__card:hover .p-top-interview__card-name {
    color: var(--color-white);
  }
}
.p-top-interview__card-arrow {
  display: inline-flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: calc(40 * var(--to-rem));
  height: calc(40 * var(--to-rem));
  border-radius: 50%;
  background-color: #0e5eaa;
  color: var(--color-white);
  transition: background-color var(--duration), color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-top-interview__card-arrow {
    width: calc(32 * var(--to-rem));
    height: calc(32 * var(--to-rem));
  }
}
.p-top-interview__card-arrow svg {
  flex-shrink: 0;
  width: calc(14 * var(--to-rem));
  height: calc(14 * var(--to-rem));
}
@media (any-hover: hover) {
  .p-top-interview__card:hover .p-top-interview__card-arrow {
    background-color: var(--color-white);
    color: #0e5eaa;
  }
}
.p-top-interview__nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-block-start: calc(40 * var(--to-rem));
  padding-inline-end: calc(43 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-interview__nav-row {
    justify-content: flex-start;
    margin-block-start: calc(26 * var(--to-rem));
  }
}
.p-top-interview__nav {
  display: flex;
  gap: calc(16 * var(--to-rem));
}
.p-top-interview__nav-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: calc(60 * var(--to-rem));
  height: calc(60 * var(--to-rem));
  border: 1px solid transparent;
  border-radius: 50%;
  background-color: #0e5eaa;
  color: var(--color-white);
  cursor: pointer;
  transition: background-color var(--duration), border-color var(--duration), color var(--duration);
}
@media (any-hover: hover) {
  .p-top-interview__nav-btn:hover {
    border: 1px solid #0e5eaa;
    background-color: var(--color-white);
    color: #0e5eaa;
  }
}
@media screen and (max-width: 767px) {
  .p-top-interview__nav-btn {
    width: calc(40 * var(--to-rem));
    height: calc(40 * var(--to-rem));
  }
}
.p-top-interview__nav-btn svg {
  flex-shrink: 0;
  width: calc(19 * var(--to-rem));
  height: calc(19 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-interview__nav-btn svg {
    width: calc(13 * var(--to-rem));
    height: calc(13 * var(--to-rem));
  }
}
.p-top-interview__nav-btn--prev svg {
  transform: rotate(180deg);
}
/* /p-top-interview: トップインタビュー */
/* ===== p-top-jobs: トップ募集職種 ===== */
.p-top-jobs {
  padding-block: calc(0 * var(--to-rem)) calc(61 * var(--to-rem));
  background-color: var(--color-page-bg);
}
@media screen and (max-width: 767px) {
  .p-top-jobs {
    padding-block: calc(14 * var(--to-rem)) calc(40 * var(--to-rem));
  }
}
.p-top-jobs__inner {
  position: relative;
  width: calc(930 * var(--to-rem));
  margin-inline: auto;
  display: flow-root;
}
@media screen and (max-width: 767px) {
  .p-top-jobs__inner {
    display: block;
    width: calc(390 * var(--to-rem));
  }
}
.p-top-jobs__heading {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: calc(12 * var(--to-rem));
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-top-jobs__heading {
    display: none;
  }
}
.p-top-jobs__heading-en {
  margin: 0;
  color: #363636;
  font-family: var(--font-albert);
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-regular);
  line-height: 1.2;
  writing-mode: vertical-rl;
}
.p-top-jobs__heading-ja {
  width: calc(45 * var(--to-rem));
  margin: 0;
  color: #363636;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-shippori);
  font-size: calc(36 * var(--to-rem));
  font-weight: var(--fw-regular);
  line-height: 1.3;
  letter-spacing: 0.3em;
  text-align: center;
}
.p-top-jobs__sp-heading {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-top-jobs__sp-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: calc(326 * var(--to-rem));
    margin-inline: auto;
  }
}
.p-top-jobs__sp-sub {
  margin: 0;
  color: #363636;
  font-family: var(--font-shippori);
  font-size: calc(12 * var(--to-rem));
  font-weight: var(--fw-regular);
  line-height: 1.75;
}
.p-top-jobs__sp-title {
  margin: 0;
  color: #363636;
  font-family: var(--font-shippori);
  font-size: calc(28 * var(--to-rem));
  font-weight: var(--fw-regular);
  line-height: 1.4;
}
.p-top-jobs__columns {
  display: flex;
  gap: calc(130 * var(--to-rem));
  width: calc(930 * var(--to-rem));
  margin-block-start: calc(200 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-jobs__columns {
    display: none;
  }
}
.p-top-jobs__column {
  display: flex;
  flex-direction: column;
  gap: calc(145 * var(--to-rem));
  width: calc(400 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-jobs__column {
    width: 100%;
  }
}
.p-top-jobs__column--right {
  margin-block-start: calc(361 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-jobs__column--right {
    margin-block-start: 0;
  }
}
.p-top-jobs__item {
  position: relative;
}
.p-top-jobs__link {
  display: flex;
  flex-direction: column;
  gap: calc(24 * var(--to-rem));
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-top-jobs__link {
    gap: calc(12 * var(--to-rem));
  }
}
@media (any-hover: hover) {
  .p-top-jobs__link[href]:hover .p-top-jobs__image img {
    transform: scale(1.1);
  }
  .p-top-jobs__link[href]:hover .p-top-jobs__title-row::before {
    opacity: 1;
  }
  .p-top-jobs__link[href]:hover .p-top-jobs__title,
  .p-top-jobs__link[href]:hover .p-top-jobs__arrow {
    color: #fff;
    text-shadow: none;
  }
}
.p-top-jobs__number {
  position: absolute;
  top: calc(-49 * var(--to-rem));
  left: 0;
  z-index: 1;
  margin: 0;
  color: #0e5eaa;
  font-family: var(--font-albert);
  font-size: calc(90 * var(--to-rem));
  font-weight: 300;
  font-optical-sizing: none;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-top-jobs__number {
    display: none;
  }
}
.p-top-jobs__image {
  overflow: hidden;
  width: 100%;
  max-width: calc(400 * var(--to-rem));
  aspect-ratio: 1/1;
  margin: 0;
  border-radius: calc(50 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-jobs__image {
    width: 100%;
    max-width: none;
    aspect-ratio: 326/232;
    border-radius: calc(8 * var(--to-rem));
  }
}
.p-top-jobs__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration);
}
.p-top-jobs__title-row {
  position: relative;
  display: flex;
  gap: calc(24 * var(--to-rem));
  justify-content: center;
  align-items: center;
  padding: calc(4 * var(--to-rem));
  border-radius: calc(4 * var(--to-rem));
  overflow: hidden;
  z-index: 0;
}
.p-top-jobs__title-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(90deg, #9adcf8 0%, #0e5eaa 100%);
  opacity: 0;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-top-jobs__title-row {
    gap: calc(12 * var(--to-rem));
    justify-content: space-between;
  }
}
.p-top-jobs__title {
  flex: 1;
  margin: 0;
  color: #0e5eaa;
  font-family: var(--font-shippori);
  font-size: calc(30 * var(--to-rem));
  font-weight: var(--fw-regular);
  line-height: 1.4;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.75);
  transition: color var(--duration), text-shadow var(--duration);
}
@media screen and (max-width: 767px) {
  .p-top-jobs__title {
    font-size: calc(20 * var(--to-rem));
    font-weight: var(--fw-medium);
    line-height: 1.5;
    text-shadow: none;
  }
}
.p-top-jobs__number-inline {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-top-jobs__number-inline {
    display: inline;
  }
}
.p-top-jobs__arrow {
  display: inline-flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  color: #0e5eaa;
  transition: color var(--duration);
  font-family: "A P-OTF Shuei N4goKana StdN", var(--font-shippori);
  font-size: calc(32 * var(--to-rem));
  line-height: 0.875;
  rotate: -45deg;
}
.p-top-jobs__description {
  margin: 0;
  color: #363636;
  font-family: var(--font-shippori);
  font-size: max(14 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.6;
}
.p-top-jobs__sp-list {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-top-jobs__sp-list {
    display: flex;
    flex-direction: column;
    gap: calc(48 * var(--to-rem));
    width: calc(326 * var(--to-rem));
    margin-block-start: calc(40 * var(--to-rem));
    margin-inline: auto;
  }
}
/* /p-top-jobs: トップ募集職種 */
/* ===== p-top-message: トップページ メッセージセクション ===== */
.p-top-message {
  position: relative;
  /* overflow: hidden でセクションを「窓枠」として使用
     要素はスクロールに応じて上方向へ速度差をつけて浮き上がり、
     窓枠の上端を超えたところでクリップされる（自然な奥行き効果） */
  overflow: hidden;
  /* rule-exception: CSS_MARGIN_COMPONENT reason: セクション間の余白。
     本来は親側で管理すべきだが、front-page テンプレート構造上 .p-top-message 側で暫定管理。
     フロントページ側で対応可能になった時点で移動する（暫定）。 */
  margin-block-start: calc(244 * var(--to-rem));
  background-color: var(--color-page-bg);
}
@media screen and (max-width: 767px) {
  .p-top-message {
    overflow: visible;
    margin-block-start: calc(66 * var(--to-rem));
  }
}
.p-top-message__inner {
  position: relative;
  width: 100%;
  min-height: calc(1005 * var(--to-rem));
  max-width: calc(1280 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-top-message__inner {
    min-height: auto;
    max-width: calc(390 * var(--to-rem));
  }
}
.p-top-message__accents {
  position: absolute;
  inset: 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-top-message__accents {
    display: none;
  }
}
.p-top-message__accent {
  position: absolute;
  border-radius: calc(20 * var(--to-rem));
  background-image: linear-gradient(78deg, rgba(154, 220, 248, 0.6) 0%, rgba(14, 94, 170, 0.6) 100%);
}
.p-top-message [data-parallax-speed] {
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .p-top-message [data-parallax-speed] {
    transform: none !important;
  }
}
.p-top-message__accent--01 {
  inset-block-start: calc(284 * var(--to-rem));
  inset-inline-start: calc(185 * var(--to-rem));
  width: calc(195 * var(--to-rem));
  height: calc(134 * var(--to-rem));
}
.p-top-message__accent--02 {
  inset-block-start: calc(605 * var(--to-rem));
  inset-inline-start: calc(122 * var(--to-rem));
  width: calc(195 * var(--to-rem));
  height: calc(303 * var(--to-rem));
}
.p-top-message__accent--03 {
  inset-block-start: calc(811 * var(--to-rem));
  inset-inline-end: calc(30 * var(--to-rem));
  width: calc(259 * var(--to-rem));
  height: calc(194 * var(--to-rem));
}
.p-top-message__accent--04 {
  inset-block-start: calc(336 * var(--to-rem));
  inset-inline-end: calc(-36 * var(--to-rem));
  width: calc(132 * var(--to-rem));
  height: calc(283 * var(--to-rem));
}
.p-top-message__content {
  position: absolute;
  inset-block-start: calc(57 * var(--to-rem));
  inset-inline-start: calc(462 * var(--to-rem));
  z-index: 3;
  width: calc(356 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-message__content {
    position: relative;
    inset-block-start: auto;
    inset-inline-start: auto;
    width: calc(322 * var(--to-rem));
    margin-inline: auto;
  }
}
.p-top-message__heading {
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top-message__heading {
    gap: calc(8 * var(--to-rem));
  }
}
.p-top-message__title {
  color: #0e5eaa;
  font-family: var(--font-shippori);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.5;
}
.p-top-message__lead {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: calc(62 * var(--to-rem));
  padding: calc(16 * var(--to-rem)) calc(32 * var(--to-rem));
  background-color: #0e5eaa;
  color: var(--color-white);
  font-family: var(--font-shippori);
  font-size: max(20 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-top-message__lead {
    min-height: calc(46 * var(--to-rem));
    padding: calc(8 * var(--to-rem)) calc(15 * var(--to-rem));
  }
}
.p-top-message__body {
  display: flex;
  gap: calc(24 * var(--to-rem));
  justify-content: center;
  align-items: flex-start;
  margin-block-start: calc(60 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-message__body {
    gap: calc(16 * var(--to-rem));
    margin-block-start: calc(32 * var(--to-rem));
  }
}
.p-top-message__column {
  width: calc(22 * var(--to-rem));
  margin: 0;
  color: #363636;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: var(--font-shippori);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-message__column {
    font-size: calc(16 * var(--to-rem));
    letter-spacing: calc(3 * var(--to-rem));
    white-space: nowrap;
  }
}
.p-top-message__column--wide {
  width: calc(30 * var(--to-rem));
}
.p-top-message__tcy {
  display: inline-block;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  font-family: var(--font-albert);
  font-size: 1em;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}
.p-top-message__button {
  width: fit-content;
  margin-block-start: calc(117 * var(--to-rem));
  margin-inline: auto;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-top-message__button {
    margin-block-start: calc(32 * var(--to-rem));
  }
}
.p-top-message__images {
  position: absolute;
  inset: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-top-message__images {
    display: none;
  }
}
.p-top-message__card {
  position: absolute;
  overflow: hidden;
  border-radius: calc(20 * var(--to-rem));
}
.p-top-message__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top-message__card--01 {
  inset-block-start: calc(7 * var(--to-rem));
  inset-inline-start: calc(80 * var(--to-rem));
  width: calc(268 * var(--to-rem));
  height: calc(194 * var(--to-rem));
  border-radius: calc(20 * var(--to-rem));
}
.p-top-message__card--02 {
  inset-block-start: 0;
  inset-inline-end: calc(-80 * var(--to-rem));
  width: calc(342 * var(--to-rem));
  height: calc(278 * var(--to-rem));
}
.p-top-message__card--03 {
  inset-block-start: calc(357 * var(--to-rem));
  inset-inline-start: calc(-49 * var(--to-rem));
  width: calc(346 * var(--to-rem));
  height: calc(214 * var(--to-rem));
}
.p-top-message__card--04 {
  inset-block-start: calc(523 * var(--to-rem));
  inset-inline-end: calc(167 * var(--to-rem));
  width: calc(286 * var(--to-rem));
  height: calc(191 * var(--to-rem));
  border-radius: calc(16 * var(--to-rem));
}
.p-top-message__card--01 img {
  object-position: 52% 50%;
}
.p-top-message__card--02 img {
  object-position: 88% 50%;
}
.p-top-message__card--03 img {
  object-position: 55% 50%;
}
.p-top-message__card--04 img {
  object-position: 45% 50%;
}
.p-top-message__sp-slider {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-top-message__sp-slider {
    display: grid;
    gap: calc(8 * var(--to-rem));
    overflow: hidden;
    width: 100vw;
    margin-block-start: calc(80 * var(--to-rem));
    margin-inline-start: 50%;
    transform: translateX(-50%);
  }
}
.p-top-message__sp-track {
  display: flex;
  gap: calc(8 * var(--to-rem));
  width: max-content;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  will-change: transform;
}
.p-top-message__sp-track--forward {
  animation: message-scroll-forward 36s linear infinite;
  /* rule-exception: CSS_MQ_001 reason: prefers-reduced-motion はアクセシビリティ対応の
     機能クエリのため @include mq() では記述不可。直書き例外（恒久）。 */
}
@media (prefers-reduced-motion: reduce) {
  .p-top-message__sp-track--forward {
    animation: none;
  }
}
.p-top-message__sp-track--reverse {
  animation: message-scroll-reverse 36s linear infinite;
  /* rule-exception: CSS_MQ_001 reason: prefers-reduced-motion はアクセシビリティ対応の
     機能クエリのため @include mq() では記述不可。直書き例外（恒久）。 */
}
@media (prefers-reduced-motion: reduce) {
  .p-top-message__sp-track--reverse {
    animation: none;
  }
}
.p-top-message__sp-card {
  overflow: hidden;
  border-radius: calc(8 * var(--to-rem));
}
.p-top-message__sp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top-message__sp-card--a {
  width: calc(268 * var(--to-rem));
  height: calc(194 * var(--to-rem));
}
.p-top-message__sp-card--b {
  width: calc(293 * var(--to-rem));
  height: calc(195 * var(--to-rem));
}
.p-top-message__sp-card--c {
  width: calc(268 * var(--to-rem));
  height: calc(194 * var(--to-rem));
}
.p-top-message__sp-card--d {
  width: calc(292 * var(--to-rem));
  height: calc(195 * var(--to-rem));
}
.p-top-message__sp-card--e {
  width: calc(268 * var(--to-rem));
  height: calc(194 * var(--to-rem));
}
.p-top-message__sp-card--f {
  width: calc(292 * var(--to-rem));
  height: calc(195 * var(--to-rem));
}
@keyframes message-scroll-forward {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes message-scroll-reverse {
  from {
    transform: translate3d(-50%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
/* /p-top-message: トップページ メッセージセクション */
/* ===== p-top-mv: トップMV ===== */
.p-top-mv {
  position: relative;
  z-index: 1;
  overflow: clip visible;
  clip-path: inset(calc(-20 * var(--to-rem)) calc(-300 * var(--to-rem)) calc(-999 * var(--to-rem)) calc(-300 * var(--to-rem)));
  background-color: var(--color-page-bg);
  touch-action: pan-y;
}
.p-top-mv__inner {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: calc(1280 * var(--to-rem));
  margin-inline: auto;
  padding-inline: calc(111 * var(--to-rem)) calc(80 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-mv__inner {
    display: flex;
    flex-direction: column;
    gap: calc(0 * var(--to-rem));
    min-height: calc(895 * var(--to-rem));
    max-width: calc(390 * var(--to-rem));
    padding-inline: calc(25 * var(--to-rem));
  }
}
.p-top-mv__copy {
  display: flex;
  flex-direction: column;
  gap: calc(32 * var(--to-rem));
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-top-mv__copy {
    position: relative;
    top: auto;
    left: auto;
    gap: calc(16 * var(--to-rem));
    width: 100%;
  }
}
.p-top-mv__copy-main {
  display: flex;
  flex-direction: column;
  gap: calc(24 * var(--to-rem));
  width: 100%;
  color: #363636;
  font-family: var(--font-shippori);
}
@media screen and (max-width: 767px) {
  .p-top-mv__copy-main {
    gap: calc(0 * var(--to-rem));
  }
}
.p-top-mv__title {
  margin-block-start: calc(352 * var(--to-rem));
  font-size: max(70 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1;
  letter-spacing: 0;
  animation: text-focus-in 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
  /* rule-exception: CSS_MQ_001 reason: prefers-reduced-motion はアクセシビリティ対応の
     機能クエリのため @include mq() では記述不可。直書き例外（恒久）。 */
}
@media screen and (max-width: 767px) {
  .p-top-mv__title {
    margin-block-start: calc(111 * var(--to-rem));
    font-size: calc(48 * var(--to-rem));
    line-height: 1.4;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-top-mv__title {
    animation: none;
  }
}
.p-top-mv__subtitle {
  font-size: max(24 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1;
  animation: text-focus-in 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.15s both;
}
@media screen and (max-width: 767px) {
  .p-top-mv__subtitle {
    font-size: calc(20 * var(--to-rem));
    line-height: 1.4;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-top-mv__subtitle {
    animation: none;
  }
}
.p-top-mv__recruitment {
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--to-rem));
  align-items: flex-start;
  width: calc(167 * var(--to-rem));
  animation: text-focus-in 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.15s both;
}
@media screen and (max-width: 767px) {
  .p-top-mv__recruitment {
    width: calc(147 * var(--to-rem));
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-top-mv__recruitment {
    animation: none;
  }
}
.p-top-mv__recruitment-line {
  display: block;
  width: calc(139 * var(--to-rem));
  height: calc(1 * var(--to-rem));
  border-block-start: 1px solid var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-top-mv__recruitment-line {
    width: calc(120 * var(--to-rem));
  }
}
.p-top-mv__recruitment-text {
  color: #363636;
  font-family: var(--font-shippori);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-top-mv__recruitment-text {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-top-mv__visual {
  position: absolute;
  inset-block-start: calc(-220 * var(--to-rem));
  inset-inline-end: calc(-294 * var(--to-rem));
  z-index: 0;
  overflow: hidden;
  width: calc(1018 * var(--to-rem));
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-top-mv__visual {
    position: relative;
    top: auto;
    right: auto;
    width: calc(516 * var(--to-rem));
    height: calc(516 * var(--to-rem));
    margin-inline-start: calc(0 * var(--to-rem));
    transform: none;
  }
}
.p-top-mv__visual img {
  position: absolute;
  inset-inline-start: 50%;
  inset-block-end: 0;
  width: 121.709%;
  height: auto;
  max-width: none;
  transform: translateX(-58%);
}
@media screen and (max-width: 767px) {
  .p-top-mv__visual img {
    position: static;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: 44% 35%;
    transform: none;
  }
}
.p-top-mv__visual video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-top-mv__cta {
  display: flex;
  gap: calc(16 * var(--to-rem));
  width: calc(406 * var(--to-rem));
  margin-block-start: calc(48 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-mv__cta {
    position: relative;
    top: auto;
    left: auto;
    flex-direction: column;
    gap: calc(12 * var(--to-rem));
    width: 100%;
    max-width: calc(340 * var(--to-rem));
    margin-block-start: calc(32 * var(--to-rem));
    margin-inline: auto;
  }
}
.p-top-mv__cta-button {
  flex: 1;
  min-width: 0;
  padding: calc(17 * var(--to-rem)) calc(12 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-mv__cta-button {
    flex: initial;
    width: 100%;
    padding-block: calc(15 * var(--to-rem));
  }
}
/* /p-top-mv: トップMV */
/* ===== p-works: 制作実績 ===== */
.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: max(14 * var(--to-rem), 12px);
  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-width: calc(320 * var(--to-rem));
  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-width), 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.1;
  }
}
.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-works: 制作実績 */
: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%);
}
/* ===== 共通アニメーション keyframes ===== */
/* テキストぼかし出現（blur → sharp）
   使用例: animation: text-focus-in 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both; */
@keyframes text-focus-in {
  0% {
    opacity: 0;
    filter: blur(12px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
/* クリップパス・サークル（中心から円が広がる）
   使用例: animation: clip-circle-expand 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; */
@keyframes clip-circle-expand {
  from {
    clip-path: circle(0% at 50% 50%);
  }
  to {
    clip-path: circle(51% at 50% 50%);
  }
}
/* 背景英字テキスト出現（透明 → 本来の薄さにじわっと出現） */
@keyframes en-title-reveal {
  0% {
    opacity: 0;
    filter: blur(8px);
  }
  100% {
    opacity: var(--en-final-opacity, 1);
    filter: blur(0);
  }
}
/* フェードインアップ（下から浮かび上がる）
   使用例: animation: fade-in-up 0.7s ease both; */
@keyframes fade-in-up {
  0% {
    opacity: 0;
    translate: 0 20px;
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}
.u-sp {
  display: none;
}
@media (width <= 767px) {
  .u-sp {
    display: revert;
  }
}
@media (width <= 767px) {
  .u-pc {
    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;
}
/* セクションタイトルのスクロール出現アニメーション
   JSで .is-title-visible が付与されたら text-focus-in を実行
   ※ 働く環境(environment)は対象外 */
.p-top-message__title,
.p-top-base__heading,
.p-top-interview__title-group,
.p-top-glance__catch,
.p-top-jobs__heading,
.p-top-jobs__sp-heading,
.p-top-faq__heading {
  opacity: 0;
}
.p-top-message__title.is-title-visible,
.p-top-base__heading.is-title-visible,
.p-top-interview__title-group.is-title-visible,
.p-top-glance__catch.is-title-visible,
.p-top-jobs__heading.is-title-visible,
.p-top-jobs__sp-heading.is-title-visible,
.p-top-faq__heading.is-title-visible {
  animation: text-focus-in 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}
@media (prefers-reduced-motion: reduce) {
  .p-top-message__title,
  .p-top-base__heading,
  .p-top-interview__title-group,
  .p-top-glance__catch,
  .p-top-jobs__heading,
  .p-top-jobs__sp-heading,
  .p-top-faq__heading {
    opacity: 1;
    animation: none;
  }
}
/* 下層ページ共通：タイトルじわじわ出現
   _page-animate.js で .js-title-animate が付与される */
.js-title-animate {
  opacity: 0;
}
.js-title-animate.is-title-visible {
  animation: text-focus-in 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}
@media (prefers-reduced-motion: reduce) {
  .js-title-animate {
    opacity: 1;
    animation: none;
  }
}
/* 背景英字テキスト：タイトル出現後に時間差でじわっと出現 */
.c-page-title__en.js-en-title-animate {
  opacity: 0;
}
.c-page-title__en.js-en-title-animate.is-en-visible {
  animation: en-title-reveal 1.2s ease 0.15s both;
}
@media (prefers-reduced-motion: reduce) {
  .c-page-title__en.js-en-title-animate {
    opacity: unset;
    animation: none;
  }
}
/* セクション単位のフェードアップ出現
   対象: interview, jobs, environment, faq */
.js-fade-up {
  opacity: 0;
  translate: 0 40px;
  transition: opacity 0.7s ease, translate 0.7s ease;
}
.js-fade-up.is-section-visible {
  opacity: 1;
  translate: 0 0;
}
@media (prefers-reduced-motion: reduce) {
  .js-fade-up {
    opacity: 1;
    translate: none;
    transition: none;
  }
}