@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. */
  -webkit-box-sizing: border-box;
          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. */
  -ms-hyphens: auto;
      hyphens: auto;
  /* Prevent mobile browsers from scaling text sizes automatically. */
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-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(:-moz-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;
}
: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(:-moz-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(: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(:-moz-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: ;
}
: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. */
  -webkit-padding-start: unset;
          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. */
  -webkit-margin-start: unset;
          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. */
  -moz-tab-size: 2;
    -o-tab-size: 2;
       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. */
    -webkit-text-decoration-skip-ink: none;
            text-decoration-skip-ink: none;
  }
}

/* ======================================================
// MARK: ## Links
// ------------------------------------------------------ */
:where(:-moz-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;
}
: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. */
  -webkit-text-decoration-skip: ink;
          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. */
  -webkit-text-decoration-skip: ink;
          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
// ------------------------------------------------------ */
::-webkit-file-upload-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(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;
}

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

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

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

::-webkit-file-upload-button {
  /* Indicate clickable elements with a pointer cursor. */
  cursor: pointer;
}

: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;
}

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

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

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

::-ms-input-placeholder {
  /* Normalize the opacity of placeholder text to fully opaque in Firefox, where it might be set to less by default. */
  opacity: 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;
}

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

::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])::-ms-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;
  }
  :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;
    -webkit-transition-delay: unset !important;
            transition-delay: unset !important;
    -webkit-transition-duration: 1ms !important;
            transition-duration: 1ms !important;
    -webkit-animation-duration: 1ms !important;
            animation-duration: 1ms !important;
    -webkit-animation-delay: unset !important;
            animation-delay: unset !important;
    -webkit-animation-iteration-count: 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 {
  -webkit-margin-after: var(--leading-trim);
          margin-block-end: var(--leading-trim);
}
.leading-trim::after {
  -webkit-margin-before: var(--leading-trim);
          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-locked, html.is-gnavopen {
  overflow: hidden;
}

body {
  font-family: var(--f_sans);
  font-size: 1.6rem;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c_ink);
  background: var(--c_paper);
}

a,
button {
  text-decoration: none;
  outline: none;
  color: inherit;
  background: transparent;
  cursor: pointer;
}
@media (any-hover: hover) {
  a,
  button {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  a:hover,
  button:hover {
    opacity: 0.6;
  }
}

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 {
  position: sticky;
  inset: 0 0 auto 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c_line);
}
.l_header__inner {
  max-width: var(--inner_max);
  height: var(--hdr_height);
  margin: 0 auto;
  padding: 0 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .l_header__inner {
    padding: 0 2rem;
  }
}
.l_header__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  font-family: var(--f_display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--c_ink);
  text-decoration: none;
}
.l_header__logo img {
  display: block;
  height: 4.4rem;
  max-height: 4.4rem;
  width: auto;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l_header__logo .l_header__logo-text {
  font-family: var(--f_display);
  letter-spacing: 0.06em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .l_header__logo {
    font-size: 1.3rem;
    gap: 0.8rem;
  }
  .l_header__logo img {
    height: 3.6rem;
    max-height: 3.6rem;
  }
}
.l_header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.8rem;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.l_header__list li a {
  font-weight: 900;
}
.l_header__burger {
  position: relative;
  width: 40px;
  height: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  z-index: 60;
}
.l_header__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c_ink);
  -webkit-transition: opacity 0.2s ease, background-color 0.2s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.2s ease, background-color 0.2s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.2s ease, background-color 0.2s ease;
  transition: transform 0.3s ease, opacity 0.2s ease, background-color 0.2s ease, -webkit-transform 0.3s ease;
}
.l_header__drawer {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(17, 17, 17, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--c_paper);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: calc(var(--hdr_height) + 2.4rem) 2.4rem 4rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  clip-path: circle(0% at calc(100% - 3rem) 3rem);
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: clip-path 0.7s cubic-bezier(0.77, 0, 0.175, 1), visibility 0s linear 0.7s;
  transition: clip-path 0.7s cubic-bezier(0.77, 0, 0.175, 1), visibility 0s linear 0.7s;
}
.l_header__drawer.is-open {
  clip-path: circle(160% at calc(100% - 3rem) 3rem);
  visibility: visible;
  pointer-events: auto;
  -webkit-transition: clip-path 0.7s cubic-bezier(0.77, 0, 0.175, 1), visibility 0s linear 0s;
  transition: clip-path 0.7s cubic-bezier(0.77, 0, 0.175, 1), visibility 0s linear 0s;
}
.l_header__drawer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--f_display);
  font-size: clamp(2.6rem, 8vw, 4rem);
  letter-spacing: 0.08em;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  width: 100%;
}
@media (max-height: 640px) {
  .l_header__drawer-list {
    gap: 1.4rem;
    font-size: clamp(2rem, 6vw, 3rem);
  }
}
.l_header__drawer-list a:not(.c_btn) {
  color: var(--c_paper);
  display: inline-block;
  padding: 0.2em 0.4em;
}
.l_header__drawer-list li:last-child {
  margin-top: 2rem;
}
@media (max-height: 640px) {
  .l_header__drawer-list li:last-child {
    margin-top: 1rem;
  }
}
.l_header__drawer-list li {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}
.l_header__drawer-list .c_btn {
  font-size: 1.5rem;
  padding: 1.8rem 3.6rem;
  letter-spacing: 0.12em;
  gap: 1rem;
}
.l_header__drawer-list .c_btn i {
  font-size: 1.6rem;
}
@media (max-height: 640px) {
  .l_header__drawer-list .c_btn {
    font-size: 1.3rem;
    padding: 1.4rem 2.8rem;
  }
}
.l_header__drawer.is-open .l_header__drawer-list li {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.l_header__drawer.is-open .l_header__drawer-list li:nth-child(1) {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}
.l_header__drawer.is-open .l_header__drawer-list li:nth-child(2) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.l_header__drawer.is-open .l_header__drawer-list li:nth-child(3) {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}
.l_header__drawer.is-open .l_header__drawer-list li:nth-child(4) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.l_header__drawer.is-open .l_header__drawer-list li:nth-child(5) {
  -webkit-transition-delay: 0.55s;
          transition-delay: 0.55s;
}
.l_header__drawer.is-open .l_header__drawer-list li:nth-child(6) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

html.is-gnavopen .l_header {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  z-index: 60;
}

html.is-gnavopen .l_header__burger span {
  background: var(--c_paper);
}
html.is-gnavopen .l_header__burger span:nth-child(1) {
  -webkit-transform: translateY(6.5px) rotate(45deg);
          transform: translateY(6.5px) rotate(45deg);
}
html.is-gnavopen .l_header__burger span:nth-child(2) {
  opacity: 0;
}
html.is-gnavopen .l_header__burger span:nth-child(3) {
  -webkit-transform: translateY(-6.5px) rotate(-45deg);
          transform: translateY(-6.5px) rotate(-45deg);
}

.l_footer {
  position: relative;
  border-top: 0;
  background: var(--c_ink_dark);
  color: var(--c_paper);
}
.l_footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: -webkit-gradient(linear, left top, right top, from(#e8242e), color-stop(16.66%, #e8242e), color-stop(16.66%, #ff7a1f), color-stop(33.33%, #ff7a1f), color-stop(33.33%, #ffd23f), color-stop(50%, #ffd23f), color-stop(50%, #1a6e4a), color-stop(66.66%, #1a6e4a), color-stop(66.66%, #1fb5c9), color-stop(83.33%, #1fb5c9), color-stop(83.33%, #7a3fb5), to(#7a3fb5));
  background: linear-gradient(to right, #e8242e 0%, #e8242e 16.66%, #ff7a1f 16.66%, #ff7a1f 33.33%, #ffd23f 33.33%, #ffd23f 50%, #1a6e4a 50%, #1a6e4a 66.66%, #1fb5c9 66.66%, #1fb5c9 83.33%, #7a3fb5 83.33%, #7a3fb5 100%);
}
.l_footer__inner {
  max-width: var(--inner_max);
  margin: 0 auto;
  padding: 6.4rem 4rem 4rem;
}
@media screen and (max-width: 768px) {
  .l_footer__inner {
    padding: 4.8rem 2rem 3.2rem;
  }
}
.l_footer__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.2rem;
}
.l_footer__logo-img {
  display: block;
  width: 12rem;
  max-width: 100%;
  max-height: 12rem;
  height: auto;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l_footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .l_footer__grid {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
}
.l_footer__logo {
  font-family: var(--f_display);
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--c_paper);
}
.l_footer__desc {
  margin-top: 0;
  font-size: 1.3rem;
  color: rgba(251, 246, 236, 0.7);
  line-height: 1.7;
}
.l_footer__heading {
  font-family: var(--f_display);
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  color: var(--c_yellow);
}
.l_footer__list {
  margin-top: 1.2rem;
}
.l_footer__list li {
  margin-top: 0.4rem;
  font-size: 1.4rem;
  line-height: 1.7;
}
.l_footer__sns {
  margin-top: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.4rem;
  font-size: 2rem;
}
.l_footer__copy {
  margin-top: 4rem;
  font-size: 1.2rem;
  color: rgba(251, 246, 236, 0.55);
}
.l_footer a {
  color: var(--c_paper);
}
.l_footer a:hover {
  color: var(--c_accent);
}

#top {
  background: var(--c_paper);
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.c_inner {
  width: 100%;
  max-width: var(--inner_max);
  margin-inline: auto;
  padding-inline: 4rem;
}
@media screen and (max-width: 768px) {
  .c_inner {
    padding-inline: 2rem;
  }
}
.c_inner--narrow {
  max-width: 960px;
}

@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_section-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 1.6rem;
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 768px) {
  .c_section-head {
    margin-bottom: 4rem;
    gap: 1.2rem;
  }
}
.c_section-head__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin: 0;
}
.c_section-head__en {
  position: relative;
  font-family: var(--f_display);
  font-size: clamp(4rem, 7vw, 8.8rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--c_ink);
  padding-bottom: 0.6em;
}
.c_section-head__en::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.1em;
  height: 0.32em;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M0 6 Q 15 0 30 6 T 60 6 T 90 6 T 120 6' fill='none' stroke='%231fb5c9' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 120px 100%;
}
.c_section-head__ja {
  font-family: var(--f_sans);
  font-size: clamp(1.2rem, 1.4vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.24em;
  line-height: 1;
  color: var(--c_muted);
}
.c_section-head__lead {
  max-width: 56rem;
  margin: 0;
  font-size: 1.4rem;
  color: var(--c_muted);
  line-height: 1.9;
}
.c_section-head--invert .c_section-head__en {
  color: var(--c_paper);
}
.c_section-head--invert .c_section-head__ja {
  color: rgba(255, 255, 255, 0.6);
}
.c_section-head--invert .c_section-head__lead {
  color: rgba(255, 255, 255, 0.7);
}
.c_section-head--start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
}
.c_section-head--start .c_section-head__title {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c_link {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
  padding-bottom: 0.3em;
  letter-spacing: 0.04em;
  -webkit-transition: color 0.3s ease, opacity 0.3s ease;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.c_link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1), -webkit-transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}
