/*! kiso.css v1.2.4 | MIT License | https://github.com/tak-dcxi/kiso.css */

/* ======================================================
//  MARK: Universal
// ====================================================== */

*,
::before,
::after {
  /*
  * Includes `padding` and `border` in the element's specified dimensions.
  * It is highly recommended to set `box-sizing: border-box;` by default, as it makes styling much easier, especially when specifying `width: 100%;`.
  */
  box-sizing: border-box;
}

/* ======================================================
//  MARK: Document and Body Elements
// ====================================================== */

:where(:root) {
  /* In Safari, if `font-family` is not specified, a serif font is applied by default, so `sans-serif` is set as the default here. */
  font-family: sans-serif;

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

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

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

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

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

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

  /*
  * Prevents layout shift caused by the appearance or disappearance of the scrollbar.
  * Starting with Chrome 145, specifying `scrollbar-gutter: stable` will cause vw to be calculated without considering the scrollbar, which will also prevent horizontal scrolling.
  */
  scrollbar-gutter: stable;

  /* Suppresses the tap highlight on iOS. */
  -webkit-tap-highlight-color: transparent;
}

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

  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}

/* ======================================================
// MARK: Sections
// ------------------------------------------------------ */

:where(:is(h1, h2, h3, h4, h5, h6):lang(en)) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}

:where(h1) {
  /*
  * Adjusts user agent (UA) styles for `h1` elements within sectioning content.
  * This addresses DevTools warnings that appear when `h1` elements nested within sectioning content lack `font-size` and `margin` properties.
  * @see https://html.spec.whatwg.org/#sections-and-headings
  */
  margin-block: 0.67em;
  font-size: 2em;
}

:where(h2, h3, h4, h5, h6) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}

:where(search) {
  /*
  * The `<search>` element is supported from Safari 17.
  * This prevents it from being displayed as an inline element in unsupported environments.
  */
  display: block flow;
}

/* ======================================================
//  MARK: Grouping content
// ====================================================== */

:where(p, blockquote, figure, pre, address, ul, ol, dl, menu) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}

:where(blockquote, figure) {
  /* The `margin-inline` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline: unset;
}

:where(p:lang(en)) {
  /*
  * In English, a single word on the last line is called a "widow" or "orphan" and is considered something to avoid as it makes the text harder to read.
  * Therefore, when lang="en", this prevents the last line from ending with a single word.
  */
  text-wrap: pretty;
}

:where(address:lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

:where(ul, ol, menu) {
  /* The `padding-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  padding-inline-start: unset;

  /*
  * In Safari, using `list-style: none` prevents screen readers from announcing lists.
  * `list-style-type: ""` is used to hide markers without affecting accessibility.
  * @see https://matuzo.at/blog/2023/removing-list-styles-without-affecting-semantics
  */
  list-style-type: "";
}

:where(dt) {
  /* It is common to display `<dt>` elements in bold, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

:where(dd) {
  /* The `margin-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline-start: unset;
}

:where(pre) {
  /*
  * Since `text-spacing-trim` can affect spacing in `<pre>` elements even with its initial value, the final rendering may depend on the user's font settings.
  * To ensure consistent alignment, `space-all` is explicitly specified and inheritance is prevented.
  */
  text-spacing-trim: space-all;

  /* Set to `no-autospace` as it can cause misalignment with monospaced fonts. */
  text-autospace: no-autospace;
}

@media print {
  :where(pre) {
    /* Prevent text wrapping in print media. */
    text-wrap-mode: unset;
  }
}

/* ======================================================
//  MARK: Text-level semantics
// ====================================================== */

:where(em:lang(ja)) {
  /* In Japanese, emphasis is commonly represented by bold text, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

:where(:is(i, cite, em, dfn):lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

:where(u, s, del, ins) {
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}

:where(code, kbd, samp) {
  /*
  * Set a monospace font family referencing Tailwind.
  * @see https://tailwindcss.com/docs/font-family
  */
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;

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

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

  /*
  * Disables font ligatures for programming fonts (like Fira Code)
  * to prevent character combinations like `=>` from being rendered as a single symbol (e.g., `⇒`).
  */
  font-variant-ligatures: none;
}

:where(abbr[title]) {
  /*
  * The `<abbr>` element with the `title` attribute isn't helpful regarding accessibility because support is inconsistent, and it's only accessible to some users.
  * This rule shows a dotted underline on abbreviations in all browsers (there's a bug in Safari) and changes the cursor.
  * @see https://adrianroselli.com/2024/01/using-abbr-element-with-title-attribute.html
  */
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-inset: auto;
  cursor: help;
}

:where(time) {
  /* Set to `no-autospace` because date notations in typography do not include spaces. */
  text-autospace: no-autospace;
}

@media (forced-colors: active) {
  :where(mark) {
    /*
    * In forced-colors mode, the color of the mark element may not change, which can be problematic. Use system colors in forced-colors mode.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkWHCM
    */
    background-color: Highlight;
    color: HighlightText;
  }
}

@media print {
  :where(mark) {
    /*
    * Not all printers support color, and users might print in grayscale.
    * It's worth adding a non-disruptive style that scales with the text, as an alternative to relying only on background color.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkPrint
    */
    border-width: 1px;
    border-style: dotted;
  }
}

/* ======================================================
//  MARK: Links
// ====================================================== */

:where(a) {
  /*
  * The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance.
  * In Firefox on iOS, the user agent stylesheet’s text color is applied even when the text is not a link.
  * @see https://github.com/darkreader/darkreader/issues/9836
  */
  color: unset;
}

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

  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;

  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}

/* ======================================================
//  MARK: Embedded content
// ====================================================== */

:where(img, svg, picture, video, audio, canvas, model, iframe, embed, object) {
  /* Prevents overflow by setting the maximum width to `100%`. */
  max-inline-size: 100%;

  /* Prevents extra space from appearing at the bottom of the element. */
  vertical-align: bottom;
}

:where(img, svg, picture, video, canvas, model, iframe, embed, object) {
  /*
  * Automatically adjust block size based on content.
  * Exclude the <audio> element as it disappears when block-size is auto.
  * @see https://github.com/tak-dcxi/kiso.css/issues/5
  */
  block-size: auto;
}

:where(iframe) {
  /* The `border` specified in the UA stylesheet is often unnecessary, so it is reset. */
  border: unset;
}

/* ======================================================
//  MARK: Tabular data
// ====================================================== */

:where(table) {
  /* Collapse borders for a more refined table design. */
  border-collapse: collapse;
}

:where(caption, th) {
  /* The `text-align` specified in the UA stylesheet is often unnecessary, so it is reset. */
  text-align: unset;
}

:where(caption:lang(en)) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}

/* ======================================================
//  MARK: Forms
// ====================================================== */

::-webkit-file-upload-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(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(:-ms-input-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;
}

::-webkit-file-upload-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])
  ),
::file-selector-button {
  /* The `background-color` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  background-color: unset;
}

::-webkit-file-upload-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,
    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(:enabled)::-webkit-file-upload-button {
  /* Indicate clickable elements with a pointer cursor. */
  cursor: pointer;
}

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

:-ms-input-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)::-ms-backdrop {
  /* Normalize the background color of the `::backdrop` element. */
  background-color: oklch(0% 0 0deg / 30%);
}

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

/*! Yaku Han JP v4.1.1 (OFL-1.1 AND MIT) by Qrac | Type: YakuHanJP - Based on Noto Sans JP */

@font-face{font-family:YakuHanJP;font-style:normal;font-weight:100;font-display:swap;src:url(../fonts/YakuHanJP/YakuHanJP-Thin.woff2) format("woff2");unicode-range:U+3001,U+3002,U+3008,U+3009,U+300a,U+300b,U+300c,U+300d,U+300e,U+300f,U+3010,U+3011,U+3014,U+3015,U+30fb,U+ff01,U+ff08,U+ff09,U+ff1a,U+ff1b,U+ff1f,U+ff3b,U+ff3d,U+ff5b,U+ff5d}

@font-face{font-family:YakuHanJP;font-style:normal;font-weight:200;font-display:swap;src:url(../fonts/YakuHanJP/YakuHanJP-ExtraLight.woff2) format("woff2");unicode-range:U+3001,U+3002,U+3008,U+3009,U+300a,U+300b,U+300c,U+300d,U+300e,U+300f,U+3010,U+3011,U+3014,U+3015,U+30fb,U+ff01,U+ff08,U+ff09,U+ff1a,U+ff1b,U+ff1f,U+ff3b,U+ff3d,U+ff5b,U+ff5d}

@font-face{font-family:YakuHanJP;font-style:normal;font-weight:300;font-display:swap;src:url(../fonts/YakuHanJP/YakuHanJP-Light.woff2) format("woff2");unicode-range:U+3001,U+3002,U+3008,U+3009,U+300a,U+300b,U+300c,U+300d,U+300e,U+300f,U+3010,U+3011,U+3014,U+3015,U+30fb,U+ff01,U+ff08,U+ff09,U+ff1a,U+ff1b,U+ff1f,U+ff3b,U+ff3d,U+ff5b,U+ff5d}

@font-face{font-family:YakuHanJP;font-style:normal;font-weight:400;font-display:swap;src:url(../fonts/YakuHanJP/YakuHanJP-Regular.woff2) format("woff2");unicode-range:U+3001,U+3002,U+3008,U+3009,U+300a,U+300b,U+300c,U+300d,U+300e,U+300f,U+3010,U+3011,U+3014,U+3015,U+30fb,U+ff01,U+ff08,U+ff09,U+ff1a,U+ff1b,U+ff1f,U+ff3b,U+ff3d,U+ff5b,U+ff5d}

@font-face{font-family:YakuHanJP;font-style:normal;font-weight:500;font-display:swap;src:url(../fonts/YakuHanJP/YakuHanJP-Medium.woff2) format("woff2");unicode-range:U+3001,U+3002,U+3008,U+3009,U+300a,U+300b,U+300c,U+300d,U+300e,U+300f,U+3010,U+3011,U+3014,U+3015,U+30fb,U+ff01,U+ff08,U+ff09,U+ff1a,U+ff1b,U+ff1f,U+ff3b,U+ff3d,U+ff5b,U+ff5d}

@font-face{font-family:YakuHanJP;font-style:normal;font-weight:600;font-display:swap;src:url(../fonts/YakuHanJP/YakuHanJP-SemiBold.woff2) format("woff2");unicode-range:U+3001,U+3002,U+3008,U+3009,U+300a,U+300b,U+300c,U+300d,U+300e,U+300f,U+3010,U+3011,U+3014,U+3015,U+30fb,U+ff01,U+ff08,U+ff09,U+ff1a,U+ff1b,U+ff1f,U+ff3b,U+ff3d,U+ff5b,U+ff5d}

