/*! 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}

/* =====================================
   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(1.25rem, 1rem + 1.25vw, 2.5rem); /* 20-40 */
	--fz-section-heading-ja: clamp(0.938rem, 0.775rem + 0.81vw, 1.75rem); /* 15-28 */

	--fz-content-heading: clamp(1.063rem, 0.9rem + 0.81vw, 1.875rem); /* 17-30 */

	--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: #000000;
	--text-gray: #323232;
	--was-green:  #55D5D8;
	--was-orange: #F9C67C;
	--was-gray-l: #F5F6F6;
	--was-gray-d: #D6D6D6;
	--was-gradient: linear-gradient(90deg, var(--was-orange) 10%, var(--was-green));
	--was-gradient-45: linear-gradient(45deg, var(--was-orange) 10%, var(--was-green));
	--was-gradient-text: linear-gradient(90deg, var(--was-orange) 6%, var(--was-green) 40%);

	--was-gradient-line: var(--was-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: 700;
	/* letter-spacing: .06em; */
	font-display: swap;
	font-feature-settings: 'palt';
	background-color: #fff;
	/* padding-top: 120px; */
	/* padding-bottom: 300px; */
}

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{
	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(--was-gray-d); */
	background-image: var(--was-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;
	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(--was-orange);
	}
	&.green{
		background-color: var(--was-green);
	}
	&.gradient{
		background: var(--was-gradient);
		color: #fff;
	}
}

.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: #fff;
			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%;
		}
	}
}

.gradient-text{
	background: var(--was-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;}
		}
		&.contact{
			&::before{
				content: '\e900';
			}
		}
		&.dl{
			&::before{
				content: '\e901';
			}
		}
	}
	.fix-w{
		width: auto;
		a.link-btn{
			width: 100%;
		}
	}
}

/* header */

.header{
	width: 100%;
	min-height: 120px;
	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%;
	max-width: 1200px;
	padding: 0 1.5em 0 2em;
}

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

.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(--was-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;
		}
	}
	.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(--was-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{
		min-height: 80px;
	}
	.header-logo{
		img{
			width: 64px;
		}
	}
	.header-inner{
		padding: 0 2em;
	}
	.global-nav{
		padding: 100px 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{
	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{
		font-size: var(--fz-section-heading-en);
		line-height: 1;
		letter-spacing: .05em;
		clip-path: inset(0 0 0 0);
	}
	.ja{
		font-size: var(--fz-section-heading-ja);
		line-height: 1.2;
		clip-path: inset(0 0 0 0);
	}
}

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

/* 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(--was-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);
}

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

.logo-wrapper{
	width: 100%;
}

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

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

.hero-headline{
	font-size: clamp(2.188rem, 1.95rem + 1.19vw, 3.375rem); /* 35-54 */
	line-height: 1.7;
	letter-spacing: .08em;
	font-weight: 900;
	margin-bottom: 18px;
}

.hero-tagline{
	font-size: clamp(1.313rem, 1.15rem + 0.81vw, 2.125rem); /* 21-34 */
	line-height: 1.7;
	font-weight: 400;
	letter-spacing: .08em;
	margin-bottom: 32px;
	margin-left: 2px;
}

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

.hero-icon{
	width: 20%;
	max-width: 130px;
	min-width: 90px;
}

.hero-header-bg{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
	&::after{
		content: '';
		display: block;
		position: absolute;
		width: 50vw;
		height: 100vh;
		top: 0;
		left: 0;
		background: var(--was-gradient-45);
		clip-path: polygon(0 0, 100% 0%, 35% 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: bottom;
	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{
		padding: 1em;
	}
	.hero-icon-wrapper{
		margin-top: 0;
	}
	.hero-header-bg{
		height: 60vh;
		&::after{
			width: 100vw;
			height: 60vh;
			background: var(--was-gradient);
			clip-path: polygon(0 0, 100% 0, 100% 30%, 0% 100%);
		}
	}
	.hero-headline{
		margin-bottom: .2em;
		line-height: 1.5;
	}
	.hero-tagline{
		margin-bottom: 1em;
	}
	.hero-icon-wrapper{
		margin-left: .2em;
		gap: 18px;
	}
	.hero-icon{
		min-width: 60px;
	}
}

.news{
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	width: 100%;
	max-width: 1920px;
	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: 27px;
	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 (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-color: var(--was-gray-d);
	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);
}

.brand-tagline{
	font-size: var(--fz-brand-tagline);
	font-weight: 900;
	line-height: 1.5;
	margin-bottom: 1em;
	text-align: center;
	span{
		white-space: nowrap;
	}
}

.brand-message{
	font-size: var(--fz-brand-message);
	text-align: center;
	p+p{
		margin-top: 1em;
	}
}

.brand-bg{
	position: relative;
	overflow: hidden;
	background-color: var(--was-gray-d);
}

.brand-bg-content{
	position: absolute;
	top: 0;
	width: 100%;
	height: 100vh;
	background-image: linear-gradient(45deg,rgba(249, 198, 124, 1) 0%, rgba(85, 213, 216, 1) 30%, rgba(85, 213, 216, 1) 60%, rgba(249, 198, 124, 1) 100%);
	background-size: 200% 100%;
	background-repeat: no-repeat;
	background-position: 100% 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);
	}
	svg#brand-logo{
		bottom: 0;
		left: -25%;
		height: 80vh;
	}
}

