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

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

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

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

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

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

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

  /* Prevents layout shift caused by the appearance or disappearance of the scrollbar. */
  scrollbar-gutter: stable;

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

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

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

  /* Set to `no-autospace` as it can cause misalignment with monospaced fonts. */
  text-autospace: no-autospace;
}
/* ======================================================
//  MARK: Text-level semantics
// ====================================================== */
:where(em:lang(ja)) {
  /* In Japanese, emphasis is commonly represented by bold text, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}
:where(:is(i, cite, em, dfn, var):lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}
:where(code, kbd, samp) {
  /*
  * Set a monospace font family referencing Tailwind.
  * @see https://tailwindcss.com/docs/font-family
  */
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;

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

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

  /*
  * Disables font ligatures for programming fonts (like Fira Code)
  * to prevent character combinations like `=>` from being rendered as a single symbol (e.g., `⇒`).
  */
  font-variant-ligatures: none;
}
:where(abbr[title]) {
  /*
  * The `<abbr>` element with the `title` attribute isn't helpful regarding accessibility because support is inconsistent, and it's only accessible to some users.
  * This rule shows a dotted underline on abbreviations in all browsers (there's a bug in Safari) and changes the cursor.
  * @see https://adrianroselli.com/2024/01/using-abbr-element-with-title-attribute.html
  */
  text-decoration-line: underline;
  text-decoration-style: dotted;
  cursor: help;
}
:where(time) {
  /* Set to `no-autospace` because date notations in typography do not include spaces. */
  text-autospace: no-autospace;
}
/* ======================================================
//  MARK: Links
// ====================================================== */
:where(a:-moz-any-link) {
  /* The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: unset;

  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  text-decoration-line: unset;

  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
}
:where(a:any-link) {
  /* The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: unset;

  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  text-decoration-line: unset;

  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
}
/* ======================================================
//  MARK: Embedded content
// ====================================================== */
:where(img, svg, picture, video, canvas, model, audio, iframe, embed, object) {
  /* Automatically adjust block size based on content. */
  block-size: auto;

  /* Prevents overflow by setting the maximum width to `100%`. */
  max-inline-size: 100%;

  /* Prevents extra space from appearing at the bottom of the element. */
  vertical-align: bottom;
}
:where(iframe) {
  /* The `border` specified in the UA stylesheet is often unnecessary, so it is reset. */
  border: unset;
}
/* ======================================================
//  MARK: Tabular data
// ====================================================== */
:where(table) {
  /* Collapse borders for a more refined table design. */
  border-collapse: collapse;
}
:where(caption, th) {
  /* The `text-align` specified in the UA stylesheet is often unnecessary, so it is reset. */
  text-align: unset;
}
:where(caption) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}
/* ======================================================
//  MARK: Forms
// ====================================================== */
:where(button, input, select, textarea),
::file-selector-button {
  /*
  * These elements are often styled with a border, so a `1px` border is applied by default for consistency.
  * This ensures readability even for unstyled elements.
  * When resetting, it's recommended to use `border-color: transparent` instead of `border: none` to account for forced color modes.
  */
  border-width: 1px;
  border-style: solid;

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

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

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

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

  /* The following default styles are often unnecessary, so they are reset. */
  padding: unset;
  border: unset;
}
:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  /*
  * These elements can be easily displayed by explicitly setting their `display` property.
  * To prevent them from appearing when not in an open state, they are forcibly hidden.
  */
  display: none !important;
}
:where(dialog) {
  /*
  * The max width and height of a `<dialog>` element are typically determined by the design.
  * These UA stylesheet properties are reset as they can be obstructive, especially when trying to make the dialog full-screen.
  */
  max-inline-size: unset;
  max-block-size: unset;
}
:where(dialog)::backdrop {
  /* Normalize the background color of the `::backdrop` element. */
  background-color: oklch(0% 0 0deg / 30%);
}
:where([popover]) {
  /*
  * While the UA stylesheet's `margin` for `<dialog>` elements is useful for centering with `inset: 0`,
  * but `margin` for `popover` elements is often obstructive as they frequently use Anchor Positioning.
  */
  margin: unset;
}
/* ======================================================
//  MARK: Focus Styles
// ====================================================== */
:where(:focus-visible) {
  /* Add space between the content and the focus outline. */
  outline-offset: 3px;
}
[tabindex="-1"]:focus {
  /* Prevent programmatically focused elements from displaying an outline unless they are naturally focusable. */
  outline: none !important;
}
/* ======================================================
//  MARK: Misc
// ====================================================== */
:where(:disabled, [aria-disabled="true" i]) {
  /* Display the default cursor on disabled elements to reflect their non-interactive state. */
  cursor: default;
}
[hidden]:not([hidden="until-found" i]) {
  /* Ensure that elements intended to be hidden are not displayed, improving clarity and layout control. */
  display: none !important;
}
/* デザインカンプ */
/* 余白 */
/* リキッドレイアウトの範囲
767px未満：384pxの状態を基準に拡大縮小
768px以上：384pxの状態を520pxまで拡大した状態で固定
*/
/* ----- ブレークポイント（@include mq） ----- */
/* 使い方
・ホバー・フォーカスで不透明度を変える
a {
  @include hover-opacity(); // 初期値 0.7
  @include hover-opacity(0.8); // 不透明度を変える
}
*/
/* 背景色・文字色（--button-bg-hover / --button-text-color-hover）。::before / ::after は使用しない */
/*
 * 背景の scaleX スライド（要素自身の ::before を使用）
 * 同一セレクタでは ::before を他用途に使わないこと（上書き・競合のため）。
 * --button-bg-hover / --button-text-color-hover / --button-text-color-focus-visible 等を参照。
 * $clear-bg-delay … 背景を透明にする transition-delay（hover / focus-visible 共通、既定 0.3s）
 */
