@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) {
  /*
  * 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:-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;
}/* =======================================================
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;
}/* breakpoint基準値
	-------------------------------------------------------- */@media (min-width: 769px) {
  :root {
    --vw-base: 1440;
    --vh-base: 900;
  }
}@media (max-width: 768px) {
  :root {
    --vw-base: 375;
    --vh-base: 812;
  }
}/* base styles
	-------------------------------------------------------- *//* トップ（body.home がある）＝ vh基準 */html:has(body.home) {
  --page-rem: calc(100 / var(--vh-base) * 1dvh);
}/* それ以外 ＝ vw基準 */html:not(:has(body.home)) {
  --page-rem: calc(100 / var(--vw-base) * 1vw);
}html {
  font-size: var(--page-rem);
  margin-top: 0;
}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: min(calc(18 * 100svh / var(--vh-base)), 18px);
}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;
}.-tcy {
  text-combine-upright: all;
}/* =======================================================
home.css
======================================================= *//* l-main layout
  -------------------------------------------------------- */.l-main {
  position: relative;
}.l-main__horizontal {
  height: 100dvh;
}.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;
}.l-main__contents {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
}.l-main__progress {
  position: fixed;
  top: 5.6vh;
  right: 0;
  z-index: 10;
  width: 100svw;
  height: 20px;
  will-change: opacity;
}/* 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: 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;
  }/* 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-image: url("../img/home/bg_mv.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }.p-mv__image p {
      font-size: 36rem;
      letter-spacing: 0.3em;
      line-height: 2;
      writing-mode: vertical-rl;
    }/* フェード */.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;
}@media (min-width: 769px) {.c-scroll {
    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: 22px;
    font-weight: 400;
    line-height: 1;
  }/* catch-copy
  -------------------------------------------------------- */.c-catch-copy {
  position: fixed;
  top: 60rem;
  right: 56rem;
  writing-mode: vertical-lr;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.2s;
  opacity: 0;
}.c-catch-copy.is-show {
  opacity: 1;
}/* =======================================================
home_skip
======================================================= */.c-skip {
  position: fixed;
  bottom: 60rem;
  right: 56rem;
  font-size: 22rem;
  color: var(--c-gray2);
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.2s;
  opacity: 0;
}.c-skip.is-show {
  opacity: 1;
}/* =======================================================
home_intro
======================================================= */.p-home-intro {
  display: flex;
  flex-direction: row-reverse;
}.p-home-intro__contents {
    display: flex;
    flex-direction: row-reverse;
  }.p-home-intro__detail {
    display: flex;
    flex-direction: row-reverse;
    gap: 34rem;
  }.p-home-intro__detail-box {
    display: flex;
    flex-direction: row-reverse;
    padding-block: 202rem 60rem;
  }.p-home-intro__detail-image img {
      width: auto;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
    }.p-home-intro__contents-1 {
  /* background-color: #fff5fb; */
  background-color: transparent;
}.p-home-intro__contents-1 .p-home-intro__detail {
    padding-inline: 138rem 176rem;
  }.p-home-intro__contents-2 {
  background-color: #f0f9fe;
}.p-home-intro__contents-2 .p-home-intro__detail {
    padding-inline: 150rem 152rem;
  }.p-home-intro__contents-3 {
  background-color: #c7cacc;
}.p-home-intro__contents-3 .p-home-intro__detail {
    padding-inline: 145rem 154rem;
  }.p-home-intro__contents-4 {
  background-color: #f3efe7;
}.p-home-intro__contents-4 .p-home-intro__detail {
    padding-inline: 144rem 150rem;
  }.p-home-intro__contents-4 .p-home-intro__detail-image {
    margin-block: 181rem;
  }/* interval
  -------------------------------------------------------- */.p-home__interval-1,
.p-home__interval-2 {
  width: 100vw;
  height: 100svh;
  overflow: hidden;
  background: #f3efe7;
}.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-1 {
  background: #f3efe7;
}.p-home__interval-2,
.p-home__interval-3 {
  background: var(--c-base);
}.p-home__interval-3 {
  width: 716rem;
  height: 100svh;
}.p-home__interval-3 img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
  }/* =======================================================
section 共通
======================================================= */.c-section {
  position: relative;
}.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);
  }.c-section__contents-first .c-section__item {
      gap: 146rem;
    }.c-section__item {
    display: flex;
    flex-direction: row-reverse;
    padding-block: 200rem 60rem;
  }.c-section__title {
    font-size: 156rem;
    font-weight: normal;
    color: var(--c-gray2);
    line-height: 1;
    letter-spacing: 0.05em;
  }.c-section__subtitle {
    position: relative;
    font-size: 26rem;
    line-height: 2.3;
    padding-bottom: 36rem;
  }.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 {
    display: flex;
    flex-direction: row-reverse;
    gap: 42rem;
    z-index: 1;
  }.c-section__headline {
    margin-top: -26rem;
    padding-top: 26rem;
    position: relative;
  }/* border-top: 1px solid var(--c-gray2); */.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: 26rem;
    }.c-section__link {
    padding-inline: 100rem;
  }/* height: fit-content; */.c-section__link .c-section__item {
      gap: 52rem;
    }/* page link
  -------------------------------------------------------- */.c-page-link {
  display: grid;
  justify-items: center;
  justify-content: center;
  gap: 14rem;
  padding: 37rem 26rem 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;
}.c-page-link__text {
    writing-mode: vertical-lr;
    line-height: 1;
  }.c-page-link::after {
    content: "←";
    display: block;
    width: 100%;
    height: auto;
    font-size: 20rem;
    text-align: center;
  }/* article
    -------------------------------------------------------- */.c-home-article {
  padding-top: 80rem;
}.c-home-article li {
    display: grid;
    gap: 20rem;
  }.c-home-article__thumbnail {
    width: 512rem;
    height: 340rem;
    background-color: #eee;
  }.c-home-article__title {
    font-size: 20rem;
  }/* =======================================================
  home_ISSUE
  ======================================================= */.p-home-issue::after {
    width: 748rem;
    height: 480rem;
    background-image: url(../img/home/bg_home_issue.png);
    background-position: bottom right;
    bottom: 0;
    right: 0;
  }.p-home-issue__subtitle {
    padding-bottom: 44rem;
  }.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: 471rem;
    aspect-ratio: 1;
  }.p-home-issue__graph {
    width: 423rem;
  }.p-home-issue__contents-1 {
  padding-inline: 145rem 271rem;
}.p-home-issue__contents-2 {
  padding-inline: 102rem 125rem;
}.p-home-issue__contents-2 .p-home-issue__item {
    gap: 106rem;
  }.p-home-issue__contents-3 {
  padding-inline: 97rem;
}.p-home-issue__contents-4 {
  padding-inline: 90rem 100rem;
}.p-home-issue__contents-4 .p-home-issue__item {
    gap: 94rem;
  }/* =======================================================
home_IDEA
======================================================= */.p-home-idea::after {
    width: 1142rem;
    height: 546rem;
    background-image: url(../img/home/bg_home_idea.png);
    background-position: top right;
    top: 0;
    right: 0;
  }.p-home-idea__img-flow {
    width: 883rem;
    height: 560rem;
    margin-top: -22rem;
  }.p-home-idea__contents-1 {
  padding-inline: 142rem 250rem;
}.p-home-idea__contents-2 {
  padding-inline: 100rem;
}.p-home-idea__contents-2 .p-home-idea__item {
    gap: 112rem;
  }/* =======================================================
home_WHITE PAPER
======================================================= */.p-home-whitepaper {
  position: relative;
}.p-home-whitepaper__contents {
    padding-inline: 100rem 200rem;
    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: 120rem;
    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: 100rem 200rem;
  gap: 134rem;
}/* =======================================================
home_ACTION
======================================================= */.p-home-action {
  position: relative;
}.p-home-action::after {
    width: 962rem;
    height: 480rem;
    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: 10rem;
    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);
    /* display: grid;
    align-content: space-between;
    justify-content: center; */
    /* padding: 200rem 45rem 296rem; */
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }/* &::after {
      content: "←";
      display: block;
      width: 100%;
      height: auto;
      font-size: 20rem;
      text-align: center;
      color: var(--c-white);
    } */.p-home-action-menu__lists-item a {
      display: grid;
      align-content: space-between;
      justify-content: center;
      padding: 200rem 45rem 296rem;
      width: 100%;
      height: 100%;
      font-size: 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: 20rem;
        text-align: center;
        color: var(--c-white);
      }.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;
}.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;
  }.p-home-impact__item {
    z-index: 1;
  }/* =======================================================
home_footer
======================================================= */.home .l-footer__container {
    padding: 200rem 148rem 35rem;
    height: 100%;
  }.home .l-footer__inner {
    display: grid;
    align-content: space-between;
    justify-items: center;
    height: 100%;
  }.home .l-footer__info {
    display: grid;
    gap: 46rem;
  }.home .l-footer__bottom {
    display: grid;
    justify-items: center;
    gap: 46rem;
  }.home .l-footer__back-to-top {
    display: grid;
    align-content: center;
    justify-items: center;
    width: 97rem;
    aspect-ratio: 1;
    border-radius: 9999px;
    background-color: var(--c-white);
    padding-top: 10rem;
    font-size: 16rem;
    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: 20rem;
      text-align: center;
    }.home .l-footer__copyright {
    font-size: 16rem;
  }/* グラデーション *//* どちらも同じ変数で背景を塗る */#jsMvOverlay,
.p-home-intro__contents-1 {
  background: var(--mv-bg, transparent);
}/* 継ぎ目が出やすい場合の保険（必要なら） */#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;
}