@font-face{font-family:YakuHanJP;font-style:normal;font-weight:700;font-display:swap;src:url(../fonts/YakuHanJP/YakuHanJP-Bold.woff2) format("woff2");unicode-range:U+3001,U+3002,U+3008,U+3009,U+300a,U+300b,U+300c,U+300d,U+300e,U+300f,U+3010,U+3011,U+3014,U+3015,U+30fb,U+ff01,U+ff08,U+ff09,U+ff1a,U+ff1b,U+ff1f,U+ff3b,U+ff3d,U+ff5b,U+ff5d}

@font-face{font-family:YakuHanJP;font-style:normal;font-weight:800;font-display:swap;src:url(../fonts/YakuHanJP/YakuHanJP-ExtraBold.woff2) format("woff2");unicode-range:U+3001,U+3002,U+3008,U+3009,U+300a,U+300b,U+300c,U+300d,U+300e,U+300f,U+3010,U+3011,U+3014,U+3015,U+30fb,U+ff01,U+ff08,U+ff09,U+ff1a,U+ff1b,U+ff1f,U+ff3b,U+ff3d,U+ff5b,U+ff5d}

@font-face{font-family:YakuHanJP;font-style:normal;font-weight:900;font-display:swap;src:url(../fonts/YakuHanJP/YakuHanJP-Black.woff2) format("woff2");unicode-range:U+3001,U+3002,U+3008,U+3009,U+300a,U+300b,U+300c,U+300d,U+300e,U+300f,U+3010,U+3011,U+3014,U+3015,U+30fb,U+ff01,U+ff08,U+ff09,U+ff1a,U+ff1b,U+ff1f,U+ff3b,U+ff3d,U+ff5b,U+ff5d}

/**
 * Swiper 12.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 27, 2026
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */

.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      -ms-scroll-snap-type: x mandatory;
          scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      -ms-scroll-snap-type: y mandatory;
          scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      -ms-scroll-snap-type: none;
          scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */

/* 3D Shadows */

.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Slide styles end */

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode {
  .swiper-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
  }
}

.swiper-virtual.swiper-css-mode.swiper-horizontal {
  .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size);
  }
}

.swiper-virtual.swiper-css-mode.swiper-vertical {
  .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size);
  }
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;

  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);

  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }

  ::slotted(svg),
  svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  ::slotted(.swiper-navigation-icon),
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}

.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}

.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}

.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}

/* Common Styles */

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }

  &:only-child {
    display: none !important;
  }
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition:
        200ms transform,
        200ms top;
    }
  }
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition:
        200ms transform,
        200ms left;
    }
  }
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition:
    200ms transform,
    200ms right;
}

/* Fraction */

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}

.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
  .swiper-scrollbar-disabled > &,
  &.swiper-scrollbar-disabled {
    display: none !important;
  }
  .swiper-horizontal > &,
  &.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
  .swiper-vertical > &,
  &.swiper-scrollbar-vertical {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

/* Zoom container styles start */

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  > img,
  > svg,
  > canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
}

/* Zoom container styles end */

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

/* a11y */

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-thumbs {
  .swiper-slide-thumb-active {
    /* Styles for active thumb slide */
  }
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
    .swiper-slide {
      pointer-events: none;
    }
  }
  &.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
  .swiper-slide-active,
  .swiper-slide-next,
  .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }

  .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;

    &:before {
      content: '';
      background: #000;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      right: 0;
      filter: blur(50px);
    }
  }
}

.swiper-cube {
  .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
}

/* Cube slide shadows start */

.swiper-cube {
  .swiper-slide-shadow-cube.swiper-slide-shadow-top,
  .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-cube.swiper-slide-shadow-left,
  .swiper-slide-shadow-cube.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}

/* Cube slide shadows end */

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

/* Flip slide shadows start */

.swiper-flip {
  .swiper-slide-shadow-flip.swiper-slide-shadow-top,
  .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-flip.swiper-slide-shadow-left,
  .swiper-slide-shadow-flip.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}

/* Flip slide shadows end */

.swiper-coverflow {
}

.swiper-creative {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards {
  .swiper-slide {
    transform-origin: center bottom;
    backface-visibility: hidden;
    overflow: hidden;
  }
}

/* =====================================
   Breakpoints
   sm  : 640px
   md  : 768px
   lg  : 1024px
   xl  : 1280px
===================================== */

:root {
	--fz-txt: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);      /* 14-16 */
	--fz-h1:  clamp(1.438rem, 1.407rem + 0.13vw, 1.563rem);  /* 23-25 */
	--fz-h2:  clamp(1.188rem, 1.157rem + 0.13vw, 1.313rem);  /* 19-21 */

	--fz-sm: clamp(0.813rem, 0.782rem + 0.13vw, 0.938rem); /* 13-15 */
	--fz-lg: clamp(1.75rem, 1.65rem + 0.5vw, 2.25rem); /* 32-42 */

	--fz-section-heading-en: clamp(0.875rem, 0.563rem + 1.56vw, 2.438rem); /* 14-39 */
	--fz-section-heading-ja: clamp(1.25rem, 1rem + 1.25vw, 2.5rem); /* 20-40 */

	--fz-content-heading: clamp(0.938rem, 0.875rem + 0.31vw, 1.25rem); /* 15-20 */

	--fz-brand-tagline: clamp(2.5rem, 2.25rem + 1.25vw, 3.75rem); /* 40-60 */
	--fz-brand-message: clamp(0.938rem, 0.7rem + 1.19vw, 2.125rem); /* 15-34 */

	--fz-goals-heading-en: clamp(1.25rem, 0.875rem + 1.88vw, 3.125rem); /* 20-50 */
	--fz-goals-heading-ja: clamp(1.5rem, 1.4rem + 0.5vw, 2rem); /* 24-32 */

	--fz-goals-heading-num: clamp(2.063rem, 1.125rem + 4.69vw, 6.75rem); /* 33-108 */

	--fz-assigments-heading: clamp(1.75rem, 1.475rem + 1.38vw, 3.125rem); /* 28-50 */
	--fz-assigments-text: clamp(0.938rem, 0.825rem + 0.56vw, 1.5rem); /* 15-24 */


	--fz-headline: clamp(2rem, 1.625rem + 1.88vw, 3.875rem); /* 32-62 */
	--fz-tagline: clamp(1.5rem, 1.375rem + 0.63vw, 2.125rem); /* 24-34 */
	--font-size-cap: clamp(0.75rem, 0.725rem + 0.13vw, 0.875rem);
	--font-size-copy: clamp(0.625rem, 0.6rem + 0.13vw, 0.75rem);
	--font-size-home-v: clamp(2.625rem, 2.069rem + 2.78vw, 4.5rem);
	--fz-copy: 10px;
	--sans-serif:YakuHanJP, "Zen Kaku Gothic Antique", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
	--gotham: gotham, YakuHanJP, "Zen Kaku Gothic Antique", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
	--sans-serif-yakuhan: gotham, YakuHanJP, "Zen Kaku Gothic Antique", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
	--news-fonts: "JetBrains Mono", "Zen Kaku Gothic Antique", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
	--barlow: "Barlow Condensed", sans-serif;
	--icon: "icomoon", YakuHanMP, "Libre Caslon Text", "Noto Serif JP", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	--leading-trim: calc(0.5em - 1lh/2);
	--text-color: #211815;
	--text-gray: #323232;

	--wds-yellow: #F1FF56;
	--wds-green: #C8F854;
	--wds-gradient: linear-gradient(90deg, var(--wds-yellow) 10%, var(--wds-green));
	--wds-gradient-45: linear-gradient(45deg, var(--wds-yellow) 10%, var(--wds-green));
	--wds-gradient-text: linear-gradient(90deg, var(--wds-yellow) 6%, var(--wds-green) 40%);
	--wds-gradient-line: var(--wds-gradient) 0 100% / 100% 2px no-repeat;

	--wds-gray-l: #F0F1F1;

	--wds-gray-d: #e4e5e5;

	--was-gradient: linear-gradient(90deg, var(--wds-orange) 10%, var(--wds-green));
	--was-gradient-45: linear-gradient(45deg, var(--wds-orange) 10%, var(--wds-green));
	--was-gradient-text: linear-gradient(90deg, var(--wds-orange) 6%, var(--wds-green) 40%);

	--was-gradient-line: var(--wds-gradient) 0 100% / 100% 4px no-repeat;

	--red: #ff0000;

	--easeoutexpo: cubic-bezier(0.16, 1, 0.3, 1);

	--REM: 1em;
}

@font-face {
	font-family: 'icomoon';
	src:  url('../fonts/icomoon.eot?hs2pbf');
	src:  url('../fonts/icomoon.eot?hs2pbf#iefix') format('embedded-opentype'),
		url('../fonts/icomoon.ttf?hs2pbf') format('truetype'),
		url('../fonts/icomoon.woff?hs2pbf') format('woff'),
		url('../fonts/icomoon.svg?hs2pbf#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}

html{
	width: 100%;
	height: 100%;
	font-size: 100%;
	scroll-behavior: smooth;
}

body{
	display: grid;
	grid-template-rows: 1fr auto;
	color: var(--text-color);
	font-family: var(--sans-serif);
	font-size: var(--fz-txt);
	line-height: 1.8;
	font-weight: 500;
	/* letter-spacing: .06em; */
	font-display: swap;
	font-feature-settings: 'palt';
	background-color: #fff;
	/* padding-top: 120px; */
	/* padding-bottom: 300px; */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2{
	font-size: inherit;
}

strong{
	font-weight: 700;
}

em{
	font-style: italic;
}

@media (any-hover: hover) {
	a:hover{
		color: var(--ic-blue-l);
	}
}

.small{
	font-size: .8em;
}

.main{
	width: 100%;
	overflow: hidden;
	position: relative;
	background-color: #fff;
	z-index: 1;
}

#loader{
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	/* background-color: var(--wds-gray-d); */
	background-image: var(--wds-gradient-45);
	background-repeat: no-repeat;
	background-size: 150% 100%;
	background-position: 100% 0;
	z-index: 1000;
}

#load-svg{
	width: 10%;
	opacity: 0;
}

@media (max-width: 768px) {
	#load-svg{
		width: 30%;
	}
}

/* general */

.link-btn{
	position: relative;
	display: inline-block;
	line-height: 1;
	border-radius: 3em;
	font-weight: 900;
	overflow: hidden;
	color: #000;
	vertical-align: middle;
	min-width: 180px;
	clip-path: inset(0 0 0 0);
	.is-open &{
		/* background-color: #fff!important; */
	}
	.inner{
		position: relative;
		display: inline-block;
		z-index: 10;
		width: 100%;
		padding: .8em 1em;
		text-align: center;
		transition: color 0.1s ease;
		white-space: nowrap;
	}
	&::before{
		position: relative;
		display: inline-block;
		font-family: 'icomoon' !important;
		speak: never;
		font-style: normal;
		font-weight: normal;
		font-variant: normal;
		text-transform: none;
		line-height: 1;
		display: none;
		z-index: 1;
	}
	&::after{
		content: '';
		position: absolute;
		display: inline-block;
		width: 0%;
		height: 100%;
		background-color: #000;
		border-radius: 3em;
		top: 0;
		left: 0;
		z-index: 0;
		transition: width 0.2s var(--easeoutexpo);
	}
	&.orange{
		background-color: var(--wds-orange);
	}
	&.green{
		background-color: var(--wds-green);
	}
	&.gradient{
		background: var(--wds-gradient);
		color: var(--text-color);
		border-color: #ffffff;
	}
	&.white{
		background-color: #fff;
	}
	&.black{
		background-color: #000;
		color: #ffffff;
		&::after{
			background-color: var(--wds-green);
		}
	}
}

