@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%;
  -moz-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) {
  margin-block: unset;
  margin-inline: unset;
  font-size: inherit;
  font-weight: inherit;
}: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:-moz-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;
}: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(:-moz-placeholder)
) {
  /*
  * 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(
  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;
}::-moz-placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: 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;
}/* ======================================================
//  MARK: WordPress Content Reset
// ====================================================== */:is(.p-whitepaper__body, .entry-content, .post-content)
  :is(
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    ul,
    ol,
    li,
    dl,
    dt,
    dd,
    blockquote,
    figure,
    figcaption,
    pre,
    table
  ) {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
}:is(.p-whitepaper__body, .entry-content, .post-content) :is(ul, ol) {
  list-style: none;
}:is(.p-whitepaper__body, .entry-content, .post-content) a {
  color: inherit;
  text-decoration: none;
}:is(.p-whitepaper__body, .entry-content, .post-content)
  :is(.wp-block-image, .wp-block-gallery, .wp-block-quote, .wp-block-table) {
  margin: 0;
}/* =======================================================
common.css
======================================================= *//* base
  -------------------------------------------------------- */@font-face {
  font-family: "HinaMincho";
  src: url("../font/HinaMincho-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}/* variable
  -------------------------------------------------------- *//* variable
-------------------------------------------------------- */:root {
  /* colors */
  --c-base: #f6f5f3;
  --c-white: #ffffff;
  --c-black: #000000;
  --c-gray1: #b5b5b5;
  --c-gray2: #555555;
  --c-pink: #fff5fb;

  /* font */
  --ff-base: "HinaMincho", serif;
  --fw-base: 400;
}/* =======================================================
基準値
======================================================= */:root {
  --vw-base-pc: 1440;
  --vw-base-sp: 390;
  --vh-base-pc: 900;
  --vh-base-sp: 844;
}/* =======================================================
html = レイアウト用のリキッドrem
共通基準は vw に統一
======================================================= */@media (min-width: 769px) {
  html {
    font-size: calc(100 / var(--vw-base-pc) * 1vw);
    margin-top: 0;
    scrollbar-gutter: stable;
  }
}@media (max-width: 768px) {
  html {
    font-size: calc(100 / var(--vw-base-sp) * 1vw);
    margin-top: 0;
    scrollbar-gutter: stable;
  }
}/* =======================================================
本文の最小文字サイズ保証
PC: 16px未満にしない
SP: 14px未満にしない
======================================================= */@media (min-width: 769px) {
  body {
    /* font-size: clamp(16px, 1.6rem, 18px); */
    font-size: clamp(16px, calc(13.708px + 0.298vw), 18px);
  }
}@media (max-width: 768px) {
  body {
    /* font-size: clamp(14px, 1.4rem, 16px); */
    font-size: 16px;
  }
}/* =======================================================
トップページ専用の高さ基準
横スクロールなど、縦バランスが重要な所だけ使う
======================================================= */@media (min-width: 769px) {
  body {
    --home-rem: calc(100 / var(--vh-base-pc) * 1vh);
  }
}@media (max-width: 768px) {
  body {
    --home-rem: calc(100 / var(--vh-base-sp) * 1svh);
  }
}/* breakpoint基準値
	-------------------------------------------------------- *//* @media (min-width: 769px) {
  :root {
    --vw-base: 1440;
    --vh-base: 900;
  }
}
@media (max-width: 768px) {
  :root {
    --vw-base: 390;
    --vh-base: 844;
  }
} *//*全ページ共通
	-------------------------------------------------------- *//* html {
  font-size: calc(100 / var(--vw-base) * 1vw);
  margin-top: 0;
  scrollbar-gutter: stable;
} *//* トップページ専用(高さ基準変数)
	-------------------------------------------------------- *//* @media (min-width: 769px) {
  body.home {
    --home-rem: calc(100 / var(--vh-base) * 1vh);
  }
}

@media (max-width: 768px) {
  body.home {
    --home-rem: calc(100 / var(--vh-base) * 1svh);
  }
} *//*	-------------------------------------------------------- */@media (min-width: 769px) {
  /* トップ（body.home がある）＝ vh基準 */
  html:has(body.home) {
    /* --page-rem: calc(100 / var(--vh-base) * 1vh); */
  }

  /* それ以外 ＝ vw基準 */
  html:not(:has(body.home)) {
    /* --page-rem: calc(100 / var(--vw-base) * 1vw); */
  }
}@media (max-width: 768px) {
  /* トップ（body.home がある）＝ vh基準 */
  html:has(body.home) {
    /* --page-rem: calc(100 / var(--vh-base) * 1dvh); */
    /* --page-rem: calc(100 / var(--vh-base) * 1svh); */
  }

  /* それ以外 ＝ vw基準 */
  html:not(:has(body.home)) {
    /* --page-rem: calc(100 / var(--vw-base) * 1vw); */
  }
}/* html {
  font-size: var(--page-rem);
  margin-top: 0;
  scrollbar-gutter: stable;
} */body {
  font-family: var(--ff-base);
  font-weight: var(--fw-base);
  color: var(--c-black);
  background: var(--c-base);
  letter-spacing: 0.025em;
}body.home {
  /* font-size: clamp(14px, calc(18 * 100svh / var(--vh-base)), 18px); */
  /* font-size: clamp(14px, calc(18 * 100vh / var(--vh-base)), 18px); */
}@media (max-width: 768px) {
  body.home {
    /* 16pxを下限にして、SP時の文字が想定より小さくなるのを防ぐ */
    /* font-size: clamp(16px, calc(18 * 100svh / var(--vh-base)), 18px); */
    /* font-size: 16px; */
  }
}body:not(.home) {
  /* font-size: clamp(14px, calc(18 * 100svw / var(--vw-base)), 18px); */
  /* font-size: clamp(14px, calc(18 * 100vw / var(--vw-base)), 18px); */
}@media (max-width: 768px) {
  body:not(.home) {
    /* font-size: clamp(14px, calc(18 * 100svw / var(--vw-base)), 18px); */
    /* font-size: clamp(14px, calc(16 * 100vw / var(--vw-base)), 16px); */
  }
}#wpadminbar {
  display: none;
}img {
  width: 100%;
}/* utility
  -------------------------------------------------------- */.u-hidden {
  display: none;
}.u-A-kerning {
  transform: translateX(-4rem);
}/* animation
  -------------------------------------------------------- */@keyframes scrollAnimation {
  0% {
    transform: scaleX(0);
    transform-origin: right;
  }

  49% {
    transform: scale(1);
    transform-origin: right;
  }

  51% {
    transform: scale(1);
    transform-origin: left;
  }

  to {
    transform: scaleX(0);
    transform-origin: left;
  }
}/* 縦書き
  -------------------------------------------------------- */.-rl {
  writing-mode: vertical-rl;
  /* line-height: 2.2; */
  text-orientation: upright;
}.-rl + .-rl {
    margin-right: 0.8em;
  }@media (max-width: 768px) {
    .-rl + .-rl {
      margin-right: 0.4em;
    }
}.-tcy {
  text-combine-upright: all;
}@media (max-width: 768px) {
  .hidden-sp {
    display: none;
  }
}@media (max-width: 1024px) {
  .hidden-tab {
    display: none;
  }
}/* =======================================================
home.css
======================================================= */#jsMvBgLayer {
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateZ(0);
  will-change: opacity;
}#jsPanel {
  height: 100%;
}/* l-main layout
  -------------------------------------------------------- */.l-main {
  position: relative;
  isolation: isolate;
}.l-main__horizontal {
  height: 100vh;
}.l-main__horizontal > * {
    height: 100%;
  }.l-main__container {
  /* position: relative; */
  display: flex;
  flex-direction: row-reverse;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  height: 100%;
}.l-main__contents {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  height: 100%;
}.l-main__contents > * {
    height: 100%;
  }.l-main__progress {
  position: fixed;
  top: 5.6vh;
  right: 0;
  z-index: 10;
  width: 100svw;
  height: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: opacity, transform;
}/* @media (max-width: 768px) {
  .l-main__horizontal {
    height: 100vh;
    min-height: 100vh;
  }
} */@media (hover: none) {
  .l-main__horizontal {
    min-height: 100vh;
  }
  .l-main__progress {
    top: 7.5vh;
  }
}/* progress
  -------------------------------------------------------- */.c-progress {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
  margin-left: 92rem;
  opacity: 1;
  transition: 0.4s ease opacity;
}.c-progress__bar {
    width: 38px;
    height: 1px;
    background: var(--c-gray2);
  }.c-progress__fill {
    transform-origin: right;
    width: 100%;
    height: 100%;
    background: var(--c-gray2);
  }.c-progress__list {
    position: relative;
    z-index: 0;
    width: 150px;
    height: 100%;
    overflow: hidden;
  }.c-progress__item {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    color: var(--c-gray2);
    font-size: max(14px, 17px);
    font-weight: 400;
    line-height: 1;
    width: -moz-max-content;
    width: max-content;
    height: -moz-max-content;
    height: max-content;
    box-sizing: border-box;
  }@media (hover: none) {
  .c-progress {
    margin-left: 50rem;
  }

    .c-progress__item {
      font-size: 14px;
    }
}/* mv
  -------------------------------------------------------- */.p-mv {
  position: absolute;
  inset: 0;
  /* background-color: var(--c-pink); */
  z-index: 0;
}.p-mv__image {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background-color: var(--c-pink);
    overflow: hidden;
  }.p-mv__image p {
      font-size: calc(36 * var(--home-rem));
      letter-spacing: 0.3em;
      line-height: 2;
      writing-mode: vertical-rl;
      z-index: 2;
    }.p-mv__smoke-layer {
    position: absolute;
    inset: 0;
    background-image: url("../img/home/bg_mv.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0; /* 初期は見せない */
    pointer-events: none;
    z-index: 1;
    filter: contrast(0.92) brightness(1.03);
  }/* フェード */.p-overlay {
  position: relative;
  height: 100dvh;
  flex: 0 0 100vw;
  background: transparent;
  z-index: 1;
}/* scroll
  -------------------------------------------------------- */.c-scroll {
  height: -moz-max-content;
  height: max-content;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 0 8px;
  opacity: 1;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}.c-scroll__line {
    position: relative;
    top: 2.5px;
    z-index: 0;
    width: 124px;
    height: 1px;
    overflow: hidden;
  }.c-scroll__line::before {
      content: "";
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      margin: auto;
      width: 100%;
      height: 100%;
      background: #959595;
      animation: 1.6s cubic-bezier(0.65, 0, 0.35, 1) scrollAnimation infinite;
    }.c-scroll__text {
    color: #959595;
    text-align: center;
    font-size: max(14px, 22px);
    font-weight: 400;
    line-height: 1;
  }@media (hover: none) {
  .c-scroll {
    top: auto;
    left: auto;
    bottom: 10vh;
    margin-inline: auto;
    width: 100%;
    justify-content: center;
  }

    .c-scroll__line {
      width: 70px;
    }

    .c-scroll__text {
      font-size: 14px;
    }
}/* catch-copy
  -------------------------------------------------------- */.c-catch-copy {
  position: fixed;
  top: 60rem;
  right: 56rem;
  writing-mode: vertical-lr;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s;
  opacity: 0;
  color: #fff;
  mix-blend-mode: difference;
}.c-catch-copy.is-show {
  opacity: 1;
}@media (hover: none) {
  .c-catch-copy {
    top: 20px;
    right: 20px;
    font-size: 14px;
  }
}/* skip
  -------------------------------------------------------- */.c-skip {
  position: fixed;
  bottom: 60rem;
  right: 56rem;
  font-size: max(14px, 22rem);
  color: var(--c-gray2);
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.2s;
  opacity: 0;
}.c-skip.is-show {
  opacity: 1;
  transition: 0.3s;
}@media (any-hover: hover) {
    .c-skip.is-show:hover {
      color: var(--c-black);
    }
  }@media (max-width: 768px) {
  .c-skip {
    bottom: 20rem;
    right: 20rem;
    font-size: 16px;
  }
}/* home_section
  -------------------------------------------------------- */.c-section {
  background: var(--c-base);
  position: relative;
  height: 100%;
}.c-section::after {
    content: "";
    display: block;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
  }.c-section__inner {
    display: flex;
    flex-direction: row-reverse;
    height: 100%;
  }.c-section__contents {
    border-left: 1px solid var(--c-gray1);
    height: 100%;
  }.c-section__contents-first .c-section__item {
      gap: 146rem;
    }.c-section__item {
    display: flex;
    flex-direction: row-reverse;
    padding-top: calc(200 * var(--home-rem));
    padding-bottom: calc(60 * var(--home-rem));
  }.c-section__title {
    font-size: min(156px, 156rem);
    font-weight: normal;
    color: var(--c-gray2);
    line-height: 1;
    letter-spacing: 0.05em;
  }.c-section__subtitle {
    position: relative;
    font-size: min(26px, 26rem);
    line-height: 2.3;
    padding-bottom: 36rem;
    white-space: nowrap;
  }.c-section__subtitle::after {
      content: "";
      display: block;
      width: 185rem;
      height: 1px;
      background-color: var(--c-gray2);
      position: absolute;
      bottom: 0;
      left: 0;
    }.c-section__head {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    gap: 12rem;
    margin-top: -18rem;
    z-index: 1;
  }.c-section__desc-box {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
  }.c-section__desc {
    flex-shrink: 0;
    display: flex;
    flex-direction: row-reverse;
    gap: 42rem;
    z-index: 1;
  }.c-section__headline {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    margin-top: -26rem;
    padding-top: 26rem;
    position: relative;
  }.c-section__headline > p + p {
      margin-right: 8px;
    }.c-section__headline::after {
      content: "";
      display: block;
      width: 125rem;
      height: 1px;
      background-color: var(--c-gray2);
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
    }.c-section__headline p {
      font-size: min(26px, 26rem);
    }.c-section__link {
    padding-inline: 100rem;
  }.c-section__link .c-section__item {
      gap: min(37px, 37rem);
    }/*page link
  -------------------------------------------------------- */.c-page-link {
  display: grid;
  justify-items: center;
  justify-content: center;
  gap: 14rem;
  padding: 37rem 23px 34rem;
  border: 1px solid var(--c-black);
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 9999px;
  background-color: #fff;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-top: -10rem;
  transition: 0.3s;
}.c-page-link__text {
    writing-mode: vertical-lr;
    line-height: 1;
    transition: 0.3s;
  }.c-page-link::after {
    content: "←";
    display: block;
    width: 100%;
    height: auto;
    font-size: max(14px, 20rem);
    text-align: center;
    transition: 0.3s;
  }@media (any-hover: hover) {
    .c-page-link:hover {
      border-color: #fff;
      transition: 0.3s;
    }
  }/* article
-------------------------------------------------------- */.c-home-article {
  padding-top: 80rem;
}.c-home-article__thumbnail {
    width: 512rem;
    height: 340rem;
    background-color: #eee;
    overflow: hidden;
  }.c-home-article__title {
    font-size: max(14px, 20rem);
    margin-top: 20rem;
  }/* home_intro/outro
  -------------------------------------------------------- */.p-home-intro,
.p-home-outro {
  display: flex;
  flex-direction: row-reverse;
}.p-home-intro__contents, .p-home-outro__contents {
    display: flex;
    flex-direction: row-reverse;
  }.p-home-intro__detail, .p-home-outro__detail {
    display: flex;
    flex-direction: row-reverse;
    gap: min(42px, 42rem);
  }.p-home-intro__detail-box, .p-home-outro__detail-box {
    display: flex;
    flex-direction: row-reverse;
    padding-top: calc(202 * var(--home-rem));
    padding-bottom: calc(60 * var(--home-rem));
  }.p-home-intro__detail-image, .p-home-outro__detail-image {
    width: calc(100% * var(--home-rem));
    height: 100vh;
    position: relative;
    overflow: hidden;
  }.p-home-intro__detail-image img, .p-home-outro__detail-image img {
      width: auto;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
    }.p-home-intro__contents-1 {
  background-image: linear-gradient(
    90deg,
    rgba(240, 249, 254, 1),
    rgba(255, 245, 251, 1) 52%,
    rgba(255, 245, 251, 0) 95%
  );
}.p-home-intro__contents-1 .p-home-intro__detail {
    padding-inline: calc(138 * var(--home-rem)) calc(176 * var(--home-rem));
  }.p-home-intro__contents-2 {
  background-image: linear-gradient(
    90deg,
    rgba(199, 202, 204, 1) 0%,
    rgba(240, 249, 254, 1) 49%
  );
}.p-home-intro__contents-2 .p-home-intro__detail {
    padding-inline: calc(150 * var(--home-rem)) calc(152 * var(--home-rem));
  }.p-home-intro__contents-3 {
  background-image: linear-gradient(
    90deg,
    rgba(243, 239, 231, 1),
    rgba(199, 202, 204, 1) 38%
  );
}.p-home-intro__contents-3 .p-home-intro__detail {
    padding-inline: calc(145 * var(--home-rem)) calc(154 * var(--home-rem));
  }.p-home-intro__contents-4 {
  background-image: linear-gradient(
    90deg,
    rgba(246, 245, 243, 1),
    rgba(243, 239, 231, 1) 45%
  );
  padding-inline: calc(100 * var(--home-rem)) calc(100 * var(--home-rem));
}.p-home-intro__contents-4 .p-home-intro__detail {
    padding-inline: calc(80 * var(--home-rem)) calc(80 * var(--home-rem));
  }.p-home-intro__contents-4 .p-home-intro__detail.-sm {
    padding-inline: calc(80 * var(--home-rem)) 0;
  }.p-home-intro__contents-4 .p-home-intro__detail-image {
    margin-block: calc(181 * var(--home-rem));
    width: calc(100% * var(--home-rem));
    height: calc(553 * var(--home-rem));
  }.p-home-outro {
  padding-inline: calc(120 * var(--home-rem));
  background: var(--c-base);
}.p-home-outro__detail-box > p + p {
    margin-right: 8px;
  }/* interval
  -------------------------------------------------------- */.p-home__interval-1,
.p-home__interval-2 {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: var(--c-base);
}.p-home__interval-1 img, .p-home__interval-2 img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
  }.p-home__interval-3 {
  width: calc(716 * var(--home-rem));
  height: 100vh;
  position: relative;
  z-index: -1;
}.p-home__interval-3 img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
  }/* =======================================================
  home_ISSUE
  ======================================================= */.p-home-issue::after {
    width: calc(748 * var(--home-rem));
    height: calc(480 * var(--home-rem));
    background-image: url(../img/home/bg_home_issue.png);
    background-position: bottom right;
    bottom: 0;
    right: 0;
  }.p-home-issue__subtitle::after {
      content: "";
      display: block;
      width: 185rem;
      height: 1px;
      background-color: var(--c-gray2);
      position: absolute;
      bottom: 0;
      left: 0;
    }.p-home-issue__chart {
    width: calc(568 * var(--home-rem));
    aspect-ratio: 1;
  }.p-home-issue__graph {
    width: calc(423 * var(--home-rem));
  }.p-home-issue__contents-1 {
  padding-inline: calc(145 * var(--home-rem)) calc(271 * var(--home-rem));
}.p-home-issue__contents-2 {
  padding-inline: calc(102 * var(--home-rem)) calc(125 * var(--home-rem));
}.p-home-issue__contents-2 .p-home-issue__item {
    gap: 106rem;
  }@media (max-width: 768px) {
  .p-home-issue__contents-2 .p-home-issue__item {
    gap: 60rem;
  }
}.p-home-issue__contents-3 {
  padding-inline: calc(97 * var(--home-rem));
}.p-home-issue__contents-4 {
  padding-inline: calc(90 * var(--home-rem)) calc(100 * var(--home-rem));
}.p-home-issue__contents-4 .p-home-issue__item {
    gap: 94rem;
  }@media (max-width: 768px) {
  .p-home-issue__contents-4 .p-home-issue__item {
    gap: 60rem;
  }
}/* =======================================================
home_IDEA
======================================================= */.p-home-idea::after {
    width: min(1142px, 1142rem);
    height: min(546px, 546rem);
    background-image: url(../img/home/bg_home_idea.png);
    background-position: top right;
    top: 0;
    right: 0;
  }.p-home-idea__img-flow {
    width: calc(883 * var(--home-rem));
    /* width: 883rem; */
    /* width: min(883px, 883rem); */
    /* height: 560rem; */
    margin-top: -22rem;
  }.p-home-idea__contents-1 {
  padding-inline: calc(142 * var(--home-rem)) calc(250 * var(--home-rem));
}.p-home-idea__contents-2 {
  padding-inline: calc(100 * var(--home-rem));
}.p-home-idea__contents-2 .p-home-idea__item {
    gap: 112rem;
  }@media (max-width: 768px) {
    .p-home-idea::after {
      width: 374rem;
      height: 240rem;
    }

    .p-home-idea__img-flow {
      width: 540rem;
      height: auto;
      /* margin-top: 9%; */
    }

  /* .p-home-idea__contents-1 {
    padding-inline: 50rem;
  } */

  /* .p-home-idea__contents-2 {
    padding-inline: 50rem;

    & .p-home-idea__item {
      gap: 50rem;
    }
  } */
}/* =======================================================
home_WHITE PAPER
======================================================= */.p-home-whitepaper {
  position: relative;
}.p-home-whitepaper__contents {
    padding-inline: calc(100 * var(--home-rem)) calc(200 * var(--home-rem));
    display: flex;
    flex-direction: row-reverse;
    gap: 134rem;
  }.p-home-whitepaper__item {
    flex: 0 0 auto;
  }.p-home-whitepaper__head {
    flex-direction: row;
    gap: 106rem;
  }.p-home-whitepaper__title {
    padding-top: calc(120rem * var(--home-rem));
    text-align: center;
  }.p-home-whitepaper__title span {
      display: inline-block;
      letter-spacing: 0;
    }.p-home-whitepaper__subtitle::after {
    display: none;
  }.p-home-whitepaper__contents-1 {
  padding-inline: calc(100 * var(--home-rem)) calc(200 * var(--home-rem));
  gap: 134rem;
}/* =======================================================
home_ACTION
======================================================= */.p-home-action {
  position: relative;
}.p-home-action::after {
    width: calc(962 * var(--home-rem));
    height: calc(480 * var(--home-rem));
    background-image: url(../img/home/action/bg_home_action.png);
    background-position: bottom right;
    bottom: 0;
    right: 0;
  }.p-home-action__title {
    letter-spacing: normal;
  }.p-home-action__link {
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
    padding-inline: 70rem;
  }.p-home-action__headline + * {
      margin-right: 102rem;
    }.p-home-action-menu {
  display: flex;
  flex-direction: row-reverse;
}.p-home-action-menu__lists {
    display: flex;
    flex-direction: row-reverse;
  }.p-home-action-menu__lists-item {
    border-left: 1px solid var(--c-white);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: 1;
    transition: 0.3s;
  }.p-home-action-menu__lists-item a {
      display: grid;
      align-content: space-between;
      justify-content: center;
      padding-top: calc(200 * var(--home-rem));
      padding-bottom: min(296px, calc(200 * var(--home-rem)));
      padding-inline: min(45px, 45rem);
      width: 100%;
      height: 100%;
      font-size: min(30px, 30rem);
      line-height: 1.3;
      color: var(--c-white);
    }.p-home-action-menu__lists-item a::after {
        content: "←";
        display: block;
        width: 100%;
        height: auto;
        font-size: min(20px, 20rem);
        text-align: center;
        color: var(--c-white);
      }@media (any-hover: hover) {
      .p-home-action-menu__lists-item:hover {
        opacity: 0.8;
        transition: 0.3s;
      }
    }.p-home-action-menu__contents {
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }.p-home-action-menu__lists-item.-company {
  background-image: url(../img/home/action/bg_home_actionmenu_company.png);
}.p-home-action-menu__lists-item.-mental {
  background-image: url(../img/home/action/bg_home_actionmenu_mental.png);
}.p-home-action-menu__lists-item.-experience {
  background-image: url(../img/home/action/bg_home_action_menu_experience.png);
}.p-home-action__contents-1 {
  padding-inline: 100rem 206rem;
}.p-home-action-menu__contents {
  padding-right: 142rem;
  z-index: 1;
}.p-home-action-menu__contents.-company {
  background-image: url(../img/home/action/bg_home_action_company.png);
}.p-home-action-menu__contents.-mental {
  background-image: url(../img/home/action/bg_home_action_mental.png);
}.p-home-action-menu__contents.-experience {
  background-image: url(../img/home/action/bg_home_action_experience.png);
}/* =======================================================
home_ACTION
======================================================= */.p-home-impact::after {
    width: 1142rem;
    height: 546rem;
    background-image: url(../img/home/bg_home_impact.png);
    background-position: top right;
    top: 0;
    right: 0;
  }.p-home-impact__contents {
    padding-inline: 120rem 162rem;
    display: flex;
    flex-direction: row-reverse;
    gap: 134rem;
    position: relative;
    /* z-index: 1; */
    background: var(--c-base);
  }.p-home-impact__item {
    z-index: 2;
  }.p-home-impact-article__item {
    display: grid;
    gap: 20rem;
  }.p-home-impact-article__thumbnail {
    background-color: #fff;
    border: 1px solid var(--c-gray2);
  }.p-home-impact-article__download-link {
    display: flex;
    gap: 7px;
    font-size: 14px;
    border: none;
    background: none;
    color: inherit;
    text-decoration: none;
    margin-top: 10px;
    transition: 0.3s;
  }.p-home-impact-article__download-link span {
      display: inline-block;
      width: 20px;
      height: 20px;
      background-image: url(../img/icon/icon_dl.svg);
      background-repeat: no-repeat;
      background-position: 0 0;
      background-size: contain;
      flex-shrink: 0;
    }@media (any-hover: hover) {
  .p-home-impact-article__download-link:hover {
    color: var(--c-gray1);
  }
}/* =======================================================
home_footer
======================================================= */.home .l-footer {
  background: var(--c-base);
  height: 100%;
}.home .l-footer__container {
    /* padding: 200rem 148rem 35rem; */
    padding-block: calc(202 * var(--home-rem)) calc(60 * var(--home-rem));

    padding-inline: 148rem;
    height: 100%;
  }.home .l-footer__inner {
    display: grid;
    align-content: space-between;
    justify-items: center;
    height: 100%;
  }.home .l-footer__info {
    display: grid;
    gap: calc(46 * var(--home-rem));
    font-size: calc(16 * var(--home-rem));
  }.home .l-footer__info .-rl + .-rl {
      margin-right: 0;
    }@media (any-hover: hover) {
        .home .l-footer__info a:hover {
          color: var(--c-gray1);
          transition: 0.3s;
        }
      }.home .l-footer__bottom {
    display: grid;
    justify-items: center;
    gap: calc(46 * var(--home-rem));
  }.home .l-footer__back-to-top {
    display: grid;
    align-content: center;
    justify-items: center;
    /* width: min(97px, 97rem); */
    width: calc(97 * var(--home-rem));
    aspect-ratio: 1;
    border-radius: 9999px;
    background-color: var(--c-white);
    padding-top: calc(10 * var(--home-rem));
    /* font-size: min(16px, 16rem); */
    font-size: calc(16 * var(--home-rem));
    line-height: 1.25;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }.home .l-footer__back-to-top::after {
      content: "→";
      display: block;
      width: 100%;
      height: auto;
      font-size: calc(20 * var(--home-rem));
      text-align: center;
    }@media (any-hover: hover) {
      .home .l-footer__back-to-top:hover {
        /* background-color: var(--c-gray1); */
        border-color: #fff;
        transition: 0.3s;
      }
    }.home .l-footer__copyright {
    font-size: calc(16 * var(--home-rem));
  }/* 継ぎ目が出やすい場合の保険（必要なら） */#jsMvOverlay {
  background-clip: padding-box;
}.p-home-intro__contents-1 {
  background-clip: padding-box;
}.p-home-intro__detail-image {
  position: relative;
  overflow: hidden;
}/* 暗幕レイヤー */.p-home-intro__detail-image::after {
  /* content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); 
  pointer-events: none;
  opacity: 1;
  transition: opacity 1s ease; */
}/* 表示後：明るくなる */.p-home-intro__detail-image.is-bright::after {
  opacity: 0;
}/* 初期化が終わるまで横スクロール領域を隠す（リロード時のチラ見え対策） */html:not(.is-ready) .l-main__horizontal {
  visibility: hidden;
}html.is-ready .l-main__horizontal {
  visibility: visible;
}.jsHorizontalTrack {
  will-change: transform;
}#jsMvBase,
#jsMvBgLayer,
#jsMvText,
#jsMvSmokeLayer {
  will-change: transform, opacity;
}@media (max-width: 768px) {
    .p-home-issue::after {
      width: 374rem;
      height: 240rem;
      background-image: url(../img/home/bg_home_issue.png);
      background-position: bottom right;
      bottom: 0;
      right: 0;
    }

    .p-home-issue__chart {
      width: 80%;
      height: auto;
      /* padding-top: 13%; */
    }

    .p-home-issue__graph {
      width: 80%;
      height: auto;
      /* padding-top: 13%; */
    }

    .p-home-issue__desc-bpx {
      flex: none;
    }
}/* レスポンシブ */@media (max-width: 768px) {
    .c-section__title {
      font-size: 52rem;
    }

    .c-section__subtitle {
      /* font-size: max(20px, 12rem); */
      font-size: 20px;
      padding-bottom: 20rem;
    }

    .c-section__desc {
      gap: 32px;
      /* padding-top: 13%; */
    }

    .c-section__headline p {
      font-size: max(20px, 13rem);
    }

    .c-section__headline::after {
      width: 60rem;
    }

    .c-section__contents {
      padding-inline: 60rem;
    }

    .c-section__item {
      gap: 60rem;
      /* padding-block: 100rem 60rem; */
      padding-top: 28vh;
      /* padding-bottom: calc(60 * var(--home-rem)); */
    }

  .c-section__contents-first .c-section__item {
    gap: 60rem;
  }

  .c-page-link {
    padding: 20px 16px;
    gap: 10rem;
  }

    .c-page-link__text {
      font-size: 16px;
    }

    .c-page-link::after {
      font-size: 16px;
    }

  /* .p-home-issue__subtitle {
    padding-bottom: 20rem;
  } */

  .p-home-whitepaper__head {
    gap: 60rem;
  }

  .p-home-action-menu__lists-item a {
    /* padding: 100rem 20rem 120rem; */
    padding: 100rem 32px 120rem;
    font-size: 18px;
  }

    .p-home-action-menu__lists-item a::after {
      font-size: 18px;
    }

  .p-home-action__headline + * {
    margin-right: 32px;
  }

  .p-home-action__link {
    padding-inline: 30rem;
    /* padding-top: 13%; */
  }

  .p-home-action__item {
    gap: 30rem;
  }

  .p-home-action-menu__contents {
    padding-right: 60rem;
  }

  .p-home-impact::after {
    width: 374rem;
    height: 240rem;
  }

  .c-home-article__thumbnail {
    width: 240rem;
    height: 160rem;
  }

  .c-home-article__title {
    font-size: 16px;
  }

  .c-section__link .c-section__item {
    gap: 32px;
  }
    .home .l-footer__container {
      padding: 100rem 124rem 12.5rem;
    }

    .home .l-footer__info {
      gap: 32px;
      font-size: 16px;
    }

    .home .l-footer__bottom {
      gap: 32px;
    }

    .home .l-footer__back-to-top {
      /* width: max(45px, 45rem); */
      width: 80px;
      padding-top: 5rem;
      /* font-size: max(7px, 7rem); */
      font-size: 14px;
      line-height: 1.25;
    }

      .home .l-footer__back-to-top::after {
        /* font-size: max(7px, 7rem); */
        font-size: 14px;
      }

    .home .l-footer__copyright {
      font-size: 12px;
      /* white-space: nowrap; */
    }

  .p-home-intro__detail-box {
    font-size: 16px;
  }
}/* =======================================================
page.css
======================================================= *//* 下層ページ共通
  -------------------------------------------------- *//* ===== container ===== */.c-page__inner {
  padding-inline: 120rem;
}@media (max-width: 768px) {
  .c-page__inner {
    padding-inline: 32rem;
  }
}.c-page__contents {
  max-width: 1200px;
  margin-inline: auto;
}.c-page__section {
  border-top: 1px solid var(--c-gray2);
  padding-block: 66rem 120rem;
}.c-page__section.-bg-white {
    background-color: #fff;
  }.c-page__section-title {
  font-size: max(26px, 26rem);
}.c-page__section-title + * {
    margin-top: 54rem;
  }.c-page__section-contents {
  max-width: 1080px;
}.c-page__section-contents > * + * {
    margin-top: 48rem;
  }@media (max-width: 768px) {
  .c-page__section {
    padding-block: 40px;
  }

  .c-page__section-title {
    font-size: max(20px, 18rem);
  }
    .c-page__section-title + * {
      margin-top: 32px;
    }

  .c-page__section-contents {
    max-width: 100%;
  }
    .c-page__section-contents > * + * {
      margin-top: 32px;
    }
}/* ===== page head ===== */.c-page__head {
  padding: 120px 0 64px;
  position: relative;
  overflow: hidden;
}.c-page__title {
  font-size: max(32px, 156rem);
  font-weight: normal;
  letter-spacing: 0.005em;
  line-height: 1;
  color: var(--c-gray2);
}.c-page__title.-sm {
    font-size: max(20px, 38rem);
    line-height: 1.75;
    color: var(--c-gray2);
  }.c-page__subtitle {
  font-size: max(18px, 22rem);
  line-height: 2.27;
  margin-top: 60rem;
}.c-page__headline {
  font-size: min(22px, 22rem);
  line-height: 1.75;
}.c-page__desc {
  line-height: 1.75;
}.c-page__desc * + * {
    margin-top: 16rem;
  }@media (max-width: 768px) {
  .c-page__head {
    padding: 80px 0 40px;
  }

  .c-page__title {
    font-size: max(32px, 52rem);
  }

  .c-page__subtitle {
    font-size: max(18px, 15rem);
    margin-top: 32px;
    line-height: 1.75;
  }

  .c-page__headline {
    font-size: 18px;
  }
    .c-page__desc * + * {
      margin-top: 0;
    }
}/* ===== list ===== */.c-lists * + * {
    margin-top: 12px;
  }/* ===== btn ===== */.c-btn {
  width: max(268px, 370rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid #000;
  border-radius: 100px;
  padding: 14px 40rem;
  font-family: inherit;
  font-size: max(14px, 16rem);
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
  transition: 0.3s;
}@media (any-hover: hover) {
    .c-btn:hover {
      border-color: var(--c-gray1);
    }
  }/* =======================================================
ACTION
======================================================= *//* 共通
  ---------------------------------------------------- */.c-action-page__title {
  font-size: max(32px, 124rem);
}.c-action-page__title span {
    font-size: max(18px, 32rem);
  }.c-action__head {
  background-image: url(../img/action/bg_page_action.png);
  background-size: 1059rem 552rem;
  background-position: left top;
  background-repeat: no-repeat;
}.c-action-intro {
  border-top: 1px solid var(--c-gray2);
}.c-action-intro__inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    -moz-column-gap: 80rem;
         column-gap: 80rem;
    /* background-repeat: no-repeat;
    background-position: 0 0;
    background-size: cover; */
  }.c-action-intro__text {
    padding-block: 66rem 32rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 43.1%;
    /* margin-top: 8px; */
  }.c-action-intro__desc {
    line-height: 3.3;
  }.c-action-intro__image {
    width: 723rem;
    height: 463rem;
    min-height: 463px;
    margin-right: calc(50% - 50vw);
    align-self: stretch;
    flex: 1;
  }.c-action-intro__image img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
    }@media (max-width: 768px) {
  .c-action-intro__inner {
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
  }

  .c-action-intro__text {
    width: 100%;
    padding-block: 40rem;
    text-align: center;
  }

  .c-action-intro__desc {
    line-height: 2.75;
    text-align: left;
  }

  .c-action-intro__image {
    width: 100%;
    height: auto;
    min-height: auto;
    margin-right: 0;
  }

  .c-action-page__title {
    font-size: max(32px, 52rem);
    display: grid;
    gap: 20px;
    width: -moz-fit-content;
    width: fit-content;
  }

  .c-action-page__title span {
    font-size: max(20px, 14rem);
    margin-left: auto;
  }

  .c-action-page__subtitle {
    margin-top: 48px;
    text-align: center;
  }
}/* ===== WORKPLACE ===== */.p-workplace__inner {
  /* background-image: url(../img/home/action/bg_home_action_company.png); */
}/* ===== INDIVIDUAL (不調の悩みを、相談する)===== */.p-individual-intro__inner {
    display: block;
    padding-bottom: 66rem;
  }.p-individual-intro__text {
    width: 100%;
  }.p-individual-intro__detail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24rem;
  }.p-individual-detail {
  border-radius: 8px;
  background-color: #fff;
}.p-individual-detail__inner {
    padding: 40rem;
  }.p-individual-detail__title {
    font-size: max(14px, 20rem);
    font-weight: bold;
  }.p-individual-detail__title + * {
      margin-top: 32rem;
    }.p-individual-detail__contents > * + * {
      margin-top: 16rem;
    }.p-individual-detail__contents p {
      padding: 8rem 12rem;
      border: 1px solid var(--c-gray1);
      border-radius: 10px;
      width: -moz-fit-content;
      width: fit-content;
    }.p-individual-detail__contents + .p-individual-detail__contents {
      margin-top: 32rem;
    }.p-individual-detail__contents small {
      display: block;
      margin-top: 40rem;
      font-size: max(14px, 12rem);
      word-break: auto-phrase;
    }@media (max-width: 768px) {
  .p-individual-intro__detail {
    grid-template-columns: 1fr;
  }
    .p-individual-detail__inner {
      padding: 24rem;
    }

    .p-individual-detail__title {
      font-size: 20px;
    }

      .p-individual-detail__title + * {
        margin-top: 32px;
      }
      .p-individual-detail__contents > * + * {
        margin-top: 16px;
      }
      .p-individual-detail__contents p {
        padding: 8rem 12rem;
        border: 1px solid var(--c-gray1);
        border-radius: 10px;
        width: -moz-fit-content;
        width: fit-content;
      }

      .p-individual-detail__contents + .p-individual-detail__contents {
        margin-top: 32px;
      }

      .p-individual-detail__contents small {
        display: block;
        margin-top: 40px;
        font-size: 14px;
      }
}/* ===== case ===== */#case {
  background-color: var(--c-base);
}.p-case__lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34rem;
    /* margin-top: 8px; */
  }.p-case__item {
    width: 100%;
  }.p-case__item p {
      font-size: max(14px, 20rem);
      text-align: center;
      line-height: 1.75;
      margin-top: 16px;
    }.p-case__icon {
    width: 100%;
    height: 259rem;
    background: #ffffff;
    border-radius: 105rem;
    display: grid;
    place-items: center;
    padding: 44rem;
  }.p-case__icon img {
      height: auto;
    }@media (max-width: 768px) {
  .p-case__lists {
    grid-template-columns: 1fr;
  }
    .p-case__item p {
      font-size: max(18px, 14rem);
    }

  .p-case__icon {
    width: 80%;
    height: 130px;
    margin-inline: auto;
    padding: 20px;
  }
}/* work（職場を、整える）--------------- */.p-case.-work .-card1 {
    width: 162rem;
  }.p-case.-work .-card2 {
    width: 178rem;
  }.p-case.-work .-card3 {
    width: 139rem;
  }.p-case.-work .-card4 {
    width: 184rem;
  }@media (max-width: 768px) {
    .p-case.-work .-card1 {
      width: 85px;
    }
    .p-case.-work .-card2 {
      width: 94px;
    }
    .p-case.-work .-card3 {
      width: 73px;
    }
    .p-case.-work .-card4 {
      width: 96px;
    }
}/* work（不調の悩みを、相談する）--------------- */.p-case.-individual .-card1 {
    width: 60rem;
  }.p-case.-individual .-card2 {
    width: 178rem;
  }.p-case.-individual .-card3 {
    width: 168rem;
  }.p-case.-individual .-card4 {
    width: 50rem;
  }@media (max-width: 768px) {
    .p-case.-individual .-card1 {
      width: 32px;
    }
    .p-case.-individual .-card2 {
      width: 93px;
    }
    .p-case.-individual .-card3 {
      width: 88px;
    }
    .p-case.-individual .-card4 {
      width: 27px;
    }
}/* share（みんなで、知恵を出しあう）--------------- */.p-case.-share .-card1 {
    /* width: 141rem; */
    width: 170rem;
  }.p-case.-share .-card2 {
    /* width: 170rem; */
    width: 141rem;
  }.p-case.-share .-card3 {
    /* width: 70rem; */
    width: 170rem;
  }.p-case.-share .-card4 {
    /* width: 170rem; */
    width: 70rem;
  }@media (max-width: 768px) {
    .p-case.-share .-card1 {
      width: 90px;
      /* width: 75px; */
    }
    .p-case.-share .-card2 {
      width: 74px;
    }
    .p-case.-share .-card3 {
      width: 90px;
      /* width: 37px; */
    }
    .p-case.-share .-card4 {
      width: 37px;
      /* width: 90px; */
    }
}/* ===== FLOW ===== */.p-flow__steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    grid-template-rows: auto 1fr;
    align-items: stretch;
    -moz-column-gap: 20rem;
         column-gap: 20rem;
    /* margin-top: 8px; */
  }.p-flow__step {
    background: #ffffff;
    border: 1px solid var(--c-gray1);
    border-radius: 10px;
    padding: 32px 24px;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: 1 / span 2;
    justify-items: center;
    gap: 28rem;
  }.p-flow__step-num {
    font-size: max(14px, 50rem);
    line-height: 1;
    grid-row: 1;
  }.p-flow__step p {
    font-size: min(20px, 20rem);
    line-height: 1.75;
    grid-row: 2;
    text-align: center;
  }.p-flow__arrow {
    width: 0;
    height: 0;
    border-top: 25rem solid transparent;
    border-bottom: 25rem solid transparent;
    border-left: 23rem solid #000;
    grid-row: 1 / span 2;
    align-self: center;
  }@media (max-width: 768px) {
  .p-flow__steps {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 16px;
  }

  .p-flow__step {
    grid-row: auto;
    grid-template-rows: auto auto;
  }

    .p-flow__step p {
      font-size: max(18px, 14rem);
    }

  .p-flow__step-num {
    font-size: max(24px, 26rem);
  }

  .p-flow__arrow {
    justify-self: center;
    transform: rotate(90deg);
    grid-row: auto;
  }
}/* ===== activity ===== */.p-activity__intro {
    line-height: 3.3;
  }.p-activity__intro + * {
      margin-top: 34rem;
    }.p-activity__card {
    /* flex: 0 0 calc(33.333% - 14px); */
    aspect-ratio: 1.07;
    background: #ffffff;
    overflow: hidden;
    border: 1px solid #a1a1a1;
    position: relative;
  }.p-activity__card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
  }.p-activity__card-thumbnail {
    width: 100%;
    aspect-ratio: 1.35;
    display: flex;
    align-items: center;
    justify-items: center;
    justify-content: center;
    background: #fce8e8;
    overflow: hidden;
  }.p-activity__card-thumbnail img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      display: block;
    }.p-activity__card-text {
    padding-inline: 24rem;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 5.16;
    position: relative;
  }.p-activity__card-text span {
      font-size: min(20px, 20rem);
      line-height: 1.75;
    }.p-activity__card-text::after {
      content: "";
      width: 36rem;
      height: 36rem;
      background-image: url(../img/icon/icon_arr.svg);
      background-size: contain;
      background-repeat: no-repeat;
      position: absolute;
      top: 50%;
      right: 24rem;
      transform: translateY(-50%);
    }.splide .splide__arrows {
    pointer-events: none;
  }.splide .splide__arrow {
    pointer-events: auto;
    width: 80rem;
    height: 80rem;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 0 9px 2px rgba(120, 120, 120, 0.06);
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
  }.splide .splide__arrow--prev {
    left: -40rem;
    justify-content: flex-start;
    padding-left: 18rem;
  }.splide .splide__arrow--next {
    right: -40rem;
    justify-content: flex-end;
    padding-right: 18rem;
  }.splide .splide__arrow svg {
    display: none;
  }.splide .splide__arrow::before {
    content: "";
    display: block;
    width: 12rem;
    height: 12rem;
    border-top: 1px solid #060606;
    border-right: 1px solid #060606;
  }.splide .splide__arrow--prev::before {
    transform: rotate(-135deg);
  }.splide .splide__arrow--next::before {
    transform: rotate(45deg);
  }.splide .splide__track {
    z-index: 1;
  }@media (max-width: 1024px) {
  .p-activity__card-text span {
    font-size: 20px;
  }
}@media (max-width: 768px) {
  .p-activity__intro {
    line-height: 1.75;
  }
  .p-activity__card {
    flex: 0 0 100%;
  }

  .p-activity__carousel .splide__arrow {
    width: 56rem;
    height: 56rem;
  }

  .p-activity__carousel .splide__arrow::before {
    width: 8rem;
    height: 8rem;
  }

  .p-activity__carousel .splide__arrow--prev {
    left: -20rem;
    padding-left: 12rem;
  }

  .p-activity__carousel .splide__arrow--next {
    right: -20rem;
    padding-right: 12rem;
  }
}/* ===== PROMISE ===== */.p-promise__lists {
    margin-top: 24rem;
    /* padding: 40rem; */
    /* background-color: #fff; */
    border-radius: 10px;
  }/* border: 1px solid var(--c-gray1); */.p-promise__lists li {
      line-height: 1.75;
      padding-left: 20rem;
      position: relative;
    }.p-promise__lists li::before {
        content: "・";
        position: absolute;
        left: 0;
      }.p-promise__lists li * + * {
        margin-top: 20rem;
      }/* Cocoro Tune card special bg */.card-cocoro {
  background: #fce8e8;
}/* ===== note link ===== */.p-note-link {
  background-color: #fff;
  padding: 100rem 140rem;
  border-radius: 10px;
}.p-note-link__link {
    display: block;
    width: 46%;
    margin-inline: auto;
  }.p-note-link__title {
    font-weight: bold;
    line-height: 1.75;
    margin-top: 16rem;
  }@media (max-width: 768px) {
  .p-note-link {
    padding: 40rem;
  }

    .p-note-link__link {
      width: 100%;
    }

    .p-note-link__title {
      font-size: max(16px, 14rem);
      text-align: center;
      line-height: 1.75;
      margin-top: 16px;
    }
}/* =======================================================
ISSUE
======================================================= */.p-issue-head {
  position: relative;
  z-index: 0;
}.p-issue-head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 748rem;
  height: 480rem;
  background-image: url(../img/home/bg_home_issue.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  transform-origin: center;
  pointer-events: none;
  /* z-index: -1; */
}@media (max-width: 768px) {
  .p-issue-head::before {
    width: 51.9%;
    height: 33.3%;
    /* height: auto; */
    /* top: -20rem;
    left: -20rem; */
  }
}.p-issue__graph {
    /* width: 858rem; */
    width: 60%;
    margin-inline: auto;
    padding-block: 32rem;
  }.p-issue__lists {
    padding: 40rem;
    background-color: #fff;
    border-radius: 10px;
  }.p-issue__lists-title {
      font-size: max(14px, 20rem);
      font-weight: bold;
    }.p-issue__lists-title + * {
        margin-top: 32rem;
      }.p-issue__lists li {
      display: flex;
      gap: 8rem;
    }.p-issue__lists li::before {
        content: "\2713";
      }.p-issue__lists li span {
        font-size: 10px;
        display: block;
        color: var(--c-gray2);
      }.p-issue__flowchart {
    margin-inline: auto;
    padding-block: 32rem;
  }.p-issue__flowchart-title {
      font-size: max(14px, 20rem);
      line-height: 1.5;
      text-align: center;
    }.p-issue__flowchart-title + * {
        margin-top: 32rem;
      }.p-issue__flowchart-image {
      max-width: 432rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-inline: auto;
    }.p-issue__flowchart-image .-item {
        width: 100%;
        min-height: 75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: max(14px, 20rem);
        line-height: 1.4;
        font-weight: bold;
        color: var(--c-white);
      }.p-issue__flowchart-image .-item:nth-child(1) {
        background: #c7c7c7;
      }.p-issue__flowchart-image .-item:nth-child(3) {
        background: #b4b4b4;
      }.p-issue__flowchart-image .-item:nth-child(5) {
        background: #9e9e9e;
      }.p-issue__flowchart-image .-item:nth-child(7) {
        background: #2f2f34;
      }.p-issue__flowchart-image .-arrow {
        width: 0;
        height: 0;
        border-left: 36rem solid transparent;
        border-right: 36rem solid transparent;
        border-top: 25rem solid #b4b4b4;
        margin-block: 8rem;
      }.p-issue__flowchart-image .-arrow:nth-child(2) {
        border-top-color: #b4b4b4;
      }.p-issue__flowchart-image .-arrow:nth-child(4) {
        border-top-color: #9e9e9e;
      }.p-issue__flowchart-image .-arrow:nth-child(6) {
        border-top-color: #2f2f34;
      }.p-issue__flowchart-image .-arrow:last-child {
        display: none;
      }@media (max-width: 768px) {
  .p-issue__graph {
    width: 100%;
    padding-block: 24rem;
  }

  .p-issue__flowchart {
    padding-block: 24rem;
  }

  .p-issue__lists-title {
    font-size: max(18px, 14rem);
  }
}/* =======================================================
IDEA
======================================================= */.p-idea-head {
  position: relative;
  z-index: 0;
}.p-idea-head::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1142rem;
  height: 546rem;
  background-image: url(../img/home/bg_home_idea.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}@media (max-width: 768px) {
  .p-idea-head::before {
    width: 79.3%;
    height: 37.9%;
  }
}.p-idea__image {
    padding-block: 32rem;
    display: grid;
    justify-items: center;
  }.p-idea-image {
  display: grid;
  justify-items: center;
  gap: 24rem;
}.p-idea-image__lists {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8rem;
  }/* margin-top: 8px; */.p-idea-image__lists li {
      border: 1px solid var(--c-gray1);
      background-color: #fff;
      border-radius: 10px;
      display: grid;
      justify-items: center;
      gap: 20rem;
      padding: 24rem;
      max-width: 280rem;
    }.p-idea-image__lists-title {
    font-size: min(14px, 14rem);
    text-align: center;
  }.p-idea-image__arrow {
    width: 0;
    height: 0;
    border-left: 36rem solid transparent;
    border-right: 36rem solid transparent;
    border-top: 25rem solid var(--c-gray1);
    margin-block: 8rem;
  }.p-idea-image__lists li:nth-child(1) .p-idea-image__icon {
    width: 40rem;
  }.p-idea-image__lists li:nth-child(2) .p-idea-image__icon {
    width: 80rem;
  }.p-idea-image__lists li:nth-child(3) .p-idea-image__icon {
    width: 90rem;
  }.p-idea-image__lists li:nth-child(4) .p-idea-image__icon {
    width: 100rem;
  }@media (max-width: 768px) {
  /* .p-idea-head::before {
    width: 100%;
    height: auto;
    top: -20rem;
    right: -20rem;
  } */
    .p-idea-image__lists {
      grid-template-columns: repeat(2, 1fr);
      gap: 16rem;
    }

    .p-idea-image__lists li {
      padding: 16rem;
      max-width: none;
    }

    .p-idea-image__arrow {
      border-left-width: 24rem;
      border-right-width: 24rem;
      border-top-width: 16rem;
      margin-block: 12rem;
    }

    .p-idea-image__body-img {
      width: 100%;
      height: auto;
    }
}/* 波紋のように広がる */.p-idea-image__title {
    font-size: max(14px, 20rem);
  }.p-idea-image__head {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20rem;
  }.p-idea-image__head-item {
    padding: 32rem;
    border-radius: 10px;
    border: 1px solid var(--c-gray1);
    text-align: center;
    max-width: 320px;
  }.p-idea-image__body-item {
    padding: 20rem;
    border: 1px solid var(--c-gray1);
    text-align: center;
    border-radius: 10px;
  }.p-idea-image__body-img {
    width: 360rem;
    margin-top: 32rem;
  }.p-idea-image__bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20rem;
  }.p-idea-image__bottom-item {
    padding: 20rem;
    border: 1px solid var(--c-gray1);
    border-radius: 10px;
    text-align: center;
    max-width: 330px;
  }@media (max-width: 768px) {
  /* .p-idea-head::before {
    width: 100%;
    height: auto;
    top: -20rem;
    right: -20rem;
  } */
    .p-idea-image__head {
      gap: 10px;
    }

    .p-idea-image__title {
      font-size: max(16px, 12rem);
    }

    .p-idea-image__head-item {
      padding: 24rem;
      max-width: none;
    }

    .p-idea-image__body-item {
      padding: 16rem;
    }
    .p-idea-image__lists {
      grid-template-columns: repeat(2, 1fr);
      gap: 16rem;
    }

    .p-idea-image__lists li {
      padding: 16rem;
      max-width: none;
    }

    .p-idea-image__arrow {
      border-left-width: 24rem;
      border-right-width: 24rem;
      border-top-width: 16rem;
      margin-block: 12rem;
    }

    .p-idea-image__body-img {
      width: 100%;
      height: auto;
      margin-top: 10px;
    }

    .p-idea-image__bottom {
      grid-template-columns: 1fr;
      gap: 10px;
    }
}/* 外部リンク */.p-other-links {
  background-color: #fff;
  padding: 100rem 140rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 84rem;
}.p-other-links__item {
  display: flex;
  align-items: flex-start;
  gap: 100rem;
}.p-other-links__item:nth-child(even) {
  flex-direction: row-reverse;
}.p-other-links__link {
  display: block;
  flex-shrink: 0;
  width: 46%;
}.p-other-links__link img {
    display: block;
    width: 100%;
    height: auto;
  }.p-other-links__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}.p-other-links__title {
  font-size: max(14px, 20rem);
  font-weight: bold;
  text-align: center;
}.p-other-links__desc {
  font-size: min(16px, 16rem);
  line-height: 1.75;
  margin-top: 32rem;
}@media (max-width: 768px) {
  .p-other-links {
    padding: 40rem;
    gap: 40rem;
  }

  .p-other-links__item,
  .p-other-links__item:nth-child(even) {
    flex-direction: column;
    gap: 24rem;
  }

  .p-other-links__link {
    width: 100%;
  }

  .p-other-links__title {
    font-size: max(18px, 16rem);
    text-align: center;
  }

  .p-other-links__desc {
    font-size: max(14px, 14rem);
    line-height: 1.75;
    margin-top: 16rem;
    text-align: center;
  }
}/* ===== WHITE PAPER ===== */.p-page-link__title {
    color: var(--c-gray2);
    font-size: max(14px, 80rem);
    font-weight: normal;
    text-align: center;
  }.p-page-link__article {
    max-width: 432rem;
    margin-inline: auto;
    padding-block: 32rem;
  }.p-page-link__article p {
      margin-top: 24rem;
    }@media (max-width: 768px) {
  .p-page-link__title {
    font-size: max(14px, 32rem);
  }

  .p-page-link__article {
    padding-block: 24rem;
  }
}/* =======================================================
WHITE PAPER
======================================================= */.p-whitepaper {
  border-top: 0;
  padding-top: 86rem;
}/* 
.p-whitepaper__contents {
  max-width: 1200rem;
} */.p-whitepaper__back {
  width: 34rem;
  height: 34rem;
  border: 1px solid var(--c-gray2);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--c-gray2);
}.p-whitepaper__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360rem;
  gap: 32rem 48rem;
  margin-top: 32rem;
  align-items: start;
}.p-whitepaper__scroll {
  min-width: 0;
  padding-right: 0;
}.p-whitepaper__main {
  min-width: 0;
}.p-whitepaper__title {
  font-size: max(20px, 32rem);
  line-height: 1.45;
}.p-whitepaper__subtitle {
  margin-top: 16rem;
  font-size: 18px;
}.p-whitepaper__thumbnail {
  margin-top: 32rem;
  border: 1px solid var(--c-gray1);
  background: #ececec;
  width: 100%;
  /* aspect-ratio: 1.45; */
  overflow: hidden;
}.p-whitepaper__thumbnail img {
  width: 100%;
  height: auto;
}.p-whitepaper__form {
  background: #fff;
  border-radius: 10px;
  padding: 24rem;
  position: sticky;
  top: 120px;
  align-self: start;
}.p-whitepaper__group.p-consult__group {
  margin-bottom: 32px;
}.p-whitepaper__group label {
  font-weight: 500;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  font-size: 14px;
}.p-whitepaper__label {
  font-size: 16px;
}.p-whitepaper__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: max(14px, 13px);
  cursor: pointer;
  font-size: 14px;
  margin-top: 8px;
}.p-whitepaper__form .p-consult__submit {
  margin-top: 24rem;
}.p-whitepaper__btn {
  width: min(100%, 370px);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-inline: auto;
  margin-inline: auto;
  font-size: 14px;
}.p-whitepaper__btn .wpcf7-spinner,
.p-consult__submit .wpcf7-spinner {
  position: absolute;
  right: 24rem;
  margin: 0;
}.p-whitepaper__body {
  max-width: 720rem;
  line-height: 1.9;
  margin-top: 32rem;
  font-size: 16px;
}.p-whitepaper .wpcf7 form.sent .wpcf7-response-output {
  font-size: 14px;
  color: var(--c-gray2);
  margin: 0;
}@media (max-width: 900px) {
  .p-whitepaper {
    padding-top: 48rem;
  }

  .p-whitepaper__grid {
    grid-template-columns: 1fr;
    gap: 24rem;
  }

  .p-whitepaper__title {
    font-size: max(20px, 16rem);
  }

  .p-whitepaper__thumbnail {
    margin-top: 24rem;
  }

  .p-whitepaper__form {
    padding: 24rem;
    position: static;
  }

  .p-whitepaper__body {
    max-width: 100%;
    margin-top: 24rem;
  }
}@media (max-width: 768px) {
      .p-issue__flowchart-title {
        margin-bottom: 24rem;
        font-size: max(16px, 12rem);
      }
        .p-issue__flowchart-image .-item {
          min-height: -moz-fit-content;
          min-height: fit-content;
          font-size: max(14px, 14rem);
          padding: 14rem;
        }

        .p-issue__flowchart-image .-arrow {
          border-left-width: 36rem;
          border-right-width: 36rem;
          border-top-width: 28rem;
          margin-block: 12rem;
        }
}/* =======================================================
COMPANY
======================================================= */.c-page__logo {
  width: min(300px, 300rem);
  height: auto;
  margin-block: min(80rem, 80px);
}@media (max-width: 768px) {
  .c-page__logo {
    margin-block: 32px;
    width: 200px;
  }
}.p-company__section-title span {
    font-size: 14px;
    display: block;
  }.p-company-philosophy {
  background: #fff;
}/* @media (min-width: 769px) {
  .p-company-philosophy {
    &__title {
      text-align: center;
    }
    &__desc p {
      text-align: center;
    }
  }
} */.p-company-philosophy__desc-name {
  text-align: right;
  margin-top: 58rem;
}.p-company-philosophy__desc-name span {
    font-size: 12px;
    display: inline-block;
    margin-right: 8px;
  }.p-company-business {
  background: #fff;
}.p-company-business__figure {
    width: 80%;
    margin-inline: auto;
  }@media (min-width: 769px) {
    .p-company-profile .p-company__section-title {
      text-align: center;
    }
    .p-company-profile__columns {
      margin-inline: auto;
      width: 80%;
    }

    .p-company-profile__row {
      grid-template-columns: 10% auto;
    }
}.p-company-profile__columns {
    display: grid;
    border-top: 2px solid var(--c-gray1);
  }.p-company-profile__row {
    display: grid;
    grid-template-columns: 24% auto;
    align-items: center;
    gap: 16rem;
    padding-block: 20px;
    padding-left: 4px;
    border-bottom: 1px solid var(--c-gray1);
  }.p-company-profile__row dt {
      font-size: 14px;
      color: var(--c-gray2);
    }.p-company-profile__row dd {
    }.p-company-value {
  /* background-color: #fff; */
}:root {
  /* --bg: #f5f2ed; */
  --surface: #faf8f5;
  --card: #ffffff;
  --border: #a1a1a1;
  --text: #a7a7a7;
  --text-sub: #a7a7a7;
  --accent: #c9b99a;
  --accent-mid: #8b8b8b;
  --tan-blob: #e8dcc8;
  --label: #dbdbdb;
}html {
  scroll-behavior: smooth;
}body {
  background-color: var(--c-base);
}img {
  display: block;
  max-width: 100%;
}/* ===== HEADER ===== */header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 120;
  display: flex;
  justify-content: flex-end;
  padding: 20px 32px;
  pointer-events: none;
}.l-header {
  align-items: center;
  gap: 20px;
}.l-header__back {
  pointer-events: all;
  position: fixed;
  top: 20px;
  left: 32px;
  z-index: 130;
  width: 60px;
  height: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  color: var(--c-gray2);
  cursor: pointer;
  padding: 0;
  transition: 0.3s;
}.l-header__back span {
    position: relative;
    display: block;
    width: 60px;
    height: 1px;
    background-color: currentColor;
  }.l-header__back span::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 0;
      width: 8px;
      height: 8px;
      border-top: 1px solid currentColor;
      border-left: 1px solid currentColor;
      transform: translateY(-50%) rotate(-45deg);
      transform-origin: center;
    }@media (any-hover: hover) {
    .l-header__back:hover {
      opacity: 0.7;
    }
  }/* ===== hamburger ===== */.hamburger {
  pointer-events: all;
  position: fixed;
  top: 20px;
  right: 32px;
  z-index: 130;
  display: flex;
  flex-direction: column;
  gap: calc(24 * var(--home-rem));
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}.hamburger span {
  display: block;
  width: 70px;
  height: 1px;
  border-radius: 1px;
  background-color: var(--c-gray2);
  transition:
    transform 0.24s ease,
    opacity 0.24s ease,
    background-color 0.24s ease;
}.hamburger.is-open span:nth-child(1) {
  transform: translateY(calc(12.5 * var(--home-rem))) rotate(45deg);
}.hamburger.is-open span:nth-child(2) {
  transform: translateY(calc(-12.5 * var(--home-rem))) rotate(-45deg);
}/* .hamburger.is-open span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
} */@media (max-width: 768px) {
  .hamburger {
    gap: 14px;
  }
  .hamburger span {
    width: 40px;
  }

  .hamburger.is-open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

  .hamburger.is-open span:nth-child(2) {
    transform: translateY(-7.5px) rotate(-45deg);
  }
}.l-header__drawer {
  pointer-events: all;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 110;
  width: 100%;
  height: 100dvh;
  /* padding: calc(200 * var(--home-rem)) 32px 40px; */
  padding: calc(125 * var(--home-rem)) 32px 40px;
  background-color: rgba(246, 245, 243, 0.985);
  display: grid;
  place-items: start center;
  overflow-y: auto;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.24s ease,
    opacity 0.24s ease,
    visibility 0s linear 0.3s;
}.l-header__menu-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}.l-header__drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition:
    transform 0.24s ease,
    opacity 0.24s ease,
    visibility 0s;
}.l-header__menu {
  display: flex;
  flex-direction: column;
  /* gap: 22px; */
  gap: calc(20 * var(--home-rem));
  text-align: center;
  margin: 0;
  padding: 0;
  list-style: none;
}.l-header__menu li {
    list-style: none;
  }.l-header__menu a {
    display: inline-block;
    /* font-size: calc(36 * var(--home-rem)); */
    font-size: calc(60 * var(--home-rem));
    letter-spacing: 0.12em;
    color: var(--c-gray2);
    text-decoration: none;
    transition: 0.3s;
  }@media (any-hover: hover) {
      .l-header__menu a:hover {
        color: var(--c-black);
      }
    }.l-header__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}.l-header__link.is-current {
  color: var(--c-black);
}.l-header__meta-menu {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: calc(30 * var(--home-rem));
}.l-header__meta-item {
  list-style: none;
}.l-header__meta-link {
  display: inline-block;
  font-size: max(12px, 14rem);
  letter-spacing: 0.02em;
  color: var(--c-gray2);
  text-decoration: none;
  line-height: 1.4;
}@media (any-hover: hover) {
    .l-header__meta-link:hover {
      color: var(--c-black);
    }
  }.l-header__meta-link.is-current {
  color: var(--c-black);
}body.is-menu-open {
  overflow: hidden;
}@media (max-width: 768px) {
  header {
    padding: 12px 16px;
  }

  .l-header__back {
    left: 16px;
  }

  .hamburger {
    right: 16px;
  }

  .l-header__drawer {
    /* padding: 72px 20px 20px; */
  }

  .l-header__menu-panel {
    gap: 28px;
  }

  .l-header__menu {
    gap: 16px;
  }

  .l-header__meta-menu {
    gap: 24px;
    flex-wrap: wrap;
  }

  .l-header__meta-link {
    font-size: 13px;
  }
}@media (max-width: 430px) {
  .l-header__menu a {
    font-size: calc(26 * var(--home-rem));
  }
}/* ===== SECTION SHARED ===== *//* ===== HERO ===== *//* .c-page-head {
  padding: 120px 0 64px;
  position: relative;
  overflow: hidden;
} */.hero-blob {
  position: absolute;
  top: 40px;
  right: 120px;
  width: 200px;
  height: 160px;
  background: var(--tan-blob);
  border-radius: 60% 70% 50% 65% / 55% 60% 70% 50%;
  opacity: 0.6;
  z-index: 0;
}.hero-content {
  position: relative;
  z-index: 1;
}/* ===== FORM ===== */.p-consult {
  padding-bottom: 40rem;
}.p-consult__inner {
  background: #ffffff;
  border-radius: 10px;
  padding: 70rem;
  /* margin-top: 8px; */
}.p-consult__group {
  margin-bottom: 43rem;
}.p-consult__group label,
.p-consult__label {
  font-weight: 500;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  font-size: max(14px, 16rem);
}.p-consult__required {
  margin-left: 4px;
  padding: 2px 10px;
  font-size: max(14px, 12px);
  background-color: var(--label);
  border-radius: 2px;
}.p-consult__group textarea,
.p-consult__group input[type="text"],
.p-consult__group input[type="email"],
.p-consult__group select {
  width: 100%;
  border: 1px solid var(--c-gray1);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: max(14px, 13px);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}.p-consult__group textarea:focus,