@media (any-hover: hover) {
  .c_link:hover {
    opacity: 1;
  }
  .c_link:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
}
.c_link--always::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
@media (any-hover: hover) {
  .c_link--always:hover::after {
    opacity: 0.4;
  }
}
.c_link--invert {
  color: var(--c_paper);
}

.c_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  padding: 1.6rem 3.2rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--f_display);
  font-size: 1.3rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  background: transparent;
  color: inherit;
  text-decoration: none;
  -webkit-transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, opacity 0.3s ease;
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, opacity 0.3s ease;
}
.c_btn i {
  font-size: 1.2em;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 2px;
}
.c_btn .ja {
  font-family: var(--f_sans);
}
@media (any-hover: hover) {
  .c_btn:hover {
    opacity: 1;
  }
  .c_btn:hover i {
    -webkit-transform: translateX(0.4rem);
            transform: translateX(0.4rem);
  }
}
.c_btn--dark {
  color: var(--c_ink);
  border-color: var(--c_ink);
}
@media (any-hover: hover) {
  .c_btn--dark:hover {
    background: var(--c_ink);
    color: var(--c_paper);
  }
}
.c_btn--light {
  color: var(--c_paper);
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
@media (any-hover: hover) {
  .c_btn--light:hover {
    background: var(--c_paper);
    color: var(--c_ink);
    border-color: var(--c_paper);
  }
}
.c_btn--accent {
  color: var(--c_paper);
  background: var(--c_accent);
  border-color: var(--c_accent);
}
@media (any-hover: hover) {
  .c_btn--accent:hover {
    background: transparent;
    color: var(--c_accent);
  }
}
.c_btn--sm {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}
.c_btn--lg {
  padding: 2rem 4rem;
  font-size: 1.4rem;
}

.c_modal {
  width: min(640px, 92vw);
  height: auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 88vh;
  max-height: 88svh;
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: var(--c_paper);
  color: var(--c_ink);
  overflow: hidden;
}
.c_modal::-ms-backdrop {
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.c_modal::backdrop {
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.c_modal[open] {
  -webkit-animation: c_modal_in 0.45s cubic-bezier(0.16, 1, 0.3, 1);
          animation: c_modal_in 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.c_modal[open]::-ms-backdrop {
  animation: c_modal_backdrop_in 0.4s ease;
}
.c_modal[open]::backdrop {
  -webkit-animation: c_modal_backdrop_in 0.4s ease;
          animation: c_modal_backdrop_in 0.4s ease;
}
.c_modal__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-height: inherit;
}
.c_modal__head {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.6rem;
  padding: 2.8rem 3.2rem 2rem;
  border-bottom: 1px solid var(--c_line);
}
.c_modal__eyebrow {
  font-family: var(--f_display);
  font-size: 1.1rem;
  letter-spacing: 0.24em;
  color: var(--c_muted);
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}
.c_modal__title {
  font-family: var(--f_display);
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c_ink);
  margin: 0;
}
.c_modal__close {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 999px;
  border: 1px solid var(--c_line);
  background: transparent;
  color: var(--c_ink);
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.4rem;
  -webkit-transition: background-color 0.3s ease, opacity 0.3s ease;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c_modal__close:hover {
    opacity: 1;
    background: var(--c_subtle);
  }
}
.c_modal__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  min-height: 0;
  padding: 2.4rem 3.2rem;
  overflow-y: auto;
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--c_ink);
}
.c_modal__body dl {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 0.6rem 1.2rem;
  margin: 0 0 1.6rem;
}
.c_modal__body dl dt {
  font-family: var(--f_display);
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c_muted);
  -ms-flex-item-align: center;
      align-self: center;
}
.c_modal__body dl dd {
  margin: 0;
  color: var(--c_ink);
}
.c_modal__body p {
  margin: 0 0 1.2rem;
}
.c_modal__body p:last-child {
  margin-bottom: 0;
}
.c_modal__body strong {
  font-weight: 700;
}
.c_modal__footer {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 1.6rem 3.2rem 2.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top: 1px solid var(--c_line);
}