.link-btn[target="_blank"]{
	.inner::after{
		font-family: 'Material Icons';
		content: '\f8ce';
		font-size: 1.3em;
		font-weight: 200;
		vertical-align: -.2em;
		margin-left: .2em;
	}
}

.link-btn.pulldown{
	.inner{
		&:after{
			content: '';
			display: inline-block;
			clip-path: polygon(50% 100%, 0 0, 100% 0);
			width: 1.4em;
			aspect-ratio: 2/1;
			background-color: var(--text-color);
			margin-left: 1em;
			transition: rotate 0.35s var(--easeoutexpo);
		}
	}
	&[aria-expanded='true']{
		.inner{
			&:after{
				rotate: -180deg;
			}
		}
	}
}

.fix-w{
	/* width: 180px; */
	a.link-btn{
		width: 100%;
	}
}

@media (any-hover: hover) {
	.link-btn:hover{
		color: #fff;
		&::after{
			width: 100%;
		}
	}
	.link-btn.black:hover{
		color: #000;
	}
	.link-btn.pulldown:hover{
		.inner{
			&:after{
				background-color: #fff;
			}
		}
	}
}

.gradient-text{
	background: var(--wds-gradient-text);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	&.clip{
		clip-path: inset(0 0 0 0);
	}
}

.justify{
	letter-spacing: -.03em;
	text-align: justify;
	word-break: break-all;
	text-justify: inter-ideograph;
	text-justify: inter-character;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}

@media (max-width: 768px) {
	a.link-btn{
		&.icon{
			display: flex;
			justify-content: flex-start;
			align-items: flex-start;
			font-size: 2em;
			min-width: auto;
			aspect-ratio: 1/1;
			padding: .2em;
			vertical-align: bottom;
			&::before{
				display: inline-block;
			}
			.inner{display: none;}
		}
		&.sp-icon{
			display: flex;
			align-items: center;
			padding: 16px 32px 14px 32px;
			&::before{
				display: inline-block;
				font-size: 30px;
			}
			.inner{
				font-size: 1.4em;
				padding: 0;
			}
		}
		&.contact{
			&::before{
				content: '\e900';
			}
		}
		&.dl{
			&::before{
				content: '\e901';
			}
		}
	}
	.fix-w{
		width: auto;
		a.link-btn{
			width: 100%;
		}
	}
}

/* header */

.header{
	width: 100%;
	height: 100px;
	position: fixed;
	display: flex;
	gap: 0 1em;
	justify-content: center;
	align-items: center;
	top: 0;
	left: 0;
	background-color: #fff;
	z-index: 999;
	.logged-in &{
		top: 32px;
	}
}

.header-inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	min-height: 100%;
	height: 100%;
	max-width: 1400px;
	padding: 0 1.5em 0 2em;
}

.header-logo{
	position: relative;
	z-index: 100;
	height: 100%;
	svg{
		width: 100px;
	}
	img{
		width: auto;
		height: 100%;
	}
}

.main-menu{
	display: flex;
	flex-wrap: wrap;
	gap: 1em 1.5em;
}

.menu-link{
	position: relative;
	display: inline-block;
	font-size: var(--fz-sm);
	font-weight: 900;
	line-height: 1;
	padding: 1em 0 2px 0;
	.label{
		display: block;
		white-space: nowrap;
		background: var(--wds-gradient) 0 100% / 0 4px no-repeat;
		transition: background-size 0.35s var(--easeoutexpo);
		padding-bottom: 8px;
		letter-spacing: .05em;
	}
	.tagline{
		position: absolute;
		top: 100%;
		left: 0;
		display: block;
		white-space: nowrap;
		overflow: hidden;
		z-index: 0;
		opacity: 0;
		pointer-events: none;
		transition: top 0.4s var(--easeoutexpo), opacity 0.2s var(--easeoutexpo);
		wbr{
			display: none;
		}
	}
}

@media (any-hover: hover) {
	.menu-link:hover{
		.tagline{
			top: calc(100% + .5em);
			opacity: 1;
		}
		.label{
			background-size: 100% 4px;
		}
		/* &::after{
			width: 100%;
		} */
	}
}

.sub-menu{
	display: flex;
	gap: 0 1em;
}

.global-header-btn{
	display: none;
}

@media (min-width: 1920px) {
	.header-inner{
		max-width: 1920px;
	}
}

@media (max-width: 1080px) {
	.header-inner{
		gap: 0 1.5em;
		padding-left: 1.7em;
	}
	.header-logo{
		margin-right: auto;
		svg{
			width: 80px;
		}
		img{
			height: 100%;
		}
	}
	.global-header-btn{
		position: relative;
		display: block;
		width: 30px;
		height: 24px;
		border: none;
		span{
			position: absolute;
			left: 0;
			display: inline-block;
			width: 100%;
			height: 2px;
			background-color: #000;
			&:nth-of-type(1){
				top: 0;
				left: 0;
			}
			&:nth-of-type(2){
				top: 50%;
				left: 0;
			}
			&:nth-of-type(3){
				left: 0;
				top: 100%;
			}
		}
		&[aria-expanded='true']{
			span{
				&:nth-of-type(1){
					width: 130%;
					top: 50%;
					left: -25%;
					rotate: 30deg;
				}
				&:nth-of-type(2){
					display: none;
				}
				&:nth-of-type(3){
					width: 130%;
					left: -25%;
					top: 50%;
					rotate: -30deg;
				}
			}
		}
	}
	.global-nav{
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		opacity: 0;
		scale: 1.02;
		background: url(../images/was-logotype.svg), var(--wds-gradient-45);
		padding: 132px 2em 0 2em;
		background-repeat: no-repeat;
		background-position: center bottom;
		transition: scale 0.2s var(--easeoutexpo), opacity 0.4s var(--easeoutexpo);
		pointer-events: none;
		&.is-open{
			pointer-events: all;
			top: 0;
			opacity: 1;
			scale: 1;
		}
	}
	.main-menu{
		flex-direction: column;
		gap: 1.5em;
	}
	.menu-link{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 2vw 1em;
		align-items: start;
		width: 100%;
		font-size: var(--fz-txt);
		font-weight: 900;
		line-height: 1;
		padding: 0;
		.label{
			display: inline-block;
			width: 50%;
			justify-self: end;
			font-size: 2.5vw;
			vertical-align: top;
		}
		.tagline{
			font-size: 1.4vw;
			line-height: 1.3;
			position: static;
			display: inline-block;
			opacity: 1;
			white-space: normal;
			word-break: keep-all;
			overflow-wrap: anywhere;
			wbr{
				display: block;
			}
		}
		&::after{
			display: none;
		}
	}
	@media (any-hover: hover) {
		.menu-link:hover{
			color: #fff;
		}
	}
}

@media (max-width: 768px) {
	.header{
		height: 74px;
	}
	.header-logo{
		img{
			/* width: 64px; */
		}
	}
	.header-inner{
		padding: 0 2em 0 0;
	}
	.global-nav{
		padding: 132px 4% 0 4%;
	}
	.menu-link{
		grid-template-columns: 2fr 3fr;
		gap: 1em;
		.label{
			width: 100%;
			font-size: 1.5em;
		}
		.tagline{
			font-size: 1.2em;
			line-height: 1.3;
		}
	}
}

/* section */

.section{
	width: 100%;
	padding: 7em 0 8em 0;
	&+.section{
	}
}

.section-inner{
	width: 100%;
	/* max-width: 1920px; */
	max-width: 1200px;
	padding: 0 1.5em 0 2em;
	margin: auto;
}

.section-heading{
	position: relative;
	display: flex;
	justify-items: flex-start;
	align-items: center;
	gap: 12px 3em;
	font-weight: 900;
	margin-top: 0;
	margin-bottom: 4em;
	span{
		display: inline-block;
	}
	.en{
		position: absolute;
		font-size: var(--fz-section-heading-en);
		line-height: 1;
		letter-spacing: .05em;
		clip-path: inset(0 0 0 0);
		rotate: 90deg;
		transform-origin: bottom left;
		top: 2.2em;
	}
	.ja{
		font-size: var(--fz-section-heading-ja);
		line-height: 1.2;
		clip-path: inset(0 0 0 0);
	}
}

.section-container{
	width: 100%;
	padding-left: 6em;
}

@media (min-width: 1920px) {
	.section-inner{
		width: 80%;
		max-width: 1920px;
	}
}

@media (max-width: 768px) {
	.section-inner{
		padding: 0 2em;
	}
	.section-heading{
		flex-direction: column;
		align-items: flex-start;
		.en{
			top: -.6em;
		}
		.ja{
			margin-left: 2em;
		}
	}
	.section-container{
		padding-left: 4em;
	}
}

/* footer */

.footer{
	width: 100%;
	padding: 8em 0;
	background-color: #fff;
	z-index: 0;
	.home &{
		position: sticky;
		bottom: 0;
	}
}

.footer-inner{
	display: grid;
	grid-template-columns: 170px 1fr 120px;
	width: 100%;
	max-width: 1200px;
	padding: 0 1.5em 0 2em;
	margin: auto;
	gap: 0 100px;
}

.footer-list{
	width: 100%;
	columns: 2;
}

.footer-list-item{
	line-height: 1;
	.en{
		font-size: 1.2em;
	}
	.ja{
		font-size: .8em;
	}
	&+&{
		margin-top: 1.5em;
	}
}

.footer-list-link{
	display: inline-block;
	background: var(--wds-gradient);
	background-size: 0 100%;
	background-repeat: no-repeat;
	transition: background-size 0.35s var(--easeoutexpo);
}

@media (any-hover: hover) {
	.footer-list-link:hover{
		background-size: 100% 100%;
	}
}

.footer-logo-link{
	width: 100%;
}

.footer-logo{
	width: 100%;
}

@media (min-width: 1920px) {
	.footer-inner{
		width: 80%;
		max-width: 1920px;
	}
}

@media (max-width: 1024px) {
	.footer-list-item{
		span{
			display: block;
		}
	}
}

@media (max-width: 768px) {
	.footer-inner{
		grid-template-columns: 3fr 2fr;
		grid-template-rows: repeat(2, auto);
		justify-content: space-between;
		gap: 1em 5em;
	}
	.footer-list{
		grid-column: 2/3;
		grid-row: 1/3;
		columns: 1;
	}
	.was{
		grid-column: 1/2;
		grid-row: 1/2;
	}
	.wds{
		grid-column: 1/2;
		grid-row: 2/3;
		align-self: end;
		.footer-logo{
			width: 50%;
		}
	}
}

/* hero */

.hero{
	position: relative;
	background-color: #fff;
}