.p-consult__group input[type="text"]:focus,
.p-consult__group select:focus {
  border-color: var(--accent-mid);
}.p-consult__group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.7;
}.p-consult__group textarea::-moz-placeholder {
  color: var(--text-sub);
  font-size: max(14px, 12px);
  opacity: 1;
  line-height: 1.7;
}.p-consult__group textarea::placeholder {
  color: var(--text-sub);
  font-size: max(14px, 12px);
  opacity: 1;
  line-height: 1.7;
}.p-consult__group input[type="text"]::-moz-placeholder {
  color: var(--text-sub);
  font-size: max(14px, 12px);
  opacity: 1;
}.p-consult__group input[type="text"]::placeholder {
  color: var(--text-sub);
  font-size: max(14px, 12px);
  opacity: 1;
}.p-consult__select {
  position: relative;
}.p-consult__select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--c-black);
  pointer-events: none;
}.p-consult__select select {
  cursor: pointer;
}.p-consult__checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}.p-consult__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: max(14px, 13px);
  cursor: pointer;
}.p-consult__checkbox label,
.p-consult__acceptance label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: max(14px, 16rem);
  cursor: pointer;
}.p-consult__checkbox-label input[type="checkbox"],
.p-consult__checkbox input[type="checkbox"],
.p-consult__acceptance input[type="checkbox"] {
  /* margin-top: 3px; */
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: var(--accent-mid);
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-color: var(--c-gray1);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 12px;
}.p-consult__checkbox-label input[type="checkbox"]:checked,
.p-consult__checkbox input[type="checkbox"]:checked,
.p-consult__acceptance input[type="checkbox"]:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6.4 11.6 2.8 8l1.2-1.2 2.4 2.4 5.6-5.6L13.2 4z' fill='%23555555'/%3E%3C/svg%3E");
}.p-consult__checkbox-label input[type="checkbox"]:focus-visible,
.p-consult__checkbox input[type="checkbox"]:focus-visible,
.p-consult__acceptance input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--accent-mid);
  outline-offset: 2px;
}.p-consult__note {
  font-size: max(14px, 16rem);
  line-height: 1.8;
  margin-top: 6px;
}.p-consult__submit {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}.p-consult__button {
  margin-inline: auto;
}.p-consult__button::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(../img/icon/icon_arr_right.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 40rem;
    top: 50%;
    transform: translateY(-50%);
  }@media (max-width: 768px) {
  .p-consult__inner {
    padding: 24rem;
  }

  .p-consult__group {
    margin-bottom: 24rem;
  }

  .p-consult__group label,
  .p-consult__label {
    font-size: 16px;
  }

  .p-consult__required {
    font-size: 14px;
    padding: 2px 6px;
  }

  .p-consult__group textarea,
  .p-consult__group input[type="text"],
  .p-consult__group select {
    font-size: 12px;
    padding: 10px 14px;
  }

  .p-consult__group textarea {
    min-height: 100px;
  }

  .p-consult__group textarea::-moz-placeholder {
    font-size: 12px;
    opacity: 1;
  }

  .p-consult__group textarea::placeholder {
    font-size: 12px;
    opacity: 1;
  }

  .p-consult__group input[type="text"]::-moz-placeholder {
    font-size: 12px;
    opacity: 1;
  }

  .p-consult__group input[type="text"]::placeholder {
    font-size: 12px;
    opacity: 1;
  }

  .p-consult__note {
    font-size: 16px;
  }

  .c-btn {
    width: 80%;
    padding: 12px;
    font-size: 16px;
  }

    .c-btn::after {
      right: 20rem;
      width: 16px;
      height: 16px;
    }
}.wpcf7-list-item {
  margin-left: 0;
}input.wpcf7-form-control.wpcf7-submit.has-spinner {
  border: none;
}/* ===== FOOTER ===== */body:not(.home) .l-footer {
  padding-block: 30rem;
  text-align: right;
  font-size: max(14px, 11px);
  color: var(--text-sub);
}/* =======================================================
プライバシーポリシー
======================================================= */.p-privacy__contents {
    max-width: 900px;
  }.p-privacy__item + * {
      margin-top: 32rem;
    }.p-privacy h2 + * {
      margin-top: 24rem;
    }/* =======================================================
みんなの声
======================================================= */.p-voice__contents {
    max-width: 800px;
    margin-inline: auto;
    padding-block: calc(var(--home-rem) * 100) calc(var(--home-rem) * 60);
  }.p-voice__contents * + * {
      margin-top: 48px;
    }.p-voice__title {
    font-size: 18px;
  }.p-voice__body p {
    font-size: 16px;
  }/* =======================================================
サンクスページ
======================================================= */@media (min-width: 769px) {
  .p-thanks-page__title {
    text-align: center;
  }
}.p-thanks {
  max-width: 800px;
  margin-inline: auto;
  padding-block: 32px 80px;
}.p-thanks__inner + * {
      margin-top: 48px;
    }.p-thanks__button {
    text-align: center;
  }/* 送信後メッセージ */.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7-not-valid-tip {
  border: none;
  color: #dc3232;
  font-size: 14px;
}.wpcf7 form.sent .wpcf7-response-output {
  color: var(--c-gray2);
  border: none;
}