img {
  /* 低解像度ディスプレイでのジャギー防止 */
  overflow-clip-margin: unset;
  display: block;
  width: 100%;
}
iframe {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  border-width: 0;
  padding: 0;
}
h1 {
  margin-block: unset;
}
:root {
  --base-font-family: "BIZ UDGothic", sans-serif;
  --letter-spacing-base: 0.06em;
  --color-black: #100031;
  --color-white: #fff;
  --color-blue: #20146a;
  --color-blue-light: #2ee0ff;
  --color-green: #33fbcb;
  --gradation1: linear-gradient(90deg, #3a21da 0%, #dd4ad3 100%);
  --gradation2: linear-gradient(90deg, #2b4bde 2.25%, #a668ff 98.09%);
  --border: 1px solid rgba(255, 255, 255, 0.6);
  --inner-padding: 0.9375rem;
  --hover-transition: 0.3s ease-in-out;
}
/* リキッドレイアウト */
html {
  font-size: 4.1666666667vw;
  font-size: 4.1666666667cqi;
}
body {
  container-type: inline-size;
  text-rendering: optimizeSpeed;
  font-family: var(--base-font-family);
  font-weight: 700;
  line-height: 1.5;
}
body * {
  font-weight: inherit;
}
a {
  transition: opacity var(--hover-transition);
}
a:focus-visible {
  opacity: 0.7;
}
a:not([class]) {
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}
/* pcの電話番号発信対応 */
iframe[src*="youtube.com"] {
  aspect-ratio: 16/9;
}
.l-footer {
  margin-block-start: 3.75rem;
}
.l-inner {
  padding-inline: var(--inner-padding);
}
.l-top-about {
  margin-block-start: -1.625rem;
}
.l-top-campain {
  margin-block-start: 3.3125rem;
}
.c-button-gradation {
  --button-bg-hover: color-mix(var(--color-white) 10%, transparent);
  display: inline-flex;
  background-image: var(--gradation2);
  position: relative;
  z-index: 0;
  overflow: hidden;
  transition: color var(--hover-transition);
}
.c-button-gradation::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-color: var(--button-bg-hover);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--hover-transition);
  content: "";
}
.c-button-gradation:focus-visible {
  background-color: transparent;
  color: var(--button-text-color-focus-visible);
  opacity: 1;
  transition: color var(--hover-transition), background-color 0s 0.3s;
}
.c-button-gradation:focus-visible::before {
  transform: scaleX(1);
  transform-origin: left;
}
.c-button-gradation__text {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  min-height: 3.75rem;
  padding-block: 0.5rem;
  padding-inline: 1rem;
  color: var(--color-white);
  font-size: 0.875rem;
  letter-spacing: var(--letter-spacing-base);
}
.c-button-gradation__text::before,
.c-button-gradation__text::after {
  width: 0.9375rem;
  content: "";
}
.c-button-gradation[target=_blank] .c-button-gradation__text::after {
  width: 0.9375rem;
  aspect-ratio: 30/21;
  background: url(../images/icon_external.svg) no-repeat center/contain;
  content: "";
}
.c-button-more {
  --button-bg: color-mix(in srgb, var(--color-white) 20%, transparent);
  --button-bg-hover: color-mix(in srgb, var(--color-white) 30%, transparent);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
  width: 16.8125rem;
  min-height: 3.4375rem;
  padding-block: 0.5rem;
  padding-inline: 1.5rem;
  background-color: var(--button-bg);
  border: 1px solid color-mix(in srgb, var(--color-white) 30%, transparent);
  border-radius: 100vh;
  font-size: 0.9375rem;
  letter-spacing: var(--letter-spacing-base);
  white-space: nowrap;
  transition: background-color var(--hover-transition);
}
.c-button-more:focus-visible {
  opacity: 1;
  background-color: var(--button-bg-hover);
}
.c-button-more::before,
.c-button-more::after {
  width: 0.9375rem;
  content: "";
}
.c-button-more::before {
  flex-shrink: 1;
}
.c-button-more::after {
  flex-shrink: 0;
  width: 0.9375rem;
  aspect-ratio: 30/21;
  background: url(../images/icon_retry.svg) no-repeat center/contain;
  content: "";
}
.c-button-transparent {
  --button-bg: color-mix(in srgb, var(--color-white) 20%, transparent);
  --button-bg-hover: color-mix(in srgb, var(--color-white) 30%, transparent);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  min-width: 10.875rem;
  min-height: 2.6875rem;
  padding-block: 0.5rem;
  padding-inline: 0.25rem 1rem;
  background-color: color-mix(in oklch, var(--color-white) 20%, transparent);
  border: 1px solid color-mix(in oklch, var(--color-white) 40%, transparent);
  border-radius: 0.3125rem;
  font-size: 0.8125rem;
  letter-spacing: var(--letter-spacing-base);
  transition: background-color var(--hover-transition);
}
.c-button-transparent:focus-visible {
  opacity: 1;
  background-color: var(--button-bg-hover);
}
.c-button-transparent::before,
.c-button-transparent::after {
  width: 1.5rem;
  content: "";
}
.c-button-transparent[target=_blank]::after {
  width: 0.9375rem;
  aspect-ratio: 30/21;
  background: url(../images/icon_external.svg) no-repeat center/contain;
  content: "";
}
.c-button {
  --button-filter-base: drop-shadow(0 0 1.875rem color-mix(in oklch, var(--color-white) 40%, transparent));
  --button-filter-hover: drop-shadow(0 0 0.625rem color-mix(in oklch, var(--color-white) 60%, transparent));
  display: inline-block;
  width: 100%;
  border-radius: 100vh;
  filter: var(--button-filter-base);
  transform: translateZ(0);
  transition: filter var(--hover-transition), scale var(--hover-transition);
}
/* :focus-visible */
.c-button:focus-visible {
  opacity: 1;
  filter: var(--button-filter-hover);
  scale: 1.05;
}
.p-bg-deco {
  position: relative;
}
.p-bg-deco__line {
  position: fixed;
  background-color: var(--color-white);
  display: block;
  height: 1px;
  opacity: 0.4;
  rotate: -45deg;
  transform-origin: top right;
  animation: line-reveal 6s ease-in-out infinite;
}
.p-bg-deco__line:nth-child(1) {
  inset-block-start: 62.962962963vh;
  inset-inline-start: calc(50% - 608px);
  width: 130px;
}
.p-bg-deco__line:nth-child(2) {
  inset-block-start: 67.8703703704vh;
  inset-inline-start: calc(50% - 698px);
  width: 190px;
}
.p-bg-deco__line:nth-child(3) {
  inset-block-start: 32.8703703704vh;
  inset-inline-start: calc(50% + 644px);
  width: 130px;
}
.p-bg-deco__line:nth-child(4) {
  inset-block-start: 35.7407407407vh;
  inset-inline-start: calc(50% + 574px);
  width: 190px;
}
@keyframes line-reveal {
  0% {
    clip-path: inset(0 0 0 0);
  }
  10% {
    clip-path: inset(0 0 0 0);
  }
  40% {
    clip-path: inset(0 100% 0 0);
  }
  41% {
    clip-path: inset(0 0 0 100%);
  }
  61% {
    clip-path: inset(0 0 0 100%);
  }
  90% {
    clip-path: inset(0 0 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
/* ドットアニメーション */
.p-bg-deco__dotted {
  position: fixed;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
  width: 7.5rem;
  height: 2.5rem;
  opacity: 0.5;
}
.p-bg-deco__dotted[data-position=right-top] {
  inset-block-start: 164px;
  inset-inline-start: calc(50% + 382px);
}
.p-bg-deco__dotted[data-position=left-top] {
  inset-block-start: 142px;
  inset-inline-start: calc(50% - 528px);
}
.p-bg-deco__dotted[data-position=right-bottom] {
  inset-block-start: 732px;
  inset-inline-start: calc(50% + 382px);
}
.p-bg-deco__dot {
  place-self: center;
  width: 2px;
  height: 2px;
  background: var(--color-white);
  opacity: 0;
  animation: flash 8s infinite;
}
.p-bg-deco__dot:first-child {
  animation-delay: 0s;
}
.p-bg-deco__dot:nth-child(2) {
  animation-delay: 0.3s;
}
.p-bg-deco__dot:nth-child(3) {
  animation-delay: 0.6s;
}
.p-bg-deco__dot:nth-child(4) {
  animation-delay: 0.9s;
}
.p-bg-deco__dot:nth-child(5) {
  animation-delay: 1.2s;
}
.p-bg-deco__dot:nth-child(6) {
  animation-delay: 1.5s;
}
.p-bg-deco__dot:nth-child(7) {
  animation-delay: 1.8s;
}
.p-bg-deco__dot:nth-child(8) {
  animation-delay: 0.3s;
}
.p-bg-deco__dot:nth-child(9) {
  animation-delay: 0.6s;
}
.p-bg-deco__dot:nth-child(10) {
  animation-delay: 0.9s;
}
.p-bg-deco__dot:nth-child(11) {
  animation-delay: 1.2s;
}
.p-bg-deco__dot:nth-child(12) {
  animation-delay: 1.5s;
}
.p-bg-deco__dot:nth-child(13) {
  animation-delay: 1.8s;
}
.p-bg-deco__dot:nth-child(14) {
  animation-delay: 2.1s;
}
.p-bg-deco__dot:nth-child(15) {
  animation-delay: 0.6s;
}
.p-bg-deco__dot:nth-child(16) {
  animation-delay: 0.9s;
}
.p-bg-deco__dot:nth-child(17) {
  animation-delay: 1.2s;
}
.p-bg-deco__dot:nth-child(18) {
  animation-delay: 1.5s;
}
.p-bg-deco__dot:nth-child(19) {
  animation-delay: 1.8s;
}
.p-bg-deco__dot:nth-child(20) {
  animation-delay: 2.1s;
}
.p-bg-deco__dot:nth-child(21) {
  animation-delay: 2.4s;
}
@keyframes flash {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.p-footer {
  padding-block: 2.75rem 1.25rem;
  padding-inline: 1.5625rem;
  background-color: #25155a;
}
.p-footer__wrap {
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 0.6875rem;
       column-gap: 0.6875rem;
}
.p-footer__chara {
  width: 7.1875rem;
}
.p-footer__links {
  display: grid;
  gap: 0.625rem;
}
.p-footer__app {
  display: block;
}
.p-footer__desc {
  margin-block-start: 1.25rem;
  font-size: 0.625rem;
  letter-spacing: var(--letter-spacing-base);
  line-height: 1.8;
  color: color-mix(in srgb, var(--color-white) 90%, transparent);
}
.p-footer__button {
  margin-block-start: 1.25rem;
}
.p-footer__copyright {
  margin-block-start: 0.5rem;
  text-align: center;
}
.p-footer__copyright small img {
  display: inline-block;
  width: auto;
  height: 1.25rem;
}
.p-result {
  --icon-width: 2.8125rem;
  padding-block: 0.625rem;
}
.p-result__logo {
  width: 6.75rem;
}
.p-result__label {
  margin-block-start: 1.375rem;
  font-size: 1.0625rem;
  letter-spacing: var(--letter-spacing-base);
  text-align: center;
}
.p-result__box {
  margin-block-start: 2.1875rem;
  position: relative;
  padding-block: 2.5rem 2.0625rem;
  padding-inline: 1.25rem;
  border: var(--border);
  background: rgba(16, 0, 49, 0.6);
}
.p-result__title {
  margin-inline: auto;
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  translate: 0 -50%;
  width: -moz-fit-content;
  width: fit-content;
  padding-block: 0.0625rem;
  padding-inline: 0.625rem;
  background-image: var(--gradation2);
  font-size: 1.4375rem;
  letter-spacing: var(--letter-spacing-base);
}
.p-result__question {
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 0.9375rem;
       column-gap: 0.9375rem;
}
.p-result__question-icon {
  width: 2.8125rem;
  aspect-ratio: 1;
}
.p-result__question-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 0.8125rem;
  letter-spacing: var(--letter-spacing-base);
  line-height: 1.8;
}
.p-result__respondent-wrap {
  margin-block-start: 1.5625rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  -moz-column-gap: 0.875rem;
       column-gap: 0.875rem;
}
.p-result__respondent-image {
  width: 5.625rem;
}
.p-result__respondent-label {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.875rem;
  letter-spacing: var(--letter-spacing-base);
}
.p-result__respondent-label::before,
.p-result__respondent-label::after {
  content: "";
}
.p-result__respondent-label::before {
  width: 0.3125rem;
  aspect-ratio: 1;
  background-color: var(--color-green);
}
.p-result__respondent-label::after {
  background-color: color-mix(in srgb, var(--color-white) 70%, transparent);
  height: 1px;
}
.p-result__respondent {
  margin-block-start: 0.9375rem;
  line-height: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
  align-items: flex-end;
}
.p-result__respondent-name {
  font-size: 1.4375rem;
  letter-spacing: var(--letter-spacing-base);
}
.p-result__respondent-dept {
  font-size: 0.75rem;
  letter-spacing: var(--letter-spacing-base);
}
.p-result__answer {
  margin-block-start: 1.625rem;
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 0.9375rem;
       column-gap: 0.9375rem;
}
.p-result__answer-icon {
  width: 2.8125rem;
  aspect-ratio: 1;
}
.p-result__answer-texts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 0.8125rem;
  letter-spacing: var(--letter-spacing-base);
  line-height: 1.8;
}
.p-result__answer-text {
  display: block;
}
.p-result__answer-text + .p-result__answer-text {
  margin-block-start: 0.375rem;
}
.p-result__actions {
  margin-block-start: 1.875rem;
}
.p-result__more {
  margin-block-start: 1.875rem;
  display: grid;
  row-gap: 1.25rem;
  justify-content: center;
}
.p-result__profile {
  margin-block-start: 1.875rem;
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 0.9375rem;
       column-gap: 0.9375rem;
  padding-block: 1.25rem 0.9375rem;
  padding-inline: 1.25rem;
  background-color: color-mix(in srgb, var(--color-white) 50%, transparent);
  color: var(--color-blue);
}
.p-result__profile-image {
  width: 4.6875rem;
}
.p-result__profile-texts {
  padding-block-start: 0.25rem;
}
.p-result__profile-name {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-end;
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
}
.p-result__profile-name-text {
  font-size: 1.0625rem;
  letter-spacing: var(--letter-spacing-base);
  line-height: 1;
}
.p-result__profile-name-kana {
  font-size: 0.625rem;
  letter-spacing: var(--letter-spacing-base);
  line-height: 1;
  opacity: 0.5;
}
.p-result__profile-copy {
  margin-block-start: 0.6875rem;
  width: -moz-fit-content;
  width: fit-content;
  padding-block: 0.25rem;
  padding-inline: 0.3125rem;
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: 0.75rem;
  letter-spacing: var(--letter-spacing-base);
  line-height: 1;
}
.p-result__profile-desc {
  margin-block-start: 0.625rem;
  font-size: 0.625rem;
  letter-spacing: var(--letter-spacing-base);
  line-height: 1.8;
}
@keyframes p-top-about-in {
  from {
    opacity: 0;
    transform: translateY(3%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-top-about {
  opacity: 0;
  transform: translateY(3%);
}
.p-top-about__heading {
  font-size: 1.0625rem;
  display: grid;
  justify-content: center;
}
.p-top-about__heading-text {
  letter-spacing: var(--letter-spacing-base);
}
.p-top-about__heading-accent-text {
  margin-block-start: 0.3125rem;
  padding-block: 0.25rem;
  padding-inline: 0.375rem;
  letter-spacing: var(--letter-spacing-base);
  background-image: var(--gradation1);
}
.p-top-about__panel {
  margin-block-start: 1.25rem;
  position: relative;
  padding-block: 1.5625rem;
  padding-inline: 1.25rem;
  background: url(../images/top-about-panel_bg.png) no-repeat center/100% 100%;
  text-align: center;
}
.p-top-about__desc {
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: var(--letter-spacing-base);
}
.p-top-about__desc + .p-top-about__desc {
  margin-block-start: 0.875rem;
}
.p-top-about__share-tag {
  margin-block: 0.3125rem;
  display: block;
  color: var(--color-blue-light);
  text-decoration: underline;
}
.p-top-about__note {
  margin-block-start: 0.875rem;
  font-size: 0.625rem;
  letter-spacing: var(--letter-spacing-base);
  line-height: 1.8;
  opacity: 0.7;
}
.p-top-about__check {
  margin-block-start: 1.8125rem;
}
html.is-loaded .p-top-about {
  animation: p-top-about-in 0.5s ease-in-out 1s forwards;
}
.p-top-campain__heading {
  display: grid;
  grid-template-columns: 0.9375rem 16rem 0.9375rem;
  gap: 0.9375rem;
  align-items: flex-end;
  justify-content: center;
}
.p-top-campain__heading-deco span {
  position: relative;
  display: block;
  width: 0.9375rem;
  aspect-ratio: 29/16;
  background: url(../images/top-campain_heading_deco.png) no-repeat center/contain;
  translate: 0 -0.4375rem;
  animation: arrowFade 2.4s infinite forwards;
}
.p-top-campain__heading-deco span:nth-child(1) {
  animation-delay: 0.3s;
}
.p-top-campain__heading-deco span:nth-child(2) {
  animation-delay: 0.6s;
}
.p-top-campain__heading-deco span:nth-child(3) {
  animation-delay: 0.9s;
}
@keyframes arrowFade {
  0% {
    opacity: 0.2;
  }
  35% {
    opacity: 0.6;
  }
  70% {
    opacity: 0.6;
  }
  to {
    opacity: 0.2;
  }
}
.p-top-campain__content {
  margin-block-start: 1.625rem;
}
.p-top-campain__items {
  display: grid;
  gap: 1.25rem;
}
.p-top-campain__item {
  padding-block: 1.625rem 1.875rem;
  padding-inline: 1.25rem;
  background-color: color-mix(in oklch, var(--color-black) 60%, transparent);
  border: 1px solid color-mix(in oklch, var(--color-white) 60%, transparent);
}
.p-top-campain__item-heading {
  --heading-marker-size: 1.4375rem;
  --heading-column-gap: -0.1875rem;
  position: relative;
  padding-inline-start: calc(var(--heading-marker-size) + var(--heading-column-gap));
  font-size: 1rem;
  letter-spacing: var(--letter-spacing-base);
  line-height: 1.6;
}
.p-top-campain__item-heading::before {
  position: absolute;
  inset-block-start: calc((1lh - var(--heading-marker-size)) / 2);
  inset-inline-start: 0;
  block-size: var(--heading-marker-size);
  aspect-ratio: 30/46;
  background: url(../images/heading_deco.svg) no-repeat center/contain;
  content: "";
}
.p-top-campain__item-image {
  margin-block-start: 1.5rem;
}
.p-top-campain__item-dl {
  margin-block-start: 1.1875rem;
  display: grid;
}
.p-top-campain__item-dt {
  color: var(--color-green);
  font-size: 0.875rem;
  letter-spacing: var(--letter-spacing-base);
}
.p-top-campain__item-dd {
  font-size: 0.875rem;
  letter-spacing: var(--letter-spacing-base);
  line-height: 1.8;
}
.p-top-campain__item-dd + .p-top-campain__item-dt {
  margin-block-start: 1.0625rem;
}
.p-top-campain__item-dt + .p-top-campain__item-dd {
  margin-block-start: 0.4375rem;
}
.p-top-campain__list-item {
  text-indent: hanging 1em;
}
.p-top-campain__item-button {
  margin-block-start: 1.5rem;
  text-align: center;
}
.p-top-kv {
  padding-block-start: 0.9375rem;
  /* KV 入場（html.is-loaded 後）の delay / duration。_cButtonIntroHint.js の待ちと揃える */
  --kv-load-delay-title: 0.2s;
  --kv-load-delay-chara-image: 0.4s;
  --kv-load-delay-chara-q: 0.6s;
  --kv-load-delay-chara-a: 0.8s;
  --kv-load-duration: 0.5s;
}
.p-top-kv__inner {
  --inner-padding: 2rem;
}
.p-top-kv__logo-bremy {
  margin-inline: auto;
  width: 7.5rem;
}
.p-top-kv__title {
  margin-block-start: 0.9375rem;
  margin-inline: auto;
  width: 20.25rem;
  opacity: 0;
  transform: scale(1.1);
}
.p-top-kv__chara {
  margin-block-start: 0.1875rem;
  position: relative;
}
.p-top-kv__chara-image {
  margin-inline: calc(var(--inner-padding) * -1);
  opacity: 0;
  transform: translateY(2%);
}
.p-top-kv__chara-qa {
  position: absolute;
  inset-block-start: 2.5625rem;
  inset-inline-end: 0;
  display: grid;
  gap: 1.5625rem;
}
.p-top-kv__chara-q {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 10.4375rem;
  min-height: 3.125rem;
  padding-block: 0.5rem;
  padding-inline: 0.75rem;
  color: var(--color-black);
  opacity: 0;
  transform: translateX(2%);
}
.p-top-kv__chara-q::before {
  position: absolute;
  inset: 0 -0.75rem 0 0;
  z-index: -1;
  background: url(../images/container_q.svg) no-repeat center/contain;
  content: "";
}
.p-top-kv__chara-q-text {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
.p-top-kv__chara-a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 10.4375rem;
  min-height: 3.125rem;
  padding-block: 0.5rem;
  padding-inline: 0.75rem;
  border-radius: 0.3125rem;
  color: var(--color-black);
  opacity: 0;
  transform: translateX(-2%);
}
.p-top-kv__chara-a::before {
  position: absolute;
  inset: 0 0 0 -0.75rem;
  z-index: -1;
  background: url(../images/container_a.svg) no-repeat center/contain;
  content: "";
}
.p-top-kv__chara-name {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  translate: 0 -50%;
  padding-block: 0.0625rem;
  padding-inline: 1rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: var(--letter-spacing-base);
  background-image: var(--gradation1);
  color: var(--color-white);
  clip-path: polygon(0 0, 100% 0, calc(100% - 0.5rem) 100%, 0% 100%);
}
.p-top-kv__chara-a-text {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-align: center;
}
/* アニメーション */
@keyframes p-top-kv-title-in {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes p-top-kv-chara-image-in {
  from {
    opacity: 0;
    transform: translateY(2%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes p-top-kv-chara-q-in {
  from {
    opacity: 0;
    transform: translateX(2%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes p-top-kv-chara-a-in {
  from {
    opacity: 0;
    transform: translateX(-2%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
html.is-loaded .p-top-kv__title {
  animation: p-top-kv-title-in var(--kv-load-duration) ease-in-out var(--kv-load-delay-title) forwards;
}
html.is-loaded .p-top-kv__chara-image {
  animation: p-top-kv-chara-image-in var(--kv-load-duration) ease-in-out var(--kv-load-delay-chara-image) forwards;
}
html.is-loaded .p-top-kv__chara-q {
  animation: p-top-kv-chara-q-in var(--kv-load-duration) ease-in-out var(--kv-load-delay-chara-q) forwards;
}
html.is-loaded .p-top-kv__chara-a {
  animation: p-top-kv-chara-a-in var(--kv-load-duration) ease-in-out var(--kv-load-delay-chara-a) forwards;
}
/* js無効の場合など */
@keyframes hint {
  0% {
    scale: 1;
  }
  100% {
    /* color-mixによる白色だと途中黒色が見えてしまう */
    filter: drop-shadow(0 0 0.625rem rgba(255, 255, 255, 0.6));
    scale: 1.05;
  }
}
[data-intro-hint] {
  transform: translateZ(0);
}
[data-intro-hint].is-intro-hint {
  animation: hint 0.8s ease-in-out 2 alternate;
}
.u-bg {
  position: relative;
  z-index: 0;
  color: var(--color-white);
}
.u-bg::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background: url(../images/bg_sp.png) no-repeat top/cover;
  content: "";
}
.u-container {
  position: relative;
  z-index: 0;
  /* footerを下部に固定 */
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100vh;
}
.u-container > * {
  min-width: 0; /* gridの副作用防止 */
}
@keyframes u-container-child-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
html.js-pending-load:not(.is-loaded) .u-container > * {
  opacity: 0;
}
html.is-loaded .u-container > * {
  animation: u-container-child-fade-in 0.5s ease-in-out forwards;
}
.u-container::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: url(../images/container_bg.png) no-repeat top/100%;
  content: "";
}
.u-pc {
  display: none;
}
/**
 * スクリーンリーダー専用テキスト
 * 視覚的には非表示だが、スクリーンリーダーでは読み上げられる
 */
.u-screen-reader {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
/* デバッグ用のスタイル */
@media screen and (min-width: 768px){
  html {
    font-size: 135.4166666667%;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  .u-bg::before {
    background-image: url(../images/bg.png);
  }
  .u-container {
    --container-width: 24rem;
    margin-inline: auto;
    width: var(--container-width);
  }
  .u-container::before {
    position: fixed;
    z-index: -1;
    inset: 0;
    margin-inline: auto;
    width: var(--container-width);
    background: url(../images/bg_sp.png) no-repeat center/cover;
    content: "";
  }
  .u-container::after {
    margin-inline: auto;
    width: var(--container-width);
  }
  .u-pc {
    display: block; /* 古いブラウザ用フォールバック */
    display: revert; /* モダンブラウザではUAスタイルに戻す */
  }
  .u-sp {
    display: none;
  }
}
@media screen and (min-width: 1920px){
  html {
    font-size: 1.1284722222vw;
    font-size: 1.1284722222cqi;
  }
  .p-bg-deco__line:nth-child(1) {
    inset-inline-start: calc(50% - 28.0615384615rem);
    width: 6rem;
  }
  .p-bg-deco__line:nth-child(2) {
    inset-inline-start: calc(50% - 32.2153846154rem);
    width: 8.7692307692rem;
  }
  .p-bg-deco__line:nth-child(3) {
    inset-inline-start: calc(50% + 29.7230769231rem);
    width: 6rem;
  }
  .p-bg-deco__line:nth-child(4) {
    inset-inline-start: calc(50% + 26.4923076923rem);
    width: 8.7692307692rem;
  }
  .p-bg-deco__dotted[data-position=right-top] {
    inset-inline-start: calc(50% + 17.6307692308rem);
  }
  .p-bg-deco__dotted[data-position=left-top] {
    inset-inline-start: calc(50% - 24.3692307692rem);
  }
  .p-bg-deco__dotted[data-position=right-bottom] {
    inset-inline-start: calc(50% + 17.6307692308rem);
  }
}
@media (any-hover: hover){
  a:hover {
    opacity: 0.7;
  }
  .c-button-gradation {
    /* 元の背景色が滲む場合はホバーエフェクト完了後に透明にする */
  }
  .c-button-gradation:hover {
    background-color: transparent;
    color: var(--button-text-color-hover);
    opacity: 1;
    transition: color var(--hover-transition), background-color 0s 0.3s;
  }
  .c-button-gradation:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
  .c-button-more:hover {
    opacity: 1;
    background-color: var(--button-bg-hover);
  }
  .c-button-transparent:hover {
    opacity: 1;
    background-color: var(--button-bg-hover);
  }
  .c-button:hover {
    opacity: 1;
    filter: var(--button-filter-hover);
    scale: 1.05;
  }
}
@media (forced-colors: active){
  :where(mark) {
    /*
    * In forced-colors mode, the color of the mark element may not change, which can be problematic. Use system colors in forced-colors mode.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkWHCM
    */
    background-color: Highlight;
    color: HighlightText;
  }
}
@media (prefers-reduced-motion: reduce){
  .p-top-about {
    opacity: 1;
    transform: none;
  }
  html.is-loaded .p-top-about {
    animation: none;
  }
  .p-top-kv__title,
  .p-top-kv__chara-image,
  .p-top-kv__chara-q,
  .p-top-kv__chara-a {
    opacity: 1;
    transform: none;
  }
  html.is-loaded .p-top-kv__title,
  html.is-loaded .p-top-kv__chara-image,
  html.is-loaded .p-top-kv__chara-q,
  html.is-loaded .p-top-kv__chara-a {
    animation: none;
  }
}
@media (scripting: none){
  .p-top-about {
    opacity: 1;
    transform: none;
  }
  .p-top-kv__title,
  .p-top-kv__chara-image,
  .p-top-kv__chara-q,
  .p-top-kv__chara-a {
    opacity: 1;
    transform: none;
  }
}
@media print{
  :where(mark) {
    /*
    * Not all printers support color, and users might print in grayscale.
    * It's worth adding a non-disruptive style that scales with the text, as an alternative to relying only on background color.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkPrint
    */
    border-width: 1px;
    border-style: dotted;
  }
}