/* research */

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

.research-item{
	counter-increment: number;
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 4;
	gap: 1em;
	justify-content: start;
	align-items: start;
	&:before{
		content: counter(number);
		font-family: var(--gotham);
		font-size: 3.5em;
		line-height: 1;
		text-align: center;
	}
}

.research-heading{
	font-size: var(--fz-content-heading);
	font-weight: 900;
	line-height: 1.4;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: .6em 1em;
	.nw{
		display: inline-block;
	}
}

.research-text{

}

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

/* / research */

/* 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-contents{
	display: grid;
	width: 100%;
	font-family: var(--gotham);
	grid-template-columns: 1fr 1fr;
	align-items: flex-start;
	gap: 5em 10%;
}

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

.goals-circle{
	position: relative;
	width: 100%;
	aspect-ratio: 1/1;
	display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-sizing: border-box;
	counter-reset: number;
}

.goals-circle-text{
	background-color: rgb(255 255 255 /.3);
	width: 65%;
	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: 30%;
	aspect-ratio: 1/1;
	border-radius: 50%;
	background-color: rgb(255 255 255 /.8);
	--a2: calc(var(--a) * 1deg - 90deg);
	--x: calc(cos(var(--a2)) * 120%);
	--y: calc(sin(var(--a2)) * 120%);
	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.813rem, 0.725rem + 0.44vw, 1.25rem); /* 13-20 */
	}
	.ja{
		font-size: clamp(0.625rem, 0.525rem + 0.5vw, 1.125rem); /* 10-18 */
		margin-top: .2em;
	}
}

.goals-list{
	display: grid;
	grid-template-columns: 1fr;
	counter-reset: number;
	gap: 4em;
}

.goals-item{
	display: grid;
	grid-template-columns: 2em 1fr;
	gap: 10%;
	counter-increment: number;
	&:before{
		content: counter(number);
		font-size: var(--fz-goals-heading-num);
		line-height: 1;
		text-align: center;
		margin-top: -.15em;
	}
}

.goals-item-inner{}

.goals-heading{
	line-height: 1;
	position: relative;
	.ja{
		position: relative;
		font-size: var(--fz-goals-heading-ja);
		font-weight: 900;
		z-index: 10;
	}
	.en{
		position: absolute;
		font-size: var(--fz-goals-heading-en);
		text-transform: uppercase;
		color: #fff;
		top: -.5em;
		left: 1em;
		z-index: 1;
		clip-path: inset(0 0 0 0);
		filter: drop-shadow(0 0 3px rgb(80 80 80 /.2));
	}
}

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

@media (max-width: 768px) {
	.goals{
		&::after{
			height: calc(10em + 60px);
			background: linear-gradient(0deg,rgba(245, 246, 246, 1) 70px, rgba(245, 246, 246, 0) 100%);
		}
	}
	.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: 1em;
	}
	.goals-item{
		grid-template-columns: 1fr;
		&:before{
			display: none;
		}
	}
	.goals-heading{
		.ja{
			font-size: 2em;
			margin-left: .2em;
		}
		.en{
			font-size: 1.5em;
			top: 1em;
			left: 1.5em;
			text-transform: none;
		}
		&:before{
			content: counter(number);
			font-size: 2.3em;
		}
	}
}

