@charset "UTF-8";
/*! TAK's Custom Base.css v1.3.4 | MIT License | github.com/tak-dcxi/taks-custom-base-css */
/* ======================================================
//
// MARK: # TAK's Custom Base.css
// Made by TAK - https: //www.tak-dcxi.com/
// This CSS is built based on Normalize.css. (https: //necolas.github.io/normalize.css/)
// It aims to normalize styles for better cross-browser compatibility, remove default browser styling, and enhance usability and accessibility for all users."
//
// ====================================================== */
/* ======================================================
// MARK: ## Universal
// ------------------------------------------------------ */
*,
::before,
::after {
  /* Ensure padding and borders are included within the dimensions of the element. */
  box-sizing: border-box;
  /* Prevent inline elements from extending beyond their container's bounds. */
  min-inline-size: 0;
  /* Remove any default borders. */
  border-width: 0;
  /* Set a default border style of solid for easy border additions. */
  border-style: solid;
}

/* ======================================================
// MARK: ## Document and Body Elements
// ------------------------------------------------------ */
:where(:root, body) {
  /* Prevent scrolling along the inline axis (usually horizontal) for root and body. */
  overflow-inline: clip;
}
@supports not (overflow-inline: clip) {
  :where(:root, body) {
    /* Prevent horizontal scrolling for root and body in browsers that don't support `overflow-inline`. */
    overflow-x: clip;
  }
}

:where(:root) {
  /* Specify a safe font-family for the default Gothic typeface. */
  font-family: "Helvetica Neue", arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", meiryo, sans-serif;
  /* Normalize font-style. */
  font-style: unset;
  /* Normalize font-style. */
  font-weight: 400;
  /* From an accessibility perspective, the line spacing within a paragraph should be at least 1.5 times the text size. (https://waic.jp/translations/WCAG21/#visual-presentation) */
  line-height: 1.5;
  /* Align text to the start of the element, accommodating left-to-right and right-to-left languages. */
  text-align: start;
  /* Remove leading white space for a cleaner text alignment. */
  text-spacing-trim: trim-start;
  /* Use the browser's default method to determine word breaking. */
  word-break: initial;
  /* Apply strict line breaking rules to enhance readability in languages that require it. */
  line-break: strict;
  /* Allow long words to be broken and wrapped at any point to prevent overflow. */
  overflow-wrap: anywhere;
  /* Automatically insert hyphens where appropriate for better text flow and alignment. */
  hyphens: auto;
  /* Prevent mobile browsers from scaling text sizes automatically. */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* Preventing the layout shift caused by scrollbars. */
  scrollbar-gutter: stable;
  /* Allow animations and transitions of intrinsic sizing keywords. */
  interpolate-size: allow-keywords;
  /* Eliminate the tap highlight color on mobile devices for a cleaner interface. */
  -webkit-tap-highlight-color: transparent;
}
:where(:root):has(:where(:modal)) {
  /* Prevent scrolling of the document when a modal is open. */
  overflow: hidden;
}

:where(body) {
  /* Ensures the body element occupies at least 100% of the viewport's block size. */
  min-block-size: 100svb;
  /* Reset default margin. */
  margin: unset;
}

/* ======================================================
// MARK: ## Custom Properties
// ------------------------------------------------------ */
/* ------------------------------------------------------
// MARK: ### colors
*/
/*
  Define a custom property to use as a background color that remains visible in forced colors mode.
  This is useful when using `background-color: currentColor` as a foreground color,
  such as in pseudo-elements.

  Example usage:
  ```
  .button::after {
    content: '';
    justify-self: end;
    mask-image: url(...);
    inline-size: 1em;
    aspect-ratio: 1;
    background-color: var(--background-current);
    color: red;
  }
*/
@property --background-current {
  syntax: "currentColor | CanvasText";
  inherits: true;
  initial-value: currentColor;
}
@media (forced-colors: active) {
  :where(:root) {
    /* Set the default background color to the forced color mode background. */
    --background-current: CanvasText;
  }
}