.hero-inner{
	width: 100%;
	height: calc(100vh - 60px);
	min-height: 800px;
}

/* .hero:hover{
	background-size: 105% auto;
	opacity: 1;
} */

.logo-wrapper{
	width: 100%;
}

.hero-header{
	position: relative;
	width: 100%;
	height: 100%;
	padding-top: 100px;
}

.hero-header-inner{
	position: relative;
	width: 100%;
	height: 100%;
	max-width: 1400px;
	/* max-height: 880px; */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	/* padding: 64px 1.5em 80px 1.8em; */
	padding: 0 1.5em 0 1.8em;
	margin: auto;
	color: var(--text-color);
	/* filter: drop-shadow(0 0 3px rgb(0 0 0 /.1)); */
	z-index: 100;
}

.hero-headline{
	font-family: "Zen Kaku Gothic Antique", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
	font-size: clamp(2.188rem, 1.679rem + 2.54vw, 4.063rem); /* 35-65 */
	line-height: 1.25;
	letter-spacing: .08em;
	font-weight: 900;
	/* margin-bottom: 54px; */
	margin-bottom: 4vh;
	.kakko-open{
		margin-left: -.22em;
		margin-right: -.12em;
	}
	.kakko-close{
		margin-left: -.1em;
	}
}

.hero-tagline{
	font-size: clamp(1.25rem, 1.1rem + 0.75vw, 2rem); /* 19-32 */
	line-height: 1.4;
	font-weight: 500;
	letter-spacing: .08em;
	/* margin-bottom: 32px; */
	margin-bottom: 4vh;
	margin-left: 2px;
}

.hero-icon-wrapper{
	display: flex;
	flex-wrap: wrap;
	width: auto;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 24px;
}

.hero-icon{
	width: 34%;
	max-width: 180px;
	min-width: 100px;
	filter: drop-shadow(6px 6px 0 rgb(0 0 0 /.4));
}

.hero-icon-caption{
	width: auto;
	/* font-size: clamp(0.688rem, 0.654rem + 0.17vw, 0.813rem); */
	font-size: 11px;
	font-weight: 400;
	margin-top: 12px;
}

.hero-header-bg{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
	&::after{
		content: '';
		display: block;
		position: absolute;
		width: 42vw;
		height: 100%;
		top: 0;
		left: 0;
		background-image: url('../images/hero-bg.svg');
		background-size: cover;
		background-position: top right;
		/* clip-path: polygon(0 0, 100% 0%, 60% 100%, 0% 100%); */
		z-index: 10;
	}
}

.hero-bg-wrapper{
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
	top: 0;
	left: 0;
}

.hero-bg{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	top: 0;
	left: 0;
	z-index: 0;
}

@media (min-width: 1920px) {
	.hero-header-inner{
		max-width: 1920px;
	}
}

@media (max-width: 768px) {
	.hero-header{
		padding-top: 80px;
	}
	.hero-header-inner{
		width: fit-content;
		padding: 1em;
		padding-top: 5vh;
		justify-content: flex-start;
	}
	.hero-icon-wrapper{
		margin-top: 0;
	}
	.hero-header-bg{
		height: 60vh;
		&::after{
			width: 100%;
			height: 60vh;
			background: var(--wds-gradient);
			clip-path: polygon(0 0, 100% 0, 100% 30%, 0% 100%);
		}
	}
	.hero-headline{
		margin-bottom: .5em;
		line-height: 1.5;
	}
	.hero-tagline{
		margin-bottom: 1em;
	}
	.hero-icon-wrapper{
		margin-left: .2em;
		gap: 18px;
	}
	.hero-icon{
		width: 30%;
		min-width: 60px;
	}
	.hero-bg{
		object-position: bottom right;
	}
}

.news{
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	width: 100%;
	max-width: 1440px;
	left: 50%;
	translate: -50% 0;
	bottom: -27px;
	filter: drop-shadow(0 0 3px rgb(0 0 0 /.3));
	padding: 0 3em;
	z-index: 100;
}

.news-inner{
	width: auto;
	max-width: 720px;
	clip-path: inset(0 0 0 0);
}

.news-heading{
	color: #fff;
	font-family: var(--news-fonts);
	line-height: 1;
	letter-spacing: .14em;
	margin-left: 2px;
	margin-bottom: 8px;
}

.news-content{
	background-color: #fff;
	width: 100%;
	border-radius: 200px;
	font-size: var(--fz-sm);
	line-height: 1.4;
}

.news-content-inner{
	display: flex;
	align-items: center;
	gap: 0 1.5em;
	padding: 1.5em 2.5em;
}

.news-date{
	font-family: var(--news-fonts);
	white-space: nowrap;
}

.news-title{
	width: 100%;
}

@media (min-width: 1920px) {
	.news{
		max-width: 1920px;
		padding: 0 1.5em;
	}
}

@media (max-width: 768px) {
	.news{
		padding: 0 1.5em;
	}
	.news-heading{
		margin-bottom: 4px;
	}
	.news-inner{
		width: 100%;
	}
	.news-content{
		border-radius: 16px;
	}
	.news-content-inner{
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		border-radius: 16px;
		padding: 1em 1.5em;
	}
}

/* client */

.client{
	width: 100%;
}

.client-logo-wrapper{
	position: relative;
	width: 100%;
	height: calc(240px + 180px + 32px);
	padding: 120px 0;
	background: var(--wds-gradient);
	overflow: hidden;
}

.client-logo-box{
	position: absolute;
	width: 100%;
	overflow: hidden;
	top: 120px;
	&.reverse{
		top: 242px;
	}
}

.client-logo-row{
	min-width: 0;
	width: max-content;
	display: flex;
	justify-content: flex-start;
	animation: scroll var(--duration) linear infinite;
	img{
		aspect-ratio: 8/3;
		width: auto;
		height: 90px;
		margin-right: 32px;
	}
	.reverse &{
		animation-direction: reverse;
	}
}

@keyframes scroll {
	from {
		translate: 0 0;
	}
	to {
		translate: -50% 0;
	}
}

@media (max-width: 768px) {
	.client-logo-wrapper{
		height: calc(140px + 120px + 18px);
		padding: 80px 0 60px 0;
	}
	.client-logo-box{
		top: 80px;
		&.reverse{
			top: 158px;
		}
	}
	.client-logo-row{
		img{
			height: 60px;
			margin-right: 18px;
		}
	}
}

/* /client */

/* brand */

.brand{ /* section */
	padding: 20em 0;
	min-height: calc(100svh - 120px);
	color: var(--text-gray);
	position: relative;
	z-index: 100;
}

.brand-tagline{
	font-size: clamp(2.5rem, 2.375rem + 0.63vw, 3.125rem); /* 40-50 */
	font-weight: 900;
	line-height: 1.5;
	margin-bottom: 1em;
	letter-spacing: .08em;
	/* text-align: center; */
	span{
		/* white-space: nowrap; */
		display: block;
	}
}

.brand-message{
	font-size: clamp(0.938rem, 0.875rem + 0.31vw, 1.25rem); /* 15-20 */
	font-weight: 900;
	line-height: 2.1;
	/* text-align: center; */
	p+p{
		margin-top: 1em;
	}
}

.brand-bg{
	position: relative;
	overflow: hidden;
	padding-bottom: 30vh;
	/* background-color: var(--wds-gray-d); */
}

.brand-bg-content{
	position: absolute;
	/* top: 0; */
	width: 100%;
	height: 100vh;
	/* background-image: linear-gradient(45deg,rgb(200, 248, 84) 0%, rgb(241, 255, 86) 30%, rgb(241, 255, 86) 60%, rgb(200, 248, 84) 100%); */
	background: linear-gradient(90deg, rgb(241, 255, 86) 10%, rgb(200, 248, 84));
	/* background-size: 200% 100%; */
	background-repeat: no-repeat;
	/* background-position: 100% 0; */
}

.brand-bg-logo{
	position: absolute;
	width: 60%;
	top: 20%;
	right: 0;
}

svg#brand-logo{
	position: absolute;
	max-width: none;
	bottom: -25vh;
	left: -4%;
	width: auto;
	height: 150vh;
}

.brand-logo-group{
	stroke: #fff;
	stroke-width: 2px;
	fill: none;
}

@media (max-width: 768px) {
	.brand{ /* section */
		/* padding: 10em 0; */
		/* min-height: calc(100svh - 80px); */
		min-height: 100svh;
	}
	.brand-tagline{
		text-align: center;
	}
	.brand-message{
		text-align: center;
	}
	.brand-bg{
		padding-bottom: 10vh;
	}
	svg#brand-logo{
		bottom: 0;
		left: -25%;
		height: 80vh;
	}
	.brand-bg-logo{
		width: 100%;
	}
}

/* feature */

.feature-grid{
	counter-reset: number;
	display: grid;
	justify-content: space-between;
	grid-template-columns: 1fr 6fr 9fr;
	grid-template-rows: repeat(3, 1fr);
	gap: 2em 6%;

	position: relative;
	z-index: 100;
}

.feature-item{
	counter-increment: number;
	display: grid;
	grid-template-columns: subgrid;
	grid-column: span 3;
	gap: 2em;
	justify-content: start;
	align-items: start;
	&:before{
		content: counter(number);
		font-family: var(--gotham);
		font-size: clamp(3.75rem, 3.15rem + 3vw, 6.75rem); /* 60-108 */
		font-weight: 700;
		line-height: 1;
		text-align: center;
		margin-top: -.1em;
	}
}

.feature-heading{
	font-size: clamp(1.063rem, 0.963rem + 0.5vw, 1.563rem); /* 17-25 */
	font-weight: 900;
	line-height: 1.4;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: .6em 1em;
	.nw{
		display: inline-block;
	}
}

.feature-text{
	font-weight: 700;
}

@media (max-width: 768px) {
	.feature-grid{
		grid-template-columns: 1fr;
		grid-template-rows: unset;
		gap: 3em 6%;
	}
	.feature-item{
		grid-column: unset;
		grid-row: span 2;
		gap: 1em;
		&:before{
			display: none;
		}
	}
	.feature-heading{
		flex-direction: row;
		&::before{
			content: counter(number);
			font-family: var(--gotham);
			font-size: 3em;
			line-height: 1;
		}
	}
}

/* / feature */

/* goals */

.goals{
	/* position: relative; */
	/* padding-bottom: 0; */
	/* &::after{
		content: '';
		position: relative;
		display: block;
		width: 100%;
		height: calc(20em + 260px);
		bottom: 0;
		left: 0;
		background: linear-gradient(0deg,rgba(245, 246, 246, 1) 260px, rgba(245, 246, 246, 0) 100%);
		z-index: 1;
	} */
}

.goals .section-heading{
	margin-bottom: 4px;
}

.goals-contents{
	/* display: grid; */
	width: 100%;
	font-family: var(--gotham);
	/* grid-template-rows: 1fr 1fr;
	justify-content: center;
	align-items: center; */
	/* gap: 5em 10%; */
}

.goals-circle-wrapper{
	width: 100%;
	/* aspect-ratio: 1/1; */
}

