@charset "UTF-8";
/*! kiso.css v1.2.2 | MIT License | https://github.com/tak-dcxi/kiso.css */
/* ======================================================
//  MARK: Universal
// ====================================================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
*,
::before,
::after {
  /*
  * Includes `padding` and `border` in the element's specified dimensions.
  * It is highly recommended to set `box-sizing: border-box;` by default, as it makes styling much easier, especially when specifying `width: 100%;`.
  */
  box-sizing: border-box;
}

/* ======================================================
//  MARK: Document and Body Elements
// ====================================================== */
:where(:root) {
  /* In Safari, if `font-family` is not specified, a serif font is applied by default, so `sans-serif` is set as the default here. */
  font-family: sans-serif;
  /*
  * For accessibility, it is recommended to set the `line-height` to at least 1.5 times the text size within paragraphs.
  * @see https://waic.jp/translations/WCAG21/#visual-presentation
  */
  line-height: 1.5;
  /* Remove space when punctuation marks are adjacent, and also remove leading spaces in a line. */
  text-spacing-trim: trim-start;
  /* Improves readability by inserting a small space between Japanese and alphanumeric characters. */
  text-autospace: normal;
  /* Prevents misreading by applying strict line-breaking rules. */
  line-break: strict;
  /* Wraps English words mid-word. Specifying `anywhere` also prevents content from overflowing in layouts like `flex` or `grid`. */
  overflow-wrap: anywhere;
  /*
  * Mobile browsers have an algorithm that automatically adjusts font sizes to prevent text from becoming too small.
  * This controls the auto-adjustment feature to prevent unwanted resizing.
  */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* Prevents layout shift caused by the appearance or disappearance of the scrollbar. */
  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(h1, h2, h3, h4, h5, h6) {
  /* 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;
}

/* ======================================================
//  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, var):lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

: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;
  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:any-link) {
  /* The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: unset;
  /*
  * 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;
}

/* ======================================================
//  MARK: Embedded content
// ====================================================== */
:where(img, svg, picture, video, canvas, model, audio, iframe, embed, object) {
  /* Automatically adjust block size based on content. */
  block-size: auto;
  /* 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(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) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}

/* ======================================================
//  MARK: Forms
// ====================================================== */
:where(button, input, select, textarea),
::file-selector-button {
  /*
  * These elements are often styled with a border, so a `1px` border is applied by default for consistency.
  * This ensures readability even for unstyled elements.
  * When resetting, it's recommended to use `border-color: transparent` instead of `border: none` to account for forced color modes.
  */
  border-width: 1px;
  border-style: solid;
  /* These styles specified in the UA stylesheet are often unnecessary, so they are reset to allow for inheritance. */
  border-color: unset;
  border-radius: unset;
  color: unset;
  font: unset;
  letter-spacing: unset;
  text-align: unset;
}

:where(input:is([type=radio i], [type=checkbox i])) {
  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}

:where(input[type=file i]) {
  /* The `border` is often unnecessary, so it is reset here. */
  border: unset;
}

:where(input[type=search i]) {
  /* Remove the rounded corners of search inputs on macOS and normalize the background color. */
  -webkit-appearance: textfield;
}

@supports (-webkit-touch-callout: none) {
  :where(input[type=search i]) {
    /* normalize the background color on iOS. */
    background-color: Canvas;
  }
}
:where(input:is([type=tel i],
[type=url i],
[type=email i],
[type=number i]):not(:placeholder-shown)) {
  /*
  * Certain input types need to maintain left alignment even in right-to-left (RTL) languages.
  * However, this only applies when the value is not empty, as the placeholder should be right-aligned.
  * @see https://rtlstyling.com/posts/rtl-styling#form-inputs
  */
  direction: ltr;
}

:where(textarea) {
  /* The `margin-block` specified in Firefox's UA stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
  /* Allows vertical resizing for `<textarea>` elements. */
  resize: block;
}

:where(input:not([type=button i], [type=submit i], [type=reset i]),
textarea,
[contenteditable]) {
  /* Set to `no-autospace` because `text-autospace` can insert spaces during input, potentially causing erratic behavior. */
  text-autospace: no-autospace;
}

:where(button,
input:is([type=button i], [type=submit i], [type=reset i])),
::file-selector-button {
  /* The `background-color` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  background-color: unset;
}

:where(button,
input:is([type=button i], [type=submit i], [type=reset i]),
[role=tab i],
[role=button i],
[role=option i]),
::file-selector-button {
  /*
  * On iOS, double-tapping a button can cause zooming, which harms usability.
  * `touch-action: manipulation` is specified to disable zooming on double-tap.
  * Third-party plugins such as Swiper sometimes use div elements with these roles as buttons, since double-tapping a div can still trigger zooming, it's advisable to specify this property.
  */
  touch-action: manipulation;
}

:where(button:enabled,
label[for],
select:enabled,
input:is([type=button i],
[type=submit i],
[type=reset i],
[type=radio i],
[type=checkbox i]):enabled,
[role=tab i],
[role=button i],
[role=option i]),
:where(:enabled)::file-selector-button {
  /* Indicate clickable elements with a pointer cursor. */
  cursor: pointer;
}

:where(fieldset) {
  /*
  * Prevent fieldset from causing overflow.
  * Reset the default `min-inline-size: min-content` to prevent children from stretching fieldset.
  * @see https://github.com/twbs/bootstrap/issues/12359
  */
  min-inline-size: 0;
  /* The following default styles are often unnecessary, so they are reset. */
  margin-inline: unset;
  padding: unset;
  border: unset;
}

:where(legend) {
  /* The default `padding-inline` is often unnecessary, so it is reset. */
  padding-inline: unset;
}

:where(progress) {
  /* Resets the vertical alignment of the `<progress>` element to its initial value. */
  vertical-align: unset;
}

::placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}

/* ======================================================
//  MARK: Interactive elements
// ====================================================== */
:where(summary) {
  /* The default triangle marker is often unnecessary, so it is disabled. */
  list-style-type: "";
  /* Changing the cursor to a pointer clarifies the clickability of the element. */
  cursor: pointer;
}

:where(summary)::-webkit-details-marker {
  /* In Safari versions earlier than 18.4 (released in April 2025), a triangle icon is displayed using the -webkit-details-marker CSS pseudo-element, so it should be removed. */
  display: none;
}

:where(dialog, [popover]) {
  /*
  * When these fixed-position elements are scrolled, preventing scroll chaining on the underlying page and bounce effects on mobile improves usability.
  * Disabling block-direction scroll chaining is recommended.
  */
  overscroll-behavior-block: contain;
  /* The following default styles are often unnecessary, so they are reset. */
  padding: unset;
  border: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  /*
  * These elements can be easily displayed by explicitly setting their `display` property.
  * To prevent them from appearing when not in an open state, they are forcibly hidden.
  */
  display: none !important;
}

:where(dialog) {
  /*
  * The max width and height of a `<dialog>` element are typically determined by the design.
  * These UA stylesheet properties are reset as they can be obstructive, especially when trying to make the dialog full-screen.
  */
  max-inline-size: unset;
  max-block-size: unset;
}

:where(dialog)::backdrop {
  /* Normalize the background color of the `::backdrop` element. */
  background-color: oklch(0% 0 0deg/30%);
}

:where([popover]) {
  /*
  * While the UA stylesheet's `margin` for `<dialog>` elements is useful for centering with `inset: 0`,
  * but `margin` for `popover` elements is often obstructive as they frequently use Anchor Positioning.
  */
  margin: unset;
}

/* ======================================================
//  MARK: Focus Styles
// ====================================================== */
:where(:focus-visible) {
  /* Add space between the content and the focus outline. */
  outline-offset: 3px;
}

[tabindex="-1"]:focus {
  /* Prevent programmatically focused elements from displaying an outline unless they are naturally focusable. */
  outline: none !important;
}

/* ======================================================
//  MARK: Misc
// ====================================================== */
:where(:disabled, [aria-disabled=true i]) {
  /* Display the default cursor on disabled elements to reflect their non-interactive state. */
  cursor: default;
}

[hidden]:not([hidden=until-found i]) {
  /* Ensure that elements intended to be hidden are not displayed, improving clarity and layout control. */
  display: none !important;
}

/* mq.scss（シンプル版：lvw() の時点で「上限px固定」まで含める） */
/* SP: 375基準 */
.for-sp {
  display: none !important;
}
@media (max-width: calc(600px - 0.02px)) {
  .for-sp {
    display: block !important;
  }
}

.for-pc {
  display: block !important;
}
@media (max-width: calc(600px - 0.02px)) {
  .for-pc {
    display: none !important;
  }
}

/* Noto Sans JP 読み込み */
/* デフォルト：Noto Sans JP */
html, body {
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}

/* 英字用：Helvetica 優先 */
.ff-en {
  font-family: "Helvetica Neue", Helvetica, Arial, "Noto Sans JP", sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 4.2666666667vw;
  line-height: 1.5em;
  background-color: #F2F2F2;
}
@media (min-width: 600px) {
  html {
    font-size: clamp(12px, 1.1428571429vw, 16px);
  }
}

img {
  width: 100%;
}

table {
  width: 100%;
}

.l-bg--dark {
  background-color: #2B2B2B;
}
.l-bg--light {
  background-color: #F2F2F2;
}

.l-text--dark {
  color: #2B2B2B;
}
.l-text--light {
  color: #fff;
}

.l-container {
  max-width: 1000px;
  margin: 0 auto;
  width: 90%;
}

.c-headding--h1 {
  font-size: 10.6666666667vw;
  line-height: 1.5em;
}
@media (min-width: 600px) {
  .c-headding--h1 {
    font-size: clamp(60px, 5.7142857143vw, 80px);
  }
}
.c-headding--h2 {
  font-size: 8vw;
  line-height: 1.5em;
}
@media (min-width: 600px) {
  .c-headding--h2 {
    font-size: clamp(30px, 2.8571428571vw, 40px);
  }
}
.c-headding--h3 {
  font-size: 6.4vw;
  line-height: 1.5em;
}
@media (min-width: 600px) {
  .c-headding--h3 {
    font-size: clamp(24px, 2.2857142857vw, 32px);
  }
}

.c-section {
  padding: 21.3333333333vw 0;
}
@media (min-width: 600px) {
  .c-section {
    padding: clamp(105px, 10vw, 140px) 0;
  }
}
.c-section__row-text {
  margin-top: 16vw;
}
@media (min-width: 600px) {
  .c-section__row-text {
    margin-top: clamp(75px, 7.1428571429vw, 100px);
  }
}
@media (min-width: 600px) {
  .c-section__row-content {
    display: grid;
    grid-template-columns: 1fr clamp(450px, 42.8571428571vw, 600px);
  }
}
.c-section__title {
  color: currentColor;
}
.c-section__title--en {
  font-family: "Helvetica Neue", Helvetica, Arial, "Noto Sans JP", sans-serif;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1em;
  font-size: 1rem;
  /* span全体を下から出すための“隠し” */
  overflow: hidden;
  margin-bottom: 6.4vw;
}
@media (min-width: 600px) {
  .c-section__title--en {
    margin-bottom: clamp(60px, 5.7142857143vw, 80px);
  }
}
.c-section__title--en > span {
  display: inline-block;
  will-change: transform, opacity;
}
.c-section__title--en .c-section__title-bar {
  display: block;
  width: 5rem; /* デフォルト長さ */
  height: 1px;
  background: currentColor;
  transform-origin: left center;
  transform: scaleX(0); /* 初期0 */
  will-change: transform;
}

.c-circle-arrow {
  display: block;
  width: 13.3333333333vw;
  height: 13.3333333333vw;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  transition: 0.3s;
}
@media (min-width: 600px) {
  .c-circle-arrow {
    font-size: 2rem;
    width: clamp(66px, 6.2857142857vw, 88px);
    height: clamp(66px, 6.2857142857vw, 88px);
  }
}

a:hover .c-circle-arrow {
  background: #2B2B2B;
  color: #fff;
}

.c-header {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 100;
  color: #fff;
}
.c-header__inner {
  position: relative;
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 1rem 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 600px) {
  .c-header__inner {
    padding: 2rem 0 1rem;
  }
}
.c-header .c-logo {
  display: block;
  width: 46.4vw;
  transition: 0.3s;
}
@media (min-width: 600px) {
  .c-header .c-logo {
    width: clamp(130.5px, 12.4285714286vw, 174px);
  }
}
.c-header__menu {
  font-family: "Helvetica Neue", Helvetica, Arial, "Noto Sans JP", sans-serif;
  display: none;
  gap: 2rem;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 1200px) {
  .c-header__menu {
    gap: 3rem;
  }
}
@media (min-width: 600px) {
  .c-header__menu {
    display: flex;
  }
}
.c-header__menu li {
  padding: 0;
  margin: 0;
}
.c-header__menu li a {
  display: block;
  padding: 0.5rem 0.5rem;
  color: #fff;
  transition: 0.3s;
}
.c-header__menu li a::after {
  transition: 0.3s;
  width: 100%;
  height: 1px;
  background: currentColor;
  display: block;
  content: "";
  margin: 0.2rem auto 0;
  transform-origin: left;
  transform: scaleX(0);
}

/* どれかにhoverしたら、hover中以外を薄くする */
.c-header__menu:hover a {
  opacity: 0.35;
}

.c-header__menu:hover a:hover {
  opacity: 1;
}
.c-header__menu:hover a:hover::after {
  transform: scale(1);
}

.c-header.c-header--fixed {
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* ↓これ消す（JSで動かす） */
  /* transform: translateY(-110%); */
  /* opacity: 0; */
  pointer-events: none;
}
.c-header.c-header--fixed.is-text-dark {
  color: #2b2b2b;
}
.c-header.c-header--fixed.is-text-dark li a {
  color: #2b2b2b;
}
.c-header.c-header--fixed.is-text-dark .c-logo {
  filter: invert(1);
}

.c-header.c-header--fixed.is-active {
  pointer-events: auto;
}

.c-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: 0.3s;
}

.c-hamburger {
  position: fixed;
  right: 5%;
  top: 0.8rem;
  width: 8.5333333333vw;
  height: 8.5333333333vw;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  z-index: 1001;
  color: #fff;
}
@media (min-width: 600px) {
  .c-hamburger {
    display: none;
  }
}
.c-hamburger.is-text-dark {
  color: #2b2b2b;
}
.c-hamburger.is-open {
  /* 1本目と3本目を回して×に、2本目は消す */
}
.c-hamburger.is-open span {
  background-color: #fff;
}
.c-hamburger.is-open span:nth-child(1) {
  transform: translateY(10px) rotate(225deg);
}
.c-hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.c-hamburger.is-open span:nth-child(3) {
  transform: translateY(-10px) rotate(-225deg);
}

/* 例：開閉用（最低限） */
.c-modal-menu {
  visibility: hidden;
  opacity: 0;
}

.c-modal-menu.is-open {
  visibility: visible;
  opacity: 1;
}

.c-modal-menu {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 1000;
  transition: 0.3s;
  min-height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-modal-menu__menu ul {
  margin: 0 auto;
  padding: 0;
  max-width: 80%;
}
.c-modal-menu__menu li {
  padding: 0em 0;
}
.c-modal-menu__menu a {
  color: #fff;
  padding: 1em;
  text-align: center;
  display: block;
  font-size: 5.3333333333vw;
}

/* =========================
  共通背景（FV〜ABOUTで共有）
========================= */
.p-bg-wrap {
  position: relative;
}

/* =========================
   FV Background (sticky)
========================= */
.p-bg-wrap__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
}

/* FV base (always visible): use CSS background as "poster" */
.p-bg-wrap__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
  background-size: cover;
  background-position: left bottom;
}
.p-bg-wrap__bg__grad {
  background: transparent;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  height: 30vh;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 100;
}

