@charset "UTF-8";
@layer resets, setting, layouts, modules, vendor, utilities;
@layer resets {
  /*! 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-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(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 / 0.3);
  }
  :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;
  }
  /* append (kiso.css v1.2.2) */
  :where(blockquote, q) {
    quotes: none;
  }
  :where(blockquote:before, blockquote:after, q:before, q:after) {
    content: "";
    content: none;
  }
  :where(table) {
    border-collapse: collapse;
    border-spacing: 0;
  }
  :where(img) {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    font-style: italic;
    background-repeat: no-repeat;
    background-size: cover;
    shape-margin: 0.75rem;
  }
  :where(a) {
    text-decoration: none;
  }
  :where(fieldset, legend) {
    display: block;
    float: none;
    min-width: auto;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: normal;
    font-style: normal;
    font-size: 100%;
    font-family: inherit;
    line-height: inherit;
  }
  :where(*) {
    text-underline-offset: 0.125em;
  }
}
@layer setting {
  @property --100vw {
    syntax: "<length>";
    inherits: true;
    initial-value: 100vw;
  }
  :root {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.5;
    font-weight: 400;
    --100vw: 100vw;
  }
  :root {
    --font-family: "Zen Kaku Gothic New",
    "Helvetica Neue",
       Arial,
       "Hiragino Kaku Gothic ProN",
       "Hiragino Sans",
       Meiryo, sans-serif;
    font-family: var(--font-family);
    font-optical-sizing: auto;
    font-style: normal;
    font-optical-sizing: auto;
    font-style: normal;
    --to-rem: calc(tan(atan2(1px, 16px)) * 1rem);
    --design-max-width: 750px;
    --design-width: min(100vw, var(--design-max-width));
    --design-px: calc(var(--design-width) / 750);
    --design-rem: calc(var(--design-px) * 16);
    --color--text: #00326E;
    --color--text-invert: #fff;
    --color--text-black: #000;
    --color--text-white: #fff;
    --color--primary: #00326E;
    --color--bg: #fff;
    --color--bg2: var(--color--primary);
    --color--bg3: #DADADA;
    --color--bg4: #ECECEC;
    --color--form-bg: #fff;
    --color--form-checked: #000;
    --color--form-border: #ABABAB;
    --color--form-border-invalid: #f00;
    --color--form-border-valid: #1bcb8b;
    --color--error: #f00;
    --font-weight--regular: 500;
    --font-weight--normal: 400;
    --font-weight--bold: 700;
    font-weight: var(--font-weight--normal);
    --z-index-float-cta: 99;
    --radius: calc(5 * var(--design-px));
  }
  :root:has(:modal) {
    overflow: hidden;
  }
  :where([data-focus-invisible], [data-focus-invisible] *) {
    outline: none;
  }
  dialog {
    position: fixed;
    inset: 0;
    overscroll-behavior-block: contain;
    transition-duration: 0.25s;
    transition-property: display, overlay, opacity, scale;
    transition-timing-function: ease-out;
    transition-behavior: allow-discrete;
    scale: 0.75;
    opacity: 0;
  }
  dialog[open] {
    scale: 1;
    opacity: 1;
  }
  @starting-style {
    dialog[open] {
      scale: 0.8;
      opacity: 0;
    }
  }
  dialog::backdrop {
    background-color: oklch(from black l c h/60%);
    -webkit-backdrop-filter: blur(1px);
            backdrop-filter: blur(1px);
    transition-duration: inherit;
    transition-property: opacity;
    transition-timing-function: inherit;
  }
  @starting-style {
    dialog:modal, dialog:modal::backdrop {
      opacity: 0;
    }
  }
  dialog:not(:modal), dialog:not(:modal)::backdrop {
    opacity: 0;
  }
}
@layer layout {
  html {
    font-size: 100%;
  }
  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: clip;
    font-family: var(--font-famyly);
    font-size: 1rem;
    color: var(--color--text);
    background-color: var(--color--bg);
  }
  main {
    position: relative;
    overflow: hidden;
  }
  header {
    display: block;
  }
  footer {
    display: block;
  }
}
@layer modules {
  .p-page-container {
    max-width: var(--design-max-width);
    margin-inline: auto;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.2);
  }
  .p-footer-float-cta {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    display: none;
    position: fixed;
    width: 100%;
    max-width: var(--design-max-width);
    bottom: calc(0 * var(--design-px));
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    z-index: var(--z-index-float-cta);
    opacity: 0;
    transition: opacity 0.3s ease, display 0.3s ease allow-discrete;
  }
  #js-footer-float-cta[data-status=visible] {
    display: block;
    opacity: 1;
  }
  @starting-style {
    #js-footer-float-cta[data-status=visible] {
      opacity: 0;
    }
  }
  #js-footer-float-cta[data-status=invisible] {
    display: none;
  }
  .p-bg-color1 {
    background-color: var(--color--bg);
  }
  .p-bg-color2 {
    background-color: var(--color--bg2);
  }
  .p-bg-color3 {
    background-color: var(--color--bg3);
  }
  .p-bg-color4 {
    background-color: var(--color--bg4);
  }
  .p-form-steps {
    display: block;
    font-size: calc(40 * var(--design-px));
    padding-inline: calc(40 * var(--design-px));
  }
  .p-form-steps__position {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .p-form-steps__position li {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    aspect-ratio: 1/0.98;
    min-width: calc(58 * var(--design-px));
    border-radius: calc(infinity * 1px);
    color: #ADADAD;
    background-color: currentColor;
    transition: color 0.3s ease;
  }
  .p-form-steps__position li:not(:first-child) {
    margin-left: calc(64 * var(--design-px));
  }
  .p-form-steps__position li:not(:first-child)::before {
    content: "";
    display: block;
    position: absolute;
    left: calc(-54 * var(--design-px));
    width: calc(43 * var(--design-px));
    height: 0;
    border-top: solid currentColor calc(3 * var(--design-px));
  }
  .p-form-steps[data-step="1"] .p-form-steps__position li:nth-child(1),
  .p-form-steps[data-step="2"] .p-form-steps__position li:nth-child(-n+2),
  .p-form-steps[data-step="3"] .p-form-steps__position li:nth-child(-n+3),
  .p-form-steps[data-step="4"] .p-form-steps__position li:nth-child(-n+4),
  .p-form-steps[data-step="5"] .p-form-steps__position li:nth-child(-n+5),
  .p-form-steps[data-step="6"] .p-form-steps__position li:nth-child(-n+6) {
    color: #00A351;
  }
  .p-form-steps__content {
    display: grid;
    grid-template-areas: "content";
  }
  .p-form-step {
    display: none;
    grid-area: content;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(840 * var(--design-px));
    padding-block: calc(50 * var(--design-px));
    opacity: 0;
    transition: opacity 0.3s ease, display 0.3s ease allow-discrete;
  }
  @starting-style {
    .p-form-step {
      opacity: 0;
    }
  }
  .p-form-step dl {
    min-height: calc(500 * var(--design-px));
  }
  .p-form-steps[data-step="1"] [data-step-content="1"],
  .p-form-steps[data-step="2"] [data-step-content="2"],
  .p-form-steps[data-step="3"] [data-step-content="3"],
  .p-form-steps[data-step="4"] [data-step-content="4"],
  .p-form-steps[data-step="5"] [data-step-content="5"],
  .p-form-steps[data-step="6"] [data-step-content="6"] {
    display: flex;
    opacity: 1;
  }
  .p-form-step__flow-buttons {
    display: flex;
    gap: calc(50 * var(--design-px));
    margin-top: auto;
  }
  .p-form-step__label-message-box {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto;
    margin-top: 0 !important;
  }
  .p-form-step__label-message-box > label:first-child {
    grid-column: 1/-1;
    grid-row: 1/2;
  }
  .p-form-step__label-message-box > label:nth-child(2) {
    grid-column: 1/-1;
    grid-row: 2/3;
  }
  .p-form-step__label-message-box > .p-form-step__label-message {
    display: none;
    grid-column: 1/-1;
    grid-row: 3/-1;
  }
  .p-form-step__label-message-box > label:has(input:checked) + .p-form-step__label-message {
    display: block;
  }
  .p-form-step__label-message {
    margin-block: calc(20 * var(--design-px));
  }
  .p-form-step__label-message .__h {
    padding: 0.25em 0.5em;
    color: var(--color--text-invert);
    background-color: var(--color--bg2);
    border-radius: 0.25em;
    font-weight: var(--font-weight--bold);
  }
  .p-form-step__label-message .__h--ng {
    color: var(--color--error);
    background-color: var(--color--bg3);
  }
  .p-form-step__label-message .__h img {
    width: 1.125em;
    margin-right: 0.25em;
  }
  .p-form-step__label-message .__text {
    margin-top: calc(10 * var(--design-px));
    font-size: 0.75em;
    line-height: 1.125;
  }
  .p-form-steps__form-error-message:has(h2) {
    padding: calc(15 * var(--design-px));
    margin-top: calc(30 * var(--design-px));
    border: solid calc(5 * var(--design-px)) var(--color--error);
    border-radius: 2px;
    background-color: #ffc;
  }
  .p-form-steps__form-error-message h2 {
    font-size: calc(40 * var(--design-px));
    text-align: center;
  }
  .p-form-steps__form-error-message p {
    font-size: calc(24 * var(--design-px));
  }
  .p-form-steps__form-error-message p.__err {
    color: var(--color--error);
  }
  .p-form-steps[data-step="0"] .p-form-steps__position {
    display: none !important;
  }
  .p-form-steps[data-step="0"] .p-form-steps__content {
    display: block !important;
  }
  .p-form-steps[data-step="0"] .p-form-step {
    display: block !important;
    opacity: 1 !important;
  }
  .p-form-steps[data-step="0"] .p-form-step__flow-buttons {
    display: none !important;
  }
  .p-form-steps[data-step="0"] [data-step-content="5"] .p-form-step__flow-buttons {
    display: block !important;
  }
  .p-form-steps[data-step="0"] [data-step-content="5"] .__prev {
    display: none !important;
  }
  .p-form-steps[data-step="0"] [data-step-content="6"] {
    display: none !important;
  }
  .p-form-step .__req {
    font-size: 0.8em;
    vertical-align: top;
    margin-left: calc(5 * var(--design-px));
  }
  .p-form-step dt {
    margin-top: calc(50 * var(--design-px));
  }
  .p-form-step dd {
    margin-top: calc(40 * var(--design-px));
  }
  .p-form-step .__label {
    letter-spacing: calc(2 * var(--design-px));
  }
  .p-form-step input + label {
    margin-right: calc(40 * var(--design-px));
  }
  input[type=text], input[type=number], input[type=tel], input[type=email], input[type=url], input[type=password], input[type=search],
  textarea {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    font-family: var(--font-family);
    font-size: max(16px, 1em);
    padding: 0.5em 0.5em;
    width: 100%;
    background-color: var(--color--form-bg);
    border: solid max(1px, 2 * var(--design-px)) var(--color--form-border);
    border-radius: 0.25em;
    transition: border-color ease 0.3s, box-shadow ease 0.3s;
  }
  input[type=text]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=search]::-moz-placeholder, textarea::-moz-placeholder {
    font-family: var(--font-family);
  }
  input[type=text]::placeholder, input[type=number]::placeholder, input[type=tel]::placeholder, input[type=email]::placeholder, input[type=url]::placeholder, input[type=password]::placeholder, input[type=search]::placeholder,
  textarea::placeholder {
    font-family: var(--font-family);
  }
  input[type=text]:user-valid, input[type=text][data-tached=tached]:valid, input[type=number]:user-valid, input[type=number][data-tached=tached]:valid, input[type=tel]:user-valid, input[type=tel][data-tached=tached]:valid, input[type=email]:user-valid, input[type=email][data-tached=tached]:valid, input[type=url]:user-valid, input[type=url][data-tached=tached]:valid, input[type=password]:user-valid, input[type=password][data-tached=tached]:valid, input[type=search]:user-valid, input[type=search][data-tached=tached]:valid,
  textarea:user-valid,
  textarea[data-tached=tached]:valid {
    border-color: var(--color--form-border-valid);
  }
  input[type=text]:user-invalid, input[type=number]:user-invalid, input[type=tel]:user-invalid, input[type=email]:user-invalid, input[type=url]:user-invalid, input[type=password]:user-invalid, input[type=search]:user-invalid,
  textarea:user-invalid {
    border-color: var(--color--form-border-invalid);
  }
  textarea {
    line-height: 1.5;
    field-sizing: content;
    min-height: 5lh;
  }
  [type=checkbox],
  [type=radio] {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    display: inline-block;
    position: relative;
    aspect-ratio: 1/1;
    border: solid calc(2 * var(--design-px)) var(--color--form-border);
    background-color: var(--color--form-bg);
    vertical-align: middle;
    margin-right: 0.25em;
  }
  [type=checkbox]:user-valid,
  [type=radio]:user-valid {
    border-color: var(--color--form-border-valid);
  }
  [type=checkbox]:user-invalid,
  [type=radio]:user-invalid {
    border-color: var(--color--form-border-invalid);
  }
  [type=checkbox]::before,
  [type=radio]::before {
    content: "";
    position: absolute;
    opacity: 0;
    transition: transform ease 0.3s, opacity ease 0.3s;
  }
  /* checkbox */
  [type=checkbox] {
    width: 1.25em;
    height: 1.25em;
  }
  [type=checkbox]::before {
    top: -35%;
    left: 60%;
    width: 0.75em;
    height: 1.25em;
    transform: translateX(-50%) rotate(0deg) skewX(15deg) scale(0);
  }
  [type=checkbox]:checked::before {
    opacity: 1;
    border-right: solid calc(3 * var(--design-px)) var(--color--form-checked);
    border-bottom: solid calc(3 * var(--design-px)) var(--color--form-checked);
    transform: translateX(-50%) rotate(45deg) skewX(15deg) scale(1);
  }
  /* radio */
  [type=radio] {
    width: 1.25em;
    height: 1.25em;
    border-radius: 50%;
  }
  [type=radio]::before {
    top: 50%;
    left: 50%;
    aspect-ratio: 1/1;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
  }
  [type=radio]:checked::before {
    opacity: 1;
    border: solid 1px var(--color--form-checked);
    background-color: var(--color--form-checked);
    transform: translate(-50%, -50%) scale(1);
  }
  /* select */
  .p-form__select-container {
    --arrow-area-width: 2em;
    --border-width: 1px;
    --form-padding-y: calc(1lh - 1em + 1px);
    --input-padding-x: .5em;
    position: relative;
    font-size: max(16px, 1em);
  }
  .p-form__select-container::before {
    pointer-events: none;
    content: "";
    position: absolute;
    right: 0;
    inset-block: 0;
    width: var(--arrow-area-width);
  }
  .p-form__select-container::after {
    pointer-events: none;
    content: "";
    position: absolute;
    right: calc(var(--arrow-area-width) / 2);
    top: 50%;
    background-color: var(--color--text);
    aspect-ratio: 1/1;
    width: calc(var(--arrow-area-width) / 2.5);
    clip-path: polygon(0 0, 100% 0%, 50% 86.66%);
    translate: 50% -50%;
  }
  .p-form__select-container > select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    width: 100%;
    padding-block: var(--form-padding-y);
    padding-inline: var(--input-padding-x) calc(var(--arrow-area-width) + var(--input-padding-x) / 2);
    border: solid var(--border-width) var(--color--form-border);
    color: var(--color--text);
    background-color: var(--color--bg);
    border-radius: var(--radius--form);
  }
  .p-form__select-container > select:focus {
    outline: solid 3px var(--color--primary);
  }
  .p-form__select-container > select:user-valid {
    border-color: var(--color--form-border-valid);
  }
  .p-form__select-container > select:user-invalid {
    border-color: var(--color--form-border-invalid);
  }
  button.__prev,
  button.__next {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: 100%;
    padding: 0.75em 0.5em;
    text-box: trim-both cap alphabetic;
    text-align: center;
    border: none;
    border-radius: 0.25em;
  }
  button.__prev {
    background-color: var(--color--bg3);
  }
  button.__next {
    color: var(--color--text-invert);
    background-color: var(--color--bg2);
  }
  button.__next:disabled {
    opacity: 0.5;
  }
  button.__prev::before,
  button.__prev::after,
  button.__next::before,
  button.__next::after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
  }
  button.__prev::before,
  button.__next::after {
    content: "";
    background-color: currentColor;
    clip-path: polygon(40% 0, 80% 50%, 40% 100%, 35% 90%, 65% 50%, 35% 10%);
  }
  button.__prev::before {
    transform: scale(-1, 1);
  }
  .p-label-radio-button {
    display: grid;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    min-height: calc(125 * var(--design-px));
    padding: 0.75em 1em;
    margin-top: calc(15 * var(--design-px));
    text-box: trim-both cap alphabetic;
    line-height: 1;
    text-align: center;
    vertical-align: bottom;
    border: none;
    border-radius: 0.25em;
    border: solid max(1px, 2 * var(--design-px)) var(--color--primary);
    background-color: var(--color--bg);
    font-weight: var(--font-weight--bold);
    letter-spacing: calc(2 * var(--design-px));
  }
  .p-label-radio-button input {
    position: absolute;
    inset: 0;
    opacity: 0;
  }
  .p-label-radio-button:has(.p-label-radio-button__note) {
    padding-bottom: 0.25em;
  }
  .p-label-radio-button__note {
    display: block;
    font-size: 0.6em;
    line-height: 1;
    color: #00A351;
  }
  .p-label-radio-button:has(input:checked) {
    color: var(--color--text-invert);
    background-color: var(--color--bg2);
  }
  .p-label-radio-button:has(input:checked) .p-label-radio-button__note {
    color: var(--color--text-invert);
  }
  .p-label-radio-button--2 {
    justify-content: flex-start;
    min-height: calc(170 * var(--design-px));
    margin-top: calc(22 * var(--design-px));
    border-radius: 0.75em;
    border-width: max(1px, 4 * var(--design-px));
    font-feature-settings: "palt";
    font-size: 0.8125em;
  }
  .p-label-radio-button--2::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: calc(25 * var(--design-px));
    aspect-ratio: 1/1;
    width: calc(64 * var(--design-px));
    transform: translateY(-50%);
    background-image: url(../img/button-check_0.png);
  }
  .p-label-radio-button:has(input:checked)::after {
    background-image: url(../img/button-check_1.png);
  }
  .p-dialog__btn-close {
    position: absolute;
    right: calc(0 * var(--design-px));
    top: calc(2 * var(--design-px));
    width: max(32px, 44 * var(--design-px));
    border: none;
  }
  .p-color--error {
    color: var(--color--error);
  }
  .p-color--primary {
    color: var(--color--primary);
  }
}
@layer utilities {
  .\:none {
    display: none;
  }
  .\:block {
    display: block;
  }
  .\:inline {
    display: inline;
  }
  .\:ib,
  .\:inline-block {
    display: inline-block;
  }
  .\:flex {
    display: flex;
  }
  .\:grid {
    display: grid;
  }
  .\:relative {
    position: relative;
  }
  .\:absolute {
    position: absolute;
  }
  .inset\:0 {
    inset: 0;
  }
  .top\: {
    top: calc(var(--top, 0) * var(--design-px));
  }
  .top\:auto {
    top: auto;
  }
  .top\:0 {
    top: 0;
  }
  .bottom\: {
    bottom: calc(var(--bottom, 0) * var(--design-px));
  }
  .bottom\:auto {
    bottom: auto;
  }
  .bottom\:0 {
    bottom: 0;
  }
  .left\: {
    left: calc(var(--left, 0) * var(--design-px));
  }
  .left\:auto {
    left: auto;
  }
  .left\:0 {
    left: 0;
  }
  .right\: {
    right: calc(var(--right, 0) * var(--design-px));
  }
  .right\:auto {
    right: auto;
  }
  .right\:0 {
    right: 0;
  }
  .font-size\: {
    font-size: calc(var(--font-size, 0) * var(--design-px));
  }
  .font\:10 {
    font-size: calc(10 * var(--design-px));
  }
  .font\:12 {
    font-size: calc(12 * var(--design-px));
  }
  .font\:14 {
    font-size: calc(14 * var(--design-px));
  }
  .font\:16 {
    font-size: calc(16 * var(--design-px));
  }
  .font\:18 {
    font-size: calc(18 * var(--design-px));
  }
  .font\:20 {
    font-size: calc(20 * var(--design-px));
  }
  .font\:22 {
    font-size: calc(22 * var(--design-px));
  }
  .font\:24 {
    font-size: calc(24 * var(--design-px));
  }
  .font\:28 {
    font-size: calc(28 * var(--design-px));
  }
  .font\:32 {
    font-size: calc(32 * var(--design-px));
  }
  .font\:normal {
    font-weight: normal;
  }
  .font\:bold {
    font-weight: bold;
  }
  .font\:palt {
    font-feature-settings: "palt";
  }
  .text\:center {
    text-align: center;
  }
  .text\:left {
    text-align: left;
  }
  .text\:right {
    text-align: right;
  }
  .text\:justify {
    text-align: justify;
  }
  .text\:underline {
    text-decoration: underline;
  }
  .letter-spacing\:1 {
    letter-spacing: calc(1 * var(--design-px, 1px));
  }
  .letter-spacing\:2 {
    letter-spacing: calc(2 * var(--design-px, 1px));
  }
  .letter-spacing\:3 {
    letter-spacing: calc(3 * var(--design-px, 1px));
  }
  .letter-spacing\:4 {
    letter-spacing: calc(4 * var(--design-px, 1px));
  }
  .w\: {
    width: calc(var(--w, 0) * var(--design-px));
  }
  .w\:auto {
    width: auto;
  }
  .w\:fit {
    width: -moz-fit-content;
    width: fit-content;
  }
  .w\:min {
    width: -moz-min-content;
    width: min-content;
  }
  .w\:max {
    width: -moz-max-content;
    width: max-content;
  }
  .w\:stretch {
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
  }
  .w\:0 {
    width: 0;
  }
  .w\:100\% {
    width: 100%;
  }
  .pt\: {
    padding-top: calc(var(--pt, 0) * var(--design-px));
  }
  .pt\:auto {
    padding-top: auto;
  }
  .pt\:0 {
    padding-top: 0;
  }
  .pt\:5 {
    padding-top: calc(5 * var(--design-px));
  }
  .pt\:10 {
    padding-top: calc(10 * var(--design-px));
  }
  .pt\:15 {
    padding-top: calc(15 * var(--design-px));
  }
  .pt\:20 {
    padding-top: calc(20 * var(--design-px));
  }
  .pt\:25 {
    padding-top: calc(25 * var(--design-px));
  }
  .pt\:30 {
    padding-top: calc(30 * var(--design-px));
  }
  .pt\:40 {
    padding-top: calc(40 * var(--design-px));
  }
  .pt\:50 {
    padding-top: calc(50 * var(--design-px));
  }
  .pt\:75 {
    padding-top: calc(75 * var(--design-px));
  }
  .pt\:100 {
    padding-top: calc(100 * var(--design-px));
  }
  .pb\: {
    padding-bottom: calc(var(--pb, 0) * var(--design-px));
  }
  .pb\:auto {
    padding-bottom: auto;
  }
  .pb\:0 {
    padding-bottom: 0;
  }
  .pb\:5 {
    padding-bottom: calc(5 * var(--design-px));
  }
  .pb\:10 {
    padding-bottom: calc(10 * var(--design-px));
  }
  .pb\:15 {
    padding-bottom: calc(15 * var(--design-px));
  }
  .pb\:20 {
    padding-bottom: calc(20 * var(--design-px));
  }
  .pb\:25 {
    padding-bottom: calc(25 * var(--design-px));
  }
  .pb\:30 {
    padding-bottom: calc(30 * var(--design-px));
  }
  .pb\:40 {
    padding-bottom: calc(40 * var(--design-px));
  }
  .pb\:50 {
    padding-bottom: calc(50 * var(--design-px));
  }
  .pb\:75 {
    padding-bottom: calc(75 * var(--design-px));
  }
  .pb\:100 {
    padding-bottom: calc(100 * var(--design-px));
  }
  .pl\: {
    padding-left: calc(var(--pl, 0) * var(--design-px));
  }
  .pl\:auto {
    padding-left: auto;
  }
  .pl\:0 {
    padding-left: 0;
  }
  .pl\:5 {
    padding-left: calc(5 * var(--design-px));
  }
  .pl\:10 {
    padding-left: calc(10 * var(--design-px));
  }
  .pl\:15 {
    padding-left: calc(15 * var(--design-px));
  }
  .pl\:20 {
    padding-left: calc(20 * var(--design-px));
  }
  .pl\:25 {
    padding-left: calc(25 * var(--design-px));
  }
  .pl\:30 {
    padding-left: calc(30 * var(--design-px));
  }
  .pl\:40 {
    padding-left: calc(40 * var(--design-px));
  }
  .pl\:50 {
    padding-left: calc(50 * var(--design-px));
  }
  .pl\:75 {
    padding-left: calc(75 * var(--design-px));
  }
  .pl\:100 {
    padding-left: calc(100 * var(--design-px));
  }
  .pr\: {
    padding-right: calc(var(--pr, 0) * var(--design-px));
  }
  .pr\:auto {
    padding-right: auto;
  }
  .pr\:0 {
    padding-right: 0;
  }
  .pr\:5 {
    padding-right: calc(5 * var(--design-px));
  }
  .pr\:10 {
    padding-right: calc(10 * var(--design-px));
  }
  .pr\:15 {
    padding-right: calc(15 * var(--design-px));
  }
  .pr\:20 {
    padding-right: calc(20 * var(--design-px));
  }
  .pr\:25 {
    padding-right: calc(25 * var(--design-px));
  }
  .pr\:30 {
    padding-right: calc(30 * var(--design-px));
  }
  .pr\:40 {
    padding-right: calc(40 * var(--design-px));
  }
  .pr\:50 {
    padding-right: calc(50 * var(--design-px));
  }
  .pr\:75 {
    padding-right: calc(75 * var(--design-px));
  }
  .pr\:100 {
    padding-right: calc(100 * var(--design-px));
  }
  .mx\:auto {
    margin-inline: auto;
  }
  .mt\: {
    margin-top: calc(var(--mt, 0) * var(--design-px));
  }
  .mt\:auto {
    margin-top: auto;
  }
  .mt\:0 {
    margin-top: 0;
  }
  .mt\:5 {
    margin-top: calc(5 * var(--design-px));
  }
  .mt\:10 {
    margin-top: calc(10 * var(--design-px));
  }
  .mt\:15 {
    margin-top: calc(15 * var(--design-px));
  }
  .mt\:20 {
    margin-top: calc(20 * var(--design-px));
  }
  .mt\:25 {
    margin-top: calc(25 * var(--design-px));
  }
  .mt\:30 {
    margin-top: calc(30 * var(--design-px));
  }
  .mt\:40 {
    margin-top: calc(40 * var(--design-px));
  }
  .mt\:50 {
    margin-top: calc(50 * var(--design-px));
  }
  .mt\:75 {
    margin-top: calc(75 * var(--design-px));
  }
  .mt\:100 {
    margin-top: calc(100 * var(--design-px));
  }
  .mb\: {
    margin-bottom: calc(var(--mb, 0) * var(--design-px));
  }
  .mb\:auto {
    margin-bottom: auto;
  }
  .mb\:0 {
    margin-bottom: 0;
  }
  .mb\:5 {
    margin-bottom: calc(5 * var(--design-px));
  }
  .mb\:10 {
    margin-bottom: calc(10 * var(--design-px));
  }
  .mb\:15 {
    margin-bottom: calc(15 * var(--design-px));
  }
  .mb\:20 {
    margin-bottom: calc(20 * var(--design-px));
  }
  .mb\:25 {
    margin-bottom: calc(25 * var(--design-px));
  }
  .mb\:30 {
    margin-bottom: calc(30 * var(--design-px));
  }
  .mb\:40 {
    margin-bottom: calc(40 * var(--design-px));
  }
  .mb\:50 {
    margin-bottom: calc(50 * var(--design-px));
  }
  .mb\:75 {
    margin-bottom: calc(75 * var(--design-px));
  }
  .mb\:100 {
    margin-bottom: calc(100 * var(--design-px));
  }
  .ml\: {
    margin-left: calc(var(--ml, 0) * var(--design-px));
  }
  .ml\:auto {
    margin-left: auto;
  }
  .ml\:0 {
    margin-left: 0;
  }
  .ml\:5 {
    margin-left: calc(5 * var(--design-px));
  }
  .ml\:10 {
    margin-left: calc(10 * var(--design-px));
  }
  .ml\:15 {
    margin-left: calc(15 * var(--design-px));
  }
  .ml\:20 {
    margin-left: calc(20 * var(--design-px));
  }
  .ml\:25 {
    margin-left: calc(25 * var(--design-px));
  }
  .ml\:30 {
    margin-left: calc(30 * var(--design-px));
  }
  .ml\:40 {
    margin-left: calc(40 * var(--design-px));
  }
  .ml\:50 {
    margin-left: calc(50 * var(--design-px));
  }
  .ml\:75 {
    margin-left: calc(75 * var(--design-px));
  }
  .ml\:100 {
    margin-left: calc(100 * var(--design-px));
  }
  .mr\: {
    margin-right: calc(var(--mr, 0) * var(--design-px));
  }
  .mr\:auto {
    margin-right: auto;
  }
  .mr\:0 {
    margin-right: 0;
  }
  .mr\:5 {
    margin-right: calc(5 * var(--design-px));
  }
  .mr\:10 {
    margin-right: calc(10 * var(--design-px));
  }
  .mr\:15 {
    margin-right: calc(15 * var(--design-px));
  }
  .mr\:20 {
    margin-right: calc(20 * var(--design-px));
  }
  .mr\:25 {
    margin-right: calc(25 * var(--design-px));
  }
  .mr\:30 {
    margin-right: calc(30 * var(--design-px));
  }
  .mr\:40 {
    margin-right: calc(40 * var(--design-px));
  }
  .mr\:50 {
    margin-right: calc(50 * var(--design-px));
  }
  .mr\:75 {
    margin-right: calc(75 * var(--design-px));
  }
  .mr\:100 {
    margin-right: calc(100 * var(--design-px));
  }
  .z-index\:0 {
    z-index: 0;
  }
  .z-index\:1 {
    z-index: 1;
  }
  .z-index\:2 {
    z-index: 2;
  }
  .z-index\:3 {
    z-index: 3;
  }
  .z-index\:4 {
    z-index: 4;
  }
  .z-index\:5 {
    z-index: 5;
  }
  .z-index\:10 {
    z-index: 10;
  }
  .z-index\:-1 {
    z-index: -1;
  }
  .z-index\:-2 {
    z-index: -2;
  }
  .z-index\:-3 {
    z-index: -3;
  }
  .z-index\:-4 {
    z-index: -4;
  }
  .z-index\:-5 {
    z-index: -5;
  }
  .\:isolate {
    isolation: isolate;
  }
  .order\:0 {
    order: 0;
  }
  .order\:1 {
    order: 1;
  }
  .order\:2 {
    order: 2;
  }
  .order\:3 {
    order: 3;
  }
  .order\:-1 {
    order: -1;
  }
  .order\:-2 {
    order: -2;
  }
  .order\:-3 {
    order: -3;
  }
  .user-select\:none {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .border\:none {
    border: none;
  }
  .border\: {
    border: var(--border);
  }
  .border-width\: {
    border-width: calc(var(--border-width, 0) * var(--design-px));
  }
  .border-style\: {
    border-style: var(--border-style);
  }
  .border-color\: {
    border-color: var(--border-color);
  }
  .overflow\:visibl {
    overflow: visible;
  }
  .overflow\:hidden {
    overflow: hidden;
  }
  .u-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }
  .color\:text {
    color: var(--color--text);
  }
  .color\:text-invert {
    color: var(--color--text-invert);
  }
  .color\:error {
    color: var(--color-error);
  }
}
@media (height <= 480px){
    .p-footer-float-cta {
      width: calc(500 * var(--design-px));
      left: auto;
      right: 0;
      transform: translateX(0);
    }
}
@media (height <= 375px){
    .p-footer-float-cta {
      width: calc(400 * var(--design-px));
      left: auto;
      right: 0;
      transform: translateX(0);
    }
}
@media (height < 240px){
    .p-footer-float-cta {
      display: none;
    }
}
@media (any-hover: hover){
    .\:hover {
      transition: filter 0.3s ease;
      cursor: pointer;
    }
    .\:hover:hover {
      filter: brightness(0.9) saturate(1.2) contrast(110%);
    }
    .\:hover--black:hover {
      filter: brightness(1.5) contrast(40%);
    }
    .\:hover--white:hover {
      filter: brightness(0.85);
    }
}
@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){
    dialog {
      transition-duration: 1ms;
    }
    .p-movie1 {
      display: 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;
    }
}