.goals-circle{
	position: relative;
	width: 75%;
	max-width: 960px;
	color: #000;
	/* margin: auto; */
	aspect-ratio: 1/1;
	display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-sizing: border-box;
	counter-reset: number;
	background: radial-gradient(circle,rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, .18) 100%);
	&::before{
		content: '';
		position: absolute;
		display: block;
		width: 50%;
		aspect-ratio: 1/1;
		border-radius: 50%;
		background: radial-gradient(circle,rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, .6) 100%);
	}
}

.goals-circle-text{
	background-color: rgb(255 255 255 /.55);
	width: 25%;
	aspect-ratio: 1/1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	text-align: center;
	font-weight: 900;
	.medium{
		font-size: clamp(0.75rem, 0.675rem + 0.38vw, 1.125rem); /* 12-18 */
		line-height: 1.5;
		margin-bottom: .3em;
	}
	.large{
		font-size: clamp(1.563rem, 1.25rem + 1.56vw, 3.125rem); /* 25-50 */
		line-height: 1;
		font-weight: 700;
	}
}

.goals-circle-child{
	width: 18%;
	min-width: 120px;
	max-width: 160px;
	aspect-ratio: 1/1;
	border-radius: 50%;
	background-color: rgb(255 255 255 /1);
	--a2: calc(var(--a) * 1deg - 90deg);
	--x: calc(cos(var(--a2)) * 140%);
	--y: calc(sin(var(--a2)) * 140%);
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	translate: var(--x) var(--y);
	text-align: center;
	font-weight: 500;
	counter-increment: number;
	&:before{
		content: counter(number);
		font-size: 3em;
		line-height: 1;
		text-align: center;
		margin-bottom: .1em;
	}
	span{
		display: block;
		line-height: 1;
	}
	.en{
		text-transform: capitalize;
		font-size:clamp(0.625rem, 0.55rem + 0.38vw, 1rem); /* 10-16 */
	}
	.ja{
		font-size: clamp(0.563rem, 0.5rem + 0.31vw, 0.875rem); /* 9-14 */
		margin-top: .2em;
	}
}

.goals-list{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	counter-reset: number;
	gap: 4em 1em;
	padding-left: 6em;

	position: relative;
	z-index: 100;
}

.goals-item{
	/* display: grid;
	grid-template-columns: 2em 1fr;
	gap: 10%; */
	counter-increment: number;
}

.goals-item-inner{}

.goals-heading{
	display: flex;
	gap: .6em;
	justify-self: flex-start;
	align-items: center;
	line-height: 1;
	/* position: relative; */
	.ja{
		/* position: relative; */
		display: block;
		font-size: clamp(1.063rem, 0.913rem + 0.75vw, 1.813rem); /* 17-29 */
		font-weight: 900;
		z-index: 10;
		margin-bottom: .4em;
	}
	.en{
		display: block;
		text-transform: uppercase;
		clip-path: inset(0 0 0 0);
		/* filter: drop-shadow(0 0 3px rgb(80 80 80 /.2)); */
		margin-left: .1em;
	}
	&:before{
		content: counter(number);
		font-size: clamp(2.438rem, 2rem + 2.19vw, 4.625rem); /* 39-74 */
		line-height: 1;
		text-align: center;
		margin-top: -.05em;
		min-width: 54px;
	}
}

.goals-text{
	line-height: 1.3;
	margin-top: 1em;
	font-weight: 700;
	span{
		display: inline-block;
	}
}

@media (max-width: 768px) {
	.goals{
	}
	.goals-contents{
		margin-top: 3em;
	}
	.goals-circle{
		width: 100%;
	}
	.goals-circle-child{
		--x: calc(cos(var(--a2)) * 130%);
		--y: calc(sin(var(--a2)) * 130%);
	}
	.goals-contents{
		grid-template-columns: 1fr;
	}
	.goals-list{
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(3, auto);
		grid-auto-flow: column;
		gap: 3em 2em;
		padding-left: 4em;
	}
	.goals-item{
		grid-template-columns: 1fr;
		&:before{
			display: none;
		}
	}
	.goals-heading{
		.ja{
			font-weight: 700;
			white-space: nowrap;
		}
		.en{
		}
		&:before{
			margin-top: -.05em;
			min-width: auto;
		}
	}
	.goals-text{
		margin-top: 1em;
	}
}

/* / goals */

/* assigments */

.assigments{
	background-color: var(--wds-gray-l);
}

.assigments-box{
	&+&{
		margin-top: 7em;
	}
}

/* .assigments-heading{
	display: inline-block;
	font-size: clamp(0.938rem, 0.813rem + 0.63vw, 1.563rem);
	line-height: 1.3;
	margin-bottom: .4em;
	background: var(--wds-gradient);
	padding: 0 1em;
	span{
		white-space: nowrap;
	}
} */

.gradient-bg-heading{
	display: inline-block;
	font-size: clamp(0.938rem, 0.813rem + 0.63vw, 1.563rem); /* 15-25 */
	font-weight: 900;
	line-height: 1.3;
	margin-bottom: .4em;
	background: var(--wds-gradient);
	padding: .3em 1em;
	margin-bottom: 1.5em;
	span{
		white-space: nowrap;
	}
}

.assigments-grid{
	display: grid;
	grid-template-columns: repeat(
		auto-fit,
		minmax(210px, 1fr)
	);
	gap: 16px 8px;
	&+.assigments-heading{
		margin-top: 1.5em;
	}
}

.assigments-item{
	display: grid;
	justify-content: start;
	align-items: center;
	width: 100%;
	min-height: 120px;
	font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem); /* 14-18 */
	line-height: 1.8;
	font-weight: 900;
	background-color: #fff;
	border-radius: 16px;
	filter: drop-shadow(0 0 5px rgb(100 100 100 /.3));
	padding: 1.8em 1.2em;
	.ul{
		padding-bottom: 2px;
		background: var(--wds-gradient);
		background-position: 0 100%;
		background-size: 100% 2px;
		background-repeat: no-repeat;
		transition: background-size 0.35s var(--easeoutexpo);
	}
}

@media (max-width: 768px) {
	.assigments{
		/* padding-top: 0; */
	}
	.assigments-grid{
		grid-template-columns: repeat(2, 1fr);
	}
	.assigments-item{
		min-height: 100px;
		padding: 1.5em 1.2em;
		align-items: center;
	}
}

/* / assigments */

/* leverage */

.leverage{
	background-color: var(--wds-gray-l);
}

.leverage-box{
	&+&{
		margin-top: 6em;
	}
}

.leverage-grid{
	display: grid;
	justify-content: space-between;
	grid-template-columns: repeat(3, fit-content(540px));
	gap: 6em 6%;
}

.leverage-item{
	display: grid;
	grid-template-rows: subgrid;
	justify-items: center;
	grid-row: span 3;
	gap: 16px 0;

}

.leverage-heading{
	width: 100%;
	font-family: var(--sans-serif-yakuhan);
	font-size: var(--fz-content-heading);
	font-weight: 900;
	line-height: 1.2;
}

.leverage-text{
	font-weight: 700;
}

.leverage-icon{
	width: 90%;
	max-width: 248px;
}

.leverage-hierarchy-wrapper{
	position: relative;
	display: grid;
	grid-template-columns: 1fr 2fr;
	grid-template-rows: 1fr;
}

.leverage-hierarchy-fig{
	position: absolute;
	/* width: 100%; */
	width: auto;
	height: 100%;
	top: 0;
	left: -4em;
}

.leverage-hierarchy-contaier{
	padding: 1em 0 1.5em 0;
}

.leverage-hierarchy-item{
	display: grid;
	width: 100%;
	grid-template-columns: 1fr 2fr;
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
	filter: drop-shadow(0 0 3px rgb(0 0 0 /.1));
	min-height: 128px;
	&+&{
		margin-top: 2.5em;
	}
}

.leverage-hierarchy-item:nth-child(1){
	.leverage-hierarchy-heading{
		background-color: #4d4d4d;
	}
}

.leverage-hierarchy-item:nth-child(2){
	.leverage-hierarchy-heading{
		background-color: #737373;
	}
}

.leverage-hierarchy-item:nth-child(3){
	.leverage-hierarchy-heading{
		background-color: #b2b2b2;
	}
}

.leverage-hierarchy-heading{
	color: #fff;
	padding: 1.5em 2em;
	height: 100%;
	display: flex;
	align-items: center;
	font-weight: 900;
	span{
		display: block;
	}
	.ja{
		font-size: var(--fz-content-heading);
		line-height: 1.2;
	}
	.en{
		font-size: clamp(0.625rem, 0.588rem + 0.19vw, 0.813rem);  /* 10-13 */
		line-height: 1.2;
		letter-spacing: .04em;
		color: var(--wds-green);
		margin-top: .5em;
	}
}

.leverage-hierarchy-heading-inner{
	align-self: center;
}

.leverage-hierarchy-text{
	padding: 1.5em 2em;
	font-weight: 700;
	line-height: 1.5;
	align-self: center;
	p+p{
		margin-top: .9em;
	}
}

@media (max-width: 768px) {
	.leverage-grid{
		grid-template-columns: repeat(2, 1fr);
		gap: 3em 2em;
	}
	.leverage-heading{
		line-height: 1.4;
	}
	.leverage-icon{
		width: 75%;
		margin-top: 8px;
	}
	.leverage-hierarchy-wrapper{
		position: static;
		grid-template-columns: 1fr;
		gap: 2em;
	}
	.leverage-hierarchy-contaier{
		padding: 0;
	}
	.leverage-hierarchy-fig{
		position: static;
		display: block;
		width: 70%;
		height: auto;
		margin: auto;
	}
	.leverage-hierarchy-item{
		&+&{
			margin-top: .5em;
		}
	}
}

.bg-gradient{
	background: #fff;
	background: linear-gradient(90deg, rgb(240, 241, 241) 10%, rgb(240, 241, 241));
}

/* theme */

.theme{
	/* background-color: var(--wds-gray-l); */
}

.theme-grid{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2em 3em;
}

.theme-grid-item{
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
}

.theme-heading{
	width: 100%;
	background: var(--wds-gradient);
	text-align: center;
	font-size: var(--fz-content-heading);
	font-weight: 900;
	line-height: 1;
	padding: 1.2em 1.3em 1em 1.3em;
}

.theme-list{
	padding: 1.8em 2.4em 1.5em 2.4em;
}

.theme-list-item{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	line-height: 1.5;
	font-weight: 700;
	&+&{
		margin-top: 1em;
	}
}

.theme-check{
	width: 1.5em;
	margin-right: .5em;
}

@media (max-width: 768px) {
	.theme-grid{
		grid-template-columns: 1fr;
		gap: 1em;
	}
	.theme-heading{
		text-align: left;
	}
	.theme-list{
		padding: 1.8em 1.5em;
	}
}

/* program */

.program{
	min-height: 1200px;
	/* padding-top: 0; */
	/* background: var(--wds-gradient-45); */
}