@-webkit-keyframes c_modal_in {
  from {
    opacity: 0;
    -webkit-transform: translateY(24px) scale(0.98);
            transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}

@keyframes c_modal_in {
  from {
    opacity: 0;
    -webkit-transform: translateY(24px) scale(0.98);
            transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@-webkit-keyframes c_modal_backdrop_in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes c_modal_backdrop_in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.wf-ph-text {
  display: inline-block;
  padding: 0 0.4em;
  background-image: repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.04) 0 6px, transparent 6px 12px);
  border: 1px dashed #c9c5bc;
  border-radius: 4px;
  color: #6b6b6b;
  font-style: italic;
  letter-spacing: 0.02em;
}

.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(--blue);
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--blue);
  border-bottom: 1px solid var(--blue);
}
.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(--blue);
  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(--blue);
}
.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(--blue);
}

#top .js-fade-in {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
}
#top .js-stagger > * {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
#top details.js-faq > summary {
  list-style: none;
  cursor: pointer;
}
#top details.js-faq > summary::-webkit-details-marker {
  display: none;
}
#top details.js-faq .js-faq__body {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  #top .js-fade-in,
  #top .js-stagger > * {
    opacity: 1 !important;
    -webkit-transform: none !important;
            transform: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}
.p_hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--c_ink_dark);
  aspect-ratio: 16/9;
}
@media screen and (max-width: 768px) {
  .p_hero {
    aspect-ratio: 1/1;
  }
}
.p_hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 60% at 50% 110%, rgba(255, 90, 60, 0.55) 0%, rgba(255, 61, 138, 0.35) 30%, rgba(31, 181, 201, 0.2) 60%, transparent 80%), radial-gradient(ellipse 60% 40% at 20% 90%, rgba(255, 210, 63, 0.25) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.p_hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.45;
}
.p_hero__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.p_hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(6, 6, 15, 0.4)), color-stop(50%, rgba(6, 6, 15, 0.15)), to(rgba(6, 6, 15, 0.6)));
  background: linear-gradient(180deg, rgba(6, 6, 15, 0.4) 0%, rgba(6, 6, 15, 0.15) 50%, rgba(6, 6, 15, 0.6) 100%);
  z-index: 5;
  pointer-events: none;
}
.p_hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  z-index: 6;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80' preserveAspectRatio='none'%3E%3Cpath d='M0 50 Q 100 10 200 50 T 400 50 T 600 50 T 800 50 T 1000 50 T 1200 50 L 1200 80 L 0 80 Z' fill='%231fb5c9' opacity='0.8'/%3E%3Cpath d='M0 60 Q 100 25 200 60 T 400 60 T 600 60 T 800 60 T 1000 60 T 1200 60 L 1200 80 L 0 80 Z' fill='%231fb5c9' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}
.p_hero__palm {
  position: absolute;
  right: 4%;
  bottom: 6%;
  width: 14rem;
  height: auto;
  z-index: 7;
  pointer-events: none;
  opacity: 0.85;
}
@media screen and (max-width: 768px) {
  .p_hero__palm {
    width: 8rem;
    right: 2%;
  }
}
.p_hero__strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  z-index: 8;
  background: -webkit-gradient(linear, left top, right top, from(#e8242e), color-stop(16.66%, #e8242e), color-stop(16.66%, #ff7a1f), color-stop(33.33%, #ff7a1f), color-stop(33.33%, #ffd23f), color-stop(50%, #ffd23f), color-stop(50%, #1a6e4a), color-stop(66.66%, #1a6e4a), color-stop(66.66%, #1fb5c9), color-stop(83.33%, #1fb5c9), color-stop(83.33%, #7a3fb5), to(#7a3fb5));
  background: linear-gradient(to right, #e8242e 0%, #e8242e 16.66%, #ff7a1f 16.66%, #ff7a1f 33.33%, #ffd23f 33.33%, #ffd23f 50%, #1a6e4a 50%, #1a6e4a 66.66%, #1fb5c9 66.66%, #1fb5c9 83.33%, #7a3fb5 83.33%, #7a3fb5 100%);
  pointer-events: none;
}
.p_hero__inner {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 10;
  padding: 0 4rem;
  text-align: center;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .p_hero__inner {
    padding: 0 2rem;
  }
}
.p_hero__title {
  font-family: var(--f_display);
  font-size: clamp(3.6rem, 7vw, 7.2rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--c_paper);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
  max-width: 100%;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.p_hero__title .hl-yellow {
  color: var(--c_yellow);
}
.p_hero__title .hl-wave {
  color: var(--c_wave);
}
@media screen and (max-width: 768px) {
  .p_hero__title {
    font-size: 2.6rem;
  }
}
.p_hero__brand {
  font-family: var(--f_display);
  font-size: clamp(5.6rem, 13vw, 14rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--c_yellow);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  max-width: 100%;
  overflow-wrap: break-word;
}
.p_hero__brand .hl-wave {
  color: var(--c_wave);
}
@media screen and (max-width: 1024px) {
  .p_hero__brand {
    font-size: 9.6rem;
  }
}
@media screen and (max-width: 768px) {
  .p_hero__brand {
    font-size: 4.4rem;
  }
}
.p_hero__lead {
  margin-top: 3rem;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(251, 246, 236, 0.92);
  max-width: 56rem;
}
@media screen and (max-width: 768px) {
  .p_hero__lead {
    margin-top: 2rem;
    font-size: 1.3rem;
  }
}

.p_hero2 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  max-height: 100vh;
  overflow: hidden;
  color: #f5f1ea;
  background: #0c0c0c;
}
.p_hero2__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.p_hero2__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center right;
     object-position: center right;
}
.p_hero2__overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(12, 12, 12, 0.95)), color-stop(30%, rgba(12, 12, 12, 0.75)), color-stop(60%, rgba(12, 12, 12, 0.35)), to(rgba(12, 12, 12, 0.05))), -webkit-gradient(linear, left bottom, left top, from(rgba(12, 12, 12, 0.7)), color-stop(35%, rgba(12, 12, 12, 0.15)), color-stop(65%, rgba(12, 12, 12, 0)));
  background: linear-gradient(to right, rgba(12, 12, 12, 0.95) 0%, rgba(12, 12, 12, 0.75) 30%, rgba(12, 12, 12, 0.35) 60%, rgba(12, 12, 12, 0.05) 100%), linear-gradient(to top, rgba(12, 12, 12, 0.7) 0%, rgba(12, 12, 12, 0.15) 35%, rgba(12, 12, 12, 0) 65%);
  pointer-events: none;
}
.p_hero2__inner {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  min-height: 100vh;
  min-height: 100svh;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5% 10rem;
}
@media screen and (max-width: 768px) {
  .p_hero2__inner {
    padding: 0 6% 6rem;
  }
}
.p_hero2__rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0;
  width: 100%;
  max-width: 110rem;
}
.p_hero2__row {
  width: auto;
  text-align: left;
}
.p_hero2__title {
  display: block;
  font-family: var(--f_display);
  font-weight: 400;
  font-size: clamp(5.2rem, 11vw, 16rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: #f5f1ea;
  margin: 0;
}
.p_hero2__title-line {
  display: block;
}
.p_hero2__scroll {
  display: inline-block;
  margin: 1.2rem 0 0.8rem;
  font-family: var(--f_sans);
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.55);
  text-decoration: none;
  -webkit-transition: color 0.3s ease, opacity 0.3s ease;
  transition: color 0.3s ease, opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p_hero2__scroll:hover {
    opacity: 1;
    color: rgba(245, 241, 234, 0.9);
  }
}
.p_hero2__row--accent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  margin-top: 1.6rem;
}
.p_hero2__divider {
  display: inline-block;
  width: 6.4rem;
  height: 1px;
  background: rgba(245, 241, 234, 0.4);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p_hero2__divider {
    width: 4rem;
  }
}
.p_hero2__accent {
  font-family: var(--f_display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  color: rgba(245, 241, 234, 0.8);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.p_hero2__row--lead {
  margin-top: 4.8rem;
  padding-top: 3.2rem;
  border-top: 1px solid rgba(245, 241, 234, 0.22);
  max-width: 56rem;
}
.p_hero2__lead {
  font-family: var(--f_sans);
  font-size: clamp(1.3rem, 0.95vw, 1.5rem);
  line-height: 1.55;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.85);
  font-weight: 400;
}
.p_hero2__lead em {
  font-style: normal;
  color: rgb(245, 241, 234);
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(245, 241, 234, 0.4);
  padding-bottom: 0.1em;
}

.p_about {
  position: relative;
  z-index: 20;
  width: 100%;
  height: 300vh;
  background: var(--c_paper);
  padding-top: 0;
}
.p_about__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  width: 100%;
  overflow: hidden;
  background: var(--c_paper);
}
.p_about__scrap-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p_about__scrap {
  position: absolute;
  width: auto;
  height: auto;
  max-width: 30rem;
  will-change: transform;
  -webkit-transition: -webkit-transform 0.1s ease-out;
  transition: -webkit-transform 0.1s ease-out;
  transition: transform 0.1s ease-out;
  transition: transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
  pointer-events: none;
  -webkit-filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.18));
          filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.18));
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .p_about__scrap {
    max-width: 20rem;
  }
}
.p_about__center {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 1.6rem;
}
.p_about__heading {
  text-align: center;
  position: absolute;
  top: calc(var(--hdr_height) + 2.4rem);
}
.p_about__heading-title {
  font-family: var(--f_display);
  font-size: clamp(4rem, 7vw, 8.8rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c_ink);
  line-height: 1;
}
.p_about__heading-label {
  font-family: var(--f_display);
  font-size: 1.2rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c_muted);
  font-weight: 400;
  margin-top: 1.2rem;
}
.p_about__content {
  position: relative;
  width: 100%;
  max-width: 102.4rem;
  height: 32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p_about__text-block {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 1.6rem;
  text-align: center;
}
.p_about__text-block.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.p_about__text-title {
  font-family: var(--f_display);
  color: var(--c_accent);
  font-size: 10vw;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 3.2rem;
  line-height: 1;
  word-break: keep-all;
  overflow-wrap: normal;
}
@media screen and (max-width: 1024px) {
  .p_about__text-title {
    font-size: 7.2rem;
  }
}
@media screen and (max-width: 768px) {
  .p_about__text-title {
    font-size: 4.4rem;
    margin-bottom: 2rem;
  }
}
.p_about__text-desc {
  color: var(--c_ink);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.7;
  max-width: 76.8rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p_about__text-desc {
    font-size: 1.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .p_about__scrap {
    -webkit-transition: none !important;
    transition: none !important;
  }
}
.p_instructor {
  --pi-bg: #15171B;
  --pi-card: #1E2127;
  --pi-border: #2E3138;
  --pi-text: #F5F5F5;
  --pi-muted: #A1A1A6;
  position: relative;
  background: var(--pi-bg);
  border-top: 1px solid var(--pi-border);
  padding: 12rem 0;
  color: var(--pi-text);
}
@media screen and (max-width: 768px) {
  .p_instructor {
    padding: 8rem 0;
  }
}
.p_instructor__slider {
  min-height: 50rem;
}
@media screen and (max-width: 768px) {
  .p_instructor__slider {
    min-height: auto;
  }
}
.p_instructor__card, .p_instructor__card.swiper-slide {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 3.2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--pi-card);
  border: 1px solid var(--pi-border);
  border-radius: 3.2rem;
  padding: 4.8rem;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 24px 60px -20px rgba(0, 0, 0, 0.55), 0 8px 20px -8px rgba(0, 0, 0, 0.4);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 24px 60px -20px rgba(0, 0, 0, 0.55), 0 8px 20px -8px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 768px) {
  .p_instructor__card, .p_instructor__card.swiper-slide {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    padding: 2.4rem;
    border-radius: 2rem;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 16px 40px -16px rgba(0, 0, 0, 0.5);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 16px 40px -16px rgba(0, 0, 0, 0.5);
  }
}
.p_instructor__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 1.6rem;
  overflow: hidden;
  border: 1px solid var(--pi-border);
}
.p_instructor__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  opacity: 0.85;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: opacity 0.5s ease, -webkit-filter 0.5s ease;
  transition: opacity 0.5s ease, -webkit-filter 0.5s ease;
  transition: opacity 0.5s ease, filter 0.5s ease;
  transition: opacity 0.5s ease, filter 0.5s ease, -webkit-filter 0.5s ease;
}
@media (any-hover: hover) {
  .p_instructor__media img:hover {
    opacity: 1;
    -webkit-filter: grayscale(0);
            filter: grayscale(0);
  }
}
.p_instructor__media .wf-ph {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.02);
  background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 8px, transparent 8px 16px);
  color: var(--pi-muted);
  border: 0;
  border-radius: 0;
}
.p_instructor__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p_instructor__quote-icon {
  font-size: 2.8rem;
  color: var(--pi-muted);
  margin-bottom: 2.4rem;
  line-height: 1;
}
.p_instructor__quote {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--pi-text);
  margin-bottom: 3.2rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .p_instructor__quote {
    font-size: 2.4rem;
  }
}
.p_instructor__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.6rem;
}
.p_instructor__name {
  font-family: var(--f_display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--pi-text);
  letter-spacing: 0.08em;
}
.p_instructor__role {
  font-size: 1.3rem;
  color: var(--pi-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.p_instructor__meta {
  margin-top: 0.6rem;
  font-size: 1.1rem;
  color: rgba(161, 161, 166, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  line-height: 1.6;
}
.p_instructor__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.6rem;
  margin-top: 3.2rem;
}
.p_instructor__prev, .p_instructor__next {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 999px;
  border: 1px solid var(--pi-border);
  background: var(--pi-card);
  color: var(--pi-muted);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.6rem;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p_instructor__prev:hover, .p_instructor__next:hover {
    opacity: 1;
    background: var(--pi-text);
    color: var(--pi-card);
  }
}

.p_lesson {
  position: relative;
  background: var(--c_paper);
  overflow: hidden;
}
.p_lesson__pane {
  position: relative;
  padding: 10rem 10rem 0;
  background: inherit;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  will-change: transform, filter;
}
@media screen and (max-width: 1024px) {
  .p_lesson__pane {
    padding: 8rem 2.4rem 0;
  }
}
.p_lesson__pane:nth-child(n+2) {
  border-radius: 32px 32px 0 0;
  -webkit-box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.12);
          box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 1024px) {
  .p_lesson__pane:nth-child(n+2) {
    border-radius: 24px 24px 0 0;
  }
}
.p_lesson__pane:last-of-type {
  min-height: auto;
}
.p_lesson__inner {
  width: 100%;
  max-width: var(--inner_max);
  margin-inline: auto;
  padding-inline: 4rem;
  display: grid;
  grid-template-columns: 8fr 4fr;
  grid-template-rows: auto 1fr;
  gap: 4rem 6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p_lesson__inner {
    padding-inline: 2rem;
    grid-template-columns: 1fr;
    grid-template-rows: initial;
    gap: 3.2rem;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
  }
}
.p_lesson__pane:nth-child(1) {
  z-index: 1;
}
.p_lesson__pane:nth-child(2) {
  z-index: 2;
}
.p_lesson__pane:nth-child(3) {
  z-index: 3;
}
.p_lesson__pane:nth-child(4) {
  z-index: 4;
}
.p_lesson__pane:nth-child(5) {
  z-index: 5;
}
.p_lesson__pane--reversed .p_lesson__inner {
  grid-template-columns: 4fr 8fr;
}
@media screen and (max-width: 1024px) {
  .p_lesson__pane--reversed .p_lesson__inner {
    grid-template-columns: 1fr;
  }
}
.p_lesson__pills {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.4rem;
  margin: 2rem 0;
}
.p_lesson__pane--light {
  background: var(--c_paper);
  color: var(--c_ink);
}
.p_lesson__pane--light .p_lesson__list li {
  border-color: rgba(17, 17, 17, 0.18);
}
.p_lesson__pane--light .p_lesson__list li::before {
  background: currentColor;
}
.p_lesson__pane--light .p_lesson__list li:first-child {
  border-top-color: rgba(17, 17, 17, 0.18);
}
.p_lesson__pane--dark {
  background: var(--c_ink);
  color: var(--c_paper);
}
.p_lesson__pane--dark .p_lesson__list li {
  border-color: rgba(255, 255, 255, 0.18);
  opacity: 0.9;
}
.p_lesson__pane--dark .p_lesson__list li::before {
  background: currentColor;
}
.p_lesson__pane--dark .p_lesson__list li:first-child {
  border-top-color: rgba(255, 255, 255, 0.18);
}
.p_lesson__inner > .c_section-head {
  margin-bottom: 0;
  opacity: 0;
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
  will-change: transform, opacity;
  grid-column: 1;
  grid-row: 1;
  align-self: end;
}
@media screen and (max-width: 1024px) {
  .p_lesson__inner > .c_section-head {
    grid-column: initial;
    grid-row: initial;
    align-self: initial;
  }
}
.p_lesson__pane--reversed .p_lesson__inner > .c_section-head {
  grid-column: 2;
}
@media screen and (max-width: 1024px) {
  .p_lesson__pane--reversed .p_lesson__inner > .c_section-head {
    grid-column: initial;
  }
}
.p_lesson__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  will-change: transform, opacity;
  position: static;
  width: auto;
  grid-column: 2;
  grid-row: 1/-1;
  align-self: end;
}
@media screen and (max-width: 1024px) {
  .p_lesson__media {
    position: absolute;
    bottom: 0%;
    right: 0;
    width: 100px;
    grid-column: initial;
    grid-row: initial;
    align-self: initial;
  }
}
.p_lesson__media img {
  width: auto;
  height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom center;
     object-position: bottom center;
  display: block;
}
.p_lesson__pane--reversed .p_lesson__media {
  grid-column: 1;
}
@media screen and (max-width: 1024px) {
  .p_lesson__pane--reversed .p_lesson__media {
    grid-column: initial;
  }
}
.p_lesson__body {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  margin-top: 2.4rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 1024px) {
  .p_lesson__body {
    grid-column: initial;
    grid-row: initial;
    align-self: initial;
    margin-top: 0;
    padding-bottom: 8rem;
  }
}
.p_lesson__pane--reversed .p_lesson__body {
  grid-column: 2;
}
@media screen and (max-width: 1024px) {
  .p_lesson__pane--reversed .p_lesson__body {
    grid-column: initial;
  }
}
.p_lesson__intro {
  font-family: var(--f_sans);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.4vw, 2.2rem);
  line-height: 1.7;
  margin: 0 0 2.8rem;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-filter: blur(10px);
          filter: blur(10px);
  will-change: transform, filter, opacity;
}
.p_lesson__list {
  list-style: none;
  padding: 0;
  margin: 0 0 3.2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p_lesson__list li {
  font-family: var(--f_sans);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.2rem 0 1.2rem 2.6rem;
  border-bottom: 1px solid currentColor;
  position: relative;
  line-height: 1.4;
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  will-change: transform, opacity;
}
.p_lesson__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.4rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.p_lesson__list li:first-child {
  border-top: 1px solid currentColor;
}
.p_lesson__cta {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  will-change: transform, opacity;
}
@media (prefers-reduced-motion: reduce) {
  .p_lesson__inner > .c_section-head, .p_lesson__media, .p_lesson__intro, .p_lesson__list li, .p_lesson__cta {
    opacity: 1 !important;
    -webkit-transform: none !important;
            transform: none !important;
    -webkit-filter: none !important;
            filter: none !important;
  }
}

.p_voice {
  background: var(--c_sand);
  padding: 12rem 0;
  overflow: visible;
}
@media screen and (max-width: 768px) {
  .p_voice {
    padding: 8rem 0;
  }
}
.p_voice__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  max-width: 76rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.p_voice__list > li {
  position: sticky;
  margin-bottom: 1.6rem;
  will-change: transform;
}
.p_voice__list > li:nth-child(1) {
  top: calc(var(--hdr_height) + 1.6rem);
  z-index: 1;
}
.p_voice__list > li:nth-child(2) {
  top: calc(var(--hdr_height) + 3.2rem);
  z-index: 2;
}
.p_voice__list > li:nth-child(3) {
  top: calc(var(--hdr_height) + 4.8rem);
  z-index: 3;
}
.p_voice__list > li:nth-child(4) {
  top: calc(var(--hdr_height) + 6.4rem);
  z-index: 4;
}
.p_voice__list > li:last-child {
  margin-bottom: 0;
}
.p_voice__card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 4rem 4.4rem;
  background: var(--c_paper);
  border: 1px solid var(--c_sand_line);
  border-radius: 24px;
  -webkit-box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.07);
          box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.07);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  will-change: transform, filter;
}
.p_voice__card::before {
  content: "";
  position: absolute;
  top: -1.2rem;
  left: 4rem;
  width: 9rem;
  height: 2.6rem;
  background: var(--c_magenta);
  opacity: 0.92;
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  border-radius: 2px;
}
.p_voice__card::after {
  content: "★";
  position: absolute;
  top: 1.8rem;
  right: 2.4rem;
  color: var(--c_yellow);
  font-size: 2.4rem;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .p_voice__card {
    padding: 3.2rem 3rem;
  }
}
@media screen and (max-width: 768px) {
  .p_voice__card {
    padding: 4rem 1.8rem 2rem;
  }
}
.p_voice__list > li:nth-child(even) .p_voice__card::before {
  background: var(--c_yellow);
  left: auto;
  right: 6rem;
  -webkit-transform: rotate(4deg);
          transform: rotate(4deg);
}
.p_voice__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
}
.p_voice__person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
  min-width: 0;
}
.p_voice__avatar {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 999px;
  overflow: hidden;
  background: #ddd;
}
.p_voice__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p_voice__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}
.p_voice__name {
  font-family: var(--f_display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--c_ink);
  letter-spacing: 0.08em;
  line-height: 1.2;
}
.p_voice__role {
  font-size: 1.1rem;
  color: var(--c_muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.3;
}
.p_voice__counter {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.45);
  letter-spacing: 0.12em;
  -webkit-font-feature-settings: "tnum";
          font-feature-settings: "tnum";
  margin-top: 0.4rem;
  font-family: var(--f_display);
}
.p_voice__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 1.6rem;
}
.p_voice__qmark {
  display: block;
  font-size: 10rem;
  font-weight: 500;
  font-style: italic;
  line-height: 0.6;
  color: var(--c_ink);
  margin-bottom: 1.2rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.p_voice__quote {
  font-size: 1.8rem;
  line-height: 1.7;
  font-weight: 500;
  color: var(--c_ink);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p_voice__quote {
    font-size: 1.6rem;
  }
}

.p_info {
  background: var(--c_paper);
  color: var(--c_ink);
  padding: 12rem 0;
  border-top: 1px solid var(--c_line);
}
@media screen and (max-width: 768px) {
  .p_info {
    padding: 8rem 0;
  }
}
.p_info__overview {
  margin: 2rem 0 3.2rem;
  border-bottom: 1px solid var(--c_line);
}
.p_info__deflist {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  border-spacing: 0;
}
.p_info__deflist tr {
  border-bottom: 1px solid var(--c_line);
}
.p_info__deflist tr:last-child {
  border-bottom: 0;
}
.p_info__deflist th, .p_info__deflist td {
  padding: 1.6rem 0.4rem;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: left;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .p_info__deflist th, .p_info__deflist td {
    padding: 1.2rem 0.2rem;
    font-size: 1.3rem;
  }
}
.p_info__deflist th {
  width: 14rem;
  font-family: var(--f_sans);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--c_muted);
  text-transform: uppercase;
  font-size: 1.1rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p_info__deflist th {
    width: 10rem;
  }
}
.p_info__deflist td {
  color: var(--c_ink);
}
.p_info__deflist td a {
  color: inherit;
  border-bottom: 1px solid currentColor;
}
.p_info__map {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--c_line);
  background: #eee;
}
.p_info__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media screen and (max-width: 768px) {
  .p_info__map {
    aspect-ratio: 4/3;
  }
}
.p_info__panel {
  max-width: 96rem;
  margin: 0 auto 1.6rem;
  border: 1px solid var(--c_line);
  border-radius: 10px;
  background: var(--c_paper);
  overflow: hidden;
  -webkit-transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.p_info__panel[open] {
  border-color: var(--c_ink);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.p_info__panel-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2.4rem 3rem;
  cursor: pointer;
  list-style: none;
  gap: 2rem;
}
.p_info__panel-summary::-webkit-details-marker {
  display: none;
}
@media (any-hover: hover) {
  .p_info__panel-summary:hover {
    background: var(--c_subtle);
  }
}
@media screen and (max-width: 768px) {
  .p_info__panel-summary {
    padding: 1.8rem 2rem;
  }
}
.p_info__panel-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 1.6rem;
}
.p_info__panel-num {
  font-family: var(--f_display);
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: var(--c_muted);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p_info__panel-title {
  font-family: var(--f_sans);
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--c_ink);
}
.p_info__panel-icon {
  position: relative;
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p_info__panel-icon::before, .p_info__panel-icon::after {
  content: "";
  position: absolute;
  background: var(--c_ink);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.p_info__panel-icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1.5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p_info__panel-icon::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1.5px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p_info__panel[open] .p_info__panel-icon::after {
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
}
.p_info__panel-body {
  padding: 0 3rem 2.8rem;
  border-top: 1px solid var(--c_line);
}
@media screen and (max-width: 768px) {
  .p_info__panel-body {
    padding: 0 2rem 2rem;
  }
}
.p_info__table-wrap {
  margin: 2rem 0 1.2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.p_info__schedule {
  width: 100%;
  min-width: 64rem;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.2rem;
}
.p_info__schedule th, .p_info__schedule td {
  padding: 1.2rem 0.8rem;
  border-bottom: 1px solid var(--c_line);
  text-align: center;
  vertical-align: middle;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.p_info__schedule thead th {
  background: var(--c_subtle);
  color: var(--c_muted);
  font-family: var(--f_sans);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.p_info__schedule tbody th {
  font-family: var(--f_display);
  font-weight: 400;
  color: var(--c_ink);
  text-align: right;
  padding-right: 1.4rem;
  white-space: nowrap;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
}
.p_info__schedule tbody td {
  color: var(--c_ink);
  font-weight: 500;
}
.p_info__schedule tbody td:empty, .p_info__schedule tbody td:where([data-empty]) {
  color: rgba(0, 0, 0, 0.25);
}
.p_info__schedule tr:last-child th,
.p_info__schedule tr:last-child td {
  border-bottom: 0;
}
.p_info__note {
  margin-top: 1.2rem;
  font-size: 1.15rem;
  color: var(--c_muted);
  line-height: 1.6;
}
.p_info__price-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  margin: 2.4rem 0 1.2rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .p_info__price-list {
    grid-template-columns: 1fr;
  }
}
.p_info__price-item {
  position: relative;
  padding: 2.4rem 2.6rem;
  border: 1px solid var(--c_line);
  border-radius: 8px;
  background: var(--c_paper);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.6rem;
  -webkit-transition: border-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: border-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: border-color 0.3s ease, transform 0.3s ease;
  transition: border-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (any-hover: hover) {
  .p_info__price-item:hover {
    border-color: var(--c_ink);
  }
}
.p_info__price-item--featured {
  background: var(--c_ink);
  color: var(--c_paper);
  border-color: var(--c_ink);
}
.p_info__price-item--featured .p_info__price-meta {
  color: rgba(255, 255, 255, 0.65);
}
.p_info__price-name {
  font-family: var(--f_sans);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c_muted);
}
.p_info__price-item--featured .p_info__price-name {
  color: rgba(255, 255, 255, 0.7);
}
.p_info__price-amount {
  font-size: clamp(2.8rem, 3.4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: inherit;
  margin: 0.4rem 0;
}
.p_info__price-amount small {
  font-family: var(--f_sans);
  font-style: normal;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  margin-left: 0.4rem;
  opacity: 0.75;
}
.p_info__price-meta {
  font-size: 1.25rem;
  color: var(--c_muted);
  line-height: 1.6;
}
.p_info__price-badge {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  padding: 0.3rem 0.8rem;
  background: var(--c_paper);
  color: var(--c_ink);
  font-family: var(--f_sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  border-radius: 999px;
}

.p_gallery {
  position: relative;
  width: 100%;
  background: var(--c_ink_dark);
  color: var(--c_paper);
  padding: 8rem 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p_gallery {
    padding: 6rem 0;
  }
}
.p_gallery__handle {
  color: var(--c_paper) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 0.2rem;
  margin-left: 0.4em;
  -webkit-transition: border-color 0.3s ease, opacity 0.3s ease;
  transition: border-color 0.3s ease, opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p_gallery__handle:hover {
    opacity: 1;
    border-color: var(--c_paper);
  }
}
.p_gallery__row {
  width: 100%;
  margin-bottom: 2rem;
}
.p_gallery__row:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .p_gallery__row {
    margin-bottom: 1.6rem;
  }
}
.p_gallery__swiper {
  width: 100%;
  overflow: visible;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.p_gallery__swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
.p_gallery__slide {
  pointer-events: auto;
}
.p_gallery__slide {
  width: 32rem;
  height: 32rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--c_ink);
  cursor: default;
}
@media screen and (max-width: 1279px) {
  .p_gallery__slide {
    width: 28rem;
    height: 28rem;
  }
}
@media screen and (max-width: 768px) {
  .p_gallery__slide {
    width: 22rem;
    height: 22rem;
  }
}
.p_gallery__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: -webkit-filter 0.5s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition: -webkit-filter 0.5s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition: filter 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition: filter 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), -webkit-filter 0.5s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (any-hover: hover) {
  .p_gallery__slide:hover img {
    -webkit-filter: grayscale(0%);
            filter: grayscale(0%);
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@media (prefers-reduced-motion: reduce) {
  .p_gallery__swiper .swiper-wrapper {
    -webkit-transform: none !important;
            transform: none !important;
    -webkit-animation: none !important;
            animation: none !important;
  }
}

.p_statement {
  background: var(--c_ink_dark);
  color: var(--c_paper);
  padding: 16rem 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p_statement {
    padding: 8rem 2.4rem;
  }
}
.p_statement__inner {
  max-width: 120rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.6rem;
}
@media screen and (max-width: 1024px) {
  .p_statement__inner {
    gap: 0.4rem;
  }
}
.p_statement__line {
  font-family: var(--f_display);
  font-weight: 400;
  font-size: clamp(4.4rem, 10vw, 14rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
  cursor: default;
  -webkit-transition: color 1s ease;
  transition: color 1s ease;
}
.p_statement__line:nth-child(1) {
  color: var(--c_yellow);
}
.p_statement__line:nth-child(2) {
  color: var(--c_magenta);
}
.p_statement__line:nth-child(3) {
  color: var(--c_wave);
}
@media (any-hover: hover) {
  .p_statement__line:hover {
    color: var(--c_paper);
    opacity: 1;
  }
}

.p_cta {
  position: relative;
  width: 100%;
  min-height: 600px;
  background: linear-gradient(135deg, #1fb5c9 0%, #ff5a3c 55%, #ff3d8a 100%);
  color: var(--c_paper);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 10rem 6rem;
}
.p_cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  z-index: 25;
  background: -webkit-gradient(linear, left top, right top, from(#e8242e), color-stop(16.66%, #e8242e), color-stop(16.66%, #ff7a1f), color-stop(33.33%, #ff7a1f), color-stop(33.33%, #ffd23f), color-stop(50%, #ffd23f), color-stop(50%, #1a6e4a), color-stop(66.66%, #1a6e4a), color-stop(66.66%, #1fb5c9), color-stop(83.33%, #1fb5c9), color-stop(83.33%, #7a3fb5), to(#7a3fb5));
  background: linear-gradient(to right, #e8242e 0%, #e8242e 16.66%, #ff7a1f 16.66%, #ff7a1f 33.33%, #ffd23f 33.33%, #ffd23f 50%, #1a6e4a 50%, #1a6e4a 66.66%, #1fb5c9 66.66%, #1fb5c9 83.33%, #7a3fb5 83.33%, #7a3fb5 100%);
}
.p_cta__wave {
  position: absolute;
  left: 0;
  right: 0;
  top: 45%;
  height: 100px;
  z-index: 6;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 100' preserveAspectRatio='none'%3E%3Cpath d='M0 50 Q 150 0 300 50 T 600 50 T 900 50 T 1200 50' fill='none' stroke='%231fb5c9' stroke-width='6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .p_cta {
    padding: 6rem 2.4rem;
  }
}
.p_cta__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p_cta__curtain {
  position: absolute;
  inset: -1px;
  background: var(--c_ink_dark);
  z-index: 10;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transition: -webkit-transform 1.6s cubic-bezier(0.86, 0, 0.07, 1);
  transition: -webkit-transform 1.6s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 1.6s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 1.6s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 1.6s cubic-bezier(0.86, 0, 0.07, 1);
}
.p_cta__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0.35;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: -webkit-transform 2.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition: -webkit-transform 2.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 2.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 2.5s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 2.5s cubic-bezier(0.16, 1, 0.3, 1);
  mix-blend-mode: multiply;
}
.p_cta__overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(6, 6, 15, 0.55)), color-stop(60%, rgba(255, 90, 60, 0.1)), to(transparent));
  background: linear-gradient(to top, rgba(6, 6, 15, 0.55) 0%, rgba(255, 90, 60, 0.1) 60%, transparent 100%);
  z-index: 5;
}
.p_cta__media.is-active .p_cta__curtain {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}
.p_cta__media.is-active .p_cta__image {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.p_cta__inner {
  position: relative;
  z-index: 20;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}
.p_cta__eyebrow {
  font-family: var(--f_display);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3.2rem;
}
.p_cta__title {
  font-family: var(--f_display);
  font-weight: 400;
  font-size: clamp(5.6rem, 13vw, 18rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--c_yellow);
  margin: 0 0 6.4rem;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}
.p_cta__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p_cta__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2.4rem;
  }
}

.js-fade-up {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.js-fade-up.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-split-text .js-split-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.js-split-text .js-split-char {
  display: inline-block;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  -webkit-transition: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.js-split-text.is-active .js-split-char {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .p_cta__curtain {
    -webkit-transform: scaleY(0) !important;
            transform: scaleY(0) !important;
  }
  .p_cta__image {
    -webkit-transform: scale(1) !important;
            transform: scale(1) !important;
  }
  .js-fade-up {
    opacity: 1 !important;
    -webkit-transform: none !important;
            transform: none !important;
  }
  .js-split-text .js-split-char {
    -webkit-transform: none !important;
            transform: none !important;
    opacity: 1 !important;
  }
}
:root {
  --hdr_height: 84px;
}
@media screen and (max-width: 768px) {
  :root {
    --hdr_height: 60px;
  }
}
:root {
  --inner_max: 1280px;
  --c_ink: #0a0a12;
  --c_paper: #fbf6ec;
  --c_subtle: #fdeede;
  --c_line: #f0d6b8;
  --c_muted: #615a52;
  --c_accent: #ff5a3c;
  --c_accent_light: #ff7a5c;
  --c_sand: #ffe7c2;
  --c_sand_line: #f0c98a;
  --c_ink_dark: #06060f;
  --c_wave: #1fb5c9;
  --c_magenta: #ff3d8a;
  --c_yellow: #ffd23f;
  --c_palm: #1a6e4a;
  --c_hibiscus: #e8242e;
  --f_display: "Bowlby One", "Anton", "Helvetica Neue", "Arial", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --f_sans:
    "Noto Sans JP", "Zen Kaku Gothic New", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial",
    "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;
}

.c_wave-underline {
  position: relative;
  display: inline-block;
}
.c_wave-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.6em;
  height: 0.4em;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M0 6 Q 15 0 30 6 T 60 6 T 90 6 T 120 6' fill='none' stroke='%231fb5c9' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 80px 100%;
}

.c_rainbow-strip {
  display: block;
  width: 100%;
  height: 8px;
  background: -webkit-gradient(linear, left top, right top, from(#e8242e), color-stop(16.66%, #e8242e), color-stop(16.66%, #ff7a1f), color-stop(33.33%, #ff7a1f), color-stop(33.33%, #ffd23f), color-stop(50%, #ffd23f), color-stop(50%, #1a6e4a), color-stop(66.66%, #1a6e4a), color-stop(66.66%, #1fb5c9), color-stop(83.33%, #1fb5c9), color-stop(83.33%, #7a3fb5), to(#7a3fb5));
  background: linear-gradient(to right, #e8242e 0%, #e8242e 16.66%, #ff7a1f 16.66%, #ff7a1f 33.33%, #ffd23f 33.33%, #ffd23f 50%, #1a6e4a 50%, #1a6e4a 66.66%, #1fb5c9 66.66%, #1fb5c9 83.33%, #7a3fb5 83.33%, #7a3fb5 100%);
}

.c_wave-band {
  display: block;
  width: 100%;
  height: 24px;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M0 6 Q 15 0 30 6 T 60 6 T 90 6 T 120 6' fill='none' stroke='%231fb5c9' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 160px 100%;
}

.c_genre-pill {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.6rem 1.4rem;
  margin: 0.3rem;
  background: var(--c_wave);
  color: var(--c_paper);
  font-family: var(--f_display);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  border-radius: 999px;
  text-transform: uppercase;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c_genre-pill:hover {
  background: var(--c_magenta);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.hl-yellow {
  color: var(--c_yellow);
}

.hl-wave {
  color: var(--c_wave);
}

.hl-magenta {
  color: var(--c_magenta);
}

.c_star {
  display: inline-block;
  color: var(--c_yellow);
  font-style: normal;
}
.c_star::before {
  content: "★";
}/*# sourceMappingURL=style.css.map */