/* Video overlays the background after it becomes ready */
.p-bg-wrap__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s;
}

.p-bg-wrap__bg.is-video-ready .p-bg-wrap__video {
  opacity: 1;
}

.p-fv,
.p-about {
  position: relative;
  z-index: 1;
}

.p-fv {
  overflow: hidden;
}
.p-fv__scroll {
  position: absolute;
  top: 100vh;
  left: 50%;
  transform: translateY(-100%) translateX(-50%);
  z-index: 10;
  padding: 0 2rem;
  color: #fff;
  text-align: center;
  width: fit-content;
  font-size: 0.9rem;
  transition: 0.3s;
}
.p-fv__scroll::after {
  content: "";
  display: block;
  width: 3px;
  height: 5rem;
  margin: 10px auto 0;
  transition: 0.3s;
  /* ベース線（薄め） */
  background-color: rgba(255, 255, 255, 0.25);
  /* 動く光（下→上） */
  background-image: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, white 45%, white 55%, rgba(255, 255, 255, 0) 100%);
  background-size: 1px 140%;
  background-repeat: no-repeat;
  background-position: 0 160%;
  animation: fvScrollLineUp 1.2s ease-in-out infinite;
}
.p-fv__scroll:hover {
  transform: translateX(-50%) translateY(-100%);
}
@keyframes fvScrollLineUp {
  0% {
    background-position: 0 160%;
    opacity: 0.3;
  }
  35% {
    opacity: 1;
  }
  100% {
    background-position: 0 -60%;
    opacity: 0.3;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-fv__scroll::after {
    animation: none !important;
  }
}
.js-fv-zoomout {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.c-mask--dust {
  position: absolute; /* ✅ fixedやめる */
  left: 0;
  right: 0;
  bottom: 0; /* ✅ stickyの下端基準 */
  height: var(--about-h, 0px);
  z-index: 2;
  pointer-events: none;
  opacity: 0; /* GSAPで上げる */
}

/* 上=0 → 50%=1 の“見える量”グラデ（opacityグラデじゃなくmaskで） */
.c-mask--dust {
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 50%, rgb(0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 50%, rgb(0, 0, 0) 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

/* ノイズ本体（暗め） */
.c-mask--dust::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  mix-blend-mode: screen;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%27300%27%20height%3D%27300%27%20viewBox%3D%270%200%20300%20300%27%3E%3Cfilter%20id%3D%27n%27%3E%3CfeTurbulence%20type%3D%27fractalNoise%27%20baseFrequency%3D%270.35%27%20numOctaves%3D%275%27%20stitchTiles%3D%27stitch%27/%3E%3CfeColorMatrix%20type%3D%27matrix%27%20values%3D%273%200%200%200%20-1%200%203%200%200%20-1%200%200%203%200%20-1%200%200%200%201%200%27/%3E%3C/filter%3E%3Crect%20width%3D%27300%27%20height%3D%27300%27%20filter%3D%27url(%23n)%27/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%27300%27%20height%3D%27300%27%20viewBox%3D%270%200%20300%20300%27%3E%3Cfilter%20id%3D%27n%27%3E%3CfeTurbulence%20type%3D%27fractalNoise%27%20baseFrequency%3D%270.35%27%20numOctaves%3D%275%27%20stitchTiles%3D%27stitch%27/%3E%3CfeColorMatrix%20type%3D%27matrix%27%20values%3D%273%200%200%200%20-1%200%203%200%200%20-1%200%200%203%200%20-1%200%200%200%201%200%27/%3E%3C/filter%3E%3Crect%20width%3D%27300%27%20height%3D%27300%27%20filter%3D%27url(%23n)%27/%3E%3C/svg%3E");
  -webkit-mask-repeat: repeat;
  mask-repeat: repeat;
  -webkit-mask-size: 400px 400px;
  mask-size: 400px 400px;
}

.c-mask--dust::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(112, 112, 112, 0.5) 0%, rgba(112, 112, 112, 0.2) 100%);
}

.p-about__text {
  margin: 10.6666666667vw 0 0;
}
@media (min-width: 600px) {
  .p-about__text {
    margin: clamp(45px, 4.2857142857vw, 60px) 0 0;
  }
}
.p-about__text p {
  line-height: 2.5em;
}

.p-company table {
  width: 100%;
}
.p-company table th {
  min-width: 29.3333333333vw;
}
@media (min-width: 600px) {
  .p-company table th {
    min-width: clamp(105px, 10vw, 140px);
  }
}
.p-company table th, .p-company table td {
  border-bottom: 1px solid currentColor;
  padding: 1em 0;
  font-size: 1rem;
}
.p-company table tr:last-child th, .p-company table tr:last-child td {
  border: none;
}

.p-recruit__list {
  padding: 0;
  margin: 16vw 0 0;
  display: grid;
}
@media (min-width: 600px) {
  .p-recruit__list {
    margin: clamp(75px, 7.1428571429vw, 100px) 0 0;
  }
}
.p-recruit__list__item {
  padding: 2.5rem 0;
}
.p-recruit__list__item:not(:last-child) {
  border-bottom: 1px solid currentColor;
}
.p-recruit__list__item:first-child {
  padding-top: 0;
}
.p-recruit__list__item a {
  display: flex;
  gap: 1rem;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: 0.3s;
}
.p-recruit__list__item a:hover {
  transform: translateY(-0.5rem);
}
.p-recruit__list__item__text {
  flex: 1;
}
.p-recruit__list__item h3 {
  margin-bottom: 1rem;
}

.p-photo {
  position: relative;
  background: #2b2b2b;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 600px) {
  .p-photo {
    min-height: 100vh;
  }
}
.p-photo::before {
  display: block;
  content: "";
  position: absolute;
  background: #F2F2F2;
  bottom: 0;
  height: 30%;
  left: 0;
  width: 100%;
  z-index: -1;
}
@media (min-width: 600px) {
  .p-photo::before {
    height: 50%;
  }
}
.p-photo__inner {
  max-width: clamp(624px, 59.4285714286vw, 832px);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}
@media (min-width: 600px) {
  .p-photo__inner {
    grid-template-columns: 1fr 1fr;
  }
}
.p-photo__item {
  overflow: hidden;
  aspect-ratio: 4/5;
  border-radius: 6.4vw;
  width: 60%;
  background: #fff;
}
@media (min-width: 600px) {
  .p-photo__item {
    width: 100%;
  }
}
@media (min-width: 600px) {
  .p-photo__item:first-child {
    margin-top: clamp(150px, 14.2857142857vw, 200px);
  }
}
.p-photo__item:last-child {
  margin-left: auto;
}
@media (min-width: 600px) {
  .p-photo__item:last-child {
    margin-left: 0;
  }
}
@media (min-width: 600px) {
  .p-photo__item {
    border-radius: clamp(18px, 1.7142857143vw, 24px);
  }
}
.p-photo__item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.p-hr-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.p-hr-img img {
  width: 100%;
  height: 120%; /* ちょい大きめにして“動かす余白”作る */
  object-fit: cover;
  display: block;
  will-change: transform;
  transform: translateY(0); /* GSAPで動かす */
}

.p-contact form span.is-required {
  background: #2B2B2B;
  color: #fff;
  border-radius: 4px;
  display: inline-block;
  font-size: 3.7333333333vw;
  padding: 0 0.5em;
  float: right;
}
@media (min-width: 600px) {
  .p-contact form span.is-required {
    font-size: clamp(10.5px, 1vw, 14px);
  }
}
.p-contact form input[type=text], .p-contact form input[type=email], .p-contact form input[type=tel], .p-contact form textarea {
  width: 100%;
  border-radius: 4px;
  padding: 0.5em;
}
.p-contact form button[type=submit] {
  background: #2B2B2B;
  color: #fff;
  border-radius: 0.5rem;
  display: block;
  border: 1px solid #2B2B2B;
  text-align: center;
  width: 100%;
  margin: 2rem auto 0;
  padding: 0.8rem 0;
  transition: 0.3s;
  font-weight: bold;
}
@media (min-width: 600px) {
  .p-contact form button[type=submit] {
    width: clamp(187.5px, 17.8571428571vw, 250px);
  }
}
.p-contact form button[type=submit]:hover {
  background: #fff;
  color: #2B2B2B;
}
.p-contact table {
  display: block;
}
.p-contact table tbody {
  display: grid;
}
.p-contact table tr {
  display: grid;
  padding: 1em 0;
  gap: 1rem;
}
.p-contact table tr.is-aligncenter {
  align-items: center;
}
@media (min-width: 600px) {
  .p-contact table tr {
    grid-template-columns: 26.6666666667vw 1fr;
    grid-template-columns: clamp(150px, 14.2857142857vw, 200px) 1fr;
  }
}
.p-contact table th, .p-contact table td {
  width: 100%;
  display: block;
}
@media (min-width: 600px) {
  .p-contact table th, .p-contact table td {
    display: table-cell;
  }
}

.p-contact__thanks {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.p-contact__thanks.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* フォーム非表示（必要ならdisplay:noneでもOKだけど、ここはフェード用） */
.p-contact__form.is-hide {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  height: 0;
  overflow: hidden;
  margin: 0;
}

.p-contact__thanksTitle {
  margin-bottom: 1em;
}

.c-icon-in {
  position: fixed;
  right: 4.2666666667vw;
  bottom: 4.2666666667vw;
  display: block;
  width: 16vw;
  z-index: 1100;
  transition: 0.3s;
}
@media (min-width: 600px) {
  .c-icon-in {
    bottom: clamp(22.5px, 2.1428571429vw, 30px);
    right: clamp(22.5px, 2.1428571429vw, 30px);
    width: clamp(60px, 5.7142857143vw, 80px);
  }
}
.c-icon-in:hover {
  transform: scale(1.1);
}

.p-instagram__content {
  margin-top: 6.4vw;
}
@media (min-width: 600px) {
  .p-instagram__content {
    margin-top: clamp(60px, 5.7142857143vw, 80px);
  }
}

footer {
  padding: 2rem 0;
}

.p-copyright {
  font-size: 0.8rem;
  text-align: center;
}

.js-split-title {
  display: inline-block;
  overflow: hidden;
  line-height: 1em;
}

.p-instagram .js-split-title {
  padding-bottom: 0.2em;
}

.js-split-title .c-char {
  display: inline-block;
  will-change: transform, opacity;
}

/* ちらつき防止 */
.js-fade-zoom {
  display: block;
  width: 100%;
  height: auto;
  will-change: transform, opacity;
}

/*# sourceMappingURL=style.css.map */