#program {
	scroll-margin-top: 120px;
}

.program-nav-wrapper{
	width: 100%;
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 32px 16px;
	margin-bottom: 10em;
}

.program-nav-container{
	display: grid;
	position: relative;
	width: 100%;
	background-color: rgb(255 255 255 /.4);
	border-radius: 16px;
	/* filter: drop-shadow(0 0 3px rgb(0 0 0 /.1)); */
	padding: 4em 2em 2em 2em;
	&.two{
		grid-template-columns: 1fr 60px 1fr;
		.arrow{
			position: relative;
			width: 100%;
			height: 100%;
			&::before{
				position: absolute;
				content: '';
				display: block;
				width: 80%;
				height: 1px;
				background-color: #000;
				left: 0;
				top: 50%;
				translate: 0 -50%;
			}
			&::after{
				position: absolute;
				content: '';
				display: block;
				width: 40%;
				aspect-ratio: 1/1;
				border-top: 1px solid #000;
				border-right: 1px solid #000;
				rotate: 45deg;
				right: 25%;
				top: 50%;
				translate: 0 -50%;
			}
		}
	}
}

.program-nav-headline{
	position: absolute;
	display: inline-block;
	background: var(--wds-gradient);
	font-size: var(--fz-content-heading);
	font-weight: 900;
	line-height: 1;
	padding: .5em 1.5em;
	border-radius: 24px;
	top: -1em;
	left: 50%;
	translate: -50% 0;
	white-space: nowrap;
	filter: drop-shadow(0 0 3px rgb(0 0 0 /.1));
}

.program-nav-box{
	position: relative;
	width: 100%;
	filter: drop-shadow(0 0 10px rgb(0 0 0 /.2));
}

.program-nav-box-inner{
	background-color: #fff;
	border-radius: 12px;
	overflow: hidden;
}

.program-nav-step{
	position: absolute;
	background-color: #000;
	color: #fff;
	font-size: clamp(0.625rem, 0.588rem + 0.19vw, 0.813rem); /* 10-13 */
	line-height: 1;
	font-weight: 900;
	letter-spacing: .1em;
	text-align: center;
	padding: .5em;
	min-width: 140px;
	border-radius: 100px;
	top: -1em;
	left: 50%;
	translate: -50%;
}

.program-nav-heading{
	display: inline-block;
	width: 100%;
	background: var(--wds-gradient);
	text-align: center;
	line-height: 1;
	font-weight: 700;
	padding: 1.5em .5em 1em .5em;
}

.program-nav-title{
	padding: 1em 1em 1.1em 1em;
	display: table;
	margin: auto;
	line-height: 1;
	.ja{
		font-weight: 700;
	}
	.en{
		font-size: clamp(0.813rem, 0.663rem + 0.75vw, 1.563rem); /* 13-25 */
		font-weight: 900;
		margin-top: .4em;
	}
}

.program-wrapper{
	width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	gap: 3em 0;
}

.program-article{
	display: grid;
	grid-template-columns: 55fr 45fr;
	/* opacity: .6; */
	/* grid-template-columns: repeat(2, 1fr); */
	width: 100%;
	font-weight: 700;
	background-color: #fff;
	filter: drop-shadow(0 0 3px rgb(0 0 0 /.1));
	border-radius: 30px;
	overflow: hidden;
	&+&{
		margin-top: 2em;
	}
}

.program-article-info{
	padding: 3em 10% 3em 3em;
}

.program-article-header{
	display: grid;
	grid-template-columns: 1fr 160px;
	margin-bottom: 3em;
}

.program-article-headline{
	display: inline-block;
	font-size: clamp(1rem, 0.863rem + 0.69vw, 1.688rem); /* 16-27 */
	font-weight: 900;
	line-height: 1.3;
	background: var(--wds-gradient-line);
	padding-bottom: .2em;
}

.program-article-headline-en{
	font-size: clamp(1.875rem, 1.625rem + 1.25vw, 3.125rem); /*30-50 */
	font-weight: 900;
	line-height: 1;
}

.program-article-time{
	justify-self: end;
	width: 120px;
	aspect-ratio: 1/1;
	font-size: clamp(0.813rem, 0.713rem + 0.5vw, 1.313rem); /* 13-21 */
	font-family: var(--barlow);
	display: grid;
	grid-template-rows: repeat(2, 1fr);
	color: #fff;
	border-radius: 50%;
	line-height: 1;
	overflow: hidden;
	div{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
	}
	.day{
		background: var(--wds-gradient-45);
	}
	.hour{
		background-color: #000;
		.inner{
			margin-bottom: .5em;
		}
	}
	.num{
		font-size: 2.4em;
	}
}

.program-article-image{
	width: 100%;
	background-color: #000;
	border-radius: 0 0 30px 0;
	overflow: hidden;
	img{
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}
}

.program-article-detail{
	grid-column: 1/3;
	.content{
		width: 100%;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		/* grid-template-rows: repeat(2, auto); */
		align-items: start;
		/* grid-auto-flow: column; */
		gap: 0 6%;
		padding: 3em 3em 2em 3em;
	}
	&::details-content {
		content-visibility: unset;
		display: block grid;
		@media(prefers-reduced-motion: no-preference) {
			transition-duration: 300ms;
			transition-property: grid-template-rows;
			transition-property: grid-template-rows, -ms-grid-rows;
		}
	}
	&:not([open])::details-content {
		grid-template-rows: 0fr;
	}
	&[open]::details-content {
		grid-template-rows: 1fr;
	}
}

.program-article-tagline{
	font-size: clamp(1rem, 0.863rem + 0.69vw, 1.688rem); /* 16-27 */
	line-height: 1.3;
	font-weight: 900;
	margin-bottom: 1.5em;
	span{
		display: inline-block;
	}
}

.program-article-summary{
	max-width: 640px;
	margin-bottom: 2em;
}