/* / goals */

/* assigments */

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

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

.assigments-heading{
	font-size: var(--fz-assigments-heading);
	line-height: 1.3;
	margin-bottom: .4em;
	span{
		white-space: nowrap;
	}
}

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

.assigments-item{
	display: grid;
	justify-content: start;
	align-items: start;
	width: 100%;
	min-height: 120px;
	font-size: clamp(0.875rem, 0.8rem + 0.38vw, 1.25rem); /* 14-20 */
	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(--was-gradient);
		background-position: 0 100%;
		background-size: 0% 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(--was-gray-l);
	padding-bottom: 0;
}

.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: 6px 0;
}

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

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

@media (max-width: 768px) {
	.leverage-grid{
		grid-template-columns: repeat(2, 1fr);
		gap: 2em 6%;
	}
}

/* program */

.program{
	padding-top: 0;
	/* background: var(--was-gradient-45); */
	background-color: var(--was-gray-l);
}

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

.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%;
	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{
	font-size: clamp(0.75rem, 0.65rem + 0.5vw, 1.25rem); /* 12-20 */
	font-weight: 900;
	line-height: 1.3;
}

.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(--was-gradient-45);
	}
	.hour{
		background-color: #000;
		.inner{
			margin-bottom: .5em;
		}
	}
	.num{
		font-size: 2.4em;
	}
}

.program-article-image{
	width: 100%;
	background-color: #000;
	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: 2em 6%;
		padding: 3em 3em 3em 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: var(--fz-content-heading);
	line-height: 1.3;
	margin-bottom: 1em;
	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(--was-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 */
	font-size: 1.3;
	margin-bottom: 2em;
	margin-left: 1.5em;
	list-style-type: "□ ";
	li+li{
		margin-top: .3em;
	}
}

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

.program-article-detail-list{
	list-style: disc;
	padding-left: 1.5em;
	li+li{
		margin-top: .3em;
	}
}

.program-article-detail-caption{
	align-self: flex-end;
}

@media (max-width: 768px) {
	.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;
	}
}

.message{
	background-color: var(--was-gray-l);
	padding-bottom: 0;
}

.message-content{
	position: relative;
}

.message-tagline{
	position: relative;
	font-size: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
	font-weight: 900;
	line-height: 1.5;
	margin-top: 2em;
	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: 50%;
	max-width: 500px;
	margin-bottom: 3em;
	font-weight: 400;
}

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

.message-details{
	background-image: var(--was-gradient-45), url(../images/message-bg.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-blend-mode: screen;
	&::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-details-content{
	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;
	}
	p+p{
		margin-top: 2em;
	}
}

@media (max-width: 768px) {
	.message-content{
		position: static;
	}
	.message-profile{
		position: relative;
		padding-bottom: 0;
	}
	.message-btn{
		position: absolute;
		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: 100%;
			right: 0;
			top: 10%;
		}
	}
	.message-details{
		background-position: right 15% top;
	}
}

/* faq */

.faq{
	background-color: var(--was-gray-d);
}

.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) {
}

.home-contact{
	position: relative;
	background: var(--was-gradient-45);
	color: var(--text-gray);
	&: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;
	text-align: center;
}

.home-contact-tagline{
	font-size: clamp(1.563rem, 1.5rem + 0.31vw, 1.875rem); /* 20-30 */
	font-weight: 900;
	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: 300px;
	}
}

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

.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: var(--was-gradient-45);
}

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

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

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

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

.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 12px;
	border: solid 1px #fff;
}

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

.contact-form-list-item .privacy {
	background-color: #fff;
	padding: 18px;
}

.contact-form-list-item .form .button input[type=submit] {
	border: none;
	background-color: #000;
	color: #fff;
	line-height: 1;
	padding: 18px 48px;
	cursor: pointer;
}

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

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

.contact-form-list-item .form select {
	width: 100%;
	padding: 12px 8px;
	border-color: #aaa;
}

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

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

.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);
	color: #fff;
	text-align: right;
}

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

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