/* ------------------------------------------------------
// MARK: ### easing function
*/
@property --ease-in-sine {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.47, 0, 0.745, 0.715);
}
@property --ease-out-sine {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.39, 0.575, 0.565, 1);
}
@property --ease-in-out-sine {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
@property --ease-in-quad {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@property --ease-out-quad {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@property --ease-in-out-quad {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
@property --ease-in-cubic {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
@property --ease-out-cubic {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.215, 0.61, 0.355, 1);
}
@property --ease-in-out-cubic {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.645, 0.045, 0.355, 1);
}
@property --ease-in-quart {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
@property --ease-out-quart {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.165, 0.84, 0.44, 1);
}
@property --ease-in-out-quart {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.77, 0, 0.175, 1);
}
@property --ease-in-quint {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
@property --ease-out-quint {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.23, 1, 0.32, 1);
}
@property --ease-in-out-quint {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.86, 0, 0.07, 1);
}
@property --ease-in-expo {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.95, 0.05, 0.795, 0.035);
}
@property --ease-out-expo {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.19, 1, 0.22, 1);
}
@property --ease-in-out-expo {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(1, 0, 0, 1);
}
@property --ease-in-circ {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.6, 0.04, 0.98, 0.335);
}
@property --ease-out-circ {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.075, 0.82, 0.165, 1);
}
@property --ease-in-out-circ {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
@property --ease-in-back {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
@property --ease-out-back {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@property --ease-in-out-back {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
/* ------------------------------------------------------
// MARK: ### triangle shapes
*/
/*
Example usage:
```
.tooltip::after {
  --_size: 16px;

  content: '';
  position: absolute;
  inset-inline: 0;
  inset-block-start: 100%;
  clip-path: var(--shape-triangle-bottom);
  inline-size: var(--_size);
  block-size: calc(var(--_size) / 2 * tan(60deg));
  margin-inline: auto;
  background-color: inherit;
}
```
*/
@property --shape-triangle-top {
  syntax: "*";
  inherits: false;
  initial-value: polygon(50% 0, 100% 100%, 0 100%);
}
@property --shape-triangle-bottom {
  syntax: "*";
  inherits: false;
  initial-value: polygon(0 0, 100% 0, 50% 100%);
}
@property --shape-triangle-right {
  syntax: "*";
  inherits: false;
  initial-value: polygon(0 0, 100% 50%, 0 100%);
}
@property --shape-triangle-left {
  syntax: "*";
  inherits: false;
  initial-value: polygon(0 50%, 100% 0, 100% 100%);
}
@property --shape-triangle-lower-left {
  syntax: "*";
  inherits: false;
  initial-value: polygon(0 0, 100% 100%, 0 100%);
}
@property --shape-triangle-upper-left {
  syntax: "*";
  inherits: false;
  initial-value: polygon(0 0, 100% 0, 0 100%);
}
@property --shape-triangle-lower-right {
  syntax: "*";
  inherits: false;
  initial-value: polygon(100% 0, 100% 100%, 0 100%);
}
@property --shape-triangle-upper-right {
  syntax: "*";
  inherits: false;
  initial-value: polygon(0 0, 100% 0, 100% 100%);
}
/* ------------------------------------------------------
// MARK: ### chevron icons
*/
/*
The chevron icon is borrowed from Basicons (https://basicons.xyz/).

Example usage:
```
.button::after {
  content: '';
  justify-self: end;
  mask-image: var(--icon-chevron-right);
  inline-size: 1em;
  aspect-ratio: 1;
  background-color: var(--background-current);
}
```
*/
/* single chevron icons */
@property --icon-chevron-up {
  syntax: "<url>";
  inherits: false;
  initial-value: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="m4 16 8-8 8 8" /></svg>');
}
@property --icon-chevron-right {
  syntax: "<url>";
  inherits: false;
  initial-value: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M8 4L16 12L8 20" /></svg>');
}
@property --icon-chevron-down {
  syntax: "<url>";
  inherits: false;
  initial-value: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M4 8L12 16L20 8" /></svg>');
}
@property --icon-chevron-left {
  syntax: "<url>";
  inherits: false;
  initial-value: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M16 4L8 12L16 20" /></svg>');
}
/* double chevron icons */
@property --icon-chevrons-up {
  syntax: "<url>";
  inherits: false;
  initial-value: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M17 18L12 13L7 18M17 11L12 6L7 11" /></svg>');
}
@property --icon-chevrons-right {
  syntax: "<url>";
  inherits: false;
  initial-value: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M6 7L11 12L6 17M13 7L18 12L13 17" /></svg>');
}
@property --icon-chevrons-down {
  syntax: "<url>";
  inherits: false;
  initial-value: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M17 6L12 11L7 6M17 13L12 18L7 13" /></svg>');
}
@property --icon-chevrons-left {
  syntax: "<url>";
  inherits: false;
  initial-value: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M18 7L13 12L18 17M11 7L6 12L11 17" /></svg>');
}
/* ------------------------------------------------------
// MARK: ### launch link icon
*/
/*
The chevron icon is borrowed from Basicons (https://basicons.xyz/).

Example usage:
```
.button[target="_blank"]::after {
  content: '' / '別ウインドウで開きます';
  justify-self: end;
  mask-image: var(--icon-launch-link);
  inline-size: 1em;
  aspect-ratio: 1;
  background-color: var(--background-current);
}
```
*/
@property --icon-launch-link {
  syntax: "<url>";
  inherits: false;
  initial-value: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M17 2H22V7" /><path d="M21 13V19C21 20.1046 20.1046 21 19 21H5C3.89543 21 3 20.1046 3 19V5C3 3.89543 3.89543 3 5 3H11" /><path d="M13 11L21.5 2.5" /></svg>');
}
/* ------------------------------------------------------
// MARK: ### leading trim
*/
/*
You can use the `--leading-trim` custom property to adjust the vertical spacing of text elements.
This helps in achieving more consistent and visually pleasing typography across different languages and font styles.

@see https://www.tak-dcxi.com/article/use-line-height-trim-as-css-variable

Example usage:
```
p {
  margin-block: var(--leading-trim);
}

.button {
  padding-block: calc(1.5em + var(--leading-trim));
}
```
*/
@property --leading-trim {
  syntax: "*";
  inherits: false;
  initial-value: calc((1em - 1lh) / 2);
}
:where(:lang(en)) {
  /* This ensures that the vertical space is evenly distributed, improving the visual balance of text. */
  --leading-trim: calc((1cap - 1lh) / 2);
}

/* ------------------------------------------------------
// MARK: ### hover state
*/
/*
You can use these custom properties to easily switch between hover and non-hover styles.
The var() function will use the first non-empty value, allowing you to define both states in one line.

Example usage:
```
.button {
  --_background-lighten: var(--is-hover-false, 0%) var(--is-hover-true, 20%);

  background-color: color-mix(in sRGB, var(--background-button), #fff var(--_background-lighten));
}
```
*/
:where(:any-link, :enabled, summary) {
  /* Define custom properties for hover state on interactive elements. Default state: `--is-hover-true` is empty, `--is-hover-false` has a value. */
  --is-hover-true: ;
  --is-hover-false: initial;
}
@media (any-hover: hover) {
  :where(:any-link, :enabled, summary):where(:hover) {
    /* Set hover state for actual hover, but only on devices that support hover. Hover state: `--is-hover-true` has a value, `--is-hover-false` is empty. */
    --is-hover-true: initial;
    --is-hover-false: ;
  }
}
:where(:any-link, :enabled, summary):where(:focus-visible) {
  /* Set hover state for focus-visible state. Focus-visible state: `--is-hover-true` has a value, `--is-hover-false` is empty. */
  --is-hover-true: initial;
  --is-hover-false: ;
}

/* ======================================================
// MARK: ## Sections
// ------------------------------------------------------ */
:where(h1, h2, h3, h4, h5, h6) {
  /* Reset default margin. */
  margin-block: unset;
  /* Reset default font-size. */
  font-size: unset;
}

:where(search) {
  /* Render the `search` element consistently. */
  display: block flow;
}

/* ======================================================
// MARK: ## Grouping content
// ------------------------------------------------------ */
:where(p, blockquote, figure, pre, address, ul, ol, dl) {
  /* Reset default margin-block. */
  margin-block: unset;
}

:where(blockquote, figure) {
  /* Reset default margin-inline. */
  margin-inline: unset;
}

:where(address):where(:lang(ja)) {
  /* Reset font style for specific Japanese language elements. */
  font-style: unset;
}

:where(ul, ol) {
  /* Remove default padding-inline-start. */
  padding-inline-start: unset;
  /* In Safari, using 'list-style: none' causes the list not to be announced by screen readers, so use 'list-style-type: ""' to hide markers without affecting accessibility. */
  list-style-type: "";
}

:where(dt) {
  /* Make definition terms bolder. */
  font-weight: 700;
}

:where(dd) {
  /* Remove default indentation. */
  margin-inline-start: unset;
}

:where(hr) {
  /* Sets the thickness of the top border of the <hr> element to 1px. */
  border-block-start-width: 1px;
}

:where(pre) {
  /* Sets the tab character width to 2 spaces for better readability in preformatted text. */
  tab-size: 2;
}
@media print {
  :where(pre) {
    /* Allow text within <pre> elements to wrap when printing. */
    white-space: pre-wrap;
  }
}

/* ======================================================
// MARK: ## Text-level semantics
// ------------------------------------------------------ */
:where(b, strong) {
  /* Enhance the weight of bold elements for emphasis. */
  font-weight: 700;
}

:where(em):where(:lang(ja)) {
  /* Enhance the weight of bold elements for emphasis. */
  font-weight: 700;
}

:where(i, cite, em, dfn, var):where(:lang(ja)) {
  /* Reset font style for specific Japanese language elements. */
  font-style: unset;
}

:where(small) {
  /* Set the font size to 1em (same as the parent element). */
  font-size: 1em;
  /* Set the font weight to 400. */
  font-weight: 400;
}

:where(code, kbd, samp) {
  /* Set the monospace font using Tailwind as a reference(@see https://tailwindcss.com/docs/font-family). Specifying 'serif' is a countermeasure for Chrome's 13px issue. */
  font-family: ui-monospace, sfmono-regular, menlo, monaco, consolas, "Liberation Mono", "Courier New", serif;
  /* Reset font size to ensure consistent appearance across different devices. */
  font-size: unset;
}

:where(cite, dfn) {
  --_quotation-start: "“";
  --_quotation-end: "”";
}
:where(cite, dfn)::before {
  /* Inserts an opening quotation mark before the content of <cite> and <dfn> elements, defaulting to a double quote unless overridden. */
  content: var(--_quotation-start);
}
:where(cite, dfn)::after {
  /* Inserts a closing quotation mark after the content of <cite> and <dfn> elements, defaulting to a double quote unless overridden. */
  content: var(--_quotation-end);
}
:where(cite, dfn):where(:lang(ja)) {
  /* Overrides the default opening quotation mark with the Japanese opening quote for <cite> and <dfn> elements in Japanese. */
  --_quotation-start: "「";
  --_quotation-end: "」";
}

:where(var) {
  /* Sets the font family to serif for <var> elements, enhancing the typographic distinction of variable names in technical content. */
  font-family: serif;
}
:where(var):where(:lang(ja)) {
  /* Resets the font family for <var> elements in Japanese content. */
  font-family: unset;
}

@media (forced-colors: none) {
  :where(mark) {
    /* Remove any default background colors. */
    background-color: unset;
    /* Reset text color to default or inherited value. */
    color: unset;
    /* Applies an underline to the text to highlight it. */
    text-decoration-line: underline;
    /* Sets the color of the underline using a mix of the 'Mark' color and transparency. */
    text-decoration-color: oklch(from #ff0 l c h/50%);
    /* Specifies the thickness of the underline. */
    text-decoration-thickness: 0.4em;
    /* Adjusts the position of the underline closer to the text. */
    text-underline-offset: -0.2em;
    /* Ensures the underline is not broken by descenders in characters like g, j, p, q, and y. */
    text-decoration-skip-ink: none;
  }
}

/* ======================================================
// MARK: ## Links
// ------------------------------------------------------ */
:where(:any-link) {
  /* Remove any default background colors. */
  background-color: unset;
  /* Reset text color to default or inherited value. */
  color: unset;
  /* Remove underline from links. */
  text-decoration-line: none;
  /* Set the thickness of the text decoration based on the font metrics. */
  text-decoration-thickness: from-font;
  /* Position the underline slightly away from the text for enhanced legibility. */
  text-underline-offset: 0.25em;
  /* Adjust underline to skip over descenders for better readability. */
  text-decoration-skip-ink: auto;
}

/* ======================================================
// MARK: ## Edits
// ------------------------------------------------------ */
:where(ins):not(:where(.adsbygoogle)) {
  /* Use a dashed line for underlining inserted content, making it distinctly visible. */
  text-decoration-style: dashed;
  /* Position the underline slightly away from the text for enhanced legibility. */
  text-underline-offset: 0.4em;
  /* Adjust underline to skip over descenders for better readability. */
  text-decoration-skip-ink: auto;
}

:where(del) {
  /* Apply a double line through the text for deleted content, enhancing visibility. */
  text-decoration-style: double;
}

/* ======================================================
// MARK: ## Embedded content
// ------------------------------------------------------ */
:where(img, picture, svg, video, canvas, audio, iframe, embed, object) {
  /* Set elements to display as block-level flow containers, suitable for complex layouts. */
  display: inline-block flow;
  /* Limits the maximum size inline to prevent overflow. */
  max-inline-size: 100%;
  /* Automatically adjusts the block size based on content. */
  block-size: auto;
}

/* ======================================================
// MARK: ## Tabular data
// ------------------------------------------------------ */
:where(table) {
  /* Collapses border for a more compact table design. */
  border-collapse: collapse;
}

:where(caption) {
  /* Aligns the caption text to the start of the element. */
  text-align: start;
}

:where(td, th) {
  /* Removes default padding from table cells and headers. */
  padding: unset;
  /* Aligns content of table cells to the top. */
  vertical-align: top;
}

:where(th) {
  /* Makes table header text bold. */
  font-weight: 700;
  /* Aligns header text to the start of the cell. */
  text-align: start;
}

/* ======================================================
// MARK: ## Forms
// ------------------------------------------------------ */
:where(button, input, select, textarea),
::file-selector-button {
  /* Remove default padding. */
  padding: unset;
  /* Apply a transparent border for forced colors mode. */
  border: 1px solid transparent;
  /* Resets border-radius to default. */
  border-radius: unset;
  /* Removes default background color. */
  background-color: unset;
  /* Removes default text color. */
  color: unset;
  /* Resets font settings to inherit from parent. */
  font: unset;
  /* Centers the element vertically within its line box. */
  vertical-align: middle;
  /* Resets letter-spacing to default. */
  letter-spacing: unset;
  /* Resets text alignment to default. */
  text-align: unset;
  /* Resets text transformation to default. */
  text-transform: unset;
}

:where([type=radio i], [type=checkbox i]) {
  /* Remove default margin. */
  margin: unset;
}

:where([type=file i]) {
  /* Default cursor for file input fields. */
  cursor: unset;
}

:where(textarea) {
  /* Remove default margin in Firefox. */
  margin-block: unset;
  /* Allows resizing of textarea vertically only. */
  resize: block;
}

:where(button),
::file-selector-button {
  /* Set the inline-size of the button to match the content's inline-size exactly. */
  inline-size: fit-content;
  /* Optimizes touch interaction for buttons. */
  touch-action: manipulation;
}

:where(button)::-moz-focus-inner {
  /* Remove the inner padding in Firefox. */
  padding: unset;
}

:where(button, label[for], select, [role=tab], [role=button], [role=option]),
::file-selector-button {
  /* Indicate clickable elements with a pointer cursor. */
  cursor: pointer;
}

:where(select):where(:disabled) {
  /* Keep the opacity of disabled selects consistent with other disabled elements. */
  opacity: inherit;
}

:where(fieldset) {
  /* Remove default margin-inline. */
  margin-inline: unset;
  /* Remove default padding. */
  padding: unset;
}

:where(legend) {
  /* Remove default padding-inline. */
  padding-inline: unset;
}

:where(optgroup) {
  /* Resets font settings to inherit from parent. */
  font: unset;
}

::placeholder {
  /* Normalize the opacity of placeholder text to fully opaque in Firefox, where it might be set to less by default. */
  opacity: unset;
}

::picker(select) {
  /* Render the `: :picker(select)` pseudo element consistently. */
  display: block flow;
  /* Remove default padding. */
  padding: unset;
}

/* ======================================================
// MARK: ## Interactive elements
// ------------------------------------------------------ */
:where(summary) {
  /* Eliminate the default marker from details summary for a cleaner disclosure widget. */
  display: block flow;
  /* Indicate clickable elements with a pointer cursor. */
  cursor: pointer;
}

::-webkit-details-marker {
  /* Hide the default disclosure marker to allow for custom styling. */
  display: none;
}

:where(dialog, [popover]) {
  /* Resets overflow property. */
  overflow: unset;
  /* Resets the inline size property. */
  inline-size: unset;
  /* Resets the block size property. */
  block-size: unset;
  /* Resets the max inline size limit. */
  max-inline-size: unset;
  /* Resets the max block size limit. */
  max-block-size: unset;
  /* Removes default padding. */
  padding: unset;
  /* Removes default background color. */
  background-color: unset;
  /* Resets color to default. */
  color: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  /* Hide the dialog element and popover element when it is not open. */
  display: none !important;
}

::backdrop {
  /* Remove default backdrop color for a clearer view of the underlying content. */
  background-color: unset;
}

/* ======================================================
// MARK: ## Focus styles
// ------------------------------------------------------ */
:where(:-moz-focusring) {
  /* Improve outlines for Firefox and unify style with input elements and buttons. */
  outline: auto;
}

:where(:focus-visible) {
  /* Slightly offset focus outline for better visibility without overlapping text. */
  outline-offset: 2px;
}

:where(:focus):not(:where(:focus-visible)) {
  /* Hide focus outline unless element is explicitly focus-visible to reduce visual clutter. */
  outline: none;
}

[tabindex="-1"]:focus-visible {
  /* Ensure that programmatically focused elements do not show an outline unless they are naturally focusable. */
  outline: none !important;
}

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

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

/* ======================================================
// MARK: ## Reduced Motion
// ------------------------------------------------------ */
/* Target all elements that don't have the 'data-safe-animation' attribute. */
@media (prefers-reduced-motion: reduce) {
  :not([data-safe-animation]), :not([data-safe-animation])::before, :not([data-safe-animation])::after, :not([data-safe-animation])::backdrop {
    /* Disable animations and transitions for users who prefer reduced motion. */
    background-attachment: unset !important;
    scroll-behavior: unset !important;
    transition-delay: unset !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-delay: unset !important;
    animation-iteration-count: unset !important;
    view-transition-name: none !important;
  }
}

/* ======================================================
// MARK: ## Utility Classes
// ------------------------------------------------------ */
/* Create a pseudo-element to adjust the vertical space above and below an element. */
.leading-trim::before, .leading-trim::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.leading-trim::before {
  margin-block-end: var(--leading-trim);
}
.leading-trim::after {
  margin-block-start: var(--leading-trim);
}

/* Hide content visually but keep it accessible to screen readers. */
.visually-hidden {
  position: fixed !important;
  inset: 0 !important;
  contain: strict !important;
  visibility: initial !important;
  inline-size: 4px !important;
  block-size: 4px !important;
  margin: unset !important;
  padding: unset !important;
  border: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

html {
  font-size: 10px;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scroll-behavior: smooth;
  scroll-padding-top: var(--hdr_height);
}
html.is-gnavopen, html.is-locked {
  overflow: hidden;
}

body {
  font-family: var(--f_sans);
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--c_ink);
}
a,
button {
  text-decoration: none;
  outline: none;
  color: #000;
}
@media (any-hover: hover) {
  a,
  button {
    transition: 0.3s ease;
  }
  a:hover,
  button:hover {
    opacity: 0.5;
  }
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}

table {
  border-collapse: collapse;
  max-width: 100%;
  width: 100%;
}
table th,
table td {
  vertical-align: top;
}

ul,
ol {
  list-style-position: inside;
  list-style: none;
}

/* ============================================================
  l_header — ヘッダー / グローバルナビ / ハンバーガー / SP ドロワー
  ------------------------------------------------------------
  見た目は案件ごとにここへ書く。
  ・SP ドロワーは backdrop-filter の containing block 問題を避けるため
    body 直下（ヘッダー外）に置く想定。
  ・メニュー展開中のスクロール抑止（html.is-gnavopen）は _l_base.scss 側。
============================================================ */
/* ============================================================
  l_footer — フッター
  ------------------------------------------------------------
  見た目は案件ごとにここへ書く。
============================================================ */
/* ============================================================
  l_main — main 全体のレイアウト
============================================================ */
.c_inner {
  max-width: 1024px;
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
}
.c_inner._1000 {
  max-width: 1000px;
}
.c_inner._full {
  max-width: 100%;
}

@media screen and (min-width: 1025px) {
  .c_tab {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .c_tab_none {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .c_sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .c_pc {
    display: none !important;
  }
}
/* ============================================================
  c_btn — 汎用ボタン
  ------------------------------------------------------------
  バリアント:
    --dark   暗色塗り（既定アクセント）
    --light  明色塗り（暗背景上の CTA）
    --sm     小サイズ（ヘッダー等）
============================================================ */
/* ============================================================
  c_title — 見出し系コンポーネント
============================================================ */
/* ============================================================
  c_text — テキスト系コンポーネント（リンク・本文など）
============================================================ */
/* ============================================================
  c_pankuzu — パンくずリスト
============================================================ */
.c_pankuzu {
  position: relative;
  z-index: 1;
  padding: 10px 0;
  display: flex;
  align-items: center;
  overflow: auto;
}
.c_pankuzu > span {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-weight: bold;
}
.c_pankuzu > span + span:before {
  margin: 0 5px;
  content: "/";
  color: white;
}
.c_pankuzu > span > a,
.c_pankuzu > span > span {
  color: white;
}
/* ============================================================
  c_wysywig — 本文（WYSIWYG / 投稿エディタ出力）
============================================================ */
.wp-block-post-content {
  max-width: 750px;
  margin: 0 auto;
}

.wp-block-post-content .wp-block-group {
  padding: 1em;
  border: 1px solid #000;
}

.c_wysywig,
.editor-styles-wrapper .wp-block-post-content {
  font-size: 1.6rem;
  line-height: 1.875;
  font-weight: 500;
  letter-spacing: 0.05em;
  word-break: break-all;
}
.c_wysywig *:first-child,
.editor-styles-wrapper .wp-block-post-content *:first-child {
  margin-top: 0 !important;
}
.c_wysywig *:last-child,
.editor-styles-wrapper .wp-block-post-content *:last-child {
  margin-bottom: 0 !important;
}
.c_wysywig > *,
.c_wysywig > *,
.editor-styles-wrapper .wp-block-post-content > *,
.editor-styles-wrapper .wp-block-post-content > * {
  margin-bottom: 2rem;
  clear: both;
}
.c_wysywig h1,
.c_wysywig h2,
.editor-styles-wrapper .wp-block-post-content h1,
.editor-styles-wrapper .wp-block-post-content h2 {
  font-size: 2rem;
  font-weight: bold;
  color: var(--c_accent);
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--c_accent);
  border-bottom: 1px solid var(--c_accent);
}
.c_wysywig h3,
.c_wysywig h4,
.c_wysywig h5,
.c_wysywig h6,
.editor-styles-wrapper .wp-block-post-content h3,
.editor-styles-wrapper .wp-block-post-content h4,
.editor-styles-wrapper .wp-block-post-content h5,
.editor-styles-wrapper .wp-block-post-content h6 {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--c_accent);
  line-height: 1.5;
}
.c_wysywig ol,
.editor-styles-wrapper .wp-block-post-content ol {
  padding-left: 1.5em;
  list-style: decimal;
  list-style-position: outside;
}
.c_wysywig ol li,
.editor-styles-wrapper .wp-block-post-content ol li {
  margin: 0.25em 0;
  color: var(--c_accent);
}
.c_wysywig ul,
.editor-styles-wrapper .wp-block-post-content ul {
  padding-left: 1.5em;
  list-style: disc;
  list-style-position: outside;
}
.c_wysywig ul li,
.editor-styles-wrapper .wp-block-post-content ul li {
  margin: 0.25em 0;
  color: var(--c_accent);
}

/* ============================================================
  c_card — 汎用カード
============================================================ */
/* ============================================================
  c_pager — ページネーション（WP-PageNavi 想定）
============================================================ */
.c_pager {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .c_pager {
    margin-top: 30px;
  }
}
.c_pager .wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  gap: 10px;
}
.c_pager .wp-pagenavi a,
.c_pager .wp-pagenavi span {
  /* border: 1px solid rgba(255, 255, 255, 0.6); */
  /* border-radius: 4px; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}
@media (any-hover: hover) {
  .c_pager .wp-pagenavi a:hover {
    opacity: 1;
    color: white;
  }
}
.c_pager .wp-pagenavi .pages {
  /* border: 1px solid rgba(255, 255, 255, 0.6); */
}
@media screen and (max-width: 768px) {
  .c_pager .wp-pagenavi .pages {
    display: none;
  }
}
.c_pager .wp-pagenavi .current {
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 768px) {
  .c_pager .wp-pagenavi .first,
  .c_pager .wp-pagenavi .last {
    display: none;
  }
}

/* ============================================================
  c_mv — メインビジュアル
============================================================ */
/* ============================================================
  top — トップページ専用スタイル
  ------------------------------------------------------------
  project/ は「セクションごと」ではなく「ページごと」に 1 ファイル。
  トップページのスタイルはすべて、_index.html の <main id="top"> の
  id（#top）でカプセル化してこの中に追記していく。

  別ページを作る場合は <main id="about"> + project/_about.scss を作り、
  #about { ... } で同様に囲う（style.scss に @use "project/about"; を追記）。

  ※ 全ページ共通の見た目は component(c_*) / layout(l_*) 側に置く。
============================================================ */
#top {
  /* ============================================================
    STAGE — 固定ビューポート＋絶対レイヤー
    ------------------------------------------------------------
    .p_act       … スクロール尺（縦長 driver）。この高さ分スクロールできる。
    .p_act__view … sticky で画面に固定される 100lvh のビューポート（舞台）。
    .p_layer     … 各セクション。画面いっぱいの absolute inset:0。z で重ねる。
    main.js initStage が .p_act のスクロール進行 1 本で全フェーズを駆動。
  ============================================================ */
  /* ============================================================
    OPENING — スターウォーズ風スクロールクロール（レイヤー z:2）
    ------------------------------------------------------------
    intro 一文 → ロゴ wire→flash→solid→shine→縮小退場 → 遠近クロール。
    子要素はすべて #opening 内の絶対配置。挙動は main.js initStage。
  ============================================================ */
  /* ============================================================
    REVEAL — 人物連番（レイヤー z:3）。中央の人物がゆっくり登場。
    ------------------------------------------------------------
    initStage が data-reveal-scene の opacity と連番フレームを進行で制御。
  ============================================================ */
  /* ============================================================
    FINALE — 煙が晴れる→晴天→スクロールで下方向にパン→集合写真＋社長メッセージ（z:4）
    ------------------------------------------------------------
    縦長の集合写真（上＝晴天 / 下＝社員一同）を cover で敷くが、写真自身を
    --finale-h（PC 300vh / SP 180vh）に縦長化し、その中を translateY で
    上(空)→下(集合写真)へスライド（GPU 合成・可動域を明示的に確保）。
    窓（.p_finale__inner=100lvh）が overflow:hidden で切り取る。
    --finale-pan(0..1) / --finale-msg は main.js initStage が進行で駆動。
  ============================================================ */
  /* ============================================================
    SMOKE — 煙レイヤー（実写煙映像の連番 assets/img/smoke_seq）
    ------------------------------------------------------------
    画面全面の絶対 canvas。main.js initSmoke が smokeT に応じて連番を
    スクラブ再生（立ち上がり→濃密→散逸）。opacity は端だけ保険フェード。
  ============================================================ */
  /* 動きを減らす設定 → ステージのスクラブをやめ、レイヤーを縦に積んで静的表示 */
}
#top .p_act {
  position: relative;
  height: 1450vh;
  background: var(--c_space);
}
@media screen and (max-width: 768px) {
  #top .p_act {
    height: 1700vh;
  }
}
#top .p_act__view {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100lvh;
  overflow: hidden;
  background: var(--c_space);
}
#top .p_layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
#top .p_stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}
#top .p_opening {
  z-index: 2;
  isolation: isolate;
}
#top .p_opening__stars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}
#top .p_opening__lead {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(3rem, 9vh, 6rem);
}
#top .p_opening__intro {
  width: 100%;
  color: #4ab0ff;
  font-size: 50px;
  line-height: 1.7;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.08em;
  opacity: 1;
  will-change: opacity;
}
#top .p_opening__logo {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(64vw, 54rem);
  text-align: center;
  opacity: 0;
  will-change: transform, opacity;
}
@media screen and (max-width: 768px) {
  #top .p_opening__logo {
    width: 80vw;
  }
}
#top .p_opening__logoSvg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}
#top .p_opening__logoSvg .cls-1 {
  fill: var(--c_space);
}
#top .p_opening__logoSvg .cls-2 {
  fill: var(--c_accent);
}
#top .p_opening__logoSvg .p_logoWire {
  filter: drop-shadow(0 0 0.2rem #ff324a) drop-shadow(0 0 0.7rem rgba(230, 0, 18, 0.7));
}
#top .p_opening__logoSvg .js-logodraw {
  fill: none;
  stroke: var(--c_accent);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
