@charset "UTF-8";
/*! kiso.css v1.2.4 | MIT License | https://github.com/tak-dcxi/kiso.css */
/* ======================================================
//  MARK: Universal
// ====================================================== */
*,
::before,
::after {
  /*
  * Includes `padding` and `border` in the element's specified dimensions.
  * It is highly recommended to set `box-sizing: border-box;` by default, as it makes styling much easier, especially when specifying `width: 100%;`.
  */
  box-sizing: border-box;
}
/* ======================================================
//  MARK: Document and Body Elements
// ====================================================== */
:where(:root) {
  /* In Safari, if `font-family` is not specified, a serif font is applied by default, so `sans-serif` is set as the default here. */
  font-family: sans-serif;

  /*
  * For accessibility, it is recommended to set the `line-height` to at least 1.5 times the text size within paragraphs.
  * @see https://waic.jp/translations/WCAG21/#visual-presentation
  */
  line-height: 1.5;

  /* Remove space when punctuation marks are adjacent, and also remove leading spaces in a line. */
  text-spacing-trim: trim-start;

  /* Improves readability by inserting a small space between Japanese and alphanumeric characters. */
  text-autospace: normal;

  /* Prevents misreading by applying strict line-breaking rules. */
  line-break: strict;

  /* Wraps English words mid-word. Specifying `anywhere` also prevents content from overflowing in layouts like `flex` or `grid`. */
  overflow-wrap: anywhere;

  /*
  * Mobile browsers have an algorithm that automatically adjusts font sizes to prevent text from becoming too small.
  * This controls the auto-adjustment feature to prevent unwanted resizing.
  */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;

  /*
  * Prevents layout shift caused by the appearance or disappearance of the scrollbar.
  * Starting with Chrome 145, specifying `scrollbar-gutter: stable` will cause vw to be calculated without considering the scrollbar, which will also prevent horizontal scrolling.
  */
  scrollbar-gutter: stable;

  /* Suppresses the tap highlight on iOS. */
  -webkit-tap-highlight-color: transparent;
}
:where(body) {
  /*
  * When creating a sticky footer, a minimum height is often required.
  * Setting the `min-block-size` to the dynamic viewport height ensures enough space for the footer.
  */
  min-block-size: 100dvb;

  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}
/* ======================================================
// MARK: Sections
// ------------------------------------------------------ */
:where(:is(h1, h2, h3, h4, h5, h6):lang(en)) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}
:where(h1) {
  /*
  * Adjusts user agent (UA) styles for `h1` elements within sectioning content.
  * This addresses DevTools warnings that appear when `h1` elements nested within sectioning content lack `font-size` and `margin` properties.
  * @see https://html.spec.whatwg.org/#sections-and-headings
  */
  margin-block: 0.67em;
  font-size: 2em;
}
:where(h2, h3, h4, h5, h6) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}
:where(search) {
  /*
  * The `<search>` element is supported from Safari 17.
  * This prevents it from being displayed as an inline element in unsupported environments.
  */
  display: block flow;
}
/* ======================================================
//  MARK: Grouping content
// ====================================================== */
:where(p, blockquote, figure, pre, address, ul, ol, dl, menu) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}
:where(blockquote, figure) {
  /* The `margin-inline` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline: unset;
}
:where(p:lang(en)) {
  /*
  * In English, a single word on the last line is called a "widow" or "orphan" and is considered something to avoid as it makes the text harder to read.
  * Therefore, when lang="en", this prevents the last line from ending with a single word.
  */
  text-wrap: pretty;
}
:where(address:lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}
:where(ul, ol, menu) {
  /* The `padding-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  padding-inline-start: unset;

  /*
  * In Safari, using `list-style: none` prevents screen readers from announcing lists.
  * `list-style-type: ""` is used to hide markers without affecting accessibility.
  * @see https://matuzo.at/blog/2023/removing-list-styles-without-affecting-semantics
  */
  list-style-type: "";
}
:where(dt) {
  /* It is common to display `<dt>` elements in bold, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}
:where(dd) {
  /* The `margin-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline-start: unset;
}
:where(pre) {
  /*
  * Since `text-spacing-trim` can affect spacing in `<pre>` elements even with its initial value, the final rendering may depend on the user's font settings.
  * To ensure consistent alignment, `space-all` is explicitly specified and inheritance is prevented.
  */
  text-spacing-trim: space-all;

  /* Set to `no-autospace` as it can cause misalignment with monospaced fonts. */
  text-autospace: no-autospace;
}
@media print {
  :where(pre) {
    /* Prevent text wrapping in print media. */
    text-wrap-mode: unset;
  }
}
/* ======================================================
//  MARK: Text-level semantics
// ====================================================== */
:where(em:lang(ja)) {
  /* In Japanese, emphasis is commonly represented by bold text, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}
:where(:is(i, cite, em, dfn):lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}
:where(u, s, del, ins) {
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}
:where(code, kbd, samp) {
  /*
  * Set a monospace font family referencing Tailwind.
  * @see https://tailwindcss.com/docs/font-family
  */
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;

  /* Font feature settings can have adverse effects on monospaced fonts, so their values are explicitly set to `initial` to prevent inheritance. */
  font-feature-settings: initial;
  font-variation-settings: initial;

  /* Resets the `font-size` specified in the UA stylesheet to allow inheritance. */
  font-size: unset;

  /*
  * Disables font ligatures for programming fonts (like Fira Code)
  * to prevent character combinations like `=>` from being rendered as a single symbol (e.g., `⇒`).
  */
  font-variant-ligatures: none;
}
:where(abbr[title]) {
  /*
  * The `<abbr>` element with the `title` attribute isn't helpful regarding accessibility because support is inconsistent, and it's only accessible to some users.
  * This rule shows a dotted underline on abbreviations in all browsers (there's a bug in Safari) and changes the cursor.
  * @see https://adrianroselli.com/2024/01/using-abbr-element-with-title-attribute.html
  */
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-inset: auto;
  cursor: help;
}
:where(time) {
  /* Set to `no-autospace` because date notations in typography do not include spaces. */
  text-autospace: no-autospace;
}
@media (forced-colors: active) {
  :where(mark) {
    /*
    * In forced-colors mode, the color of the mark element may not change, which can be problematic. Use system colors in forced-colors mode.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkWHCM
    */
    background-color: Highlight;
    color: HighlightText;
  }
}
@media print {
  :where(mark) {
    /*
    * Not all printers support color, and users might print in grayscale.
    * It's worth adding a non-disruptive style that scales with the text, as an alternative to relying only on background color.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkPrint
    */
    border-width: 1px;
    border-style: dotted;
  }
}
/* ======================================================
//  MARK: Links
// ====================================================== */
:where(a) {
  /*
  * The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance.
  * In Firefox on iOS, the user agent stylesheet’s text color is applied even when the text is not a link.
  * @see https://github.com/darkreader/darkreader/issues/9836
  */
  color: unset;
}
:where(a:any-link) {
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  text-decoration-line: unset;

  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;

  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}
/* ======================================================
//  MARK: Embedded content
// ====================================================== */
:where(img, svg, picture, video, audio, canvas, model, iframe, embed, object) {
  /* Prevents overflow by setting the maximum width to `100%`. */
  max-inline-size: 100%;

  /* Prevents extra space from appearing at the bottom of the element. */
  vertical-align: bottom;
}
:where(img, svg, picture, video, canvas, model, iframe, embed, object) {
  /*
  * Automatically adjust block size based on content.
  * Exclude the <audio> element as it disappears when block-size is auto.
  * @see https://github.com/tak-dcxi/kiso.css/issues/5
  */
  block-size: auto;
}
:where(iframe) {
  /* The `border` specified in the UA stylesheet is often unnecessary, so it is reset. */
  border: unset;
}
/* ======================================================
//  MARK: Tabular data
// ====================================================== */
:where(table) {
  /* Collapse borders for a more refined table design. */
  border-collapse: collapse;
}
:where(caption, th) {
  /* The `text-align` specified in the UA stylesheet is often unnecessary, so it is reset. */
  text-align: unset;
}
:where(caption:lang(en)) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}
/* ======================================================
//  MARK: Forms
// ====================================================== */
:where(button, input, select, textarea),
::file-selector-button {
  /*
  * These elements are often styled with a border, so a `1px` border is applied by default for consistency.
  * This ensures readability even for unstyled elements.
  * When resetting, it's recommended to use `border-color: transparent` instead of `border: none` to account for forced color modes.
  */
  border-width: 1px;
  border-style: solid;

  /* These styles specified in the UA stylesheet are often unnecessary, so they are reset to allow for inheritance. */
  border-color: unset;
  border-radius: unset;
  color: unset;
  font: unset;
  letter-spacing: unset;
  text-align: unset;
}
:where(input:is([type="radio" i], [type="checkbox" i])) {
  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}
:where(input[type="file" i]) {
  /* The `border` is often unnecessary, so it is reset here. */
  border: unset;
}
:where(input[type="search" i]) {
  /* Remove the rounded corners of search inputs on macOS and normalize the background color. */
  -webkit-appearance: textfield;
}
@supports (-webkit-touch-callout: none) {
  :where(input[type="search" i]) {
    /* normalize the background color on iOS. */
    background-color: Canvas;
  }
}
:where(
    input:is(
        [type="tel" i],
        [type="url" i],
        [type="email" i],
        [type="number" i]
      ):not(:placeholder-shown)
  ) {
  /*
  * Certain input types need to maintain left alignment even in right-to-left (RTL) languages.
  * However, this only applies when the value is not empty, as the placeholder should be right-aligned.
  * @see https://rtlstyling.com/posts/rtl-styling#form-inputs
  */
  direction: ltr;
}
:where(textarea) {
  /* The `margin-block` specified in Firefox's UA stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;

  /* Allows vertical resizing for `<textarea>` elements. */
  resize: block;
}
:where(
    input:not([type="button" i], [type="submit" i], [type="reset" i]),
    textarea,
    [contenteditable]
  ) {
  /* Set to `no-autospace` because `text-autospace` can insert spaces during input, potentially causing erratic behavior. */
  text-autospace: no-autospace;
}
:where(
    button,
    input:is([type="button" i], [type="submit" i], [type="reset" i])
  ),
::file-selector-button {
  /* The `background-color` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  background-color: unset;
}
:where(
    button,
    input:is([type="button" i], [type="submit" i], [type="reset" i]),
    [role="tab" i],
    [role="button" i],
    [role="option" i]
  ),
::file-selector-button {
  /*
  * On iOS, double-tapping a button can cause zooming, which harms usability.
  * `touch-action: manipulation` is specified to disable zooming on double-tap.
  * Third-party plugins such as Swiper sometimes use div elements with these roles as buttons, since double-tapping a div can still trigger zooming, it's advisable to specify this property.
  */
  touch-action: manipulation;
}
:where(
    button:enabled,
    label[for],
    select:enabled,
    input:is(
        [type="button" i],
        [type="submit" i],
        [type="reset" i],
        [type="radio" i],
        [type="checkbox" i]
      ):enabled,
    [role="tab" i],
    [role="button" i],
    [role="option" i]
  ),