.program-article-heading{
	display: inline-block;
	font-size: clamp(0.75rem, 0.713rem + 0.19vw, 0.938rem); /* 12-15 */
	line-height: 1;
	border: 3px solid transparent;
	background:
		linear-gradient(#fff, #fff) padding-box,
		var(--wds-gradient) border-box;
	border-radius: 3em;
	padding: .5em 1.5em;
	margin-bottom: 1em;
}

.program-article-assignment-list{
	font-size: clamp(0.75rem, 0.675rem + 0.38vw, 1.125rem);/* 12-18 */
	margin-bottom: 2em;
	margin-left: 1.5em;
	list-style-type: "□ ";
	li+li{
		margin-top: .3em;
	}
}

.program-article-detail-heading{
	margin-bottom: 1em;
	background: var(--wds-gradient-line);
	padding-bottom: 4px;
}

.program-article-detail-list{
	list-style: disc;
	padding-left: 1.5em;
	margin-bottom: 2em;
	li+li{
		margin-top: .3em;
	}
	/* &+.program-article-detail-heading{
		margin-top: 2em;
	} */
}

.program-article-detail-caption{
	font-weight: 400;
	/* align-self: flex-end; */
}

.program-category-wrapper{
	&+&{
		margin-top: 5em;
	}
}

.program-category-nav{
	width: 100%;
	display: flex;
	align-items: center;
	margin-bottom: 2em;
}

.program-batch{
	position: relative;
	width: 120px;
	margin-left: -1em;
	margin-right: 1.5em;
	margin-bottom: -4em;
	z-index: 10;
	filter: drop-shadow(6px 6px 0 rgb(0 0 0 /.4));
}

.program-category-nav-title{
	font-weight: 900;
	line-height: 1;
	.ja{
		font-size: clamp(0.75rem, 0.525rem + 1.13vw, 1.875rem); /* 12-30 */
	}
	.en{
		font-size: clamp(1.563rem, 1.3rem + 1.31vw, 2.875rem); /* 25-46 */
		margin-top: .2em;
	}
}

.program-category-nav-schedule{
	display: flex;
	margin-left: auto;
	font-family: var(--barlow);
	line-height: 1;
	border: solid 1px #000000;
	letter-spacing: .05em;
	div{
		display: inline-block;
		text-align: center;
		min-width: 80px;
		padding: .3em .7em .2em .7em;
		font-size: clamp(0.875rem, 0.8rem + 0.38vw, 1.25rem); /* 14-20 */
	}
	.num{
		font-size: clamp(1.688rem, 1.463rem + 1.13vw, 2.813rem); /* 27-45 */
		margin-right: .1em;
	}
	.date{
		background-color: #fff;
	}
	.hour{
		background-color: #000;
		color: #fff;
	}
}

.program-btn{
	min-width: 260px;
	padding: .4em .3em .3em .3em;
}

.program-master-nav{
	width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2em 1em;
	margin-bottom: 3em;
}

.program-master-nav-item{
	display: flex;
	align-items: flex-end;
	border-bottom:solid 1px var(--text-color);
	padding-bottom: 1em;
	counter-increment: number;
	border-bottom: 1px solid #000;
	padding: 0 0 1.5em 0;
	gap: 0 1em;
	&::before{
		content: counter(number);
		display: inline-block;
		font-size: clamp(2.438rem, 2.112rem + 1.63vw, 4.063rem); /* 39-65 */
		line-height: .9;
		font-weight: 900;
	}
}

.program-master-nav-item-inner{
	font-size: clamp(0.688rem, 0.6rem + 0.44vw, 1.125rem); /* 11-18 */
	line-height: 1;
	font-weight: 900;
	.main-theme{
		display: inline-block;
		font-size: clamp(0.938rem, 0.813rem + 0.63vw, 1.563rem); /* 15-25 */
		margin-top: .25em;
		&::before,
		&::after{
			content: "|";
			display: inline;
		}
		&::before{
			margin-right: .3em;
		}
		&::after{
			margin-left: .3em;
		}
	}
}

.program-master-theme{
	margin-left: .3em;
	padding-right: .1em;
	&::before,
	&::after{
		content: "|";
		display: inline;
	}
	&::before{
		margin-right: .3em;
	}
	&::after{
		margin-left: .3em;
	}
}

@media (max-width: 768px) {
	.program-nav-wrapper{
		grid-template-columns: 1fr;
		margin-bottom: 6em;
	}
	.program-nav-container{
		padding: 3em 1em 2em 1em;
		&.two{
			grid-template-columns: 1fr 32px 1fr;
		}
	}
	.program-nav-container.trial{
		.program-nav-box{
			width: 40%;
			margin: auto;
		}
	}

	.program-nav-step{
		min-width: 100px;
	}
	.program-article{
		grid-template-columns: 1fr;
	}
	.program-article-info{
		grid-column: 1/1;
		padding: 3em 2em;
	}
	.program-btn{
		display: table;
		margin: auto;
	}
	.program-article-header{
		grid-template-columns: 1fr 90px;
	}
	.program-article-time{
		width: 80px;
		.num{
			font-size: 2em;
		}
	}
	.program-article-image{
		grid-column: 1/1;
		order: 3;
		aspect-ratio: 5/4;
	}
	.program-article-detail{
		.content{
			grid-template-columns: 1fr;
			grid-template-rows: auto;
			grid-auto-flow: row;
			padding: 0 2em 2em 2em;
		}
	}
	.program-article-detail-caption{
		justify-self: start;
	}
	.program-category-wrapper{
		&+&{
			margin-top: 1em;
		}
	}
	.program-batch{
		width: 90px;
		margin-right: 1.5em;
	}
	.program-category-nav-schedule{
		flex-direction: column;
		div{
			min-width: 70px;
			padding: .2em .5em .1em .5em;
		}
	}
	.program-master-nav{
		grid-template-columns: repeat(2, 1fr);
	}
}

.message{
	position: relative;
	padding-bottom: 0;
}

.message .section-heading{
	z-index: 1;
}

.message-content{
	display: flex;
	justify-content: flex-end;
	position: relative;
}

.message-content-inner{
	width: 50%;
	z-index: 1;
}

.message-tagline{
	position: relative;
	font-size: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
	font-weight: 900;
	line-height: 1.5;
	margin-bottom: 3em;
	z-index: 10;
}

.message-profile{
	padding-bottom: 5em;
}

.message-profile-name{
	line-height: 1.3;
	font-weight: 900;
	.name{
		font-size: clamp(1.25rem, 1.125rem + 0.63vw, 1.875rem);
		margin-top: 4px;
	}
	margin-bottom: 2em;
}

.message-profile-text{
	width: 100%;
	/* max-width: 500px; */
	margin-bottom: 3em;
	font-weight: 400;
}

.message-profile-image{
	position: absolute;
	width: 45%;
	aspect-ratio: 1/1;
	left: 1.5em;
	bottom: 0;
	z-index: 1;
	overflow: hidden;
	.portlate{
		position: absolute;
		width: auto;
		height: 100%;
		bottom: 0;
		right: 1.5em;
	}
}

.message-profile-logo{
	position: absolute;
	width: 100%;
	right: 0;
	top: 0;
	z-index: 0;
}

.message-details{
	position: relative;
	z-index: 0;
	&::details-content {
		content-visibility: unset;
		display: block grid;
		@media(prefers-reduced-motion: no-preference) {
			transition-duration: 300ms;
			transition-property: grid-template-rows;
			transition-property: grid-template-rows, -ms-grid-rows;
		}
	}
	&:not([open])::details-content {
		grid-template-rows: 0fr;
	}
	&[open]::details-content {
		grid-template-rows: 1fr;
	}
}

.message-btn{
	position: absolute;
	bottom: 3em;
	z-index: 200;
	border: none;
}

.message-details-content{
	position: relative;
	z-index: 10;
	font-size: clamp(0.938rem, 0.9rem + 0.19vw, 1.125rem); /* 15-18 */
	line-height: 2;
	padding-top: 5em;
	padding-bottom: 5em;
	.heading{
		font-size: var(--fz-content-heading);
		margin-bottom: 1em;
	}
	h2{
		font-size: clamp(1.25rem, 1.081rem + 0.85vw, 1.875rem); /* 20-30 */
		font-weight: 900;
		margin-bottom: 1em;
	}
	h3{
		font-size: clamp(0.938rem, 0.853rem + 0.42vw, 1.25rem); /* 15-20 */
		font-weight: 900;
		margin-bottom: 1em;
	}
	p+h3{
		margin-top: 2em;
	}
	p+p{
		margin-top: 2em;
	}
	position: relative;
	&::before{
		content: '';
		position: absolute;
		display: block;
		width: 100%;
		height: 100%;
		background-image: url(../images/hero_pc.jpg);
		background-repeat: no-repeat;
		background-size: cover;
		background-position: top right;
		background-blend-mode: hard-light;
		filter: blur(5px);
		opacity: .15;
		z-index: 2;
		top: 0;
		left: 0;
	}
	&::after{
		content: '';
		position: absolute;
		display: block;
		width: 100%;
		height: 100%;
		z-index: 1;
		background-image: var(--wds-gradient-45);
		top: 0;
		left: 0;
	}
}

.message-details-content-inner{
	position: relative;
	z-index: 100;
}

@media (max-width: 768px) {
	.message-content{
		position: static;
	}
	.message-content-inner{
		width: 100%;
	}
	.message-tagline{
		/* margin-top: 3em; */
	}
	.message-profile{
		position: relative;
		padding-bottom: 0;
	}
	.message-btn{
		bottom: -1.5em;
		left: 50%;
		translate: -50% 0;
		z-index: 100;
	}
	.message-profile-text{
		width: 100%;
	}
	.message-profile-image{
		position: relative;
		width: 100%;
		right: 0;
		bottom: 0;
		z-index: 1;
		overflow: hidden;
	}
	.message-profile-logo{
		width: 300%;
		right: 0;
		top: auto;
		bottom: 20%;
	}
	.message-details{
		&::before{
			background-position: right 20% top;
		}
	}
	.message-content-box{
		position: relative;
		z-index: 100;
	}
}

/* voice */

.voice{
	background-color: var(--wds-gray-l);
	min-height: 680px;
}

.voice .section-heading{
	z-index: 10;
	pointer-events: none;
}

.voice-slide-wrapper{
	width: 100%;
	overflow-x: hidden;
}

.swiper{
	z-index: 0;
	width: 120%;
	translate: -10% 0;
}

.swiper-wrapper{
}

.swiper-slide{
	width: 100%;
}

.swiper-pagination{
	position: static;
	padding: 0 .5em;
}

.swiper-button-next svg,
.swiper-button-prev svg {
	display: none;
}

.swiper-button-next,
.swiper-button-prev{
	position: static;
	width: 22px;
	height: 44px;
	margin: 0!important;
}

.swiper-button-next::before,
.swiper-button-prev::before{
	content: '';
	display: inline-block;
	width: 100%;
	height: 100%;
	background-color: #000;
}

@media (any-hover: hover) {
	.swiper-button-next:hover::before,
	.swiper-button-prev:hover::before{
		background-color: var(--wds-yellow);
	}
}

.swiper-button-prev::before{
	clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.swiper-button-next::before{
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.voice-slide-thumb{
	position: relative;
	width: 100%;
	aspect-ratio: 4/3;
	overflow: hidden;
	background-image: url('../images/voice-thumb-bg.svg');
	background-position: center;
	background-size: cover;
	border-radius: 10px;
	img{
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center 10%;
	}
}

.voice-slide-title{
	position: absolute;
	display: flex;
	align-items: flex-end;
	width: 100%;
	height: 55%;
	font-size: clamp(0.938rem, 0.838rem + 0.5vw, 1.438rem); /* 15-23 */
	line-height: 1.3;
	font-weight: 900;
	z-index: 1;
	left: 0;
	bottom: 0;
	padding: 1em 2em;
	color: #ffffff;
	filter: drop-shadow(2px 2px 6px rgb(0 0 0 /.3));
	background: linear-gradient(180deg,rgb(0 0 0 /0) 0%, rgb(0 0 0 /.5) 100%);
}

.swiper-slide-next {
	/* background-color: #f00; */
}

.swiper-ui-wrapper{
	display: flex;
	justify-content: flex-end;
	padding-right: 10em;
	padding-bottom: 3em;
}

.swiper-ui-inner{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	max-width: 540px;
}

.swiper-pagination-bullet{
	position: relative;
	margin: 0 1em!important;
	opacity: 1!important;
}

.swiper-pagination-bullet-active{
	background-color: #000;
	&::after{
		position: absolute;
		content: '';
		display: block;
		width: 300%;
		aspect-ratio: 1/1;
		background-color: var(--wds-green);
		top: -100%;
		left: -100%;
		z-index: -1;
		border-radius: 50%;
	}
}

.voice-slide-data{
	width: 100%;
	padding: 1em;
}

.voice-slide-affiliation{
	font-size: var(--fz-content-heading);
	line-height: 1.2;
}

.voice-slide-name{
	margin-top: .5em;
	line-height: 1;
}

@media (max-width: 768px) {
	.swiper-ui-wrapper{
		display: none;
	}
}

/* reports */

.reports{
	background-color: var(--wds-gray-l);
	padding-top: 10em;
}

.reports .section-inner{
	max-width: calc(1200px + 2em);
}

.reports .section-heading{
	margin-left: 1em;
}

.reports-grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px 64px;
}

.reports-article{
	position: relative;
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	gap: 1em;
	border-radius: .5em;
	padding: .7em 1em 1em 1em;
	scale: 1;
	transition: background-color .3s var(--easeoutexpo), filter .2s var(--easeoutexpo), scale .4s var(--easeoutexpo);;
}

.reports-article-inner{
	display: contents;
}

.reports-title{
	font-size: var(--fz-content-heading);
	line-height: 1.4;
}

.reports-summary{
	font-weight: 700;
	line-height: 1.6;
}

.reports-thumb{
	width: 100%;
	aspect-ratio: 5/3;
	object-fit: cover;
}

.reports-btn-wrapper{
	width: 100%;
	padding: 0 1em;
	display: flex;
	justify-content: flex-end;
	margin-top: 2em;
}

@media (any-hover: hover) {
	.reports-article:hover{
		background-color: var(--wds-gray-l);
		scale: 1.05;
		filter: drop-shadow(2px 2px 6px rgb(0 0 0 /.1));
	}
}

@media (max-width: 768px) {
	.reports-grid{
		grid-template-columns: 1fr;
	}
	.reports-article{
		padding: 0;
	}
	.reports .section-heading{
		margin-left: 0;
	}
}

@media (min-width: 1920px) {
	.reports .section-inner{
		max-width: calc(1920px + 2em);
	}
}

/* book */

.book{
	position: relative;
	background-color: #323232;
	color: #fff;
}

.book-wrapper{
	width: 50%;
	max-width: 580px;
	padding-right: 6em;
}

.book-title{
	font-size: var(--fz-content-heading);
	line-height: 1.5;
}

.book-author{
	margin-top: 1em;
}

.book-text{
	font-size: clamp(0.75rem, 0.733rem + 0.08vw, 0.813rem); /* 12-13 */
	margin-top: 2em;
	p+p{
		margin-top: 1em;
	}
}

.book-image{
	position: absolute;
	top: 0;
	right: 0;
	width: 46%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 768px) {
	.book{
		padding-bottom: 0;
	}
	.book-wrapper{
		width: 100%;
		margin-bottom: 6em;
	}
	.book-image{
		position: static;
		width: 100%;
		height: auto;
		aspect-ratio: 1/1;
	}
}

/* faq */

.faq{
	/* background-color: var(--wds-gray-l); */
	padding-bottom: 50vh;
}

.faq-list{
	width: 100%;
	max-width: 980px;
	border-top: 1px solid #000;
	font-weight: 500;
}

.faq-item{
	counter-increment: number;
	border-bottom: 1px solid #000;
	padding: 2.5em 0;
	summary{
		display: grid;
		grid-template-columns: calc(2em + 3%) 1fr  40px;
		&::before{
			content: 'Q'counter(number);
			font-weight: 900;
		}
	}
}

.faq-details .marker{
	justify-self: end;
	position: relative;
	display: block;
	width: 50%;
	aspect-ratio: 1/1;
	border: 1px solid #000;
	border-radius: 50%;
	&::before,
	&::after{
		position: absolute;
		top: 50%;
		left: 50%;
		translate: -50%;
		content: '';
		display: block;
		width: 50%;
		height: 1px;
		background-color: #000;
	}
	&:after{
		rotate: 90deg;
		transition: rotate 0.5s var(--easeoutexpo);
	}
}

.faq-details[open] .marker{
	&:after{
		rotate: 180deg;
	}
}

.faq-content{
	display: grid;
	grid-template-columns: calc(2em + 3%) 1fr 40px;
	padding-top: 1em;
	&::before{
		content: 'A'counter(number);
		font-weight: 900;
	}
}

.faq-details{
	summary{
		background-image: linear-gradient(#fff, #fff);
		background-size: 100% 0;
		background-position: 0 50%;
		align-items: center;
		background-repeat: no-repeat;
		transition: background-size 0.3s var(--easeoutexpo);
	}
	&::details-content {
		content-visibility: unset;
		display: block grid;
		@media(prefers-reduced-motion: no-preference) {
			transition-duration: 300ms;
			transition-property: grid-template-rows;
			transition-property: grid-template-rows, -ms-grid-rows;
		}
	}
	&:not([open])::details-content {
		grid-template-rows: 0fr;
	}
	&[open]::details-content {
		grid-template-rows: 1fr;
	}
}

@media (any-hover: hover) {
	.faq-details summary:hover{
		background-size: 100% 70%;
	}
}

@media (min-width: 1920px) {
	.faq-list{
		width: 80%;
		max-width: 1440px;
	}
}

@media (max-width: 768px) {
}

.contact-bg{
	background: linear-gradient(0deg, var(--wds-gray-l) 0%, var(--wds-gray-l) 30%, var(--wds-gray-l) 100%);
}

.home-contact{
	/* position: relative; */
	/* padding: 50vh 0; */
	/* background: var(--wds-gradient-45); */
	/* background-color: var(--wds-gray-d); */
	color: var(--text-gray);
	padding-bottom: 30vh;
	/* &:before{
		position: absolute;
		content: '';
		display: block;
		top: 0;
		left: 0;
		width: 100%;
		height: 20em;
		background: linear-gradient(0deg,rgba(214, 214, 214, 0) 20%, rgba(214, 214, 214, 1) 100%);
	} */
}

.home-contact-content{
	padding-top: 10em;
	font-weight: 900;
	text-align: center;
}

.home-contact-tagline{
	font-size: clamp(1.563rem, 1.5rem + 0.31vw, 1.875rem); /* 20-30 */
	line-height: 1.5;
	margin-bottom: 1em;
}

.home-contact-text{
	font-size: clamp(0.938rem, 0.875rem + 0.31vw, 1.25rem); /* 15-20 */
	margin-bottom: 3em;
}

.home-contact-links{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1em;
	.menu-item .link-btn{
		width: 400px;
		font-size: clamp(0.938rem, 0.751rem + 0.93vw, 1.625rem); /* 15-26 */
	}
}

.home-contact-logo{
	width: 100%;
}

@media (max-width: 768px) {
	.home-contact-links{
		.menu-item{
			width: 100%;
			.link-btn{
				width: 100%;
			}
		}
	}
}

.split{
	width: 100%;
	min-height: calc(100vh - 120px);
	padding-bottom: 10em;
	overflow: hidden;
}

@media (max-width: 768px) {
	.split{
		position: relative;
		min-height: calc(100vh - 80px);
	}
	svg.split-svg {
		position: absolute;
		max-width: none;
		width: auto;
		height: 80%;
		top: 0;
		left: 50%;
		translate: -35% 0;
	}
}

.single{
	background-color: var(--wds-gray-l);
}

.single-headline{
	font-size: var(--fz-section-heading-en);
}

.single-content{
	padding: 6em 0;
}

.single-voice .section-heading{
	margin-top: 6em;
	margin-bottom: 0;
}

.voice-single-content{
	width: 100%;
}

.section-heading .en{
	.single-posttype{
		font-size: .4em;
		margin-bottom: .2em;
	}
	.name{
		font-size: .75em;
	}
}

.voice-single-primary{
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	margin-top: -.5em;
}

.voice-single-portrait{
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	/* background: var(--wds-gradient-45); */
	width: 100%;
	background-image: url('../images/voice-port-bg.svg');
	background-position: center;
	background-size: cover;
	img{
		width: auto;
		height: 100%;
		object-fit: cover;
	}
}

.voice-single-summary{
	width: 100%;
	padding: 4em 4rem 0 4rem;
	max-width: 640px;
	align-self: flex-end;
	/* min-width: 0; */
}

.voice-single-catch{
	font-size: clamp(1.25rem, 1.125rem + 0.63vw, 1.875rem);/* 20-30 */
	line-height: 1.7;
	font-weight: 900;
	margin-bottom: 2em;
}

.voice-single-affiliation-ja{
	font-size: var(--fz-content-heading);
	font-weight: 700;
}

.voice-single-name-ja{
	margin-bottom: 4em;
}

.voice-single-summary-heading{
	font-size: var(--fz-content-heading);
	font-weight: 900;
	color: #ffffff;
	background-color: #000;
	padding: 0 1em;
	margin-top: 1.5em;
	margin-bottom: .5em;
}

.voice-single-summary-text{
	font-weight: 700;
}

.voice-interview-wrapper{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 4em;
	margin-top: 8em;
}

.voice-interview-box{
	font-weight: 700;
	align-self: end;
	&::before{
		content: '';
		display: block;
		width: 3em;
		height: 1px;
		background-color: var(--text-color);
		margin-bottom: 2em;
	}
}

.voice-interview-box:nth-child(even){
	padding-top: 10em;
}

.voice-interview-box:nth-child(odd){
	padding-bottom: 10em;
}

.voice-interview-q{
	font-size: var(--fz-content-heading);
	line-height: 1.5;
	margin-bottom: 1em;
}

@media (max-width: 768px) {
	.single-voice .section-heading{
		margin-top: 3em;
	}
	.section-heading .en{
		.single-posttype{
			display: inline-block;
			font-size: 1em;
			margin-bottom: 0;
			&::after{

			}
		}
		.name{
			font-size: 1em;
		}
	}
	.voice-single-affiliation-en{
		display: inline-block;
	}
	.voice-single-primary{
		grid-template-columns: 1fr;
	}
	.voice-single-summary{
		padding-left: 6em;
		padding-right: 2em;
	}
	.voice-interview-wrapper{
		display: grid;
		grid-template-columns: 1fr;
		margin-top: 4em;
	}
	.voice-interview-box{
		padding-top: 0!important;
		padding-bottom: 3em!important;
	}
}

.contact-form-list-item {
	width: 100%;
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 12px 24px;
	padding: 18px 0;
	/* border-top: 1px solid #fff; */
}

.contact-form-list-item:first-child{
	padding-top: 0;
}

.contact-form-list-item .heading {
	font-size: clamp(0.75rem, 0.675rem + 0.38vw, 1.125rem);/* 12-18 */
	font-weight: 700;
}

.contact-form-list-item .form {
}

.contact-form-list-item .form input[type=text],
.contact-form-list-item .form input[type=email],
.contact-form-list-item .form input[type=tel] {
	width: 100%;
	height: 2em;
	padding: 24px 1em;
	border: solid 1px #fff;
	border-radius: 100px;
	font-size: 16px;
}

.contact-form-list-item .form textarea {
	width: 100%;
	padding: 12px;
	border: solid 1px #fff;
	border-radius: 24px;
}

.contact-form-list-item .privacy {
	background-color: #fff;
	padding: 18px 24px;
	border-radius: 24px;
	a{
		text-decoration: underline;
	}
	p+p{
		margin-top: 1em;
	}
}

.contact-form-list-item .form .button input[type=submit] {
	border: none;
	/* background-color: #000;
	color: #fff*/
	line-height: 1;
	min-width: 280px;
	padding: 18px 48px;
	font-size: clamp(0.75rem, 0.675rem + 0.38vw, 1.125rem);/* 12-18 */
	font-weight: 700;
	text-align: center;
	cursor: pointer;
	&::before{
		content: '';
		position: absolute;
		display: inline-block;
		width: 30px;
		height: 30px;
		clip-path: polygon(0 0, 100% 50%, 0 100%);
		background-color: var(--text-color);
	}
}

@media (any-hover: hover) {
	.contact-form-list-item .form .button input[type=submit]:hover{
		background: #000!important;
	}
}

.contact-form-list-item .form .button {
	padding-left: 280px;
}

.contact-form-list-item .wpcf7-radio {
	display: flex;
	flex-direction: column;
}

.contact-form-list-item .form select {
	width: 100%;
	padding: 12px 16px;
	border: none;
	border-radius: 100px;
}

.contact-form-list-item .wpcf7-checkbox{
	display: inline-block;
	font-size: clamp(0.75rem, 0.675rem + 0.38vw, 1.125rem);
	margin-top: 1em;
}

.contact-form-list-item .wpcf7-list-item{
	margin-left: 0;
}

/* .required{
	font-size: .8em;
	color: #ff6666;
} */

.type .wpcf7-form-control-wrap .wpcf7-radio{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, auto);
	align-items: start;
	grid-auto-flow: column;
	gap: .5em;
	font-size: clamp(0.75rem, 0.675rem + 0.38vw, 1.125rem);/* 12-18 */
	font-weight: 700;
}

@media (max-width: 768px) {
	.contact-form-list-item {
		grid-template-columns: 1fr;
		padding: 8px 0 18px 0;
	}
	.contact-form-list-item .form .button {
		padding-left: 0;
	}
	.type .wpcf7-form-control-wrap .wpcf7-radio{
		grid-template-columns: 1fr;
		grid-template-rows: unset;
		grid-auto-flow: row;
	}
}

.download-link {
	display: inline-block;
	margin-top: 2em;
	padding: 1em 3em;
	line-height: 1.4;
	color: #ffffff;
	background-color: #000000;
	text-decoration: none;
	border-radius: 120px;
	text-align: center;
}

.download-link:focus {
  background-color: #555;
}

@media (hover: hover) and (pointer: fine) {
  .download-link:hover {
    background-color: #555;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

.contact-caption{
	font-size: var(--font-size-cap);
	text-align: right;
}

.dlm-download-link{
	position: relative;
	display: inline-block;
	line-height: 1;
	font-size: clamp(0.938rem, 0.751rem + 0.93vw, 1.625rem); /* 15-26 */
	border-radius: 3em;
	font-weight: 900;
	overflow: hidden;
	color: #000;
	vertical-align: middle;
	min-width: 180px;
	background-image: var(--wds-gradient-45);
	padding: 1em 3em;
	margin-top: 2em;
}

@media (any-hover: hover) {
	.dlm-download-link:hover{
		color: #fff;
		background-image: none;
		background-color: #000;
	}
}

/* @import url(layout.css); */

/* @import url(single.css); */