#top .p_opening__logoSvg .p_logoSolid {
  opacity: 0;
  filter: drop-shadow(0 0 0.5rem rgba(230, 0, 18, 0.3));
}
#top .p_opening__logoSvg .p_logoFlash {
  fill: #ffffff;
  opacity: 0;
}
#top .p_opening__logoSub {
  display: block;
  margin-top: 1.8rem;
  font-family: var(--f_display);
  font-weight: 500;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  opacity: 0;
}
#top .p_opening__crawlWrap {
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-inline: auto;
  width: 120vw;
  transform: translateX(-50%) perspective(28vh) rotateX(11.5deg);
  overflow: hidden;
  transform-origin: 50% 100%;
  opacity: 0;
  z-index: 1;
}
#top .p_opening__crawlWrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 32%;
  background: linear-gradient(to bottom, var(--c_space) 50%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #top .p_opening__crawlWrap {
    width: 120vw;
    transform: translateX(-50%) perspective(74vh) rotateX(20.5deg);
  }
}
#top .p_opening__crawl {
  position: static;
  width: 100%;
  color: var(--c_crawl);
  text-shadow: 0 0 0.3rem rgba(230, 0, 18, 0.4), 0 0 1.4rem rgba(230, 0, 18, 0.3);
  text-align: justify;
  text-justify: inter-character;
  will-change: transform;
}
#top .p_opening__episode {
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.2em;
  font-size: 6.67vh;
  margin-bottom: 1.4em;
}
#top .p_opening__crawlTitle {
  text-align: center;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-size: 15.56vh;
  margin-bottom: 1em;
}
#top .p_opening__crawlBody {
  font-size: 7.78vh;
  font-weight: 900;
  line-height: 1.7;
}
#top .p_opening__crawlBody p + p {
  margin-top: 1.3em;
}
@media screen and (max-width: 768px) {
  #top .p_opening__crawlBody {
    font-size: 4vh;
    line-height: 1.65;
  }
}
#top .p_opening__crawlEmph {
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.04em;
  font-size: 5.78vh;
  line-height: 1.45;
}
#top .p_opening__crawlSign {
  text-align: center;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.12em;
  margin-top: 1.4em;
  font-size: 3.11vh;
  color: var(--c_crawl);
}
#top .p_opening__scrollHint {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--f_display);
  font-size: 12px;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  writing-mode: vertical-rl;
  will-change: opacity;
}
#top .p_opening__scrollHint::after, #top .p_opening__scrollHint::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin: 1.2rem auto 0;
  width: 1px;
  height: 6rem;
}
#top .p_opening__scrollHint::after {
  background: rgba(255, 255, 255, 0.18);
}
#top .p_opening__scrollHint::before {
  background: rgba(255, 255, 255, 0.85);
  z-index: 2;
  animation: scrollHintFlow 2s infinite;
}
@keyframes scrollHintFlow {
  0% {
    transform: scaleY(0);
    transform-origin: 50% 0;
  }
  50% {
    transform: scaleY(1);
    transform-origin: 50% 0;
  }
  51% {
    transform: scaleY(1);
    transform-origin: 50% 100%;
  }
  100% {
    transform: scaleY(0);
    transform-origin: 50% 100%;
  }
}
#top .p_reveal {
  z-index: 3;
}
#top .p_reveal__scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #000;
}
#top .p_reveal__canvas {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 1280/612;
  display: block;
  filter: brightness(0.8);
}
@media screen and (max-width: 768px) {
  #top .p_reveal__canvas {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: auto;
    height: 82vh;
  }
}
#top .p_reveal__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 90% at 50% 42%, transparent 38%, rgba(0, 0, 0, 0.78) 100%), linear-gradient(to bottom, transparent 55%, rgba(0, 0, 0, 0.85) 100%);
}
#top .p_finale {
  z-index: 4;
  --finale-pan: 0;
  --finale-msg: 0;
  --finale-h: 200svh;
}
@media screen and (max-width: 768px) {
  #top .p_finale {
    --finale-h: 150svh;
  }
}
#top .p_finale__inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  will-change: opacity;
}
#top .p_finale__photoWrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: var(--finale-h);
  transform: translate3d(0, calc(var(--finale-pan) * (100lvh - var(--finale-h))), 0);
  will-change: transform;
  pointer-events: none;
}
#top .p_finale__photoWrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 70vh;
  background: linear-gradient(to bottom, var(--c_space) 0%, var(--c_space) 30%, transparent 100%);
}
#top .p_finale__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  user-select: none;
}
#top .p_finale__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse 92% 74% at 50% 50%, rgba(8, 16, 30, 0.52) 0%, rgba(8, 16, 30, 0.36) 58%, rgba(8, 16, 30, 0.24) 100%);
  background: linear-gradient(to bottom, black 0%, transparent 80vh);
  opacity: var(--finale-msg);
  pointer-events: none;
}
#top .p_finale__copy {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 10%;
  transform: translate(-50%, 0);
  width: 95%;
  text-align: center;
  opacity: var(--finale-msg);
  will-change: opacity;
}
@media screen and (max-width: 768px) {
  #top .p_finale__copy {
    top: 20%;
  }
}
#top .p_finale__emph {
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.6;
  font-size: clamp(24px, 3.7vh, 38px);
  color: #fff;
  text-shadow: 0 0.2rem 1.4rem rgba(0, 0, 0, 0.5);
}
#top .p_finale__sign {
  position: relative;
  margin-top: 2.2em;
  padding-top: 2em;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.9;
  font-size: clamp(12px, 1.6vh, 15px);
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 0.1rem 0.8rem rgba(0, 0, 0, 0.5);
}
#top .p_finale__sign::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2.4rem;
  height: 2px;
  background: var(--c_accent);
}
#top .p_smoke {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  pointer-events: none;
  opacity: 0;
  will-change: opacity;
}
@media (prefers-reduced-motion: reduce) {
  #top .p_act {
    height: auto;
  }
  #top .p_act__view {
    position: static;
    height: auto;
    overflow: visible;
  }
  #top .p_layer {
    position: relative;
    inset: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #top .p_stars {
    position: fixed;
    inset: 0;
    height: 100%;
  }
  #top .p_opening__intro {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    opacity: 1;
  }
  #top .p_opening__logo {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    opacity: 1;
    margin: 0 auto;
  }
  #top .p_opening__logoSvg .p_logoSolid {
    opacity: 1;
  }
  #top .p_opening__logoSvg .p_logoWire {
    display: none;
  }
  #top .p_opening__logoSub {
    opacity: 1;
  }
  #top .p_opening__crawlWrap {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(90%, 100rem);
    transform: none;
    opacity: 1;
  }
  #top .p_opening__crawlWrap::after {
    display: none;
  }
  #top .p_opening__scrollHint {
    display: none;
  }
  #top .p_reveal__scene {
    opacity: 1;
  }
  #top .p_finale__inner {
    position: relative;
    inset: auto;
    min-height: 100vh;
    opacity: 1;
  }
  #top .p_finale__photoWrap {
    height: 100%;
    transform: none;
  }
  #top .p_finale__photo {
    object-position: center bottom;
  }
  #top .p_finale__inner::after {
    opacity: 1;
  }
  #top .p_finale__copy {
    opacity: 1;
  }
  #top .p_smoke {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #top .p_opening__intro {
    font-size: 26px;
  }
  #top .p_opening__logoSub {
    font-size: 12px;
  }
  #top .p_opening__episode {
    font-size: 2.61vh;
  }
  #top .p_opening__crawlTitle {
    font-size: 4.98vh;
  }
  #top .p_opening__crawlEmph {
    font-size: 3.55vh;
  }
  #top .p_opening__crawlSign {
    font-size: 2.37vh;
  }
  #top .p_finale__copy {
    width: 90%;
  }
  #top .p_finale__emph {
    font-size: clamp(18px, 5.1vw, 23px);
    letter-spacing: 0.02em;
    line-height: 1.65;
  }
  #top .p_finale__sign {
    font-size: clamp(11px, 3.1vw, 13px);
    letter-spacing: 0.12em;
  }
}

:root {
  --hdr_height: 84px;
  --inner_max: 1280px;
  --c_ink: #111111;
  --c_paper: #ffffff;
  --c_subtle: #f7f6f2;
  --c_line: #e6e3dc;
  --c_muted: #6b6b6b;
  --c_accent: #e60012;
  --c_accent_light: #ff2d3f;
  --c_sand: #f0ebe1;
  --c_sand_line: #e6e0d4;
  --c_ink_dark: #050505;
  --c_space: #000000;
  --c_star: #ffffff;
  --c_crawl: #ffc700;
  --c_crawl_dim: #b9923a;
  --f_display: "Outfit", "Helvetica Neue", "Arial", sans-serif;
  --f_sans:
    "Zen Kaku Gothic New", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial",
    "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;
}
@media screen and (max-width: 768px) {
  :root {
    --hdr_height: 60px;
  }
}
