/*! 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 {
  overflow-x: clip;
  font-size: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

a[href^=tel] {
  text-decoration: none;
}

a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

a:hover {
  text-decoration: none;
}

img,
svg {
  vertical-align: middle;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

:where(:any-link, button, [type=button], [type=reset], [type=submit], label[for], select, summary, [role=tab], [role=button]) {
  cursor: pointer;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

:focus:not(:focus-visible) {
  outline: none;
}

input[type=text] {
  font-size: 1rem;
}

textarea {
  field-sizing: content;
}

body {
  overflow-x: clip;
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-size: fz(15);
  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: calc(1020 * var(--to-rem));
  --inner-sp: calc(327 * var(--to-rem));
  --padding-inner: calc(50 * var(--to-rem));
  --inner-header: calc(1376 * var(--to-rem));
  --bleed-left: calc(50% - 50vw);
  --bleed-right: calc(50% - 50vw);
  --inner-c: min(100vw, 1120px);
  --gutter: max(0px, calc((100vw - var(--inner-c)) / 2));
  --inset-safe: max(0px, calc(var(--padding-inner) - var(--gutter)));
  --content-left: calc(var(--gutter) + var(--padding-inner));
  --content-right: var(--content-left);
  --stage-w: calc(1440 * var(--to-rem));
  --wide-gutter: max(0px, calc((100vw - var(--stage-w)) / 2));
  --z-index-menu-modal: 1000;
  --z-index-header: 900;
  --z-index-drawer: 890;
  --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;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --base-font-family: "Zen Kaku Gothic New", sans-serif;
  --title-font-family: "Poppins", sans-serif;
  --to-rem: 1px;
  --duration: 0.3s;
  --header-height: calc(106 * var(--to-rem));
}

@media (width <= 1080px) {
  :root {
    --to-rem: calc(100vw / 1080);
  }
}

@media (width <= 767px) {
  :root {
    --to-rem: 1px;
    --padding-inner: calc(15 * 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));
  }
}

.js-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js-reveal.is-revealed {
  opacity: 1;
  transform: none;
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.l-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 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(500px + var(--padding-inner) * 2);
  }
}

.l-bleed-right {
  margin-right: calc(50% - 50vw);
}

.l-bleed-left {
  margin-left: calc(50% - 50vw);
}

.l-bleed-full {
  margin-inline: calc(50% - 50vw);
}

.l-main {
  margin-top: var(--header-height);
  overflow-x: clip;
}

.l-stage {
  position: relative;
  max-width: var(--stage-w);
  width: 100%;
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .l-stage {
    max-width: 500px;
  }
}

.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: max(10 * 1px, 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-height: 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;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  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: clip;
  width: calc(347 * var(--to-rem));
  aspect-ratio: 1/1;
  min-height: 220px;
  max-height: 400px;
  margin-bottom: 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));
    min-height: 140px;
    max-height: 240px;
  }
}

.c-card-slider__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-card-slider__label {
  display: flex;
  gap: calc(8 * var(--to-rem));
  align-items: center;
  margin-bottom: 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-bottom: calc(25 * var(--to-rem));
  }
}

.c-card-slider__label-text {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  font-size: max(10 * 1px, 11 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .c-card-slider__label-text {
    font-size: max(8 * 1px, 8 * var(--to-rem));
  }
}

.c-card-slider__label-num {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  font-size: max(10 * 1px, 20 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .c-card-slider__label-num {
    font-size: max(10 * 1px, 14 * var(--to-rem));
  }
}

.c-card-slider__title {
  display: flex;
  flex-direction: column;
  width: calc(262 * var(--to-rem));
  margin-bottom: calc(38 * var(--to-rem));
}

.c-card-slider__title > :not(:first-child) {
  margin-top: calc(16 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .c-card-slider__title {
    width: calc(142 * var(--to-rem));
    margin-bottom: calc(30 * var(--to-rem));
  }
  .c-card-slider__title > :not(:first-child) {
    margin-top: calc(12 * var(--to-rem));
  }
}

.c-card-slider__title-line {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  padding-bottom: 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: max(10 * 1px, 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-bottom: calc(5 * var(--to-rem));
    font-size: max(10 * 1px, 18 * var(--to-rem));
  }
}

@media screen and (max-width: 767px) {
  .c-card-slider__title-line--split {
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
    border-block-end: none;
  }
  .c-card-slider__title-line--split > :not(:first-child) {
    margin-top: calc(12 * var(--to-rem));
  }
}

@media screen and (max-width: 767px) {
  .c-card-slider__title-line--split span {
    text-box-edge: cap alphabetic;
    text-box-trim: trim-both;
    padding-bottom: 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-carousel-dots {
  display: flex;
  gap: calc(11 * var(--to-rem));
  align-items: center;
}

.c-carousel-dot {
  width: calc(7 * var(--to-rem));
  min-height: 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);
}

.c-carousel-dot.is-active {
  border-color: var(--color-text);
  background-color: var(--color-text);
}

.c-carousel-pager {
  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) {
  .c-carousel-pager {
    gap: calc(6 * var(--to-rem));
  }
}

.c-carousel-pager__current {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  font-size: max(10 * 1px, 24 * var(--to-rem));
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .c-carousel-pager__current {
    font-size: 18px;
  }
}

.c-carousel-pager__sep {
  align-self: center;
  width: calc(1 * var(--to-rem));
  min-height: calc(14 * var(--to-rem));
  background-color: var(--color-text);
  rotate: 22deg;
}

@media screen and (max-width: 767px) {
  .c-carousel-pager__sep {
    min-height: calc(9 * var(--to-rem));
    position: relative;
    bottom: -2px;
  }
}

.c-carousel-pager__total {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  font-size: max(10 * 1px, 15 * var(--to-rem));
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .c-carousel-pager__total {
    font-size: max(10 * 1px, 10 * var(--to-rem));
  }
}

.c-interview-card {
  position: relative;
  display: block;
  overflow: clip;
  width: 100%;
  aspect-ratio: 800/400;
  min-height: 240px;
  max-height: 500px;
  border-radius: calc(8 * var(--to-rem));
  color: var(--color-text);
  text-decoration: none;
  transition: opacity var(--duration);
}

@media (width <= 1440px) {
  .c-interview-card {
    border-start-start-radius: 0;
    border-end-start-radius: 0;
  }
}

@media screen and (max-width: 767px) {
  .c-interview-card {
    aspect-ratio: 351/176;
    min-height: 140px;
    max-height: 240px;
  }
}

@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%;
  height: 100%;
}

.c-interview-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-interview-card__text {
  position: absolute;
  top: calc(60 * var(--to-rem));
  left: 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 {
    top: calc(24 * var(--to-rem));
    left: 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: max(10 * 1px, 11 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .c-interview-card__label-text {
    font-size: max(8 * 1px, 8 * var(--to-rem));
  }
}

.c-interview-card__label-num {
  font-size: max(10 * 1px, 20 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .c-interview-card__label-num {
    font-size: max(10 * 1px, 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-bottom: 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: max(10 * 1px, 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-bottom: calc(4 * var(--to-rem));
    font-size: max(10 * 1px, 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-bottom: 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-bottom: 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: max(10 * 1px, 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;
  bottom: calc(40 * var(--to-rem));
  right: calc(40 * var(--to-rem));
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .c-interview-card__more.c-read-more {
    bottom: calc(16 * var(--to-rem));
    right: calc(16 * var(--to-rem));
  }
}

.c-movie-trigger {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 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;
  min-height: 320px;
  max-height: 720px;
}

@media screen and (max-width: 767px) {
  .c-modal__player {
    width: 100%;
    min-height: 200px;
    max-height: 500px;
  }
}

.c-modal__frame {
  position: relative;
  overflow: clip;
  width: 100%;
  height: 100%;
  background-color: #000;
}

.c-modal__poster,
.c-modal__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.c-modal__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(96 * var(--to-rem));
  min-height: 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;
  top: calc(81 * var(--to-rem));
  right: 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 {
    top: calc(250 * var(--to-rem));
    right: calc(24 * var(--to-rem));
    gap: calc(6 * var(--to-rem));
  }
}

.c-modal__close-mark {
  position: relative;
  width: calc(60 * var(--to-rem));
  min-height: calc(20 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .c-modal__close-mark {
    width: calc(40 * var(--to-rem));
    min-height: calc(14 * var(--to-rem));
  }
}

.c-modal__close-mark::before,
.c-modal__close-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(63 * var(--to-rem));
  min-height: 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: max(10 * 1px, 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: max(10 * 1px, 11 * var(--to-rem));
  }
}

@media (any-hover: hover) {
  .c-modal__play {
    cursor: pointer;
  }
  .c-modal__close:hover {
    opacity: 0.7;
  }
}

.c-pagination {
  --_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-height: 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: max(10 * 1px, 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-height: calc(40 * var(--to-rem));
    font-size: max(10 * 1px, 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-height: calc(32 * var(--to-rem));
  padding-left: 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: max(10 * 1px, 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-height: calc(24 * var(--to-rem));
    padding-left: calc(20 * var(--to-rem));
    border-radius: calc(12 * var(--to-rem));
    font-size: max(10 * 1px, 11 * var(--to-rem));
  }
}

.c-read-more::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(20 * var(--to-rem));
  width: calc(6 * var(--to-rem));
  min-height: 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 {
    right: 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-scroll-hint {
  position: relative;
  width: calc(13 * var(--to-rem));
  min-height: calc(200 * var(--to-rem));
}

.c-scroll-hint__text {
  color: var(--color-text);
  writing-mode: vertical-rl;
  line-height: 1;
  font-family: var(--title-font-family);
  font-size: max(10 * 1px, 11 * var(--to-rem));
  font-weight: var(--fw-medium);
  letter-spacing: 0.1em;
}

.c-scroll-hint::after {
  content: "";
  position: absolute;
  top: 0;
  right: -2px;
  width: calc(1 * var(--to-rem));
  min-height: calc(200 * var(--to-rem));
  background-color: oklch(from var(--color-text) l c h/45%);
}

.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: max(10 * 1px, 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: max(10 * 1px, 28 * var(--to-rem));
  }
}

.c-section-title__sub {
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-size: max(10 * 1px, 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: max(10 * 1px, 12 * var(--to-rem));
  }
}

.c-triangle {
  display: inline-block;
  width: calc(64 * var(--to-rem));
  aspect-ratio: 1/1;
  min-height: 32px;
  max-height: 96px;
  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-top: 0;
}

.p-about-fv {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: clip;
  width: 100%;
  aspect-ratio: 1440/1317;
  min-height: max(1215 * var(--to-rem), 500px);
  max-height: 1317px;
  padding-top: calc(160 * var(--to-rem));
  background-color: var(--color-bg-blue);
}

@media screen and (max-width: 767px) {
  .p-about-fv {
    aspect-ratio: 375/888;
    min-height: max(888 * var(--to-rem), 500px);
    max-height: 888px;
    padding-top: calc(120 * var(--to-rem));
    padding-inline: calc(15 * var(--to-rem));
  }
}

.p-about-fv__title {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  margin-bottom: calc(80 * var(--to-rem));
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-size: max(10 * 1px, 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-bottom: calc(48 * var(--to-rem));
    font-size: max(10 * 1px, 56 * var(--to-rem));
  }
}

.p-about-fv__divider {
  width: calc(80 * var(--to-rem));
  min-height: calc(1 * var(--to-rem));
  margin-bottom: 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-bottom: calc(48 * var(--to-rem));
  }
}

.p-about-fv__lead {
  width: fit-content;
  margin-bottom: calc(80 * var(--to-rem));
  color: var(--color-text);
  font-size: max(10 * 1px, 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: calc(327 * var(--to-rem));
    max-width: 100%;
    margin-bottom: calc(48 * 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-bottom: calc(44 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-about-fv__lead p:not(:last-child) {
    margin-bottom: 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-bottom: 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: max(10 * 1px, 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: max(10 * 1px, 20 * var(--to-rem));
  }
}

.p-about-fv__gallery {
  align-self: stretch;
  margin-top: auto;
  margin-bottom: calc(200 * var(--to-rem));
  overflow: clip;
}

@media screen and (max-width: 767px) {
  .p-about-fv__gallery {
    margin-bottom: calc(80 * var(--to-rem));
    margin-inline: calc(-15 * var(--to-rem));
  }
}

.p-about-fv__gallery-track {
  display: flex;
  gap: calc(8 * var(--to-rem));
  will-change: transform;
  animation: about-gallery-scroll 30s 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: clip;
  width: calc(368 * var(--to-rem));
  min-height: 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-height: calc(140 * var(--to-rem));
  }
}

.p-about-fv__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-about-brand {
  width: 100%;
  background-color: var(--color-white);
}

.p-about-brand__inner {
  width: var(--stage-w);
  max-width: 100%;
  margin-inline: auto;
  padding-block: calc(200 * var(--to-rem)) calc(200 * var(--to-rem));
  padding-left: calc(160 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-about-brand__inner {
    padding-block: calc(80 * var(--to-rem)) calc(80 * var(--to-rem));
    padding-inline: calc(15 * var(--to-rem));
  }
}

.p-about-brand__head {
  display: flex;
  align-items: flex-start;
  margin-bottom: calc(64 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-about-brand__head {
    margin-bottom: 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: max(10 * 1px, 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: max(10 * 1px, 24 * var(--to-rem));
  }
}

.p-about-brand__label-jp {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  margin-left: calc(-3 * var(--to-rem));
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-size: max(10 * 1px, 13 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .p-about-brand__label-jp {
    font-size: max(10 * 1px, 10 * var(--to-rem));
    margin-left: calc(0 * var(--to-rem));
  }
}

.p-about-brand__movie {
  position: relative;
  overflow: clip;
  width: 100%;
  max-width: calc(1120 * var(--to-rem));
  aspect-ratio: 1120/625;
  min-height: 320px;
  max-height: 720px;
  border-radius: calc(8 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-about-brand__movie {
    aspect-ratio: 327/183;
    min-height: 160px;
    max-height: 260px;
  }
}

.p-about-brand__movie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-about-interviews {
  position: relative;
  overflow: clip;
  width: 100%;
  padding-bottom: calc(200 * var(--to-rem));
  background-color: var(--color-panel);
}

@media screen and (max-width: 767px) {
  .p-about-interviews {
    padding-bottom: calc(80 * 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-bottom: calc(64 * var(--to-rem));
  padding-top: calc(200 * var(--to-rem));
  padding-left: calc(160 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-about-interviews__head {
    margin-bottom: calc(24 * var(--to-rem));
    padding-top: calc(80 * var(--to-rem));
    padding-left: calc(15 * 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: max(10 * 1px, 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: max(10 * 1px, 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: max(10 * 1px, 15 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .p-about-interviews__heading-sub {
    font-size: max(10 * 1px, 11 * var(--to-rem));
  }
}

.p-about-interviews__slider .c-card-slider {
  padding-left: calc(160 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-about-interviews__slider .c-card-slider {
    padding-left: calc(15 * 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-bottom: calc(32 * var(--to-rem));
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-error__header {
    margin-bottom: calc(24 * var(--to-rem));
  }
}

.p-error__title {
  color: var(--color-text);
  font-size: max(10 * 1px, 32 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .p-error__title {
    font-size: max(10 * 1px, 24 * var(--to-rem));
  }
}

.p-error__content {
  max-width: calc(640 * var(--to-rem));
  margin-inline: auto;
  color: var(--color-text);
  font-size: max(10 * 1px, 16 * var(--to-rem));
  line-height: 1.8;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-error__content {
    font-size: max(10 * 1px, 14 * var(--to-rem));
  }
}

.p-error__content p + p {
  margin-top: 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;
  justify-content: center;
  align-items: center;
  margin-bottom: calc(36 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-footer__logo {
    margin-bottom: calc(25 * var(--to-rem));
  }
}

.p-footer__logo-text {
  color: var(--color-white);
  font-family: var(--title-font-family);
  font-size: max(10 * 1px, 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: max(10 * 1px, 28 * var(--to-rem));
  }
}

.p-footer__divider {
  flex-shrink: 0;
  width: calc(1 * var(--to-rem));
  min-height: calc(40 * var(--to-rem));
  margin-inline: calc(64 * var(--to-rem));
  background-color: oklch(from var(--color-white) l c h/25%);
}

@media screen and (max-width: 767px) {
  .p-footer__divider {
    min-height: calc(24 * var(--to-rem));
    margin-inline: calc(23 * 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%;
  height: auto;
  object-fit: contain;
}

.p-footer__tagline {
  margin-bottom: calc(54 * var(--to-rem));
  color: var(--color-white);
  font-family: var(--base-font-family);
  font-feature-settings: "hwid" 1;
  font-size: max(10 * 1px, 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-bottom: calc(41 * var(--to-rem));
    font-size: max(10 * 1px, 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-bottom: calc(159 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-footer__actions {
    flex-direction: column;
    gap: 0;
    align-items: center;
    margin-bottom: calc(76 * var(--to-rem));
  }
  .p-footer__actions > :not(:first-child) {
    margin-top: calc(24 * var(--to-rem));
  }
}

.p-footer__button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(320 * var(--to-rem));
  min-height: 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: max(10 * 1px, 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-height: calc(60 * var(--to-rem));
  }
}

.p-footer__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(16 * var(--to-rem));
  width: calc(16 * var(--to-rem));
  min-height: 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;
  top: 50%;
  right: calc(23 * var(--to-rem));
  z-index: 1;
  width: calc(4 * var(--to-rem));
  min-height: 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: max(10 * 1px, 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-top: calc(32 * var(--to-rem));
  padding-inline: calc(32 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-header__inner {
    padding-top: 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: max(10 * 1px, 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: max(10 * 1px, 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-height: calc(30 * var(--to-rem));
  background-color: var(--color-divider);
}

@media screen and (max-width: 767px) {
  .p-header__divider {
    min-height: 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%;
  height: 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-height: 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: max(10 * 1px, 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: max(10 * 1px, 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-top: 0;
}

.p-interview-fv {
  position: relative;
  overflow: clip;
  width: 100%;
  background-color: var(--color-bg-blue);
  padding-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .p-interview-fv {
    min-height: 0;
    overflow: visible;
    padding-bottom: 40px;
  }
}

.p-interview-fv__stage {
  height: 100%;
}

.p-interview-fv__hero {
  position: relative;
  width: calc(100vw - 160 * var(--to-rem));
  max-width: calc(1280 * var(--to-rem) + var(--wide-gutter));
  aspect-ratio: 1280/820;
  min-height: 560px;
  max-height: 900px;
  margin-left: calc(160 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-interview-fv__hero {
    width: auto;
    max-width: inherit;
    aspect-ratio: 0;
    min-height: 480px;
    max-height: inherit;
    margin-left: calc(56 * var(--to-rem));
  }
}

.p-interview-fv__hero > picture {
  display: block;
  overflow: clip;
  width: 100%;
  height: 100%;
}

.p-interview-fv__hero img,
.p-interview-fv__hero picture {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.p-interview-fv__intro {
  position: absolute;
  top: 24.39%;
  left: -6.25%;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 767px) {
  .p-interview-fv__intro {
    top: 21.31%;
    left: -10.03%;
  }
}

.p-interview-fv__intro > * + * {
  margin-top: calc(40 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-interview-fv__intro > * + * {
    margin-top: calc(16 * var(--to-rem));
  }
}

.p-interview-fv__num {
  display: flex;
  flex-direction: column;
  color: var(--color-text);
}

.p-interview-fv__num > * + * {
  margin-top: calc(24 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-interview-fv__num > * + * {
    margin-top: calc(16 * 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: max(10 * 1px, 20 * 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: max(10 * 1px, 13 * 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: max(10 * 1px, 120 * var(--to-rem));
  font-weight: var(--fw-semibold);
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .p-interview-fv__num-value {
    font-size: max(10 * 1px, 56 * var(--to-rem));
  }
}

.p-interview-fv__catch {
  display: flex;
  flex-direction: column;
  width: max-content;
}

.p-interview-fv__catch-line {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  width: 100%;
  padding-bottom: 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: min(0 * 1px + 2.7777777778 * 1vw, 2.7777777778 * 1vw, 40 * 1px);
  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-bottom: calc(6 * var(--to-rem));
    font-size: max(10 * 1px, 18 * var(--to-rem));
  }
}

.p-interview-fv__catch-line:not(:last-child) {
  margin-bottom: calc(24 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-interview-fv__catch-line:not(:last-child) {
    margin-bottom: 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__catch-line.p-interview-fv__catch-line--pc {
  margin-bottom: 0;
}

.p-interview-fv__profile {
  position: absolute;
  bottom: 40px;
  right: calc(40 * var(--to-rem));
  width: max(144px, 15.63%);
  color: var(--color-text);
}

@media screen and (max-width: 767px) {
  .p-interview-fv__profile {
    position: static;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    margin-top: calc(24 * var(--to-rem));
    padding-right: calc(24 * var(--to-rem));
  }
}

.p-interview-fv__profile-head {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  margin-bottom: calc(24 * var(--to-rem));
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .p-interview-fv__profile-head {
    margin-bottom: calc(24 * var(--to-rem));
  }
}

.p-interview-fv__profile-name {
  display: block;
  font-family: var(--title-font-family);
  font-size: max(10 * 1px, 18 * var(--to-rem));
  font-weight: var(--fw-semibold);
}

@media screen and (max-width: 767px) {
  .p-interview-fv__profile-name {
    display: inline;
    margin-right: calc(16 * var(--to-rem));
  }
}

.p-interview-fv__profile-name span {
  font-family: var(--base-font-family);
  font-size: max(10 * 1px, 13 * var(--to-rem));
  font-weight: var(--fw-bold);
}

.p-interview-fv__profile-role {
  font-family: var(--base-font-family);
  font-size: max(10 * 1px, 13 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.p-interview-fv__profile-desc {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  font-size: max(10 * 1px, 13 * var(--to-rem));
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: justify;
}

.p-interview-fv__share {
  position: absolute;
  bottom: calc(-40 * var(--to-rem));
  left: calc(30 * var(--to-rem));
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .p-interview-fv__share {
    bottom: calc(0 * var(--to-rem));
    left: calc(16 * var(--to-rem));
  }
}

.p-interview-fv__share > * + * {
  margin-top: calc(16 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-interview-fv__share > * + * {
    margin-top: 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: max(10 * 1px, 11 * var(--to-rem));
  font-weight: var(--fw-semibold);
  line-height: 1;
  letter-spacing: normal;
  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;
}

.p-interview-fv__share-list > * + * {
  margin-top: calc(16 * var(--to-rem));
}

.p-interview-fv__share-item {
  display: block;
  width: calc(32 * var(--to-rem));
  min-height: 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-height: calc(24 * var(--to-rem));
  }
}

.p-interview-fv__share-item svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media (any-hover: hover) {
  .p-interview-fv__share-item:hover {
    opacity: 0.7;
  }
}

.p-interview-article {
  position: relative;
  overflow: clip;
  margin-inline: auto;
  padding-top: calc(120 * var(--to-rem));
  padding-inline: calc(64 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-interview-article {
    overflow: visible;
    display: block;
    padding-inline: 0;
    padding-top: 0;
  }
}

.p-interview-article__inner {
  display: flex;
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .p-interview-article__inner {
    max-width: calc(500px + 15 * var(--to-rem) * 2);
    flex-direction: column;
    padding-top: calc(0 * var(--to-rem));
    padding-left: calc(56 * var(--to-rem));
    padding-right: calc(24 * var(--to-rem));
  }
}

.p-interview-nav {
  position: sticky;
  top: calc(120 * var(--to-rem));
  order: 1;
  flex-shrink: 0;
  align-self: flex-start;
  width: calc(320 * var(--to-rem));
  margin-left: calc(80 * var(--to-rem));
  margin-right: -135px;
}

@media (max-width: 1400px) {
  .p-interview-nav {
    margin-right: -100px;
  }
}

@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-bottom: 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: max(10 * 1px, 13 * var(--to-rem));
}

.p-interview-nav__head-num {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  font-size: max(10 * 1px, 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(40 * var(--to-rem));
  align-items: center;
  min-height: calc(60 * var(--to-rem));
  padding-left: calc(16 * var(--to-rem));
  padding-right: calc(24 * 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: max(10 * 1px, 13 * var(--to-rem));
  font-weight: var(--fw-semibold);
}

.p-interview-nav__item-label {
  flex: 1;
  font-family: var(--base-font-family);
  font-size: max(10 * 1px, 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-height: 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;
  top: 44%;
  left: 50%;
  width: calc(5 * var(--to-rem));
  min-height: calc(5 * var(--to-rem));
  border-block-end: calc(1 * var(--to-rem)) solid var(--color-line);
  border-inline-end: calc(1 * var(--to-rem)) solid var(--color-line);
  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;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    min-height: calc(64 * var(--to-rem));
    margin-bottom: calc(64 * var(--to-rem));
    border-block-end: calc(1 * var(--to-rem)) solid var(--color-line);
    scrollbar-width: none;
    margin-left: calc(50% - 50vw - 16 * var(--to-rem));
    width: 100vw;
  }
}

.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;
    min-height: calc(64 * var(--to-rem));
    padding-left: calc(56 * var(--to-rem));
    padding-right: 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-left: calc(16 * var(--to-rem));
    padding-left: 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: max(10 * 1px, 11 * var(--to-rem));
    font-weight: var(--fw-semibold);
  }
}

@media screen and (max-width: 767px) {
  .p-interview-chapternav__label {
    font-size: max(10 * 1px, 13 * var(--to-rem));
    font-weight: var(--fw-medium);
    white-space: nowrap;
  }
}

.p-interview-body {
  flex: 1 1 auto;
  min-width: 0;
  max-width: calc(800 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-interview-body {
    width: 100%;
    max-width: inherit;
  }
}

.p-interview-body > *:not(:last-child) {
  margin-bottom: calc(120 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-interview-body > *:not(:last-child) {
    margin-bottom: calc(80 * var(--to-rem));
  }
}

.p-interview-body__section {
  scroll-margin-top: var(--header-height);
}

.p-interview-body__head {
  margin-bottom: calc(64 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-interview-body__head {
    margin-bottom: 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-bottom: 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-bottom: calc(22 * var(--to-rem));
  }
}

.p-interview-body__label-num {
  font-family: var(--title-font-family);
  font-size: max(10 * 1px, 18 * var(--to-rem));
  font-weight: var(--fw-semibold);
}

@media screen and (max-width: 767px) {
  .p-interview-body__label-num {
    font-size: max(10 * 1px, 15 * var(--to-rem));
  }
}

.p-interview-body__label-bar {
  width: calc(1 * var(--to-rem));
  min-height: calc(16 * var(--to-rem));
  background-color: var(--color-text);
}

@media screen and (max-width: 767px) {
  .p-interview-body__label-bar {
    min-height: calc(13 * var(--to-rem));
  }
}

.p-interview-body__label-text {
  font-family: var(--base-font-family);
  font-size: max(10 * 1px, 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: max(10 * 1px, 13 * var(--to-rem));
  }
}

.p-interview-body__title {
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .p-interview-body__title {
    max-width: calc(100% + 16 * var(--to-rem));
    margin-right: calc(-16 * var(--to-rem));
  }
}

.p-interview-body__title-line {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  padding-bottom: calc(11 * var(--to-rem));
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-feature-settings: "hwid" 1;
  font-size: max(10 * 1px, 28 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 2.1071428571;
  letter-spacing: 0.05em;
  text-decoration-line: underline;
  text-decoration-color: var(--color-line);
  text-decoration-thickness: calc(1 * var(--to-rem));
  text-underline-offset: calc(10 * var(--to-rem));
  text-decoration-skip-ink: none;
}

@media screen and (max-width: 767px) {
  .p-interview-body__title-line {
    padding-bottom: calc(9 * var(--to-rem));
    font-size: max(10 * 1px, 20 * var(--to-rem));
    line-height: 1.9;
    text-underline-offset: calc(8 * var(--to-rem));
  }
}

.p-interview-body__text {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  color: var(--color-text);
  font-size: max(10 * 1px, 15 * var(--to-rem));
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: justify;
}

.p-interview-body__text:not(:last-child) {
  margin-bottom: calc(80 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-interview-body__text:not(:last-child) {
    margin-bottom: calc(40 * var(--to-rem));
  }
}

.p-interview-body__text p:not(:last-child) {
  margin-bottom: calc(27 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-interview-body__text p:not(:last-child) {
    margin-bottom: calc(13 * var(--to-rem));
  }
}

.p-interview-body__mark {
  background: linear-gradient(to top, var(--color-mark) 40%, transparent 40%);
  padding-block: 0;
  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: flex;
  width: fit-content;
  gap: calc(16 * var(--to-rem));
  align-items: center;
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-size: max(10 * 1px, 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(8 * var(--to-rem));
  }
}

.p-interview-body__link-head span:first-child {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
}

.p-interview-body__link-icon::after {
  left: 44%;
  rotate: -45deg;
}

.p-interview-body__link-text {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  margin-top: calc(24 * var(--to-rem));
  font-size: max(10 * 1px, 13 * var(--to-rem));
  line-height: 1.8;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .p-interview-body__link-text {
    margin-top: calc(24 * var(--to-rem));
    line-height: 1.6;
  }
}

.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-text);
  border-radius: calc(8 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-interview-body__note {
    padding: calc(41 * var(--to-rem)) calc(24 * var(--to-rem)) calc(24 * var(--to-rem));
  }
}

.p-interview-body__note-badge {
  position: absolute;
  top: 0;
  left: 50%;
  display: inline-flex;
  gap: calc(10 * var(--to-rem));
  align-items: center;
  min-height: 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: max(10 * 1px, 15 * 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-height: calc(34 * var(--to-rem));
    font-size: max(10 * 1px, 15 * 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;
  left: 50%;
  bottom: 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 {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  color: var(--color-text);
  font-size: max(10 * 1px, 13 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .p-interview-body__note-text {
    font-size: max(10 * 1px, 13 * var(--to-rem));
    line-height: 1.8;
  }
}

.p-interview-body__figure {
  --figure-bleed-left: calc(64 * var(--to-rem) + var(--padding-inner) + min(calc(96 * var(--to-rem)), max(0px, calc((100vw - 128 * var(--to-rem) - var(--inner) - var(--padding-inner) * 2) / 2))));
  display: block;
  overflow: clip;
  width: calc(100% + var(--figure-bleed-left));
  max-width: none;
  height: auto;
  margin-left: calc(-1 * var(--figure-bleed-left));
  border-start-start-radius: 0;
  border-start-end-radius: calc(8 * var(--to-rem));
  border-end-start-radius: 0;
  border-end-end-radius: calc(8 * var(--to-rem));
}

@media (min-width: 1441px) {
  .p-interview-body__figure {
    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-interview-body__figure {
    --figure-bleed-left: calc(56 * var(--to-rem) + max(0px, calc((100vw - calc(500 * var(--to-rem)) - var(--padding-inner) * 2) / 2)));
  }
}

.p-interview-body__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.p-interview-body__gallery {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.p-interview-body__gallery-item {
  display: block;
  overflow: clip;
  width: 85%;
  aspect-ratio: 2/1;
  min-height: 200px;
  max-height: 500px;
  border-radius: calc(8 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-interview-body__gallery-item {
    aspect-ratio: 351/176;
    min-height: 120px;
    max-height: 220px;
  }
}

.p-interview-body__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-interview-body__gallery-item--1 {
  align-self: flex-start;
}

.p-interview-body__gallery-item--2 {
  align-self: flex-end;
  margin-top: calc(40 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-interview-body__gallery-item--2 {
    margin-top: calc(16 * var(--to-rem));
  }
}

.p-interview-closing {
  display: flex;
  width: 100%;
  padding-top: calc(200 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-interview-closing {
    padding-top: calc(80 * var(--to-rem));
  }
}

.p-interview-closing__item {
  display: block;
  overflow: clip;
  width: 50%;
  aspect-ratio: 4/3;
  min-height: 320px;
  max-height: 720px;
}

@media screen and (max-width: 767px) {
  .p-interview-closing__item {
    aspect-ratio: 3/4;
    min-height: 200px;
    max-height: 400px;
  }
}

.p-interview-closing__item picture {
  display: block;
  width: 100%;
  height: 100%;
}

.p-interview-closing__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .p-interview-page .p-about-interviews__head {
    padding-left: calc(56 * var(--to-rem));
  }
}

@media screen and (max-width: 767px) {
  .p-interview-page .c-card-slider {
    padding-left: calc(56 * var(--to-rem));
  }
}

@media screen and (max-width: 767px) {
  .p-interview-page .c-card-slider__image {
    margin-bottom: calc(16 * var(--to-rem));
  }
}

@media screen and (max-width: 767px) {
  .p-interview-page .c-card-slider__label {
    margin-bottom: calc(32 * var(--to-rem));
  }
}

@media screen and (max-width: 767px) {
  .p-interview-page .c-card-slider__title {
    margin-bottom: calc(32 * var(--to-rem));
  }
}

.p-menu-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-index-menu-modal);
  display: none;
  overflow-y: auto;
  overflow-x: clip;
  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: rgba(0, 0, 0, 0.62);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  cursor: pointer;
}

.p-menu-modal__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  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 {
    padding-block: calc(24 * 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-white);
  font-family: var(--title-font-family);
  font-size: max(10 * 1px, 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: max(10 * 1px, 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-height: calc(30 * var(--to-rem));
  background-color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 767px) {
  .p-menu-modal__logo-divider {
    min-height: calc(20 * var(--to-rem));
  }
}

.p-menu-modal__logo-mark {
  width: 100%;
  max-width: calc(141 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-menu-modal__logo-mark {
    max-width: calc(98 * var(--to-rem));
  }
}

.p-menu-modal__logo-mark img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.p-menu-modal__header-close {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.p-menu-modal__header-close:focus-visible {
  outline: calc(2 * var(--to-rem)) solid var(--color-white);
  outline-offset: calc(4 * var(--to-rem));
}

.p-menu-modal__header-close-icon {
  position: relative;
  display: block;
  width: calc(60 * var(--to-rem));
  min-height: calc(20 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-menu-modal__header-close-icon {
    width: calc(48 * var(--to-rem));
    min-height: calc(16 * var(--to-rem));
  }
}

.p-menu-modal__header-close-icon::before,
.p-menu-modal__header-close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  min-height: calc(2 * var(--to-rem));
  background-color: var(--color-white);
}

.p-menu-modal__header-close-icon::before {
  transform: translateY(-50%) rotate(30deg);
}

.p-menu-modal__header-close-icon::after {
  transform: translateY(-50%) rotate(-30deg);
}

.p-menu-modal__header-close-label {
  margin-top: calc(10 * var(--to-rem));
  color: var(--color-white);
  font-family: var(--title-font-family);
  font-size: max(10 * 1px, 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 {
    margin-top: calc(6 * var(--to-rem));
    font-size: max(10 * 1px, 11 * var(--to-rem));
  }
}

.p-menu-modal__body {
  display: flex;
  flex-direction: column;
  margin-top: calc(97 * var(--to-rem));
  padding-inline: calc(118 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-menu-modal__body {
    margin-top: calc(64 * var(--to-rem));
    padding-inline: 0;
  }
}

.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: grid;
  grid-template-columns: calc(246 * var(--to-rem)) auto;
  grid-template-areas: "top       about" "interview interview";
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 767px) {
  .p-menu-modal__nav-list {
    display: flex;
    flex-direction: column;
  }
}

.p-menu-modal__nav-item--top {
  grid-area: top;
}

.p-menu-modal__nav-item--about {
  grid-area: about;
}

@media screen and (max-width: 767px) {
  .p-menu-modal__nav-item--about {
    margin-top: calc(40 * var(--to-rem));
  }
}

.p-menu-modal__nav-item--interview {
  grid-area: interview;
  margin-top: calc(120 * var(--to-rem));
  display: flex;
  gap: calc(40 * var(--to-rem));
  align-items: center;
}

@media screen and (max-width: 767px) {
  .p-menu-modal__nav-item--interview {
    margin-top: calc(40 * var(--to-rem));
    display: block;
  }
}

.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-height: calc(40 * var(--to-rem));
  padding: 0;
  border: calc(1 * var(--to-rem)) solid var(--color-white);
  border-radius: calc(999 * var(--to-rem));
  background: none;
  color: var(--color-white);
  font-size: max(10 * 1px, 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__slider-nav-prev.is-disabled,
.p-menu-modal__slider-nav-next.is-disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.p-menu-modal__slider-nav-prev svg,
.p-menu-modal__slider-nav-next svg {
  width: calc(16 * var(--to-rem));
  height: auto;
}

.p-menu-modal__nav-item a {
  display: flex;
  flex-direction: column;
  color: var(--color-white);
  text-decoration: none;
  transition: opacity var(--duration);
}

@media (any-hover: hover) {
  .p-menu-modal__nav-item a:hover {
    opacity: 0.7;
  }
}

.p-menu-modal__nav-item-en {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  font-family: var(--title-font-family);
  font-size: max(10 * 1px, 28 * var(--to-rem));
  font-weight: var(--fw-semibold);
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .p-menu-modal__nav-item-en {
    font-size: max(10 * 1px, 18 * var(--to-rem));
    white-space: normal;
  }
}

.p-menu-modal__nav-item-jp {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  margin-top: calc(16 * var(--to-rem));
  color: var(--color-white);
  font-family: var(--base-font-family);
  font-size: max(10 * 1px, 15 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .p-menu-modal__nav-item-jp {
    margin-top: calc(8 * var(--to-rem));
    font-size: max(10 * 1px, 11 * var(--to-rem));
  }
}

.p-menu-modal__site-buttons {
  display: flex;
  column-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;
  }
}

@media screen and (max-width: 767px) {
  .p-menu-modal__site-buttons li + li {
    margin-top: calc(16 * var(--to-rem));
  }
}

.p-menu-modal__site-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(200 * var(--to-rem));
  min-height: calc(46 * var(--to-rem));
  padding-inline: calc(24 * var(--to-rem));
  border: none;
  border-radius: calc(4 * var(--to-rem));
  background-color: var(--color-btn-light);
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-size: max(10 * 1px, 13 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-decoration: none;
  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));
    min-height: calc(40 * 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 {
  position: absolute;
  top: 50%;
  right: calc(8 * var(--to-rem));
  display: inline-flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: calc(20 * var(--to-rem));
  min-height: calc(20 * var(--to-rem));
  opacity: 0.5;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .p-menu-modal__site-button-icon {
    width: calc(15 * var(--to-rem));
  }
}

.p-menu-modal__site-button-icon svg {
  width: 100%;
  height: 100%;
}

.p-menu-modal__interview-slider {
  min-width: 0;
  max-width: 100%;
  margin-top: calc(34 * var(--to-rem));
  margin-left: 0;
  margin-right: calc(-100 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-menu-modal__interview-slider {
    margin-top: calc(56 * var(--to-rem));
    margin-inline: 0 auto;
    max-width: calc(380 * var(--to-rem));
  }
}

.p-menu-modal__interview-grid {
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 767px) {
  .p-menu-modal__interview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: calc(36 * var(--to-rem)) calc(15 * var(--to-rem));
    transform: none !important;
  }
}

.p-menu-modal__interview-block {
  display: flex;
  flex-direction: column;
  width: calc(413 * var(--to-rem));
  min-width: 0;
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 767px) {
  .p-menu-modal__interview-block {
    display: contents;
    width: auto;
  }
}

.p-menu-modal__interview-block-list {
  display: contents;
  padding: 0;
  list-style: none;
}

.p-menu-modal__interview-item {
  min-width: 0;
}

@media screen and (max-width: 767px) {
  .p-menu-modal__interview-item {
    width: 100%;
  }
}

.p-menu-modal__interview-item + .p-menu-modal__interview-item {
  margin-top: calc(40 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-menu-modal__interview-item + .p-menu-modal__interview-item {
    margin-top: 0;
  }
}

.p-menu-modal__interview-item a {
  display: flex;
  column-gap: calc(16 * var(--to-rem));
  align-items: center;
  color: var(--color-white);
  text-decoration: none;
  transition: opacity var(--duration);
}

@media screen and (max-width: 767px) {
  .p-menu-modal__interview-item a {
    flex-direction: column;
    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: clip;
  flex-shrink: 0;
  width: calc(200 * var(--to-rem));
  aspect-ratio: 2/1;
  min-height: 60px;
  max-height: 140px;
  border-radius: calc(4 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-menu-modal__interview-item-image {
    width: 100%;
    max-width: none;
    min-height: 40px;
    max-height: 100px;
  }
}

.p-menu-modal__interview-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-menu-modal__interview-item-text {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  width: calc(206 * var(--to-rem));
  min-width: 0;
}

@media screen and (max-width: 767px) {
  .p-menu-modal__interview-item-text {
    width: auto;
    margin-top: calc(16 * var(--to-rem));
  }
}

.p-menu-modal__interview-item-label {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  display: flex;
  gap: calc(4 * var(--to-rem));
  align-items: center;
  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: max(10 * 1px, 11 * var(--to-rem));
}

.p-menu-modal__interview-item-label-num {
  font-size: max(10 * 1px, 15 * var(--to-rem));
}

.p-menu-modal__interview-item-title {
  margin-top: calc(16 * var(--to-rem));
  font-family: var(--base-font-family);
  font-size: max(10 * 1px, 15 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-decoration-color: oklch(from var(--color-white) l c h/55%);
  text-decoration-thickness: calc(1 * var(--to-rem));
  text-underline-offset: calc(6 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-menu-modal__interview-item-title {
    margin-top: calc(12 * var(--to-rem));
    font-size: 12px;
    text-underline-offset: calc(3 * var(--to-rem));
  }
}

.home .l-main {
  margin-top: 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-slide-top: 162;
  --fv-slide-angle: 3.52deg;
  --fv-slide-duration: 1.2s;
  --fv-slide-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --fv-slot0-x: calc((100vw - min(calc(var(--fv-slide-w) * var(--to-rem)), var(--inner))) / 2);
  --fv-pitch-y: calc(var(--fv-pitch) * tan(var(--fv-slide-angle)));
  position: relative;
  overflow: clip;
  width: 100%;
  aspect-ratio: 1440/1020;
  min-height: calc(1020 * var(--to-rem));
  max-height: calc(1020 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-top-fv {
    aspect-ratio: 375/780;
    min-height: 500px;
    max-height: 900px;
  }
}

.p-top-fv__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  pointer-events: none;
}

.p-top-fv__inner > * {
  pointer-events: auto;
}

.p-top-fv__line {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(491 * var(--to-rem));
  z-index: 0;
  min-height: 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)));
}

@media screen and (max-width: 767px) {
  .p-top-fv__track.is-advancing {
    transform: translateX(-100vw);
  }
}

.p-top-fv__track.is-resetting {
  transition: none;
}

.p-top-fv__slide {
  position: absolute;
  inset: 0;
  width: min(var(--fv-slide-w) * var(--to-rem), var(--inner));
  aspect-ratio: 960/658;
  min-height: 400px;
  max-height: 780px;
  transform: translate(calc(var(--fv-slot0-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 {
    width: 100%;
    aspect-ratio: 1/1;
    min-height: 300px;
    max-height: 500px;
    transform: translate(calc(var(--slot) * 100vw), calc(320 * var(--to-rem)));
  }
}

.p-top-fv__slide-image {
  position: absolute;
  inset: 0;
  overflow: clip;
  border-radius: calc(8 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-top-fv__slide-image {
    border-radius: 0;
  }
}

.p-top-fv__interview-block {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: calc(-40 * var(--to-rem));
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .p-top-fv__interview-block {
    right: 0;
  }
}

.p-top-fv__slide .p-top-fv__interview-block {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.p-top-fv__slide.is-current .p-top-fv__interview-block {
  opacity: 1;
  pointer-events: auto;
}

.p-top-fv__track.is-advancing .p-top-fv__slide.is-current .p-top-fv__interview-block {
  opacity: 0;
  pointer-events: none;
}

.p-top-fv__track.is-advancing .p-top-fv__slide[data-slot="1"] .p-top-fv__interview-block {
  opacity: 1;
}

.p-top-fv__slide-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.p-top-fv__slide-image img {
  width: 100%;
  height: 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-block {
  position: absolute;
  top: calc(282 * var(--to-rem));
  left: calc(64 * var(--to-rem) - var(--gutter));
  z-index: 2;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 767px) {
  .p-top-fv__title-block {
    top: calc(116 * var(--to-rem));
    left: calc(24 * var(--to-rem));
  }
}

.p-top-fv__brand {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-size: max(10 * 1px, 96 * var(--to-rem));
  font-weight: var(--fw-semibold);
  line-height: 1;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .p-top-fv__brand {
    font-size: max(10 * 1px, 64 * var(--to-rem));
  }
}

.p-top-fv__tagline {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  margin-top: calc(40 * var(--to-rem));
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-feature-settings: "hwid" 1;
  font-size: max(10 * 1px, 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 {
    margin-top: calc(24 * var(--to-rem));
    font-size: max(10 * 1px, 13 * var(--to-rem));
  }
}

.p-top-fv__interview-heading {
  position: absolute;
  top: calc(120 * var(--to-rem));
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media screen and (max-width: 767px) {
  .p-top-fv__interview-heading {
    top: calc(-81 * var(--to-rem));
    right: calc(16 * var(--to-rem));
  }
}

.p-top-fv__interview-label {
  display: flex;
  gap: calc(8 * var(--to-rem));
  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__interview-label {
    gap: calc(6 * var(--to-rem));
  }
}

.p-top-fv__interview-label-text {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  font-size: max(10 * 1px, 13 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-top-fv__interview-label-text {
    font-size: max(8 * 1px, 8 * var(--to-rem));
  }
}

.p-top-fv__interview-label-num {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  font-size: max(10 * 1px, 56 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-top-fv__interview-label-num {
    font-size: 30px;
  }
}

.p-top-fv__interview-title {
  margin-top: calc(24 * var(--to-rem));
  display: flex;
  flex-direction: column;
  max-width: calc(262 * var(--to-rem));
}

.p-top-fv__interview-title > :not(:first-child) {
  margin-top: calc(16 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-top-fv__interview-title {
    margin-top: calc(28 * var(--to-rem));
    max-width: calc(236 * var(--to-rem));
  }
  .p-top-fv__interview-title > :not(:first-child) {
    margin-top: calc(12 * var(--to-rem));
  }
}

.p-top-fv__interview-title-line {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  padding-bottom: 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: max(10 * 1px, 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__interview-title-line {
    padding-bottom: calc(5 * var(--to-rem));
    font-size: 18px;
  }
}

.p-top-fv__interview-caption {
  position: absolute;
  bottom: calc(64 * var(--to-rem));
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media screen and (max-width: 767px) {
  .p-top-fv__interview-caption {
    bottom: calc(24 * var(--to-rem));
    right: calc(24 * var(--to-rem));
  }
}

.p-top-fv__interview-name {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-size: max(10 * 1px, 13 * var(--to-rem));
  font-weight: var(--fw-semibold);
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: end;
}

@media screen and (max-width: 767px) {
  .p-top-fv__interview-name {
    display: none;
  }
}

.p-top-fv__interview-name span {
  font-family: var(--base-font-family);
  font-size: max(10 * 1px, 11 * var(--to-rem));
  font-weight: var(--fw-bold);
}

.p-top-fv__interview-desc {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  margin-top: calc(24 * var(--to-rem));
  max-width: calc(195 * var(--to-rem));
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-size: max(10 * 1px, 11 * var(--to-rem));
  font-weight: var(--fw-light);
  line-height: 1.6;
  letter-spacing: normal;
  text-align: end;
}

@media screen and (max-width: 767px) {
  .p-top-fv__interview-desc {
    display: none;
  }
}

.p-top-fv__interview-more {
  margin-top: calc(24 * var(--to-rem));
  align-self: flex-end;
}

.p-top-fv__pager {
  position: absolute;
  top: calc(832 * var(--to-rem));
  left: calc(80 * var(--to-rem));
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .p-top-fv__slide .p-top-fv__pager.sp {
    position: absolute;
    top: auto;
    bottom: calc(24 * var(--to-rem));
    left: calc(24 * var(--to-rem));
    z-index: 3;
  }
}

.p-top-fv__dots {
  position: absolute;
  top: calc(838 * var(--to-rem));
  right: calc(86 * var(--to-rem));
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .p-top-fv__dots {
    display: none;
  }
}

.p-top-fv__scroll {
  position: absolute;
  bottom: 100px;
  right: calc(40 * var(--to-rem));
  z-index: 2;
}

@media (max-width: 1200px) {
  .p-top-fv__scroll {
    bottom: 0px;
  }
}

@media screen and (max-width: 767px) {
  .p-top-fv__scroll {
    display: none;
  }
}

.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 {
  max-width: 1440px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: calc(360 * var(--to-rem)) 1fr;
  grid-template-rows: min-content 1fr;
  grid-template-areas: "text  media" "more  media";
  padding-left: clamp(50 * var(--to-rem), (100vw - 1080px) / 360 * 110 + 50px, 160px);
  padding-right: 0;
  align-items: start;
}

@media screen and (max-width: 767px) {
  .p-top-about__body {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "text" "media" "more";
    padding-left: var(--padding-inner);
    padding-right: var(--padding-inner);
  }
}

.p-top-about__text {
  grid-area: text;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: calc(80 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-top-about__text {
    margin-top: 0;
  }
}

.p-top-about__heading-block {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.p-top-about__heading {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-size: max(10 * 1px, 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: 30px;
  }
}

.p-top-about__heading-jp {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  margin-left: calc(-29 * var(--to-rem));
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-size: max(10 * 1px, 15 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .p-top-about__heading-jp {
    margin-left: -10px;
    font-size: max(10 * 1px, 11 * var(--to-rem));
  }
}

.p-top-about__lead {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  margin-top: calc(40 * var(--to-rem));
  color: var(--color-text);
  font-size: max(10 * 1px, 15 * var(--to-rem));
  line-height: 1.8;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .p-top-about__lead {
    margin-top: calc(40 * var(--to-rem));
    font-size: max(10 * 1px, 13 * var(--to-rem));
  }
}

.p-top-about__media {
  grid-area: media;
  grid-row: 1/span 2;
  display: flex;
  flex-direction: column;
  justify-self: end;
  width: 100%;
  max-width: calc(800 * var(--to-rem));
  min-width: 0;
}

@media screen and (max-width: 767px) {
  .p-top-about__media {
    grid-row: auto;
    margin-top: calc(40 * var(--to-rem));
    max-width: none;
  }
}

.p-top-about__movie-label {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-size: max(10 * 1px, 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: max(10 * 1px, 15 * var(--to-rem));
  }
}

.p-top-about__movie {
  position: relative;
  overflow: clip;
  margin-top: calc(16 * var(--to-rem));
  border-radius: calc(8 * var(--to-rem));
}

@media (max-width: 1440px) {
  .p-top-about__movie {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-top-about__movie {
    margin-top: calc(16 * var(--to-rem));
    margin-right: calc(-24 * var(--to-rem));
    border-start-end-radius: 0;
    border-end-end-radius: 0;
  }
}

.p-top-about__movie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top-about__more {
  grid-area: more;
  align-self: start;
  justify-self: start;
  margin-top: calc(64 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-top-about__more {
    margin-top: calc(30 * var(--to-rem));
  }
}

.p-top-interviews {
  position: relative;
  overflow-x: clip;
  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::before {
    content: "";
    position: absolute;
    inset-block: calc(40 * var(--to-rem)) calc(80 * var(--to-rem));
    inset-inline: 60% 0;
    z-index: 0;
    border-start-start-radius: calc(8 * var(--to-rem));
    border-end-start-radius: calc(8 * var(--to-rem));
    background-color: var(--color-panel);
  }
}

.p-top-interviews__body {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin-inline: auto;
  display: flex;
  padding-inline: 0;
  gap: calc(60 * var(--to-rem));
  justify-content: space-between;
  align-items: stretch;
}

@media screen and (max-width: 767px) {
  .p-top-interviews__body {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-inline: calc(24 * var(--to-rem));
  }
}

.p-top-interviews__side {
  position: relative;
  flex: 1 1 320px;
  max-width: calc(520 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-top-interviews__side {
    order: -1;
    flex: 0 1 auto;
    max-width: none;
  }
}

.p-top-interviews__panel {
  position: absolute;
  top: -80px;
  bottom: 0;
  left: calc(80 * var(--to-rem));
  right: 0;
  z-index: 0;
  border-start-start-radius: calc(8 * var(--to-rem));
  border-end-start-radius: calc(8 * var(--to-rem));
  background-color: var(--color-panel);
}

@media (min-width: 1441px) {
  .p-top-interviews__panel {
    border-start-end-radius: calc(8 * var(--to-rem));
    border-end-end-radius: calc(8 * var(--to-rem));
  }
}

@media screen and (max-width: 767px) {
  .p-top-interviews__panel {
    display: none;
  }
}

.p-top-interviews__content {
  position: sticky;
  top: calc(120 * var(--to-rem));
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding-inline: 0;
}

@media screen and (max-width: 767px) {
  .p-top-interviews__content {
    position: static;
    padding-block: 0;
    padding-inline: 0;
  }
}

.p-top-interviews__heading-block {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.p-top-interviews__heading {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-size: max(10 * 1px, 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: 30px;
  }
}

.p-top-interviews__heading-jp {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  margin-left: 0;
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-size: max(10 * 1px, 15 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .p-top-interviews__heading-jp {
    margin-left: 0;
    font-size: max(10 * 1px, 11 * var(--to-rem));
  }
}

.p-top-interviews__intro {
  margin-top: calc(40 * var(--to-rem));
  max-width: calc(360 * var(--to-rem));
  color: var(--color-text);
  font-size: max(10 * 1px, 15 * var(--to-rem));
  line-height: 1.8;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .p-top-interviews__intro {
    text-box-edge: cap alphabetic;
    text-box-trim: trim-both;
    margin-top: calc(43 * var(--to-rem));
    max-width: none;
    font-size: max(10 * 1px, 13 * var(--to-rem));
    line-height: 1.6;
  }
}

.p-top-interviews__cards {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  max-width: calc(800 * var(--to-rem));
  min-width: 0;
}

.p-top-interviews__cards > :not(:first-child) {
  margin-top: calc(40 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-top-interviews__cards {
    position: relative;
    margin-top: calc(40 * var(--to-rem));
    align-self: start;
    max-width: min(100% - 24 * var(--to-rem), 480 * var(--to-rem));
    width: 100%;
  }
  .p-top-interviews__cards > :not(:first-child) {
    margin-top: 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;
  }
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

.u-sr-only {
  position: absolute;
  overflow: clip;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  width: 1px;
  min-height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
}

.u-text__marker {
  background: linear-gradient(transparent 75%, var(--color-orange) 75%);
}

.u-text__inline-block {
  display: inline-block;
}

.u-text__indent {
  padding-left: 1em;
  text-indent: -1em;
}