:where(:enabled)::file-selector-button {
  /* Indicate clickable elements with a pointer cursor. */
  cursor: pointer;
}
:where(fieldset) {
  /*
  * Prevent fieldset from causing overflow.
  * Reset the default `min-inline-size: min-content` to prevent children from stretching fieldset.
  * @see https://github.com/twbs/bootstrap/issues/12359
  */
  min-inline-size: 0;

  /* The following default styles are often unnecessary, so they are reset. */
  margin-inline: unset;
  padding: unset;
  border: unset;
}
:where(legend) {
  /* The default `padding-inline` is often unnecessary, so it is reset. */
  padding-inline: unset;
}
:where(progress) {
  /* Resets the vertical alignment of the `<progress>` element to its initial value. */
  vertical-align: unset;
}
::placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}
/* ======================================================
//  MARK: Interactive elements
// ====================================================== */
:where(summary) {
  /* The default triangle marker is often unnecessary, so it is disabled. */
  list-style-type: "";

  /* Changing the cursor to a pointer clarifies the clickability of the element. */
  cursor: pointer;
}
:where(summary)::-webkit-details-marker {
  /* In Safari versions earlier than 18.4 (released in April 2025), a triangle icon is displayed using the -webkit-details-marker CSS pseudo-element, so it should be removed. */
  display: none;
}
:where(dialog, [popover]) {
  /*
  * When these fixed-position elements are scrolled, preventing scroll chaining on the underlying page and bounce effects on mobile improves usability.
  * Disabling block-direction scroll chaining is recommended.
  */
  overscroll-behavior-block: contain;

  /* The following default styles are often unnecessary, so they are reset. */
  padding: unset;
  border: unset;
}
:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  /*
  * These elements can be easily displayed by explicitly setting their `display` property.
  * To prevent them from appearing when not in an open state, they are forcibly hidden.
  */
  display: none !important;
}
:where(dialog) {
  /*
  * The max width and height of a `<dialog>` element are typically determined by the design.
  * These UA stylesheet properties are reset as they can be obstructive, especially when trying to make the dialog full-screen.
  */
  max-inline-size: unset;
  max-block-size: unset;
}
:where(dialog)::backdrop {
  /* Normalize the background color of the `::backdrop` element. */
  background-color: oklch(0% 0 0deg / 30%);
}
:where([popover]) {
  /*
  * While the UA stylesheet's `margin` for `<dialog>` elements is useful for centering with `inset: 0`,
  * but `margin` for `popover` elements is often obstructive as they frequently use Anchor Positioning.
  */
  margin: unset;
}
/* ======================================================
//  MARK: Focus Styles
// ====================================================== */
:where(:focus-visible) {
  /* Add space between the content and the focus outline. */
  outline-offset: 3px;
}
[tabindex="-1"]:focus {
  /* Prevent programmatically focused elements from displaying an outline unless they are naturally focusable. */
  outline: none !important;
}
/* ======================================================
//  MARK: Misc
// ====================================================== */
:where(:disabled, [aria-disabled="true" i]) {
  /* Display the default cursor on disabled elements to reflect their non-interactive state. */
  cursor: default;
}
[hidden]:not([hidden="until-found" i]) {
  /* Ensure that elements intended to be hidden are not displayed, improving clarity and layout control. */
  display: none !important;
}
:where(h1, h2, h3, h4, h5, h6) {
  margin: 0;
}
:where(p) {
  margin: 0;
}
html {
  font-size: 100%;
}
a[href^=tel] {
  text-decoration: none;
}
a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  /* 強調をなくす */
}
a:hover {
  text-decoration: none;
}
img,
svg {
  vertical-align: middle;
}
img {
  width: 100%;
  block-size: 100%;
  object-fit: cover;
}
:where(:any-link, button, [type=button], [type=reset], [type=submit], label[for], select, summary, [role=tab], [role=button]) {
  cursor: pointer;
}
:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}
:focus:not(:focus-visible) {
  outline: none;
}
input[type=text] {
  font-size: 1rem;
  /* = 16px */
}
textarea {
  field-sizing: content;
}
body {
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-size: calc(15 * var(--to-rem));
  font-weight: var(--fw-regular);
  line-height: 1.8;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
}
@property --root-font-size {
  syntax: "<length>";
  inherits: false;
  initial-value: 16px;
}
:root {
  /* inner（実測: メイン内側1120 / 左右ガター160、SP内側327 / 左右24） */
  --inner: calc(1120 * var(--to-rem));
  --inner-sp: calc(327 * var(--to-rem));
  --padding-inner: calc(160 * var(--to-rem));
  --inner-header: calc(1376 * var(--to-rem));
  /* 1440基準デザインの中央寄せ土台（>1440pxワイド対応）
     --stage-w  : デザイン全幅。≤1440px では 1440*(100vw/1440)=100vw ＝見え方不変。
                  >1440px では 1440px 固定。SP帯では max-width:100% 側で 100vw に丸める。
     --wide-gutter: >1440px でデザインを中央に寄せるための左右の余白。≤1440px は 0。
                  full-bleed でない絶対配置要素の inset-inline に加算して中央へ寄せる。 */
  --stage-w: calc(1440 * var(--to-rem));
  --wide-gutter: max(0px, calc((100vw - var(--stage-w)) / 2));
  /* z-index */
  --z-index-menu-modal: 1000;
  --z-index-header: 900;
  --z-index-drawer: 890;
  /* color（Figma実測。Variables未定義のため fill から採取） */
  --color-white: #fff;
  --color-text: #3c3c32;
  --color-footer: #3c3c32;
  --color-black: #000;
  --color-gray: #f0f0f0;
  --color-bg-blue: #dcebf5;
  --color-fv-panel: #bcc8c9;
  --color-panel: #f0ebeb;
  --color-btn-light: #e6e6e1;
  --color-divider: #e0e0df;
  --color-hairline: oklch(from #3c3c32 l c h / 12%);
  --color-line: #c8c8c8;
  --color-mark: #e4f0fa;
  --color-callout-bg: #f3f8fc;
  /* font-weight */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  /* font-family（Poppins=EN/見出し, Zen Kaku Gothic New=JP本文） */
  --base-font-family: "Zen Kaku Gothic New", sans-serif;
  --title-font-family: "Poppins", sans-serif;
  --to-rem: calc(tan(atan2(1px, var(--root-font-size))) * 1rem);
  /* transition duration */
  --duration: 0.3s;
  /* header height */
  --header-height: calc(106 * var(--to-rem));
}
@media (width <= 1080px) {
  :root {
    --to-rem: calc(100vw / 1440);
  }
}
@media (width <= 768px) {
  :root {
    --to-rem: calc(tan(atan2(1px, var(--root-font-size))) * 1rem);
    --padding-inner: calc(24 * var(--to-rem));
  }
}
@media (width <= 375px) {
  :root {
    --to-rem: calc(100vw / 375);
  }
}
@media screen and (width <= 767px) {
  :root {
    --header-height: calc(76 * var(--to-rem));
  }
}
.l-header {
  position: fixed;
  inset-inline: 0;
  inset-block-start: 0;
  z-index: var(--z-index-header);
}
.l-inner {
  max-width: calc(var(--inner) + var(--padding-inner) * 2);
  margin-inline: auto;
  padding-inline: var(--padding-inner);
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: calc(var(--inner-sp) + var(--padding-inner) * 2);
  }
}
.l-main {
  margin-block-start: var(--header-height);
}
.l-stage {
  position: relative;
  width: var(--stage-w);
  max-width: 100%;
  margin-inline: auto;
}
.c-button {
  position: relative;
  display: inline-block;
  padding: calc(14 * var(--to-rem)) calc(60 * var(--to-rem));
  border: calc(1 * var(--to-rem)) solid currentcolor;
  background-color: var(--color-white);
  color: var(--color-black);
  font-size: calc(15 * var(--to-rem));
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.c-button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(20 * var(--to-rem));
  width: calc(8 * var(--to-rem));
  min-block-size: calc(8 * var(--to-rem));
  border-top: calc(2 * var(--to-rem)) solid var(--color-black);
  border-right: calc(2 * var(--to-rem)) solid var(--color-black);
  translate: 0 -50%;
  rotate: 45deg;
  transition: rotate 0.3s, translate 0.3s;
}
@media (any-hover: hover) {
  .c-button:hover::before {
    translate: calc(5 * var(--to-rem)) -50%;
  }
}
.c-button[data-color=black] {
  border-color: var(--color-black);
  background-color: var(--color-black);
  color: var(--color-white);
}
.c-button[data-color=black]::before {
  border-top: calc(2 * var(--to-rem)) solid currentcolor;
  border-right: calc(2 * var(--to-rem)) solid currentcolor;
}
.c-card-slider {
  display: flex;
  gap: calc(40 * var(--to-rem));
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-inline: var(--padding-inner);
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
}
.c-card-slider.is-dragging {
  cursor: grabbing;
}
@media screen and (max-width: 767px) {
  .c-card-slider {
    gap: calc(24 * var(--to-rem));
  }
}
.c-card-slider::-webkit-scrollbar {
  display: none;
}
.c-card-slider__card {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: flex-start;
  width: calc(347 * var(--to-rem));
  color: var(--color-text);
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .c-card-slider__card {
    width: calc(200 * var(--to-rem));
  }
}
@media (any-hover: hover) {
  .c-card-slider__card:hover {
    opacity: 0.9;
  }
}
.c-card-slider__image {
  overflow: hidden;
  width: calc(347 * var(--to-rem));
  aspect-ratio: 1/1;
  margin-block-end: calc(24 * var(--to-rem));
  border-radius: calc(8 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .c-card-slider__image {
    width: calc(200 * var(--to-rem));
  }
}
.c-card-slider__image img {
  width: 100%;
  block-size: 100%;
  object-fit: cover;
}
.c-card-slider__label {
  display: flex;
  gap: calc(8 * var(--to-rem));
  align-items: center;
  margin-block-end: calc(24 * var(--to-rem));
  font-family: var(--title-font-family);
  font-weight: var(--fw-semibold);
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-card-slider__label {
    gap: calc(6 * var(--to-rem));
    margin-block-end: calc(25 * var(--to-rem));
  }
}
.c-card-slider__label-text {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  font-size: calc(11 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .c-card-slider__label-text {
    font-size: calc(8 * var(--to-rem));
  }
}
.c-card-slider__label-num {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  font-size: calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .c-card-slider__label-num {
    font-size: calc(14 * var(--to-rem));
  }
}
.c-card-slider__title {
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
  width: calc(262 * var(--to-rem));
  margin-block-end: calc(38 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .c-card-slider__title {
    gap: calc(12 * var(--to-rem));
    width: calc(142 * var(--to-rem));
    margin-block-end: calc(48 * var(--to-rem));
  }
}
.c-card-slider__title-line {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  padding-block-end: calc(6 * var(--to-rem));
  border-block-end: calc(1 * var(--to-rem)) solid oklch(from var(--color-text) l c h/55%);
  font-family: var(--base-font-family);
  font-feature-settings: "hwid" 1;
  font-size: calc(20 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-card-slider__title-line {
    padding-block-end: calc(5 * var(--to-rem));
    font-size: calc(13 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .c-card-slider__title-line--split {
    display: flex;
    flex-direction: column;
    gap: calc(12 * var(--to-rem));
    padding-block-end: 0;
    border-block-end: none;
  }
}
@media screen and (max-width: 767px) {
  .c-card-slider__title-line--split span {
    text-box-edge: cap alphabetic;
    text-box-trim: trim-both;
    padding-block-end: calc(5 * var(--to-rem));
    border-block-end: calc(1 * var(--to-rem)) solid oklch(from var(--color-text) l c h/55%);
    white-space: nowrap;
  }
}
.c-interview-card {
  position: relative;
  display: block;
  overflow: hidden;
  width: calc(800 * var(--to-rem));
  aspect-ratio: 800/400;
  border-radius: calc(8 * var(--to-rem));
  color: var(--color-text);
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .c-interview-card {
    width: calc(351 * var(--to-rem));
    aspect-ratio: 351/176;
  }
}
@media (any-hover: hover) {
  .c-interview-card:hover {
    opacity: 0.9;
  }
}
.c-interview-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.c-interview-card__image picture {
  display: block;
  width: 100%;
  block-size: 100%;
}
.c-interview-card__image img {
  width: 100%;
  block-size: 100%;
  object-fit: cover;
}
.c-interview-card__text {
  position: absolute;
  inset-block-start: calc(60 * var(--to-rem));
  inset-inline-start: calc(64 * var(--to-rem));
  z-index: 1;
  display: grid;
  grid-template-rows: calc(38 * var(--to-rem)) calc(80 * var(--to-rem)) auto;
  place-items: start;
}
@media screen and (max-width: 767px) {
  .c-interview-card__text {
    inset-block-start: calc(24 * var(--to-rem));
    inset-inline-start: calc(24 * var(--to-rem));
    grid-template-rows: calc(35 * var(--to-rem)) auto;
  }
}
.c-interview-card__label {
  display: flex;
  grid-row: 1;
  gap: calc(8 * var(--to-rem));
  align-items: center;
  font-family: var(--title-font-family);
  font-weight: var(--fw-semibold);
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-interview-card__label {
    gap: calc(6 * var(--to-rem));
  }
}
.c-interview-card__label-text {
  font-size: calc(11 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .c-interview-card__label-text {
    font-size: calc(8 * var(--to-rem));
  }
}
.c-interview-card__label-num {
  font-size: calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .c-interview-card__label-num {
    font-size: calc(14 * var(--to-rem));
  }
}
.c-interview-card__title {
  display: flex;
  grid-row: 2;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
  width: calc(262 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .c-interview-card__title {
    gap: calc(12 * var(--to-rem));
    width: calc(118 * var(--to-rem));
  }
}
.c-interview-card__title-line {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  padding-block-end: calc(6 * var(--to-rem));
  border-block-end: calc(1 * var(--to-rem)) solid oklch(from var(--color-text) l c h/55%);
  font-family: var(--base-font-family);
  font-feature-settings: "hwid" 1;
  font-size: calc(20 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-interview-card__title-line {
    padding-block-end: calc(4 * var(--to-rem));
    font-size: calc(13 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .c-interview-card__title-line--split {
    display: flex;
    flex-direction: column;
    gap: calc(12 * var(--to-rem));
    padding-block-end: 0;
    border-block-end: none;
  }
}
@media screen and (max-width: 767px) {
  .c-interview-card__title-line--split span {
    text-box-edge: cap alphabetic;
    text-box-trim: trim-both;
    padding-block-end: calc(4 * var(--to-rem));
    border-block-end: calc(1 * var(--to-rem)) solid oklch(from var(--color-text) l c h/55%);
    white-space: nowrap;
  }
}
.c-interview-card__name {
  grid-row: 3;
  font-family: var(--title-font-family);
  font-size: calc(11 * var(--to-rem));
  font-weight: var(--fw-semibold);
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-interview-card__name {
    display: none;
  }
}
.c-interview-card__name span {
  font-family: var(--base-font-family);
  font-weight: var(--fw-bold);
}
.c-interview-card__more.c-read-more {
  position: absolute;
  inset-block-end: calc(40 * var(--to-rem));
  inset-inline-end: calc(40 * var(--to-rem));
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-interview-card__more.c-read-more {
    inset-block-end: calc(16 * var(--to-rem));
    inset-inline-end: calc(16 * var(--to-rem));
  }
}
.c-movie-trigger {
  position: absolute;
  inset: 0;
  width: 100%;
  block-size: 100%;
  padding: 0;
  border: 0;
  background-color: transparent;
}
.c-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity var(--duration) ease;
}
.c-modal[hidden] {
  display: none;
}
.c-modal.is-open {
  opacity: 1;
}
.c-modal__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: oklch(from #2a2a24 l c h/74%);
}
.c-modal__player {
  position: relative;
  z-index: 1;
  width: calc(1120 * var(--to-rem));
  aspect-ratio: 1120/625;
}
@media screen and (max-width: 767px) {
  .c-modal__player {
    width: 100%;
  }
}
.c-modal__frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  block-size: 100%;
  background-color: #000;
}
.c-modal__poster,
.c-modal__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  block-size: 100%;
  border: 0;
  object-fit: cover;
}
.c-modal__play {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  width: calc(96 * var(--to-rem));
  min-block-size: calc(96 * var(--to-rem));
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: transparent;
  translate: -50% -50%;
}
.c-modal__play-icon {
  display: none;
}
.c-modal__close {
  position: absolute;
  inset-block-start: calc(81 * var(--to-rem));
  inset-inline-end: calc(160 * var(--to-rem));
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: calc(10 * var(--to-rem));
  align-items: center;
  padding: 0;
  border: 0;
  background-color: transparent;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .c-modal__close {
    inset-block-start: calc(250 * var(--to-rem));
    inset-inline-end: calc(24 * var(--to-rem));
    gap: calc(6 * var(--to-rem));
  }
}
.c-modal__close-mark {
  position: relative;
  width: calc(60 * var(--to-rem));
  min-block-size: calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .c-modal__close-mark {
    width: calc(40 * var(--to-rem));
    min-block-size: calc(14 * var(--to-rem));
  }
}
.c-modal__close-mark::before,
.c-modal__close-mark::after {
  content: "";
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  width: calc(63 * var(--to-rem));
  min-block-size: calc(1 * var(--to-rem));
  background-color: currentcolor;
  translate: -50% -50%;
}
@media screen and (max-width: 767px) {
  .c-modal__close-mark::before,
  .c-modal__close-mark::after {
    width: calc(42 * var(--to-rem));
  }
}
.c-modal__close-mark::before {
  rotate: 18.43deg;
}
.c-modal__close-mark::after {
  rotate: -18.43deg;
}
.c-modal__close-label {
  font-family: var(--title-font-family);
  font-size: calc(13 * var(--to-rem));
  font-weight: var(--fw-semibold);
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-modal__close-label {
    font-size: calc(11 * var(--to-rem));
  }
}
@media (any-hover: hover) {
  .c-modal__play {
    cursor: pointer;
  }
  .c-modal__close:hover {
    opacity: 0.7;
  }
}
/**
 * ページネーション共通コンポーネント
 *
 * 親（プロジェクト）から上書きする場合:
 *   - 呼び出し元で親クラスで wrap する（例: <div class="p-archive__pagination">...</div>）
 *   - プロジェクトの SCSS ではその wrapper クラスに --_pagination-* を設定する
 *   - 親の CSS ファイルに c-pagination のクラス名は書かない（コンポーネントのカプセル化）
 *
 * 上書き可能な変数: --_pagination-bg, --_pagination-text, --_pagination-text-hover,
 *   --_pagination-bg-hover, --_pagination-active-bg, --_pagination-active-text,
 *   --_pagination-border, --_pagination-border-hover
 */
.c-pagination {
  /* 色（ローカル変数。親の wrapper で上書き可能） */
  --_pagination-bg: var(--color-white, #fff);
  --_pagination-text: var(--color-text);
  --_pagination-text-hover: #374151;
  --_pagination-bg-hover: #f9fafb;
  --_pagination-active-bg: var(--color-black, #000);
  --_pagination-active-text: var(--color-white, #fff);
  --_pagination-border: #d1d5db;
  --_pagination-border-hover: #9ca3af;
  display: flex;
  flex-wrap: wrap;
  gap: calc(8 * var(--to-rem));
  justify-content: center;
}
.c-pagination__item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: calc(44 * var(--to-rem));
  min-block-size: calc(44 * var(--to-rem));
  padding: calc(6 * var(--to-rem)) calc(12 * var(--to-rem));
  border: calc(1 * var(--to-rem)) solid var(--_pagination-border);
  background-color: var(--_pagination-bg);
  color: var(--_pagination-text);
  font-size: calc(15 * var(--to-rem));
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
@media screen and (max-width: 767px) {
  .c-pagination__item {
    min-width: calc(40 * var(--to-rem));
    min-block-size: calc(40 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
  }
}
@media (any-hover: hover) {
  .c-pagination__item:hover:not([data-state=current]) {
    border-color: var(--_pagination-border-hover);
    background-color: var(--_pagination-bg-hover);
    color: var(--_pagination-text-hover);
  }
}
.c-pagination__item[data-state=current] {
  border-color: var(--_pagination-active-bg);
  background-color: var(--_pagination-active-bg);
  color: var(--_pagination-active-text);
}
.c-pagination__item[data-state=dots] {
  border-color: transparent;
  background-color: transparent;
  cursor: default;
}
.c-pagination__item[data-state=dots]:hover {
  border-color: transparent;
  background-color: transparent;
}
.c-pagination__item[data-state=prev],
.c-pagination__item[data-state=next] {
  font-weight: var(--fw-medium, 500);
}
.c-pagination__item[data-state=disabled] {
  opacity: 0.6;
  cursor: default;
}
@media (any-hover: hover) {
  .c-pagination__item[data-state=disabled]:hover {
    border-color: var(--_pagination-border);
    background-color: var(--_pagination-bg);
    color: var(--_pagination-text);
  }
}
.c-read-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: calc(139 * var(--to-rem));
  min-block-size: calc(32 * var(--to-rem));
  padding-inline-start: calc(24 * var(--to-rem));
  border: calc(1 * var(--to-rem)) solid oklch(from var(--color-text) l c h/50%);
  border-radius: calc(16 * var(--to-rem));
  background-color: oklch(from var(--color-white) l c h/35%);
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-size: calc(13 * var(--to-rem));
  font-weight: var(--fw-semibold);
  line-height: 1.2;
  letter-spacing: normal;
  text-transform: uppercase;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .c-read-more {
    width: calc(120 * var(--to-rem));
    min-block-size: calc(24 * var(--to-rem));
    padding-inline-start: calc(20 * var(--to-rem));
    border-radius: calc(12 * var(--to-rem));
    font-size: calc(11 * var(--to-rem));
  }
}
.c-read-more::after {
  content: "";
  position: absolute;
  inset-block-start: 50%;
  inset-inline-end: calc(20 * var(--to-rem));
  width: calc(6 * var(--to-rem));
  min-block-size: calc(6 * var(--to-rem));
  border-block-start: calc(1.5 * var(--to-rem)) solid currentcolor;
  border-inline-end: calc(1.5 * var(--to-rem)) solid currentcolor;
  translate: 0 -50%;
  rotate: 45deg;
  transition: translate var(--duration);
}
@media screen and (max-width: 767px) {
  .c-read-more::after {
    inset-inline-end: calc(16 * var(--to-rem));
  }
}
@media (any-hover: hover) {
  .c-read-more:hover {
    opacity: 0.7;
  }
  .c-read-more:hover::after {
    translate: calc(3 * var(--to-rem)) -50%;
  }
}
.c-section-title {
  display: grid;
  gap: calc(12 * var(--to-rem));
  justify-items: center;
  width: max-content;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    gap: calc(8 * var(--to-rem));
  }
}
.c-section-title[data-align=center] {
  justify-items: center;
  text-align: center;
}
.c-section-title[data-align=left] {
  justify-items: start;
  text-align: left;
}
.c-section-title[data-align=right] {
  justify-items: end;
  text-align: right;
}
.c-section-title__main {
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-size: calc(40 * var(--to-rem));
  font-weight: var(--fw-semibold);
  line-height: 1.2;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-section-title__main {
    font-size: calc(28 * var(--to-rem));
  }
}
.c-section-title__sub {
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-size: calc(13 * var(--to-rem));
  font-weight: var(--fw-regular);
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-section-title__sub {
    font-size: calc(12 * var(--to-rem));
  }
}
.c-triangle {
  display: inline-block;
  width: calc(64 * var(--to-rem));
  aspect-ratio: 1/1;
  background-color: var(--color-black);
}
.c-triangle[data-direction=top] {
  clip-path: var(--clip-triangle-top);
}
.c-triangle[data-direction=bottom] {
  clip-path: var(--clip-triangle-bottom);
}
.c-triangle[data-direction=left] {
  clip-path: var(--clip-triangle-left);
}
.c-triangle[data-direction=right] {
  clip-path: var(--clip-triangle-right);
}
.c-triangle[data-direction=lower-left] {
  clip-path: var(--clip-triangle-lower-left);
}
.c-triangle[data-direction=upper-left] {
  clip-path: var(--clip-triangle-upper-left);
}
.c-triangle[data-direction=lower-right] {
  clip-path: var(--clip-triangle-lower-right);
}
.c-triangle[data-direction=upper-right] {
  clip-path: var(--clip-triangle-upper-right);
}
.l-main--flush {
  margin-block-start: 0;
}
.p-about-fv {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  width: 100%;
  min-block-size: calc(1317 * var(--to-rem));
  padding-block-start: calc(160 * var(--to-rem));
  background-color: var(--color-bg-blue);
}
@media screen and (max-width: 767px) {
  .p-about-fv {
    min-block-size: calc(888 * var(--to-rem));
    padding-block-start: calc(120 * var(--to-rem));
  }
}
.p-about-fv__title {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  margin-block-end: calc(80 * var(--to-rem));
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-size: calc(96 * var(--to-rem));
  font-weight: var(--fw-semibold);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-about-fv__title {
    margin-block-end: calc(48 * var(--to-rem));
    font-size: calc(56 * var(--to-rem));
  }
}
.p-about-fv__divider {
  width: calc(80 * var(--to-rem));
  min-block-size: calc(1 * var(--to-rem));
  margin-block-end: calc(79 * var(--to-rem));
  background-color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-about-fv__divider {
    width: calc(60 * var(--to-rem));
    margin-block-end: calc(47 * var(--to-rem));
  }
}
.p-about-fv__lead {
  width: fit-content;
  margin-block-end: calc(80 * var(--to-rem));
  color: var(--color-text);
  font-size: calc(15 * var(--to-rem));
  line-height: 2.2;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about-fv__lead {
    width: fit-content;
    margin-block-end: calc(47 * var(--to-rem));
    line-height: 1.8;
    text-align: justify;
  }
}
.p-about-fv__lead p {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-about-fv__lead p {
    white-space: normal;
  }
}
.p-about-fv__lead p:not(:last-child) {
  margin-block-end: calc(44 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-about-fv__lead p:not(:last-child) {
    margin-block-end: calc(35 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-about-fv__lead br {
    display: none;
  }
}
.p-about-fv__tagline {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  width: max-content;
  padding-block-end: calc(8 * var(--to-rem));
  border-block-end: calc(1 * var(--to-rem)) solid var(--color-text);
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-feature-settings: "hwid" 1;
  font-size: calc(24 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-about-fv__tagline {
    font-size: calc(20 * var(--to-rem));
  }
}
.p-about-fv__gallery {
  position: absolute;
  inset-inline: 0;
  inset-block-start: calc(841 * var(--to-rem));
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-about-fv__gallery {
    inset-block-start: calc(668 * var(--to-rem));
  }
}
.p-about-fv__gallery-track {
  display: flex;
  gap: calc(8 * var(--to-rem));
  will-change: transform;
  animation: about-gallery-scroll 60s linear infinite;
}
@media screen and (max-width: 767px) {
  .p-about-fv__gallery-track {
    gap: calc(4 * var(--to-rem));
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-about-fv__gallery-track {
    animation: none;
  }
}
@keyframes about-gallery-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.p-about-fv__gallery-item {
  flex-shrink: 0;
  overflow: hidden;
  width: calc(368 * var(--to-rem));
  min-block-size: calc(276 * var(--to-rem));
  border-radius: calc(8 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-about-fv__gallery-item {
    width: calc(186 * var(--to-rem));
    min-block-size: calc(140 * var(--to-rem));
  }
}
.p-about-fv__gallery-item img {
  width: 100%;
  block-size: 100%;
  object-fit: cover;
}
.p-about-brand {
  width: 100%;
  min-block-size: calc(1117 * var(--to-rem));
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-about-brand {
    min-block-size: calc(384 * var(--to-rem));
  }
}
.p-about-brand__inner {
  width: var(--stage-w);
  max-width: 100%;
  margin-inline: auto;
  padding-block-start: calc(200 * var(--to-rem));
  padding-inline-start: calc(160 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-about-brand__inner {
    padding-block-start: calc(80 * var(--to-rem));
    padding-inline: calc(24 * var(--to-rem));
  }
}
.p-about-brand__head {
  display: flex;
  align-items: flex-start;
  margin-block-end: calc(64 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-about-brand__head {
    margin-block-end: calc(24 * var(--to-rem));
  }
}
.p-about-brand__label {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-size: calc(40 * var(--to-rem));
  font-weight: var(--fw-semibold);
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-about-brand__label {
    font-size: calc(24 * var(--to-rem));
  }
}
.p-about-brand__label-jp {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  margin-inline-start: calc(-8 * var(--to-rem));
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-size: calc(13 * var(--to-rem));
  font-weight: var(--fw-regular);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-about-brand__label-jp {
    font-size: calc(10 * var(--to-rem));
  }
}
.p-about-brand__movie {
  position: relative;
  overflow: hidden;
  width: calc(1120 * var(--to-rem));
  min-block-size: calc(625 * var(--to-rem));
  border-radius: calc(8 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-about-brand__movie {
    width: 100%;
    min-block-size: calc(183 * var(--to-rem));
  }
}
.p-about-brand__movie img {
  width: 100%;
  block-size: 100%;
  object-fit: cover;
}
.p-about-interviews {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-block-size: calc(1029 * var(--to-rem));
  background-color: var(--color-panel);
}
@media screen and (max-width: 767px) {
  .p-about-interviews {
    min-block-size: calc(597 * var(--to-rem));
  }
}
.p-about-interviews__inner {
  position: relative;
  width: var(--stage-w);
  max-width: 100%;
  margin-inline: auto;
}
.p-about-interviews__head {
  display: flex;
  align-items: flex-start;
  margin-block-end: calc(64 * var(--to-rem));
  padding-block-start: calc(200 * var(--to-rem));
  padding-inline-start: calc(160 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-about-interviews__head {
    margin-block-end: calc(24 * var(--to-rem));
    padding-block-start: calc(80 * var(--to-rem));
    padding-inline-start: calc(24 * var(--to-rem));
  }
}
.p-about-interviews__heading {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-size: calc(40 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-about-interviews__heading {
    font-size: calc(24 * var(--to-rem));
  }
}
.p-about-interviews__heading-en {
  font-family: var(--title-font-family);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
}
.p-about-interviews__heading-ja {
  font-family: var(--base-font-family);
  font-weight: var(--fw-bold);
}
.p-about-interviews__heading-sub {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-size: calc(15 * var(--to-rem));
  font-weight: var(--fw-regular);
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-about-interviews__heading-sub {
    margin-inline-start: calc(-11 * var(--to-rem));
    font-size: calc(11 * var(--to-rem));
  }
}
.p-error {
  padding-block: calc(80 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-error {
    padding-block: calc(60 * var(--to-rem));
  }
}
.p-error__header {
  margin-block-end: calc(32 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-error__header {
    margin-block-end: calc(24 * var(--to-rem));
  }
}
.p-error__title {
  color: var(--color-text);
  font-size: calc(32 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-error__title {
    font-size: calc(24 * var(--to-rem));
  }
}
.p-error__content {
  max-width: calc(640 * var(--to-rem));
  margin-inline: auto;
  color: var(--color-text);
  font-size: calc(16 * var(--to-rem));
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-error__content {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-error__content p + p {
  margin-block-start: calc(24 * var(--to-rem));
}
.p-footer {
  width: 100%;
  padding-block: calc(156 * var(--to-rem)) calc(33 * var(--to-rem));
  background-color: var(--color-footer);
  color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-block: calc(78 * var(--to-rem)) calc(37 * var(--to-rem));
  }
}
.p-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-footer__logo {
  display: flex;
  gap: calc(64 * var(--to-rem));
  justify-content: center;
  align-items: center;
  margin-block-end: calc(36 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    gap: calc(23 * var(--to-rem));
    margin-block-end: calc(25 * var(--to-rem));
  }
}
.p-footer__logo-text {
  color: var(--color-white);
  font-family: var(--title-font-family);
  font-size: calc(48 * var(--to-rem));
  font-weight: var(--fw-semibold);
  line-height: 1;
  letter-spacing: normal;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-footer__logo-text {
    font-size: calc(28 * var(--to-rem));
  }
}
.p-footer__divider {
  flex-shrink: 0;
  width: calc(1 * var(--to-rem));
  min-block-size: calc(40 * var(--to-rem));
  background-color: oklch(from var(--color-white) l c h/25%);
}
@media screen and (max-width: 767px) {
  .p-footer__divider {
    min-block-size: calc(24 * var(--to-rem));
  }
}
.p-footer__logo-mark {
  flex-shrink: 0;
  width: calc(218 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-footer__logo-mark {
    width: calc(117 * var(--to-rem));
  }
}
.p-footer__logo-mark img {
  width: 100%;
  block-size: auto;
  object-fit: contain;
}
.p-footer__tagline {
  margin-block-end: calc(54 * var(--to-rem));
  color: var(--color-white);
  font-family: var(--base-font-family);
  font-feature-settings: "hwid" 1;
  font-size: calc(24 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.8;
  letter-spacing: 0.05em;
  transform: translateY(calc(-12 * var(--to-rem)));
}
@media screen and (max-width: 767px) {
  .p-footer__tagline {
    margin-block-end: calc(41 * var(--to-rem));
    font-size: calc(18 * var(--to-rem));
    transform: translateY(calc(-13 * var(--to-rem)));
  }
}
.p-footer__actions {
  display: flex;
  gap: calc(16 * var(--to-rem));
  justify-content: center;
  margin-block-end: calc(159 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-footer__actions {
    flex-direction: column;
    gap: calc(24 * var(--to-rem));
    align-items: center;
    margin-block-end: calc(76 * var(--to-rem));
  }
}
.p-footer__button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(320 * var(--to-rem));
  min-block-size: calc(60 * var(--to-rem));
  border-radius: calc(8 * var(--to-rem));
  background-color: var(--color-btn-light);
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-size: calc(15 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
  letter-spacing: 0.05em;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-footer__button {
    width: calc(327 * var(--to-rem));
    min-block-size: calc(60 * var(--to-rem));
  }
}
.p-footer__button::after {
  content: "";
  position: absolute;
  inset-block-start: 50%;
  inset-inline-end: calc(16 * var(--to-rem));
  width: calc(16 * var(--to-rem));
  min-block-size: calc(16 * var(--to-rem));
  border: calc(1 * var(--to-rem)) solid oklch(from var(--color-text) l c h/50%);
  border-radius: 50%;
  translate: 0 -50%;
}
.p-footer__button::before {
  content: "";
  position: absolute;
  inset-block-start: 50%;
  inset-inline-end: calc(22 * var(--to-rem));
  z-index: 1;
  width: calc(4 * var(--to-rem));
  min-block-size: calc(4 * var(--to-rem));
  border-top: calc(1 * var(--to-rem)) solid oklch(from var(--color-text) l c h/50%);
  border-right: calc(1 * var(--to-rem)) solid oklch(from var(--color-text) l c h/50%);
  translate: 0 -50%;
  rotate: 45deg;
}
@media (any-hover: hover) {
  .p-footer__button:hover {
    opacity: 0.8;
  }
}
.p-footer__copyright {
  color: var(--color-white);
  font-family: var(--title-font-family);
  font-size: calc(11 * var(--to-rem));
  font-weight: var(--fw-regular);
  line-height: 1.4;
  letter-spacing: normal;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    max-width: calc(305 * var(--to-rem));
    margin-inline: auto;
  }
}
.p-header {
  width: 100%;
  background-color: transparent;
}
.p-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: calc(1440 * var(--to-rem));
  margin-inline: auto;
  padding-block-start: calc(32 * var(--to-rem));
  padding-inline: calc(32 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding-block-start: calc(20 * var(--to-rem));
    padding-inline: calc(16 * var(--to-rem));
  }
}
.p-header__logo {
  display: flex;
  gap: calc(24 * var(--to-rem));
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    gap: calc(12 * var(--to-rem));
  }
}
.p-header__logo-text {
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-size: calc(36 * var(--to-rem));
  font-weight: var(--fw-semibold);
  line-height: 1;
  letter-spacing: normal;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-header__logo-text {
    font-size: calc(24 * var(--to-rem));
  }
}
.p-header__logo-text a {
  display: inline-block;
}
.p-header__divider {
  flex-shrink: 0;
  width: calc(1 * var(--to-rem));
  min-block-size: calc(30 * var(--to-rem));
  background-color: var(--color-divider);
}
@media screen and (max-width: 767px) {
  .p-header__divider {
    min-block-size: calc(20 * var(--to-rem));
  }
}
.p-header__logo-mark {
  flex-shrink: 0;
  width: calc(141 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-header__logo-mark {
    width: calc(98 * var(--to-rem));
  }
}
.p-header__logo-mark img {
  width: 100%;
  block-size: auto;
  object-fit: contain;
}
.p-header__menu {
  position: relative;
  z-index: var(--z-index-header);
  display: flex;
  flex-direction: column;
  gap: calc(10 * var(--to-rem));
  align-items: flex-end;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-header__menu {
    gap: calc(8 * var(--to-rem));
  }
}
.p-header__hamburger {
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--to-rem));
  width: calc(60 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    gap: calc(6 * var(--to-rem));
    width: calc(48 * var(--to-rem));
  }
}
.p-header__hamburger span {
  display: block;
  width: 100%;
  min-block-size: calc(2 * var(--to-rem));
  background-color: var(--color-text);
  transition: transform var(--duration), opacity var(--duration);
}
.p-header__menu-label {
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-size: calc(13 * var(--to-rem));
  font-weight: var(--fw-semibold);
  line-height: 1;
  letter-spacing: normal;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-header__menu-label {
    font-size: calc(11 * var(--to-rem));
  }
}
.p-header__menu.is-open .p-header__hamburger span:nth-of-type(1) {
  transform: translateY(calc(10 * var(--to-rem))) rotate(45deg);
}
.p-header__menu.is-open .p-header__hamburger span:nth-of-type(2) {
  opacity: 0;
}
.p-header__menu.is-open .p-header__hamburger span:nth-of-type(3) {
  transform: translateY(calc(-10 * var(--to-rem))) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .p-header__menu.is-open .p-header__hamburger span:nth-of-type(1) {
    transform: translateY(calc(8 * var(--to-rem))) rotate(45deg);
  }
  .p-header__menu.is-open .p-header__hamburger span:nth-of-type(3) {
    transform: translateY(calc(-8 * var(--to-rem))) rotate(-45deg);
  }
}
.l-main--flush {
  margin-block-start: 0;
}
.p-interview-fv {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.p-interview-fv__panel {
  position: absolute;
  inset-inline: 0;
  inset-block-start: 0;
  min-block-size: calc(900 * var(--to-rem));
  background-color: var(--color-bg-blue);
}
@media screen and (max-width: 767px) {
  .p-interview-fv__panel {
    min-block-size: calc(734 * var(--to-rem));
  }
}
.p-interview-fv__stage {
  block-size: 100%;
}
.p-interview-fv__hero {
  position: relative;
  width: calc(1280 * var(--to-rem) + var(--wide-gutter));
  aspect-ratio: 1280/820;
  margin-inline-start: calc(160 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-interview-fv__hero {
    width: calc(319 * var(--to-rem));
    aspect-ratio: 319/563;
    margin-inline-start: calc(56 * var(--to-rem));
  }
}
.p-interview-fv__hero > picture {
  display: block;
  overflow: hidden;
  width: 100%;
  block-size: 100%;
}
.p-interview-fv__hero img,
.p-interview-fv__hero picture {
  display: block;
  width: 100%;
  block-size: 100%;
  object-fit: cover;
}
.p-interview-fv__num {
  position: absolute;
  inset-block-start: 23.9%;
  inset-inline-start: -6.25%;
  display: flex;
  flex-direction: column;
  gap: calc(12 * var(--to-rem));
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-interview-fv__num {
    inset-block-start: 20.96%;
    inset-inline-start: -10.03%;
    gap: calc(8 * var(--to-rem));
  }
}
.p-interview-fv__num-label {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  font-family: var(--title-font-family);
  font-size: calc(13 * var(--to-rem));
  font-weight: var(--fw-semibold);
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-interview-fv__num-label {
    font-size: calc(11 * var(--to-rem));
  }
}
.p-interview-fv__num-value {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  font-family: var(--title-font-family);
  font-size: calc(118 * var(--to-rem));
  font-weight: var(--fw-semibold);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-interview-fv__num-value {
    font-size: calc(52 * var(--to-rem));
  }
}
.p-interview-fv__catch {
  position: absolute;
  inset-block-start: 44.15%;
  inset-inline-start: -6.25%;
  width: max-content;
}
@media screen and (max-width: 767px) {
  .p-interview-fv__catch {
    inset-block-start: 36.94%;
    inset-inline-start: -10.03%;
  }
}
.p-interview-fv__catch-line {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  width: max-content;
  padding-block-end: calc(12 * var(--to-rem));
  border-block-end: calc(1 * var(--to-rem)) solid var(--color-line);
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-feature-settings: "hwid" 1;
  font-size: calc(28 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-interview-fv__catch-line {
    padding-block-end: calc(8 * var(--to-rem));
    font-size: calc(18 * var(--to-rem));
  }
}
.p-interview-fv__catch-line:not(:last-child) {
  margin-block-end: calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-interview-fv__catch-line:not(:last-child) {
    margin-block-end: calc(12 * var(--to-rem));
  }
}
.p-interview-fv__catch-line--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-interview-fv__catch-line--sp {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-interview-fv__catch-line--pc {
    display: none;
  }
}
.p-interview-fv__profile {
  position: absolute;
  inset-block-start: 74.15%;
  inset-inline-start: 81.25%;
  width: 15.63%;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-interview-fv__profile {
    position: static;
    width: 100%;
    margin-block-start: calc(24 * var(--to-rem));
    padding-inline: calc(24 * var(--to-rem));
  }
}
.p-interview-fv__profile-head {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  margin-block-end: calc(28 * var(--to-rem));
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-interview-fv__profile-head {
    margin-block-end: calc(20 * var(--to-rem));
  }
}
.p-interview-fv__profile-name {
  display: block;
  font-family: var(--title-font-family);
  font-size: calc(15 * var(--to-rem));
  font-weight: var(--fw-semibold);
}
@media screen and (max-width: 767px) {
  .p-interview-fv__profile-name {
    display: inline;
    margin-inline-end: calc(16 * var(--to-rem));
  }
}
.p-interview-fv__profile-name span {
  font-family: var(--base-font-family);
  font-size: calc(11 * var(--to-rem));
  font-weight: var(--fw-medium);
}
.p-interview-fv__profile-role {
  font-family: var(--base-font-family);
  font-size: calc(11 * var(--to-rem));
  font-weight: var(--fw-medium);
  letter-spacing: 0.05em;
}
.p-interview-fv__profile-desc {
  font-size: calc(13 * var(--to-rem));
  line-height: 1.85;
  letter-spacing: 0.04em;
  text-align: justify;
}
.p-interview-fv__share {
  position: absolute;
  inset-block-start: calc(668 * var(--to-rem));
  inset-inline-start: calc(30 * var(--to-rem));
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-interview-fv__share {
    inset-block-start: calc(498 * var(--to-rem));
    inset-inline-start: calc(16 * var(--to-rem));
    gap: calc(12 * var(--to-rem));
  }
}
.p-interview-fv__share-label {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-size: calc(9 * var(--to-rem));
  font-weight: var(--fw-semibold);
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-interview-fv__share-label {
    writing-mode: vertical-rl;
    letter-spacing: 0.18em;
  }
}
.p-interview-fv__share-list {
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-interview-fv__share-list {
    gap: calc(16 * var(--to-rem));
  }
}
.p-interview-fv__share-item {
  display: block;
  width: calc(32 * var(--to-rem));
  min-block-size: calc(32 * var(--to-rem));
  padding: 0;
  border: 0;
  background-color: transparent;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-interview-fv__share-item {
    width: calc(24 * var(--to-rem));
    min-block-size: calc(24 * var(--to-rem));
  }
}
.p-interview-fv__share-item svg {
  display: block;
  width: 100%;
  block-size: 100%;
}
@media (any-hover: hover) {
  .p-interview-fv__share-item:hover {
    opacity: 0.7;
  }
}
.p-interview-article {
  position: relative;
  display: flex;
  column-gap: calc(80 * var(--to-rem));
  align-items: flex-start;
  overflow: hidden;
  width: 100%;
  max-width: var(--stage-w);
  margin-inline: auto;
  padding-block-start: calc(0 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-interview-article {
    display: block;
  }
}
.p-interview-nav {
  position: sticky;
  inset-block-start: calc(120 * var(--to-rem));
  order: 1;
  flex-shrink: 0;
  align-self: flex-start;
  width: calc(320 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-interview-nav {
    display: none;
  }
}
.p-interview-nav__head {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  display: flex;
  gap: calc(8 * var(--to-rem));
  align-items: baseline;
  margin-block-end: calc(40 * var(--to-rem));
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-weight: var(--fw-semibold);
  line-height: 1;
  text-transform: uppercase;
}
.p-interview-nav__head-label {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  font-size: calc(13 * var(--to-rem));
}
.p-interview-nav__head-num {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  font-size: calc(24 * var(--to-rem));
}
.p-interview-nav__list {
  border-block-start: calc(1 * var(--to-rem)) solid var(--color-line);
}
.p-interview-nav__item {
  display: flex;
  gap: calc(16 * var(--to-rem));
  align-items: center;
  min-block-size: calc(60 * var(--to-rem));
  border-block-end: calc(1 * var(--to-rem)) solid var(--color-line);
  color: var(--color-text);
}
.p-interview-nav__item-num {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  font-family: var(--title-font-family);
  font-size: calc(13 * var(--to-rem));
  font-weight: var(--fw-semibold);
}
.p-interview-nav__item-label {
  flex: 1;
  font-family: var(--base-font-family);
  font-size: calc(15 * var(--to-rem));
  font-weight: var(--fw-medium);
  letter-spacing: 0.05em;
}
.p-interview-nav__item-icon,
.p-interview-body__link-icon,
.p-interview-chapternav__icon {
  position: relative;
  flex-shrink: 0;
  width: calc(16 * var(--to-rem));
  min-block-size: calc(16 * var(--to-rem));
  border: calc(1 * var(--to-rem)) solid var(--color-line);
  border-radius: 50%;
}
.p-interview-nav__item-icon::after,
.p-interview-body__link-icon::after,
.p-interview-chapternav__icon::after {
  content: "";
  position: absolute;
  inset-block-start: 44%;
  inset-inline-start: 50%;
  width: calc(5 * var(--to-rem));
  min-block-size: calc(5 * var(--to-rem));
  border-block-end: calc(1 * var(--to-rem)) solid var(--color-text);
  border-inline-end: calc(1 * var(--to-rem)) solid var(--color-text);
  translate: -50% -50%;
  rotate: 45deg;
}
.p-interview-chapternav {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-interview-chapternav {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    min-block-size: calc(64 * var(--to-rem));
    margin-block-end: calc(64 * var(--to-rem));
    border-block-end: calc(1 * var(--to-rem)) solid var(--color-line);
    scrollbar-width: none;
  }
}
.p-interview-chapternav::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-interview-chapternav__list {
    display: flex;
    align-items: center;
    width: max-content;
    block-size: 100%;
    padding-inline: calc(56 * var(--to-rem)) calc(24 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-interview-chapternav__item {
    display: flex;
    gap: calc(8 * var(--to-rem));
    align-items: center;
    color: var(--color-text);
  }
}
@media screen and (max-width: 767px) {
  .p-interview-chapternav__item + .p-interview-chapternav__item {
    margin-inline-start: calc(16 * var(--to-rem));
    padding-inline-start: calc(16 * var(--to-rem));
    border-inline-start: calc(1 * var(--to-rem)) solid var(--color-line);
  }
}
@media screen and (max-width: 767px) {
  .p-interview-chapternav__num {
    font-family: var(--title-font-family);
    font-size: calc(11 * var(--to-rem));
    font-weight: var(--fw-semibold);
  }
}
@media screen and (max-width: 767px) {
  .p-interview-chapternav__label {
    font-size: calc(13 * var(--to-rem));
    font-weight: var(--fw-medium);
    white-space: nowrap;
  }
}
.p-interview-body {
  flex-shrink: 0;
  width: calc(960 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-interview-body {
    width: calc(351 * var(--to-rem));
  }
}
.p-interview-body > *:not(:last-child) {
  margin-block-end: calc(120 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-interview-body > *:not(:last-child) {
    margin-block-end: calc(80 * var(--to-rem));
  }
}
.p-interview-body__section {
  padding-inline-start: calc(160 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-interview-body__section {
    padding-inline-start: calc(56 * var(--to-rem));
  }
}
.p-interview-body__head {
  margin-block-end: calc(61 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-interview-body__head {
    margin-block-end: calc(40 * var(--to-rem));
  }
}
.p-interview-body__label {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  display: flex;
  gap: calc(12 * var(--to-rem));
  align-items: center;
  margin-block-end: calc(40 * var(--to-rem));
  color: var(--color-text);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-interview-body__label {
    gap: calc(8 * var(--to-rem));
    margin-block-end: calc(24 * var(--to-rem));
  }
}
.p-interview-body__label-num {
  font-family: var(--title-font-family);
  font-size: calc(18 * var(--to-rem));
  font-weight: var(--fw-semibold);
}
@media screen and (max-width: 767px) {
  .p-interview-body__label-num {
    font-size: calc(15 * var(--to-rem));
  }
}
.p-interview-body__label-bar {
  width: calc(1 * var(--to-rem));
  min-block-size: calc(16 * var(--to-rem));
  background-color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-interview-body__label-bar {
    min-block-size: calc(13 * var(--to-rem));
  }
}
.p-interview-body__label-text {
  font-family: var(--base-font-family);
  font-size: calc(15 * var(--to-rem));
  font-weight: var(--fw-bold);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-interview-body__label-text {
    font-size: calc(13 * var(--to-rem));
  }
}
.p-interview-body__title {
  width: max-content;
}
.p-interview-body__title-line {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  width: 100%;
  padding-block-end: calc(10 * var(--to-rem));
  border-block-end: calc(1 * var(--to-rem)) solid var(--color-line);
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-feature-settings: "hwid" 1;
  font-size: calc(28 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-interview-body__title-line {
    padding-block-end: calc(8 * var(--to-rem));
    font-size: calc(20 * var(--to-rem));
  }
}
.p-interview-body__title-line:not(:last-child) {
  margin-block-end: calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-interview-body__title-line:not(:last-child) {
    margin-block-end: calc(16 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-interview-body__title-pc {
    display: none;
  }
}
.p-interview-body__title-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-interview-body__title-sp {
    display: inline;
  }
}
@media screen and (max-width: 767px) {
  .p-interview-body__title-line--pc {
    display: none;
  }
}
.p-interview-body__title-line--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-interview-body__title-line--sp {
    display: block;
  }
}
.p-interview-body__text {
  color: var(--color-text);
  font-size: calc(15 * var(--to-rem));
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: justify;
}
.p-interview-body__text:not(:last-child) {
  margin-block-end: calc(80 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-interview-body__text:not(:last-child) {
    margin-block-end: calc(40 * var(--to-rem));
  }
}
.p-interview-body__text p:not(:last-child) {
  margin-block-end: calc(27 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-interview-body__text p:not(:last-child) {
    margin-block-end: calc(24 * var(--to-rem));
  }
}
.p-interview-body__mark {
  padding-block: calc(1 * var(--to-rem));
  background-color: var(--color-mark);
  box-decoration-break: clone;
}
.p-interview-body__u {
  text-decoration: underline;
  text-decoration-color: var(--color-line);
  text-decoration-thickness: calc(1 * var(--to-rem));
  text-underline-offset: calc(4 * var(--to-rem));
}
.p-interview-body__link {
  padding: calc(40 * var(--to-rem));
  border-radius: calc(8 * var(--to-rem));
  background-color: var(--color-callout-bg);
}
@media screen and (max-width: 767px) {
  .p-interview-body__link {
    padding: calc(24 * var(--to-rem));
  }
}
.p-interview-body__link-head {
  display: inline-flex;
  gap: calc(16 * var(--to-rem));
  align-items: center;
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-size: calc(15 * var(--to-rem));
  font-weight: var(--fw-bold);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-interview-body__link-head {
    gap: calc(12 * var(--to-rem));
    font-size: calc(13 * var(--to-rem));
  }
}
.p-interview-body__link-icon {
  border-color: var(--color-text);
}
.p-interview-body__link-icon::after {
  inset-inline-start: 44%;
  rotate: -45deg;
}
.p-interview-body__link-text {
  margin-block-start: calc(24 * var(--to-rem));
  color: oklch(from var(--color-text) l c h/55%);
  font-size: calc(13 * var(--to-rem));
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-interview-body__link-text {
    margin-block-start: calc(18 * var(--to-rem));
    line-height: 1.9;
  }
}
.p-interview-body__note {
  position: relative;
  padding: calc(48 * var(--to-rem)) calc(40 * var(--to-rem)) calc(40 * var(--to-rem));
  border: calc(1 * var(--to-rem)) solid var(--color-line);
  border-radius: calc(8 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-interview-body__note {
    padding: calc(44 * var(--to-rem)) calc(24 * var(--to-rem)) calc(28 * var(--to-rem));
  }
}
.p-interview-body__note-badge {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 50%;
  display: inline-flex;
  gap: calc(10 * var(--to-rem));
  align-items: center;
  min-block-size: calc(34 * var(--to-rem));
  padding-inline: calc(20 * var(--to-rem));
  border-radius: calc(4 * var(--to-rem));
  background-color: var(--color-text);
  color: var(--color-white);
  font-size: calc(13 * var(--to-rem));
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  white-space: nowrap;
  translate: -50% -50%;
}
@media screen and (max-width: 767px) {
  .p-interview-body__note-badge {
    min-block-size: calc(30 * var(--to-rem));
    font-size: calc(12 * var(--to-rem));
  }
}
.p-interview-body__note-slash {
  opacity: 0.85;
  font-weight: var(--fw-regular);
}
.p-interview-body__note-badge::after {
  content: "";
  position: absolute;
  inset-inline-start: 50%;
  inset-block-end: calc(-5 * var(--to-rem));
  border-block-start: calc(6 * var(--to-rem)) solid var(--color-text);
  border-inline: calc(6 * var(--to-rem)) solid transparent;
  translate: -50% 0;
}
.p-interview-body__note-text {
  color: var(--color-text);
  font-size: calc(15 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1.9;
  letter-spacing: 0.02em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .p-interview-body__note-text {
    font-size: calc(13 * var(--to-rem));
    line-height: 1.9;
  }
}
.p-interview-body__figure {
  display: block;
  overflow: hidden;
  width: 100%;
  block-size: auto;
  border-radius: calc(8 * var(--to-rem));
}
.p-interview-body__figure img {
  display: block;
  width: 100%;
  block-size: auto;
  object-fit: cover;
}
.p-interview-body__gallery {
  display: flex;
  flex-direction: column;
  gap: calc(40 * var(--to-rem));
  align-items: flex-start;
  min-block-size: calc(720 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-interview-body__gallery {
    gap: calc(16 * var(--to-rem));
    min-block-size: calc(368 * var(--to-rem));
  }
}
.p-interview-body__gallery-item {
  display: block;
  overflow: hidden;
  width: calc(680 * var(--to-rem));
  min-block-size: calc(340 * var(--to-rem));
  border-radius: calc(8 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-interview-body__gallery-item {
    width: calc(351 * var(--to-rem));
    min-block-size: calc(176 * var(--to-rem));
  }
}
.p-interview-body__gallery-item img {
  width: 100%;
  block-size: 100%;
  object-fit: cover;
}
.p-interview-body__gallery-item--1 {
  margin-inline-start: calc(160 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-interview-body__gallery-item--1 {
    margin-inline-start: 0;
  }
}
.p-interview-body__gallery-item--2 {
  margin-inline-start: calc(280 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-interview-body__gallery-item--2 {
    margin-inline-start: calc(24 * var(--to-rem));
  }
}
.p-interview-closing {
  display: flex;
  width: 100%;
  padding-block-start: calc(200 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-interview-closing {
    padding-block-start: calc(80 * var(--to-rem));
  }
}
.p-interview-closing__item {
  display: block;
  overflow: hidden;
  width: 50%;
  min-block-size: calc(540 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-interview-closing__item {
    min-block-size: calc(250 * var(--to-rem));
  }
}
.p-interview-closing__item picture {
  display: block;
  width: 100%;
  block-size: 100%;
}
.p-interview-closing__item img {
  width: 100%;
  block-size: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-interview-page .p-about-interviews__head {
    padding-inline-start: calc(56 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-interview-page .c-card-slider {
    padding-inline-start: calc(56 * var(--to-rem));
  }
}
.p-menu-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-index-menu-modal);
  display: none;
  overflow-y: auto;
  width: 100%;
  overscroll-behavior: contain;
}
.p-menu-modal[aria-hidden=false] {
  display: block;
}
.p-menu-modal__overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-color: var(--color-bg-blue);
  cursor: pointer;
}
.p-menu-modal__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: calc(129 * var(--to-rem));
  max-width: calc(1440 * var(--to-rem));
  margin-inline: auto;
  padding-block: calc(32 * var(--to-rem)) calc(80 * var(--to-rem));
  padding-inline: calc(32 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-menu-modal__inner {
    gap: calc(64 * var(--to-rem));
    padding-block: calc(64 * var(--to-rem)) 0;
    padding-inline: calc(16 * var(--to-rem));
  }
}
.p-menu-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: calc(24 * var(--to-rem));
}
.p-menu-modal__header-logo {
  display: flex;
  gap: calc(24 * var(--to-rem));
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-menu-modal__header-logo {
    gap: calc(12 * var(--to-rem));
  }
}
.p-menu-modal__logo-text {
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-size: calc(36 * var(--to-rem));
  font-weight: var(--fw-semibold);
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-menu-modal__logo-text {
    font-size: calc(24 * var(--to-rem));
  }
}
.p-menu-modal__logo-text a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
.p-menu-modal__logo-divider {
  flex-shrink: 0;
  width: calc(1 * var(--to-rem));
  min-block-size: calc(30 * var(--to-rem));
  background-color: var(--color-divider);
}
@media screen and (max-width: 767px) {
  .p-menu-modal__logo-divider {
    min-block-size: calc(20 * var(--to-rem));
  }
}
.p-menu-modal__logo-mark {
  flex-shrink: 0;
  width: calc(141 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-menu-modal__logo-mark {
    width: calc(98 * var(--to-rem));
  }
}
.p-menu-modal__logo-mark img {
  width: 100%;
  block-size: auto;
  object-fit: contain;
}
.p-menu-modal__header-close {
  display: flex;
  flex-direction: column;
  gap: calc(10 * var(--to-rem));
  align-items: flex-end;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-menu-modal__header-close {
    gap: calc(6 * var(--to-rem));
  }
}
.p-menu-modal__header-close:focus-visible {
  outline: calc(2 * var(--to-rem)) solid var(--color-text);
  outline-offset: calc(4 * var(--to-rem));
}
.p-menu-modal__header-close-icon {
  position: relative;
  display: block;
  width: calc(60 * var(--to-rem));
  min-block-size: calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-menu-modal__header-close-icon {
    width: calc(48 * var(--to-rem));
    min-block-size: calc(16 * var(--to-rem));
  }
}
.p-menu-modal__header-close-icon::before,
.p-menu-modal__header-close-icon::after {
  content: "";
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 0;
  width: 100%;
  min-block-size: calc(2 * var(--to-rem));
  background-color: var(--color-text);
}
.p-menu-modal__header-close-icon::before {
  transform: translateY(-50%) rotate(45deg);
}
.p-menu-modal__header-close-icon::after {
  transform: translateY(-50%) rotate(-45deg);
}
.p-menu-modal__header-close-label {
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-size: calc(13 * var(--to-rem));
  font-weight: var(--fw-semibold);
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-menu-modal__header-close-label {
    font-size: calc(11 * var(--to-rem));
  }
}
.p-menu-modal__body {
  display: flex;
  flex-direction: column;
  gap: calc(56 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-menu-modal__body {
    gap: calc(56 * var(--to-rem));
  }
}
.p-menu-modal__top-row {
  display: flex;
  flex-wrap: wrap;
  gap: calc(32 * var(--to-rem)) calc(48 * var(--to-rem));
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-menu-modal__top-row {
    flex-wrap: nowrap;
  }
}
.p-menu-modal__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: calc(120 * var(--to-rem)) calc(20 * var(--to-rem));
  align-items: flex-start;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-menu-modal__nav-list {
    flex-direction: column;
    gap: calc(40 * var(--to-rem));
  }
}
.p-menu-modal__nav-item {
  min-inline-size: calc(126 * var(--to-rem));
}
.p-menu-modal__nav-item--about {
  min-inline-size: calc(229 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-menu-modal__nav-item--about {
    min-inline-size: 0;
  }
}
.p-menu-modal__nav-item--interview {
  display: flex;
  gap: calc(40 * var(--to-rem));
  align-items: center;
  min-inline-size: calc(244 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-menu-modal__nav-item--interview {
    display: block;
    min-inline-size: 0;
  }
}
.p-menu-modal__slider-nav {
  display: flex;
  gap: calc(16 * var(--to-rem));
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-menu-modal__slider-nav {
    display: none;
  }
}
.p-menu-modal__slider-nav-prev,
.p-menu-modal__slider-nav-next {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: calc(40 * var(--to-rem));
  min-block-size: calc(40 * var(--to-rem));
  padding: 0;
  border: calc(1 * var(--to-rem)) solid var(--color-text);
  border-radius: calc(999 * var(--to-rem));
  background: none;
  color: var(--color-text);
  font-size: calc(18 * var(--to-rem));
  line-height: 1;
  cursor: pointer;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-menu-modal__slider-nav-prev:hover,
  .p-menu-modal__slider-nav-next:hover {
    opacity: 0.6;
  }
}
.p-menu-modal__nav-item a {
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
  padding-block: calc(8 * var(--to-rem));
  color: var(--color-text);
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-menu-modal__nav-item a {
    gap: calc(8 * var(--to-rem));
  }
}
@media (any-hover: hover) {
  .p-menu-modal__nav-item a:hover {
    opacity: 0.7;
  }
}
.p-menu-modal__nav-item-en {
  font-family: var(--title-font-family);
  font-size: calc(24 * var(--to-rem));
  font-weight: var(--fw-semibold);
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-menu-modal__nav-item-en {
    font-size: calc(18 * var(--to-rem));
  }
}
.p-menu-modal__nav-item-jp {
  color: var(--color-text);
  font-size: calc(10 * var(--to-rem));
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-menu-modal__nav-item-jp {
    font-size: calc(9 * var(--to-rem));
  }
}
.p-menu-modal__site-buttons {
  display: flex;
  gap: calc(16 * var(--to-rem));
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-menu-modal__site-buttons {
    flex-direction: column;
    gap: calc(16 * var(--to-rem));
  }
}
.p-menu-modal__site-button {
  display: flex;
  gap: calc(12 * var(--to-rem));
  justify-content: center;
  align-items: center;
  width: calc(200 * var(--to-rem));
  padding-block: calc(14 * var(--to-rem));
  padding-inline: calc(24 * var(--to-rem));
  border: none;
  border-radius: calc(8 * var(--to-rem));
  background-color: var(--color-btn-light);
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-size: calc(11 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color var(--duration), color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-menu-modal__site-button {
    width: calc(160 * var(--to-rem));
    padding-block: calc(12 * var(--to-rem));
  }
}
@media (any-hover: hover) {
  .p-menu-modal__site-button:hover {
    background-color: var(--color-text);
    color: var(--color-white);
  }
}
.p-menu-modal__site-button-icon {
  display: inline-flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: calc(20 * var(--to-rem));
  block-size: calc(20 * var(--to-rem));
  border: calc(1 * var(--to-rem)) solid oklch(from currentcolor l c h/50%);
  border-radius: calc(999 * var(--to-rem));
}
.p-menu-modal__interview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(40 * var(--to-rem)) calc(64 * var(--to-rem));
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-menu-modal__interview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(36 * var(--to-rem)) calc(15 * var(--to-rem));
  }
}
.p-menu-modal__interview-item {
  min-inline-size: 0;
}
.p-menu-modal__interview-item a {
  display: flex;
  gap: calc(16 * var(--to-rem));
  align-items: center;
  color: var(--color-text);
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-menu-modal__interview-item a {
    flex-direction: column;
    gap: calc(16 * var(--to-rem));
    align-items: flex-start;
  }
}
@media (any-hover: hover) {
  .p-menu-modal__interview-item a:hover {
    opacity: 0.85;
  }
}
.p-menu-modal__interview-item-image {
  overflow: hidden;
  flex-shrink: 0;
  width: calc(200 * var(--to-rem));
  aspect-ratio: 2/1;
  border-radius: calc(4 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-menu-modal__interview-item-image {
    width: calc(156 * var(--to-rem));
  }
}
.p-menu-modal__interview-item-image img {
  width: 100%;
  block-size: 100%;
  object-fit: cover;
}
.p-menu-modal__interview-item-text {
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
  min-inline-size: 0;
}
@media screen and (max-width: 767px) {
  .p-menu-modal__interview-item-text {
    gap: calc(12 * var(--to-rem));
  }
}
.p-menu-modal__interview-item-label {
  display: flex;
  gap: calc(4 * var(--to-rem));
  align-items: baseline;
  font-family: var(--title-font-family);
  font-weight: var(--fw-semibold);
  line-height: 1;
  text-transform: uppercase;
}
.p-menu-modal__interview-item-label-en {
  font-size: calc(8 * var(--to-rem));
}
.p-menu-modal__interview-item-label-num {
  font-size: calc(11 * var(--to-rem));
}
.p-menu-modal__interview-item-title {
  display: flex;
  flex-direction: column;
  gap: calc(12 * var(--to-rem));
}
.p-menu-modal__interview-item-title-line {
  font-family: var(--base-font-family);
  font-size: calc(10 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.p-menu-modal__interview-item-title-line:first-child {
  padding-block-end: calc(6 * var(--to-rem));
  border-block-end: calc(1 * var(--to-rem)) solid oklch(from var(--color-text) l c h/55%);
}
.p-menu-modal__about-block {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-menu-modal__about-block {
    display: flex;
    flex-direction: column;
    gap: calc(24 * var(--to-rem));
    margin-inline: calc(-16 * var(--to-rem));
    padding-block: calc(80 * var(--to-rem));
    padding-inline: calc(24 * var(--to-rem));
    background-color: var(--color-bg-blue);
  }
}
.p-menu-modal__about-block-title-row {
  display: flex;
  gap: calc(8 * var(--to-rem));
  align-items: baseline;
}
.p-menu-modal__about-block-title {
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-size: calc(24 * var(--to-rem));
  font-weight: var(--fw-semibold);
  line-height: 1.4;
  text-transform: uppercase;
}
.p-menu-modal__about-block-subtitle {
  color: var(--color-text);
  font-size: calc(8 * var(--to-rem));
  line-height: 1;
  letter-spacing: 0.05em;
}
.p-menu-modal__about-block-desc {
  color: var(--color-text);
  font-size: calc(12 * var(--to-rem));
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.p-menu-modal__about-block-brand-movie {
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--to-rem));
}
.p-menu-modal__about-block-brand-movie-label {
  font-family: var(--title-font-family);
  font-size: calc(10 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1;
  letter-spacing: 0.05em;
}
.p-menu-modal__about-block-brand-movie-thumb {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 351/196;
  border-radius: calc(4 * var(--to-rem));
}
.p-menu-modal__about-block-brand-movie-thumb img {
  width: 100%;
  block-size: 100%;
  object-fit: cover;
}
.p-menu-modal__about-block-read-more {
  align-self: flex-start;
}
.home .l-main {
  margin-block-start: 0;
}
@property --slot {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}
.p-top-fv {
  --fv-slide-w: 960;
  --fv-slide-gap: 80;
  --fv-pitch: calc(var(--fv-slide-w) + var(--fv-slide-gap));
  --fv-center-x: 240;
  --fv-slide-top: 162;
  --fv-slide-angle: 12deg;
  --fv-slide-duration: 0.8s;
  --fv-slide-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --fv-pitch-y: calc(var(--fv-pitch) * tan(var(--fv-slide-angle)));
  overflow: hidden;
  width: 100%;
  min-block-size: calc(1020 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-fv {
    min-block-size: calc(838 * var(--to-rem));
  }
}
.p-top-fv__stage {
  block-size: 100%;
}
.p-top-fv__line {
  position: absolute;
  inset-inline: calc(0px - var(--wide-gutter));
  inset-block-start: calc(491 * var(--to-rem));
  z-index: 0;
  min-block-size: calc(1 * var(--to-rem));
  background-color: var(--color-hairline);
}
@media screen and (max-width: 767px) {
  .p-top-fv__line {
    display: none;
  }
}
.p-top-fv__viewport {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.p-top-fv__track {
  position: absolute;
  inset: 0;
  transition: transform var(--fv-slide-duration) var(--fv-slide-ease);
}
.p-top-fv__track.is-advancing {
  transform: translate(calc(-1 * var(--fv-pitch) * var(--to-rem)), calc(-1 * var(--fv-pitch-y) * var(--to-rem)));
}
.p-top-fv__track.is-resetting {
  transition: none;
}
.p-top-fv__slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  inline-size: calc(var(--fv-slide-w) * var(--to-rem));
  aspect-ratio: 960/658;
  border-radius: calc(8 * var(--to-rem));
  transform: translate(calc((var(--fv-center-x) + var(--slot) * var(--fv-pitch)) * var(--to-rem)), calc((var(--fv-slide-top) + var(--slot) * var(--fv-pitch-y)) * var(--to-rem)));
}
@media screen and (max-width: 767px) {
  .p-top-fv__slide {
    inline-size: 100%;
    aspect-ratio: 375/375;
    border-radius: 0;
    transform: translateY(calc(343 * var(--to-rem)));
  }
  .p-top-fv__slide:not(.is-current) {
    display: none;
  }
}
.p-top-fv__slide picture {
  display: block;
  width: 100%;
  block-size: 100%;
}
.p-top-fv__slide img {
  width: 100%;
  block-size: 100%;
  object-fit: cover;
}
@media (prefers-reduced-motion: reduce) {
  .p-top-fv__track {
    transition: none;
  }
  .p-top-fv__track.is-advancing {
    transform: none;
  }
}
.p-top-fv__title {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  position: absolute;
  inset-block-start: calc(282 * var(--to-rem));
  inset-inline-start: calc(64 * var(--to-rem));
  z-index: 2;
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-size: calc(96 * var(--to-rem));
  font-weight: var(--fw-semibold);
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-top-fv__title {
    inset-block-start: calc(116 * var(--to-rem));
    inset-inline-start: calc(24 * var(--to-rem));
    font-size: calc(64 * var(--to-rem));
  }
}
.p-top-fv__tagline {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  position: absolute;
  inset-block-start: calc(389 * var(--to-rem));
  inset-inline-start: calc(64 * var(--to-rem));
  z-index: 2;
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-feature-settings: "hwid" 1;
  font-size: calc(24 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top-fv__tagline {
    inset-block-start: calc(185 * var(--to-rem));
    inset-inline-start: calc(24 * var(--to-rem));
    font-size: calc(13 * var(--to-rem));
  }
}
.p-top-fv__feature-heading {
  position: absolute;
  inset-block-start: calc(282 * var(--to-rem));
  inset-inline-end: calc(200 * var(--to-rem));
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-top-fv__feature-heading {
    inset-block-start: calc(262 * var(--to-rem));
    inset-inline-end: calc(24 * var(--to-rem));
  }
}
.p-top-fv__feature-label {
  display: flex;
  gap: calc(8 * var(--to-rem));
  justify-content: flex-end;
  align-items: center;
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-weight: var(--fw-semibold);
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-top-fv__feature-label {
    gap: calc(6 * var(--to-rem));
  }
}
.p-top-fv__feature-label-text {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  font-size: calc(13 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-fv__feature-label-text {
    font-size: calc(8 * var(--to-rem));
  }
}
.p-top-fv__feature-label-num {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  font-size: calc(56 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-fv__feature-label-num {
    font-size: calc(28 * var(--to-rem));
  }
}
.p-top-fv__feature-title {
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
  inline-size: fit-content;
  margin-block-start: calc(24 * var(--to-rem));
  margin-inline-start: auto;
  transition: opacity 0.8s ease;
}
@media screen and (max-width: 767px) {
  .p-top-fv__feature-title {
    gap: calc(12 * var(--to-rem));
    inline-size: fit-content;
    margin-block-start: calc(28 * var(--to-rem));
  }
}
.p-top-fv__feature-title-line {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  padding-block-end: calc(6 * var(--to-rem));
  border-block-end: calc(1 * var(--to-rem)) solid oklch(from var(--color-text) l c h/55%);
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-feature-settings: "hwid" 1;
  font-size: calc(20 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: end;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-top-fv__feature-title-line {
    padding-block-end: calc(5 * var(--to-rem));
    font-size: calc(13 * var(--to-rem));
  }
}
.p-top-fv__feature-caption {
  position: absolute;
  inset-block-start: calc(584 * var(--to-rem));
  inset-inline-end: calc(200 * var(--to-rem));
  inset-inline-start: calc(978 * var(--to-rem));
  z-index: 2;
  inline-size: fit-content;
}
@media screen and (max-width: 767px) {
  .p-top-fv__feature-caption {
    display: contents;
  }
}
.p-top-fv__feature-name {
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-size: calc(13 * var(--to-rem));
  font-weight: var(--fw-semibold);
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: end;
  transition: opacity 0.8s ease;
}
@media screen and (max-width: 767px) {
  .p-top-fv__feature-name {
    display: none;
  }
}
.p-top-fv__feature-name span {
  font-family: var(--base-font-family);
  font-size: calc(11 * var(--to-rem));
  font-weight: var(--fw-bold);
}
.p-top-fv__feature-desc {
  margin-block-start: calc(12 * var(--to-rem));
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-size: calc(11 * var(--to-rem));
  font-weight: var(--fw-light);
  line-height: 1.6;
  letter-spacing: normal;
  text-align: end;
  transition: opacity 0.8s ease;
}
@media screen and (max-width: 767px) {
  .p-top-fv__feature-desc {
    display: none;
  }
}
.p-top-fv__feature-title.is-fading {
  opacity: 0;
}
.p-top-fv__feature-name.is-fading {
  opacity: 0;
}
.p-top-fv__feature-desc.is-fading {
  opacity: 0;
}
@media (prefers-reduced-motion: reduce) {
  .p-top-fv__feature-title,
  .p-top-fv__feature-name,
  .p-top-fv__feature-desc {
    transition: none;
  }
}
.p-top-fv__feature-more.c-read-more {
  display: flex;
  justify-content: center;
  margin-block-start: calc(24 * var(--to-rem));
  margin-inline: auto;
  padding-inline: 0;
}
@media screen and (max-width: 767px) {
  .p-top-fv__feature-more.c-read-more {
    position: absolute;
    inset-block-start: calc(670 * var(--to-rem));
    inset-inline-end: calc(24 * var(--to-rem));
    z-index: 2;
    margin-block-start: 0;
    margin-inline: 0;
  }
}
.p-top-fv__pager {
  position: absolute;
  inset-block-start: calc(832 * var(--to-rem));
  inset-inline-start: calc(240 * var(--to-rem));
  z-index: 2;
  display: flex;
  gap: calc(10 * var(--to-rem));
  align-items: flex-end;
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-weight: var(--fw-semibold);
}
@media screen and (max-width: 767px) {
  .p-top-fv__pager {
    inset-block-start: calc(681 * var(--to-rem));
    inset-inline-start: calc(24 * var(--to-rem));
    gap: calc(6 * var(--to-rem));
  }
}
.p-top-fv__pager-current {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  font-size: calc(24 * var(--to-rem));
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-top-fv__pager-current {
    font-size: calc(13 * var(--to-rem));
  }
}
.p-top-fv__pager-sep {
  align-self: center;
  inline-size: calc(1 * var(--to-rem));
  min-block-size: calc(14 * var(--to-rem));
  background-color: var(--color-text);
  rotate: 22deg;
}
@media screen and (max-width: 767px) {
  .p-top-fv__pager-sep {
    min-block-size: calc(9 * var(--to-rem));
  }
}
.p-top-fv__pager-total {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  font-size: calc(15 * var(--to-rem));
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-top-fv__pager-total {
    font-size: calc(8 * var(--to-rem));
  }
}
.p-top-fv__dots {
  position: absolute;
  inset-block-start: calc(835 * var(--to-rem));
  inset-inline-start: calc(1104 * var(--to-rem));
  z-index: 2;
  display: flex;
  gap: calc(11 * var(--to-rem));
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top-fv__dots {
    display: none;
  }
}
.p-top-fv__dot {
  inline-size: calc(7 * var(--to-rem));
  min-block-size: calc(7 * var(--to-rem));
  padding: 0;
  border: calc(1 * var(--to-rem)) solid oklch(from var(--color-text) l c h/45%);
  border-radius: 50%;
  background-color: transparent;
  transition: background-color var(--duration), border-color var(--duration);
}
.p-top-fv__dot.is-active {
  border-color: var(--color-text);
  background-color: var(--color-text);
}
.p-top-fv__scroll {
  position: absolute;
  inset-block-start: calc(700 * var(--to-rem));
  inset-inline-end: calc(40 * var(--to-rem) - var(--wide-gutter));
  z-index: 2;
  inline-size: calc(13 * var(--to-rem));
  min-block-size: calc(200 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-fv__scroll {
    display: none;
  }
}
.p-top-fv__scroll-text {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  color: var(--color-text);
  writing-mode: vertical-rl;
  font-family: var(--title-font-family);
  font-size: calc(11 * var(--to-rem));
  font-weight: var(--fw-medium);
  letter-spacing: 0.1em;
}
.p-top-fv__scroll::after {
  content: "";
  position: absolute;
  inset-block-end: 0;
  inset-inline-end: 0;
  inline-size: calc(1 * var(--to-rem));
  min-block-size: calc(120 * var(--to-rem));
  background-color: oklch(from var(--color-text) l c h/45%);
}
.p-top-about {
  position: relative;
  width: 100%;
  padding-block: calc(160 * var(--to-rem));
  background-color: var(--color-bg-blue);
}
@media screen and (max-width: 767px) {
  .p-top-about {
    padding-block: calc(80 * var(--to-rem));
  }
}
.p-top-about__body {
  display: grid;
  grid-template-columns: calc(160 * var(--to-rem)) calc(360 * var(--to-rem)) calc(120 * var(--to-rem)) calc(800 * var(--to-rem));
  grid-template-rows: calc(80 * var(--to-rem)) calc(244 * var(--to-rem)) calc(153 * var(--to-rem));
  place-items: start start;
}
@media screen and (max-width: 767px) {
  .p-top-about__body {
    grid-template-columns: calc(24 * var(--to-rem)) 1fr;
    grid-template-rows: calc(195 * var(--to-rem)) calc(262 * var(--to-rem)) auto;
  }
}
.p-top-about__text {
  display: grid;
  grid-template-rows: calc(116 * var(--to-rem)) auto;
  grid-column: 2;
  grid-row: 2;
  justify-items: start;
  inline-size: fit-content;
}
@media screen and (max-width: 767px) {
  .p-top-about__text {
    grid-template-rows: calc(100 * var(--to-rem)) auto;
    grid-row: 1;
    inline-size: fit-content;
  }
}
.p-top-about__heading {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  grid-column: 1;
  grid-row: 1;
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-size: calc(40 * var(--to-rem));
  font-weight: var(--fw-semibold);
  line-height: 1.2;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-top-about__heading {
    font-size: calc(24 * var(--to-rem));
  }
}
.p-top-about__heading-jp {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  margin-inline-start: calc(137 * var(--to-rem));
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-size: calc(13 * var(--to-rem));
  font-weight: var(--fw-regular);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-top-about__heading-jp {
    margin-inline-start: calc(110 * var(--to-rem));
    font-size: calc(10 * var(--to-rem));
  }
}
.p-top-about__lead {
  grid-column: 1;
  grid-row: 2;
  inline-size: fit-content;
  color: var(--color-text);
  font-size: calc(15 * var(--to-rem));
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top-about__lead {
    inline-size: fit-content;
    font-size: calc(13 * var(--to-rem));
  }
}
.p-top-about__media {
  display: grid;
  grid-template-rows: calc(30 * var(--to-rem)) auto;
  grid-column: 4;
  grid-row: 1/-1;
  inline-size: calc(800 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-about__media {
    grid-template-rows: calc(26 * var(--to-rem)) auto;
    grid-column: 2;
    grid-row: 2;
    justify-self: stretch;
    inline-size: auto;
  }
}
.p-top-about__movie-label {
  grid-row: 1;
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-size: calc(20 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top-about__movie-label {
    font-size: calc(15 * var(--to-rem));
  }
}
.p-top-about__movie {
  position: relative;
  grid-row: 2;
  overflow: hidden;
  inline-size: calc(800 * var(--to-rem));
  min-block-size: calc(447 * var(--to-rem));
  border-start-start-radius: calc(8 * var(--to-rem));
  border-end-start-radius: calc(8 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-about__movie {
    justify-self: stretch;
    inline-size: auto;
    min-block-size: calc(196 * var(--to-rem));
    border-radius: calc(8 * var(--to-rem));
  }
}
.p-top-about__movie img {
  width: 100%;
  block-size: 100%;
  object-fit: cover;
}
.p-top-about__more {
  grid-column: 2;
  grid-row: 3;
}
.p-top-interviews {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-block: calc(240 * var(--to-rem)) calc(280 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-interviews {
    padding-block: calc(120 * var(--to-rem));
  }
}
.p-top-interviews__panel {
  position: absolute;
  inset-block-start: calc(160 * var(--to-rem));
  inset-inline-end: var(--wide-gutter);
  z-index: 0;
  inline-size: calc(440 * var(--to-rem));
  min-block-size: calc(2760 * var(--to-rem));
  border-start-start-radius: calc(8 * var(--to-rem));
  border-end-start-radius: calc(8 * var(--to-rem));
  background-color: var(--color-panel);
}
@media screen and (max-width: 767px) {
  .p-top-interviews__panel {
    inset-block-start: calc(80 * var(--to-rem));
    inline-size: calc(120 * var(--to-rem));
    min-block-size: calc(1510 * var(--to-rem));
  }
}
.p-top-interviews__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: calc(800 * var(--to-rem)) calc(120 * var(--to-rem)) calc(360 * var(--to-rem));
  place-items: start start;
}
@media screen and (max-width: 767px) {
  .p-top-interviews__body {
    grid-template-columns: calc(24 * var(--to-rem)) 1fr;
    grid-template-rows: calc(254 * var(--to-rem)) auto;
  }
}
.p-top-interviews__side {
  position: sticky;
  inset-block-start: calc(120 * var(--to-rem));
  display: grid;
  grid-template-rows: calc(116 * var(--to-rem)) auto;
  grid-column: 3;
  grid-row: 1;
  justify-items: start;
  align-self: start;
}
@media screen and (max-width: 767px) {
  .p-top-interviews__side {
    position: static;
    grid-template-rows: calc(100 * var(--to-rem)) auto;
    grid-column: 2;
    grid-row: 1;
  }
}
.p-top-interviews__heading {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  grid-column: 1;
  grid-row: 1;
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-size: calc(40 * var(--to-rem));
  font-weight: var(--fw-semibold);
  line-height: 1.2;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-top-interviews__heading {
    font-size: calc(24 * var(--to-rem));
  }
}
.p-top-interviews__heading-jp {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  margin-inline-start: calc(166 * var(--to-rem));
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-size: calc(13 * var(--to-rem));
  font-weight: var(--fw-regular);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-top-interviews__heading-jp {
    margin-inline-start: calc(133 * var(--to-rem));
    font-size: calc(10 * var(--to-rem));
  }
}
.p-top-interviews__intro {
  grid-column: 1;
  grid-row: 2;
  inline-size: fit-content;
  color: var(--color-text);
  font-size: calc(15 * var(--to-rem));
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top-interviews__intro {
    inline-size: fit-content;
    font-size: calc(13 * var(--to-rem));
  }
}
.p-top-interviews__cards {
  display: flex;
  grid-column: 1;
  grid-row: 1;
  flex-direction: column;
  gap: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-top-interviews__cards {
    grid-column: 1/-1;
    grid-row: 2;
    gap: calc(24 * var(--to-rem));
  }
}
:root {
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);
}
@media (width <= 767px) {
  [data-only-device=md] {
    display: none;
  }
}
@media (width >= 768px) {
  [data-only-device=sm] {
    display: none;
  }
}
.u-sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  width: 1px;
  block-size: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
}
.u-text__marker {
  background: linear-gradient(transparent 75%, var(--color-orange) 75%);
}
.u-text__inline-block {
  display: inline-block;
}
.u-text__indent {
  padding-inline-start: 1em;
  text-indent: -1em;
}