@charset "UTF-8";
/*! kiso.css v1.2.2 | MIT License | https://github.com/tak-dcxi/kiso.css */
/* ======================================================
//  MARK: Universal
// ====================================================== */
*,
::before,
::after {
  /*
  * Includes `padding` and `border` in the element's specified dimensions.
  * It is highly recommended to set `box-sizing: border-box;` by default, as it makes styling much easier, especially when specifying `width: 100%;`.
  */
  box-sizing: border-box;
}

/* ======================================================
//  MARK: Document and Body Elements
// ====================================================== */
:where(:root) {
  /* In Safari, if `font-family` is not specified, a serif font is applied by default, so `sans-serif` is set as the default here. */
  font-family: sans-serif;
  /*
  * For accessibility, it is recommended to set the `line-height` to at least 1.5 times the text size within paragraphs.
  * @see https://waic.jp/translations/WCAG21/#visual-presentation
  */
  line-height: 1.5;
  /* Remove space when punctuation marks are adjacent, and also remove leading spaces in a line. */
  text-spacing-trim: trim-start;
  /* Improves readability by inserting a small space between Japanese and alphanumeric characters. */
  text-autospace: normal;
  /* Prevents misreading by applying strict line-breaking rules. */
  line-break: strict;
  /* Wraps English words mid-word. Specifying `anywhere` also prevents content from overflowing in layouts like `flex` or `grid`. */
  overflow-wrap: anywhere;
  /*
  * Mobile browsers have an algorithm that automatically adjusts font sizes to prevent text from becoming too small.
  * This controls the auto-adjustment feature to prevent unwanted resizing.
  */
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  /* Prevents layout shift caused by the appearance or disappearance of the scrollbar. */
  scrollbar-gutter: stable;
  /* Suppresses the tap highlight on iOS. */
  -webkit-tap-highlight-color: transparent;
}

:where(body) {
  /*
  * When creating a sticky footer, a minimum height is often required.
  * Setting the `min-block-size` to the dynamic viewport height ensures enough space for the footer.
  */
  min-block-size: 100dvb;
  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}

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

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

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

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

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

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

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

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

:where(ul, ol, menu) {
  /* The `padding-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  padding-inline-start: unset;
  /*
  * In Safari, using `list-style: none` prevents screen readers from announcing lists.
  * `list-style-type: ""` is used to hide markers without affecting accessibility.
  * @see https://matuzo.at/blog/2023/removing-list-styles-without-affecting-semantics
  */
  list-style-type: "";
}

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

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

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

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

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

:where(code, kbd, samp) {
  /*
  * Set a monospace font family referencing Tailwind.
  * @see https://tailwindcss.com/docs/font-family
  */
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* Font feature settings can have adverse effects on monospaced fonts, so their values are explicitly set to `initial` to prevent inheritance. */
  font-feature-settings: initial;
  font-variation-settings: initial;
  /* Resets the `font-size` specified in the UA stylesheet to allow inheritance. */
  font-size: unset;
  /*
  * Disables font ligatures for programming fonts (like Fira Code)
  * to prevent character combinations like `=>` from being rendered as a single symbol (e.g., `⇒`).
  */
  font-variant-ligatures: none;
}

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

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

@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:-moz-any-link) {
  /* The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: unset;
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
}
:where(a:any-link) {
  /* The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: unset;
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
}

/* ======================================================
//  MARK: Embedded content
// ====================================================== */
:where(img, svg, picture, video, canvas, model, audio, embed, object) {
  /* Automatically adjust block size based on content. */
  block-size: auto;
  /* Prevents overflow by setting the maximum width to `100%`. */
  max-inline-size: 100%;
  /* Prevents extra space from appearing at the bottom of the element. */
  vertical-align: bottom;
}

/* もともと上にiframe含まれていたが block-size: auto の指定があるとheight属性による指定ができなくなり、かつ、上書きもできなかったので直接修正 */
:where(iframe) {
  max-inline-size: 100%;
  vertical-align: bottom;
}

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

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

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

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

/* ======================================================
//  MARK: Forms
// ====================================================== */
:where(button, input, select, textarea),
::file-selector-button {
  /*
  * These elements are often styled with a border, so a `1px` border is applied by default for consistency.
  * This ensures readability even for unstyled elements.
  * When resetting, it's recommended to use `border-color: transparent` instead of `border: none` to account for forced color modes.
  */
  border-width: 1px;
  border-style: solid;
  /* These styles specified in the UA stylesheet are often unnecessary, so they are reset to allow for inheritance. */
  border-color: unset;
  border-radius: unset;
  color: unset;
  font: unset;
  letter-spacing: unset;
  text-align: unset;
}

:where(input:is([type=radio i], [type=checkbox i])) {
  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}

:where(input[type=file i]) {
  /* The `border` is often unnecessary, so it is reset here. */
  border: unset;
}

:where(input[type=search i]) {
  /* Remove the rounded corners of search inputs on macOS and normalize the background color. */
  -webkit-appearance: textfield;
}

@supports (-webkit-touch-callout: none) {
  :where(input[type=search i]) {
    /* normalize the background color on iOS. */
    background-color: Canvas;
  }
}
:where(input:is([type=tel i],
[type=url i],
[type=email i],
[type=number i]):not(:-moz-placeholder)) {
  /*
  * Certain input types need to maintain left alignment even in right-to-left (RTL) languages.
  * However, this only applies when the value is not empty, as the placeholder should be right-aligned.
  * @see https://rtlstyling.com/posts/rtl-styling#form-inputs
  */
  direction: ltr;
}
:where(input:is([type=tel i],
[type=url i],
[type=email i],
[type=number i]):not(:placeholder-shown)) {
  /*
  * Certain input types need to maintain left alignment even in right-to-left (RTL) languages.
  * However, this only applies when the value is not empty, as the placeholder should be right-aligned.
  * @see https://rtlstyling.com/posts/rtl-styling#form-inputs
  */
  direction: ltr;
}

:where(textarea) {
  /* The `margin-block` specified in Firefox's UA stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
  /* Allows vertical resizing for `<textarea>` elements. */
  resize: block;
}

:where(input:not([type=button i], [type=submit i], [type=reset i]),
textarea,
[contenteditable]) {
  /* Set to `no-autospace` because `text-autospace` can insert spaces during input, potentially causing erratic behavior. */
  text-autospace: no-autospace;
}

:where(button,
input:is([type=button i], [type=submit i], [type=reset i])),
::file-selector-button {
  /* The `background-color` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  background-color: unset;
}

:where(button,
input:is([type=button i], [type=submit i], [type=reset i]),
[role=tab i],
[role=button i],
[role=option i]),
::file-selector-button {
  /*
  * On iOS, double-tapping a button can cause zooming, which harms usability.
  * `touch-action: manipulation` is specified to disable zooming on double-tap.
  * Third-party plugins such as Swiper sometimes use div elements with these roles as buttons, since double-tapping a div can still trigger zooming, it's advisable to specify this property.
  */
  touch-action: manipulation;
}

:where(button:enabled,
label[for],
select:enabled,
input:is([type=button i],
[type=submit i],
[type=reset i],
[type=radio i],
[type=checkbox i]):enabled,
[role=tab i],
[role=button i],
[role=option i]),
:where(:enabled)::file-selector-button {
  /* Indicate clickable elements with a pointer cursor. */
  cursor: pointer;
}

:where(fieldset) {
  /*
  * Prevent fieldset from causing overflow.
  * Reset the default `min-inline-size: min-content` to prevent children from stretching fieldset.
  * @see https://github.com/twbs/bootstrap/issues/12359
  */
  min-inline-size: 0;
  /* The following default styles are often unnecessary, so they are reset. */
  margin-inline: unset;
  padding: unset;
  border: unset;
}

:where(legend) {
  /* The default `padding-inline` is often unnecessary, so it is reset. */
  padding-inline: unset;
}

:where(progress) {
  /* Resets the vertical alignment of the `<progress>` element to its initial value. */
  vertical-align: unset;
}

::-moz-placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}

::placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}

/* ======================================================
//  MARK: Interactive elements
// ====================================================== */
/* :where(summary) {
  // The default triangle marker is often unnecessary, so it is disabled.
  list-style-type: "";

  // Changing the cursor to a pointer clarifies the clickability of the element.
  cursor: pointer;
} 

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

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  /*
  * These elements can be easily displayed by explicitly setting their `display` property.
  * To prevent them from appearing when not in an open state, they are forcibly hidden.
  */
  display: none !important;
}

:where(dialog) {
  /*
  * The max width and height of a `<dialog>` element are typically determined by the design.
  * These UA stylesheet properties are reset as they can be obstructive, especially when trying to make the dialog full-screen.
  */
  max-inline-size: unset;
  max-block-size: unset;
}

:where(dialog)::backdrop {
  /* Normalize the background color of the `::backdrop` element. */
  background-color: oklch(0% 0 0deg/30%);
}

:where([popover]) {
  /*
  * While the UA stylesheet's `margin` for `<dialog>` elements is useful for centering with `inset: 0`,
  * but `margin` for `popover` elements is often obstructive as they frequently use Anchor Positioning.
  */
  margin: unset;
}

/* ======================================================
//  MARK: Focus Styles
// ====================================================== */
:where(:focus-visible) {
  /* Add space between the content and the focus outline. */
  outline-offset: 3px;
}

[tabindex="-1"]:focus {
  /* Prevent programmatically focused elements from displaying an outline unless they are naturally focusable. */
  outline: none !important;
}

/* ======================================================
//  MARK: Misc
// ====================================================== */
:where(:disabled, [aria-disabled=true i]) {
  /* Display the default cursor on disabled elements to reflect their non-interactive state. */
  cursor: default;
}

[hidden]:not([hidden=until-found i]) {
  /* Ensure that elements intended to be hidden are not displayed, improving clarity and layout control. */
  display: none !important;
}

:root {
  --color-ink: #333;
  --color-paper: #fff;
  --color-green: #94beb5;
  --color-green-light: #f0f7f6;
  --color-green-dark: #657e79;
  --color-blue: #193361;
  --color-sns: #657e79;
  --font-noto-sans: "Noto Sans JP", sans-serif;
  --base-font-size: 16px;
  --site-gutter: clamp(25px, 100vw * 30 / 760, 30px);
  --site-header-base-size: clamp(13px, 100vw * 16 / 1230, 16px);
  --site-header-height: calc(var(--site-header-base-size) * 90 / 16);
  --site-header-block-space: calc(var(--site-header-height) / 3);
  --site-header-zindex: 1000;
  --section-space-top-pc: 100px;
  --section-space-top-sp: 60px;
  --section-space-bottom-pc: 140px;
  --section-space-bottom-sp: 100px;
  --section-space-block-pc: var(--section-space-top-pc) var(--section-space-bottom-pc);
  --section-space-block-sp: var(--section-space-top-sp) var(--section-space-bottom-sp);
  --section-space-top: var(--section-space-top-pc);
  --section-space-bottom: var(--section-space-bottom-pc);
  --section-space-block: var(--section-space-block-pc);
  --radius: 12px;
}
@media screen and (max-width: 767.99px) {
  :root {
    --site-header-height: 80px;
    --site-header-block-space: 10px;
  }
}
@media screen and (max-width: 767.99px) {
  :root {
    --section-space-top: var(--section-space-top-sp);
    --section-space-bottom: var(--section-space-bottom-sp);
    --section-space-block: var(--section-space-block-sp);
  }
}

:root {
  font-family: var(--font-noto-sans, sans-serif);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-ink);
  background-color: var(--color-paper);
  scroll-behavior: smooth;
  scroll-padding-top: var(--site-header-height);
}

.Section {
  padding-block: var(--section-space-block);
}

.SectionGreen {
  padding-block: var(--section-space-block);
  background-color: var(--color-green-light);
}

.Container {
  --container-max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--site-gutter);
  max-width: calc(var(--container-max-width) + var(--site-gutter) * 2);
}

.Heading {
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  align-items: center;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.03em;
  margin-bottom: 60px;
}
.Heading::after {
  width: 3.5em;
  content: "";
  border-bottom: 2px solid var(--color-green);
}
@media screen and (max-width: 767.99px) {
  .Heading {
    margin-bottom: 50px;
    font-size: 24px;
  }
}

.Button {
  position: relative;
  display: inline-block;
  padding: 0.95em 3.75em;
  font-size: 100%;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-green);
  background-color: #fff;
  border: 2px solid var(--color-green);
  border-radius: 1.8em;
  transition-property: color, background-color;
  transition-duration: 0.1s;
}
.Button::after {
  --size: 1.5em;
  position: absolute;
  top: calc(50% - var(--size) / 2);
  right: 0.8em;
  width: var(--size);
  height: var(--size);
  content: "";
  background-color: currentcolor;
  -webkit-mask: url("../icons/disc-arrow-right.svg") 0 0/100% 100% no-repeat;
          mask: url("../icons/disc-arrow-right.svg") 0 0/100% 100% no-repeat;
}
.Button:where(:hover, :focus) {
  transition-duration: 0.2s;
  color: #fff;
  background-color: var(--color-green);
}

@media screen and (max-width: 767.99px) {
  .u-sp-hidden {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .u-pc-hidden {
    display: none !important;
  }
}

@keyframes inview-fadein {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
[data-inview]:not([data-inview-animation=false]) {
  animation-name: inview-fadein;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-play-state: paused;
}
[data-inview]:not([data-inview-animation=false])[data-inview-in] {
  animation-play-state: running;
}
@media (prefers-reduced-motion: reduce) {
  [data-inview] {
    animation: none !important;
  }
}

.SiteHeaderSentinel {
  height: calc(var(--site-header-block-space) * 2);
  margin-bottom: calc(var(--site-header-block-space) * -1);
}

.SiteHeader {
  position: sticky;
  top: 0;
  z-index: 1000;
  margin-bottom: var(--site-header-block-space);
  padding-inline: var(--site-gutter);
  height: var(--site-header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background-color: var(--color-paper);
  box-shadow: 0 4px 12px 0 rgb(0, 0, 0, calc(0.1 * var(--shadow-param)));
}
@media screen and (max-width: 767.99px) {
  .SiteHeader {
    padding-inline: 18px 12px;
  }
}

.SiteHeaderLogo {
  aspect-ratio: 386/82;
  width: calc(var(--site-header-base-size) * 386 / 16);
  height: auto;
}
.SiteHeaderLogo a {
  display: block;
  width: 100%;
  height: 100%;
  will-change: transform;
  transform-origin: left center;
  scale: calc(1 - var(--logo-shrink-param) * 0.25);
}
.SiteHeaderLogo a img {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767.99px) {
  .SiteHeaderLogo {
    width: 270px;
  }
  .SiteHeaderLogo a {
    scale: 1;
  }
}

@media screen and (max-width: 1000px) {
  .SiteHeaderNav {
    display: none;
  }
}
.SiteHeaderNav > ul {
  font-size: var(--site-header-base-size);
  --gap: 2.3em;
  display: flex;
  gap: var(--gap);
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
  font-weight: bold;
}
@media screen and (max-width: 1300px) {
  .SiteHeaderNav > ul {
    --gap: 1.5em;
  }
}
.SiteHeaderNav > ul :where(a, button) {
  position: relative;
  border: none;
  display: block;
  padding: 0;
  color: inherit;
  text-decoration: none;
}
.SiteHeaderNav > ul :where(a, button):where(a:not(.contact)) {
  transition: color 0.1s;
}
.SiteHeaderNav > ul :where(a, button):where(a:not(.contact)):where(:hover, :focus) {
  transition-duration: 0.2s;
  color: var(--color-green-dark);
}
.SiteHeaderNav > ul a.contact {
  padding: 0.625em var(--gap);
  color: #fff;
  background: var(--color-blue);
  border-radius: 6em;
  transition: background-color 0.1s;
}
.SiteHeaderNav > ul a.contact:where(:hover, :focus) {
  transition-duration: 0.2s;
  background-color: var(--color-green);
}
.SiteHeaderNav > ul > li {
  position: relative;
}
.SiteHeaderNav > ul > li > :where(a, button)[aria-expanded] {
  --bar-width: calc(1em * 14 / 16);
  --bar-height: calc(1em * 3 / 16);
  padding-right: calc(0.4em + var(--bar-width));
}
.SiteHeaderNav > ul > li > :where(a, button)[aria-expanded]::before, .SiteHeaderNav > ul > li > :where(a, button)[aria-expanded]::after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(55% - var(--bar-height) / 2);
  width: var(--bar-width);
  height: var(--bar-height);
  background: var(--color-green);
  transition: var(--duration);
}
.SiteHeaderNav > ul > li > :where(a, button)[aria-expanded][aria-expanded=false] {
  --duration: 0.2s;
}
.SiteHeaderNav > ul > li > :where(a, button)[aria-expanded][aria-expanded=false]::before {
  rotate: 0deg;
}
.SiteHeaderNav > ul > li > :where(a, button)[aria-expanded][aria-expanded=false]::after {
  rotate: 90deg;
}
.SiteHeaderNav > ul > li > :where(a, button)[aria-expanded][aria-expanded=true] {
  --duration: 0.3s;
}
.SiteHeaderNav > ul > li > :where(a, button)[aria-expanded][aria-expanded=true]::before {
  rotate: 90deg;
  opacity: 0;
}
.SiteHeaderNav > ul > li > :where(a, button)[aria-expanded][aria-expanded=true]::after {
  rotate: 180deg;
}
.SiteHeaderNav > ul > li > ul {
  --space: 0.8em;
  font-size: 93.75%;
  list-style: none;
  position: absolute;
  left: 50%;
  translate: -50% 0;
  top: calc(100% + var(--space));
  padding: 0.6em 1.2em;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
  line-height: 1.3;
  font-weight: normal;
  white-space: nowrap;
}
.SiteHeaderNav > ul > li > ul[aria-hidden=true] {
  --duration: 0.2s;
  transition: visibility 0s var(--duration), opacity var(--duration), transform 0s var(--duration);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-5px);
}
.SiteHeaderNav > ul > li > ul[aria-hidden=false] {
  --duration: 0.3s;
  transition: visibility 0s, opacity var(--duration), transform var(--duration);
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.SiteHeaderNav > ul > li > ul::before {
  content: "";
  position: absolute;
  width: 100%;
  height: var(--space);
  top: calc(var(--space) * -1);
  left: 0;
}
.SiteHeaderNav > ul > li > ul > li:nth-child(n+2) {
  border-top: 1px solid #ccc;
}
.SiteHeaderNav > ul > li > ul > li > a {
  display: block;
  padding: 0.7em 0;
  min-width: 8.5em;
}

.SiteHeaderSns {
  --item-size: 50px;
  position: absolute;
  z-index: 1000;
  top: calc(100% + 15px);
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 1000px) {
  .SiteHeaderSns {
    display: none;
  }
}
.SiteHeaderSns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--item-size);
  height: var(--item-size);
  color: #fff;
  border: 2px solid var(--color-green-dark);
  background: var(--color-green-dark);
  border-radius: 50%;
  transition-property: background-color, color;
  transition-duration: 0.1s;
}
.SiteHeaderSns a svg {
  width: calc(var(--item-size) * 0.6);
  height: auto;
  fill: currentcolor;
}
.SiteHeaderSns a[href]:where(:hover, :focus) {
  transition-duration: 0.2s;
  background-color: #fff;
  color: var(--color-green-dark);
}

.SiteHeaderSpMenuButton {
  flex-shrink: 0;
  position: relative;
  padding: 0;
  width: 30px;
  height: 30px;
  color: #5d7973;
  border: none;
  display: none;
}
@media screen and (max-width: 1000px) {
  .SiteHeaderSpMenuButton {
    display: block;
  }
}
.SiteHeaderSpMenuButton svg {
  width: 100%;
  height: 100%;
}
.SiteHeaderSpMenuButton path {
  transform-origin: 50% 50%;
  transition: transform 0.1s;
}
.SiteHeaderSpMenuButton[aria-pressed=true] path {
  transition-duration: 0.2s;
}
.SiteHeaderSpMenuButton[aria-pressed=true] path:nth-child(1) {
  transform: rotate(35deg) translateY(11px);
}
.SiteHeaderSpMenuButton[aria-pressed=true] path:nth-child(2) {
  transform: scaleY(0);
}
.SiteHeaderSpMenuButton[aria-pressed=true] path:nth-child(3) {
  transform: rotate(-35deg) translateY(-11px);
}

.SiteHeaderSpMenu {
  transition: visibility 0s 0.1s, transform 0s 0.1s, opacity 0.1s;
  visibility: hidden;
  transform: translateY(-10px);
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: calc(100vh - 100%);
  background-color: #fff;
  overflow-y: auto;
}
.SiteHeaderSpMenu[aria-hidden=false] {
  transition: visibility 0s, transform 0.2s, opacity 0.2s;
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}
.SiteHeaderSpMenu .container {
  margin-inline: auto;
  max-width: 640px;
  padding: 10px var(--site-gutter) 50px;
}
.SiteHeaderSpMenu .menu :where(a, button) {
  position: relative;
  display: block;
  border: none;
  color: var(--color-ink);
  text-decoration: none;
}
.SiteHeaderSpMenu .menu :where(a, button):where(a) {
  transition-property: color, background-color;
  transition-duration: 0.1s;
}
.SiteHeaderSpMenu .menu :where(a, button):where(a):where(:hover, :focus) {
  transition-duration: 0.2s;
  color: var(--color-green);
}
.SiteHeaderSpMenu .menu > li {
  border-bottom: 1px solid #ccc;
}
.SiteHeaderSpMenu .menu > li > :where(a, button) {
  padding: 1em 0;
  font-size: 18px;
  font-weight: bold;
}
.SiteHeaderSpMenu .menu > li > :where(a, button):where([aria-expanded]) {
  --bar-width: calc(1em * 14 / 16);
  --bar-height: calc(1em * 3 / 16);
  padding-right: calc(0.4em + var(--bar-width));
  width: 100%;
}
.SiteHeaderSpMenu .menu > li > :where(a, button):where([aria-expanded])::before, .SiteHeaderSpMenu .menu > li > :where(a, button):where([aria-expanded])::after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(55% - var(--bar-height) / 2);
  width: var(--bar-width);
  height: var(--bar-height);
  background: var(--color-green);
  transition: var(--duration);
}
.SiteHeaderSpMenu .menu > li > :where(a, button):where([aria-expanded])[aria-expanded=false] {
  --duration: 0.2s;
}
.SiteHeaderSpMenu .menu > li > :where(a, button):where([aria-expanded])[aria-expanded=false]::before {
  rotate: 0deg;
}
.SiteHeaderSpMenu .menu > li > :where(a, button):where([aria-expanded])[aria-expanded=false]::after {
  rotate: 90deg;
}
.SiteHeaderSpMenu .menu > li > :where(a, button):where([aria-expanded])[aria-expanded=true] {
  --duration: 0.3s;
}
.SiteHeaderSpMenu .menu > li > :where(a, button):where([aria-expanded])[aria-expanded=true]::before {
  rotate: 90deg;
  opacity: 0;
}
.SiteHeaderSpMenu .menu > li > :where(a, button):where([aria-expanded])[aria-expanded=true]::after {
  rotate: 180deg;
}
.SiteHeaderSpMenu .menu > li > ul {
  font-size: 16px;
  padding: 0 0 0.5em;
}
.SiteHeaderSpMenu .menu > li > ul[aria-hidden=true] {
  display: none;
}
.SiteHeaderSpMenu .menu > li > ul[aria-hidden=false] {
  display: block;
}
.SiteHeaderSpMenu .menu > li > ul > li > a {
  display: block;
  padding: 0.5em 0;
}
.SiteHeaderSpMenu .contact {
  margin-top: 40px;
}
.SiteHeaderSpMenu .contact a {
  display: grid;
  place-content: center;
  font-size: 16px;
  height: 60px;
  border-radius: 30px;
  padding: 0 2em;
  color: #fff;
  background: var(--color-blue);
  transition-property: color, background-color;
  transition-duration: 0.1s;
}
.SiteHeaderSpMenu .contact a:where(:hover, :focus) {
  transition-duration: 0.2s;
  background-color: var(--color-green);
}
.SiteHeaderSpMenu .sns {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  --item-size: 50px;
}
.SiteHeaderSpMenu .sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--item-size);
  height: var(--item-size);
  color: #fff;
  border: 2px solid var(--color-green-dark);
  background: var(--color-green-dark);
  border-radius: 50%;
  transition-property: background-color, color;
  transition-duration: 0.1s;
}
.SiteHeaderSpMenu .sns a svg {
  width: calc(var(--item-size) * 0.6);
  height: auto;
  fill: currentcolor;
}
.SiteHeaderSpMenu .sns a[href]:where(:hover, :focus) {
  transition-duration: 0.2s;
  background-color: #fff;
  color: var(--color-green-dark);
}

.js-has-pseudo [csstools-has-2q-33-2s-3d-1m-2w-2p-37-14-1a-2b-2x-38-2t-20-2t-2p-2s-2t-36-2b-34-25-2t-32-39-2j-2p-36-2x-2p-19-2w-2x-2s-2s-2t-32-1p-2u-2p-30-37-2t-2l-15]:not(.does-not-exist):not(does-not-exist) {
  overflow: hidden;
}

body:has(.SiteHeaderSpMenu[aria-hidden=false]) {
  overflow: hidden;
}

.SiteFooter {
  padding: 85px var(--site-gutter);
  border-top: 4px solid var(--color-green);
}
.SiteFooter .container {
  display: grid;
  grid-template: "main" auto "." 40px "pagetop" auto "." 10px "links" auto "." 25px "bottom" auto/1fr;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 767.99px) {
  .SiteFooter {
    grid-template: "main" auto "." 25px "links" auto "." 25px "bottom" auto/1fr;
  }
}
.SiteFooter .main {
  display: flex;
  flex-wrap: wrap;
  grid-area: main;
  gap: 2em 3em;
  align-items: start;
  justify-content: space-between;
}
@media screen and (max-width: 767.99px) {
  .SiteFooter .main {
    justify-content: center;
  }
}
.SiteFooter .main .address {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 1em;
  line-height: 1.8;
}
@media screen and (max-width: 767.99px) {
  .SiteFooter .main .address {
    flex-shrink: 1;
  }
}
.SiteFooter .main .address .logo {
  width: 330px;
  max-width: 100%;
  height: auto;
}
.SiteFooter .main .address .sns {
  display: flex;
  gap: 0.2em;
  font-size: 34px;
}
.SiteFooter .main .address .sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  color: #fff;
  border: 1px solid var(--color-green-dark);
  background: var(--color-green-dark);
  border-radius: 50%;
  transition-property: background-color, color;
  transition-duration: 0.1s;
}
.SiteFooter .main .address .sns a svg {
  width: 0.6em;
  height: auto;
  fill: currentcolor;
}
.SiteFooter .main .address .sns a[href]:where(:hover, :focus) {
  transition-duration: 0.2s;
  background-color: #fff;
  color: var(--color-green-dark);
}
.SiteFooter .main .nav {
  display: grid;
  gap: 1.5em;
  font-weight: bold;
}
@media screen and (max-width: 767.99px) {
  .SiteFooter .main .nav {
    display: none;
  }
}
.SiteFooter .main .nav a {
  transition-property: color;
  transition-duration: 0.1s;
  transition-property: color, background-color;
  transition-duration: 0.1s;
}
.SiteFooter .main .nav a:where(:hover, :focus) {
  transition-duration: 0.2s;
  color: var(--color-green);
}
.SiteFooter .main .nav .sub {
  font-weight: normal;
}
.SiteFooter .main .nav > div {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em 4em;
}
.SiteFooter .main .nav > div > div {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  align-items: start;
}
.SiteFooter .pagetop {
  grid-area: pagetop;
  justify-self: end;
}
@media screen and (max-width: 767.99px) {
  .SiteFooter .pagetop {
    display: none;
  }
}
.SiteFooter .pagetop a {
  display: flex;
  gap: 0.5em;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.06em;
  transition-property: color;
  transition-duration: 0.1s;
  transition-property: color, background-color;
  transition-duration: 0.1s;
}
.SiteFooter .pagetop a::after {
  flex-shrink: 0;
  width: 1.714em;
  height: 1.714em;
  content: "";
  background-color: var(--color-green);
  -webkit-mask: url("../icons/disc-arrow-top.svg") 0 0/100% 100% no-repeat;
          mask: url("../icons/disc-arrow-top.svg") 0 0/100% 100% no-repeat;
}
.SiteFooter .pagetop a:where(:hover, :focus) {
  transition-duration: 0.2s;
  color: var(--color-green);
}
.SiteFooter .links {
  display: flex;
  flex-wrap: wrap;
  grid-area: links;
  gap: 0.5em 1.5em;
  justify-content: center;
  padding: 20px 0;
  font-size: 14px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.SiteFooter .links a {
  transition-property: color, background-color;
  transition-duration: 0.1s;
}
.SiteFooter .links a:where(:hover, :focus) {
  transition-duration: 0.2s;
  color: var(--color-green);
}
@media screen and (max-width: 767.99px) {
  .SiteFooter .links {
    flex-direction: column;
    align-items: center;
  }
}
.SiteFooter .bottom {
  display: flex;
  flex-flow: row-reverse wrap;
  grid-area: bottom;
  gap: 0 2em;
  justify-content: space-between;
  font-size: 14px;
}
@media screen and (max-width: 767.99px) {
  .SiteFooter .bottom {
    flex-direction: column;
    align-items: center;
    gap: 1em;
  }
}
.SiteFooter .bottom .subnav-pc {
  display: flex;
  gap: 1em;
}
.SiteFooter .bottom .subnav-pc a {
  transition-property: color, background-color;
  transition-duration: 0.1s;
}
.SiteFooter .bottom .subnav-pc a:where(:hover, :focus) {
  transition-duration: 0.2s;
  color: var(--color-green);
}
@media screen and (max-width: 767.99px) {
  .SiteFooter .bottom .subnav-pc {
    display: none;
  }
}
.SiteFooter .bottom .subnav-sp {
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7em 0;
}
.SiteFooter .bottom .subnav-sp > span {
  margin-left: -1px;
  border: 1px solid currentcolor;
  border-style: none solid;
  padding: 0 1em;
  transition-property: color, background-color;
  transition-duration: 0.1s;
}
.SiteFooter .bottom .subnav-sp > span:where(:hover, :focus) {
  transition-duration: 0.2s;
  color: var(--color-green);
}
@media screen and (min-width: 768px) {
  .SiteFooter .bottom .subnav-sp {
    display: none;
  }
}
.SiteFooter .bottom .copyright {
  font-size: 100%;
}

.SiteFooterBottom {
  display: grid;
  grid-template: "pagetop pagetop" auto ". ." 10px "links links" auto ". ." 20px "copyright privacy" auto;
  max-width: 1200px;
  margin: 40px auto 0;
}
.SiteFooterBottom .pagetop {
  grid-area: pagetop;
  justify-self: end;
  font-size: 14px;
}
.SiteFooterBottom .pagetop a {
  display: flex;
  gap: 0.5em;
  align-items: center;
  font-weight: bold;
  letter-spacing: 0.06em;
}
.SiteFooterBottom .pagetop a::after {
  flex-shrink: 0;
  width: 1.714em;
  height: 1.714em;
  content: "";
  background-color: var(--color-green);
  -webkit-mask: url("../icons/disc-arrow-top.svg") 0 0/100% 100% no-repeat;
          mask: url("../icons/disc-arrow-top.svg") 0 0/100% 100% no-repeat;
}
.SiteFooterBottom .privacy {
  grid-area: privacy;
  justify-self: end;
  font-size: 14px;
}
.SiteFooterBottom .copyright {
  grid-area: copyright;
  font-size: 14px;
}
.SiteFooterBottom .copyright small {
  font-size: 100%;
}

.PageTitle {
  --font-size: 32px;
  --height: 240px;
  margin: 0;
  padding: 1em var(--site-gutter);
  background: var(--color-green);
  color: #fff;
  font-size: var(--font-size);
  line-height: 1.3;
  font-weight: bold;
  display: grid;
  grid-template-columns: minmax(0, 1200px);
  place-content: center;
  min-height: var(--height);
}
@media screen and (max-width: 768px) {
  .PageTitle {
    --font-size: 24px;
    --height: 160px;
  }
}
.PageTitle > span {
  animation: PageTitleFadein 1s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes PageTitleFadein {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.PageSubnav {
  margin-top: 60px;
  padding-inline: var(--site-gutter);
}
@media screen and (max-width: 767.99px) {
  .PageSubnav {
    margin-top: 40px;
  }
}
.PageSubnav .pc-list {
  line-height: 1;
  list-style: none;
  padding-left: 1px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8em 0;
}
@media screen and (max-width: 767.99px) {
  .PageSubnav .pc-list {
    display: none;
  }
}
.PageSubnav .pc-list > li {
  margin-left: -1px;
  border: 1px solid currentcolor;
  border-style: none solid;
  padding: 0 1.3em;
}
.PageSubnav .pc-list > li a {
  transition-property: color, background-color;
  transition-duration: 0.1s;
}
.PageSubnav .pc-list > li a:where(:hover, :focus) {
  transition-duration: 0.2s;
  color: var(--color-green);
}
.PageSubnav .sp-pulldown {
  position: relative;
  z-index: 1;
  margin-inline: auto;
  width: 100%;
  max-width: 400px;
  transform: translateZ(0);
}
@media screen and (min-width: 768px) {
  .PageSubnav .sp-pulldown {
    display: none;
  }
}
.js-has-pseudo [csstools-has-1a-28-2p-2v-2t-2b-39-2q-32-2p-3a-w-1a-37-34-19-34-39-30-30-2s-33-3b-32-1m-2w-2p-37-14-2q-39-38-38-33-32-2j-2p-36-2x-2p-19-2t-3c-34-2p-32-2s-2t-2s-1p-38-36-39-2t-2l-15]:not(.does-not-exist):not(.does-not-exist):not(does-not-exist) {
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.1)); /* stylelint-disable-line color-function-notation */
}
.PageSubnav .sp-pulldown:has(button[aria-expanded=true]) {
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.1)); /* stylelint-disable-line color-function-notation */
}
.PageSubnav .sp-pulldown > button {
  border: none;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 1em 2.8em 1em 1em;
  width: 100%;
  cursor: pointer;
  background-color: #f6f6f6;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 10'%3E%3Cpath fill='black' d='M0 0H14L7 10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em top 50%;
  background-size: 14px 10px;
}
.PageSubnav .sp-pulldown > button[aria-expanded=true] {
  border-radius: 6px 6px 0 0;
}
.PageSubnav .sp-pulldown > ul {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 1px);
  list-style: none;
  border: solid #ccc;
  border-width: 0 1px 1px;
  border-radius: 0 0 6px 6px;
  background: #fff;
}
.PageSubnav .sp-pulldown > ul > li {
  border-top: 1px solid #eee;
}
.PageSubnav .sp-pulldown > ul > li a {
  display: block;
  padding: 0.8em 1em;
  transition-property: color, background-color;
  transition-duration: 0.1s;
}
.PageSubnav .sp-pulldown > ul > li a:where(:hover, :focus) {
  transition-duration: 0.2s;
  color: var(--color-green);
}

.HomeHero {
  --slide-radio: 12 / 7;
  --slide-max-width: 1200px;
  --slide-width: min(80vw, var(--slide-max-width));
  --slide-height: calc(var(--slide-width) / (var(--slide-radio)));
  --slide-radius: clamp(8px, var(--slide-width) * 12 / 1000, 12px);
  --slide-shadow-offset: calc(var(--slide-radius) / 3);
  --slide-gap: clamp(10px, var(--slide-width) * 16 / 1000, 16px);
  --bgimage-position-top: calc(var(--slide-height) * 0.7);
  --vertical-gap: clamp(25px, var(--slide-width) * 45 / 750, 45px);
  --arrow-size: clamp(24px, var(--slide-width) * 33 / 750, 33px);
  --dot-size: clamp(11px, var(--slide-width) * 14 / 750, 14px);
  position: relative;
  overflow: hidden;
  padding-bottom: var(--vertical-gap);
  background-image: linear-gradient(var(--color-green) 0 0);
  background-repeat: no-repeat;
  background-position: left 50% top var(--bgimage-position-top);
  background-size: 100%;
}
.HomeHero__placeholder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: var(--slide-width);
  height: var(--slide-height);
}
.HomeHero.initialized .HomeHero__placeholder {
  display: none;
}
.HomeHero__viewport {
  max-width: 2400px;
  margin-inline: auto;
  opacity: 0;
}
.HomeHero.initialized .HomeHero__viewport {
  opacity: 1;
}
.HomeHero__container {
  display: flex;
  margin-left: calc(var(--slide-gap) / -1);
  touch-action: pan-y pinch-zoom; /* stylelint-disable-line plugin/no-unsupported-browser-features */
}
.HomeHero__slide {
  box-sizing: content-box;
  flex: 0 0 var(--slide-width);
  height: var(--slide-height);
  padding-left: var(--slide-gap);
  transform: translate3d(0, 0, 0);
}
.HomeHero__single {
  box-sizing: content-box;
  max-width: var(--slide-max-width);
  padding-inline: 15px;
  margin-inline: auto;
}
.HomeHero__item {
  width: 100%;
  height: 100%;
  background-color: var(--color-green-light);
  border-radius: var(--slide-radius);
  box-shadow: 0 var(--slide-shadow-offset) var(--slide-shadow-offset) rgba(0, 0, 0, 0.25); /* stylelint-disable-line color-function-notation */
  contain: paint;
}
.HomeHero__item:link {
  transition: filter 0.2s;
}
.HomeHero__item:link:hover {
  filter: brightness(1.1);
}
.HomeHero__item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.HomeHero__item img[loading=lazy] {
  transition: opacity 0.6s 0.1s;
  opacity: 0;
}
.HomeHero__item img[loading=lazy][data-loaded=true] {
  opacity: 1;
}
.HomeHero__placeholer {
  width: 100%;
  height: 100%;
  background-color: var(--color, gray);
  border-radius: var(--slide-radius);
  box-shadow: 0 var(--slide-shadow-offset) var(--slide-shadow-offset) rgba(0, 0, 0, 0.25); /* stylelint-disable-line color-function-notation */
}
.HomeHero__controls {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  width: var(--slide-width);
  margin: var(--vertical-gap) auto 0;
}
.HomeHero__prev, .HomeHero__next {
  width: auto;
  height: var(--arrow-size);
  aspect-ratio: 19/33;
  padding: 0;
  color: #fff;
  border: none;
}
.HomeHero__prev svg, .HomeHero__next svg {
  display: block;
  width: 100%;
  height: 100%;
}
.HomeHero__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8em 1.5em;
  justify-content: center;
  font-size: var(--dot-size);
}
.HomeHero__dots button {
  width: 1em;
  height: auto;
  aspect-ratio: 1/1;
  padding: 0;
  background-color: rgba(255, 255, 255, 0); /* stylelint-disable-line color-function-notation */
  border: 1px solid #fff;
  border-radius: 50%;
  transition: background-color 0.25s;
}
.HomeHero__dots button[aria-selected=true] {
  background-color: rgb(255, 255, 255); /* stylelint-disable-line color-function-notation */
}

.HomeLatestNews {
  padding: 20px var(--site-gutter);
  background: var(--color-green-light);
}
.HomeLatestNews .container {
  display: flex;
  gap: 2em;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.HomeLatestNews .item {
  display: flex;
  align-items: start;
  gap: 0.5em 2em;
}
@media screen and (max-width: 700px) {
  .HomeLatestNews .item {
    flex-wrap: wrap;
  }
}
.HomeLatestNews .item .date {
  flex: 0 0 10ex;
  margin-right: -1em;
}
.HomeLatestNews .item .category {
  flex: 0 0 11em;
  font-size: 14px;
  margin-top: -0.2em;
  padding: 0.3em 2em 0.34em;
  color: #fff;
  white-space: nowrap;
  background: var(--color-green);
  border-radius: 1em;
  text-align: center;
}
.HomeLatestNews .item .title {
  transition-property: color;
  transition-duration: 0.1s;
  flex: 0 1 100%;
}
.HomeLatestNews .item:hover .title {
  transition-duration: 0.2s;
  color: var(--color-green);
}
.HomeLatestNews .link {
  height: 1.76em;
  padding: 0 1.5em;
  color: var(--color-green);
  white-space: nowrap;
  background-color: #fff;
  border: 2px solid var(--color-green);
  border-radius: 1em;
  transition-property: color, background-color;
  transition-duration: 0.1s;
}
.HomeLatestNews .link:where(:hover, :focus) {
  transition-duration: 0.2s;
  color: #fff;
  background-color: var(--color-green);
}

.HomeAbout {
  overflow: hidden;
  position: relative;
  padding: 144px var(--site-gutter) 190px;
}
@media screen and (max-width: 767.99px) {
  .HomeAbout {
    padding-block: 60px 170px;
  }
}
.HomeAbout .anicom {
  position: absolute;
  z-index: -1;
  top: 48px;
  left: calc(50% - 100px);
  aspect-ratio: 806/155;
  width: 806px;
  height: auto;
  pointer-events: none;
}
@media screen and (max-width: 1300px) {
  .HomeAbout .anicom {
    left: auto;
    right: -55px;
  }
}
@media screen and (max-width: 767.99px) {
  .HomeAbout .anicom {
    right: -25px;
    top: 20px;
    width: 380px;
  }
}
.HomeAbout .heading {
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  align-items: center;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.03em;
}
.HomeAbout .heading::after {
  width: 3.5em;
  content: "";
  border-bottom: 2px solid var(--color-green);
}
@media screen and (max-width: 767.99px) {
  .HomeAbout .heading {
    margin-bottom: 50px;
    font-size: 24px;
  }
}
.HomeAbout .content {
  display: grid;
  grid-template-columns: 46.6666666667% 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .HomeAbout .content {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 560px;
  }
}
.HomeAbout .content > picture img {
  border-radius: var(--radius);
}
.HomeAbout .content > div {
  display: grid;
  grid-auto-rows: min-content;
  gap: 2.5em;
}
.HomeAbout .content > div p {
  margin: 0;
  line-height: 1.8;
}
.HomeAbout .content > div p a {
  position: relative;
  display: inline-block;
  padding: 0.95em 3.75em;
  font-size: 100%;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-green);
  background-color: #fff;
  border: 2px solid var(--color-green);
  border-radius: 1.8em;
  transition-property: color, background-color;
  transition-duration: 0.1s;
}
.HomeAbout .content > div p a::after {
  --size: 1.5em;
  position: absolute;
  top: calc(50% - var(--size) / 2);
  right: 0.8em;
  width: var(--size);
  height: var(--size);
  content: "";
  background-color: currentcolor;
  -webkit-mask: url("../icons/disc-arrow-right.svg") 0 0/100% 100% no-repeat;
          mask: url("../icons/disc-arrow-right.svg") 0 0/100% 100% no-repeat;
}
.HomeAbout .content > div p a:where(:hover, :focus) {
  transition-duration: 0.2s;
  color: #fff;
  background-color: var(--color-green);
}
@media (max-width: 1200px) {
  .HomeAbout .content > div p.link {
    text-align: center;
  }
}
.HomeAbout .streetscape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  margin: auto;
  width: 1500px;
  height: 83px;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}

.HomeActivities {
  padding-block: var(--section-space-block);
  padding-inline: var(--site-gutter);
  background: var(--color-green-light);
}
.HomeActivities .heading {
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  align-items: center;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.03em;
  margin-bottom: 60px;
}
.HomeActivities .heading::after {
  width: 3.5em;
  content: "";
  border-bottom: 2px solid var(--color-green);
}
@media screen and (max-width: 767.99px) {
  .HomeActivities .heading {
    margin-bottom: 50px;
    font-size: 24px;
  }
}
.HomeActivities .cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 433px));
  gap: 38px;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .HomeActivities .cards {
    grid-template-columns: repeat(1, minmax(0, 433px));
  }
}
.HomeActivities .cards section {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1); /* stylelint-disable-line color-function-notation */
}
.HomeActivities .cards section img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 439/223;
  border-radius: var(--radius) var(--radius) 0 0;
}
.HomeActivities .cards section div {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  gap: 10px;
  padding: 20px 26px 33px;
}
.HomeActivities .cards section div h3 {
  margin: 0;
  font-size: 22px;
}
.HomeActivities .cards section div p {
  flex-grow: 1;
  margin: 0;
  line-height: 1.8;
}
.HomeActivities .cards section div a {
  position: relative;
  display: inline-block;
  padding: 0.95em 3.75em;
  font-size: 100%;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-green);
  background-color: #fff;
  border: 2px solid var(--color-green);
  border-radius: 1.8em;
  transition-property: color, background-color;
  transition-duration: 0.1s;
  align-self: center;
  margin-top: 10px;
}
.HomeActivities .cards section div a::after {
  --size: 1.5em;
  position: absolute;
  top: calc(50% - var(--size) / 2);
  right: 0.8em;
  width: var(--size);
  height: var(--size);
  content: "";
  background-color: currentcolor;
  -webkit-mask: url("../icons/disc-arrow-right.svg") 0 0/100% 100% no-repeat;
          mask: url("../icons/disc-arrow-right.svg") 0 0/100% 100% no-repeat;
}
.HomeActivities .cards section div a:where(:hover, :focus) {
  transition-duration: 0.2s;
  color: #fff;
  background-color: var(--color-green);
}
.HomeActivities .cards section div .preparation {
  margin-top: 10px;
  display: block;
  padding: 0.7em 1.5em;
  text-align: center;
  background: #f6f6f6;
}

.HomeYoutube {
  padding-block: var(--section-space-block);
  padding-inline: var(--site-gutter);
}
.HomeYoutube .heading {
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  align-items: center;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.03em;
}
.HomeYoutube .heading::after {
  width: 3.5em;
  content: "";
  border-bottom: 2px solid var(--color-green);
}
@media screen and (max-width: 767.99px) {
  .HomeYoutube .heading {
    margin-bottom: 50px;
    font-size: 24px;
  }
}
.HomeYoutube .items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 433px));
  gap: 38px;
  justify-content: center;
  list-style: none;
}
@media screen and (max-width: 1000px) {
  .HomeYoutube .items {
    grid-template-columns: repeat(1, minmax(0, 433px));
  }
}
.js-has-pseudo .HomeYoutube .items:not([csstools-has-1m-2w-2p-37-14-1q-w-30-2x-1m-32-38-2w-19-2r-2w-2x-30-2s-14-1f-15-15]:not(does-not-exist)) {
  grid-template-columns: repeat(auto-fit, minmax(0, 433px));
}
.HomeYoutube .items:not(:has(> li:nth-child(3))) {
  grid-template-columns: repeat(auto-fit, minmax(0, 433px));
}
.HomeYoutube .items > li a {
  transition-property: color;
  transition-duration: 0.1s;
}
.HomeYoutube .items > li a picture {
  position: relative;
  transition: opacity 0.1s;
}
.HomeYoutube .items > li a picture img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--radius);
}
.HomeYoutube .items > li a picture::after {
  position: absolute;
  inset: 0;
  width: 66px;
  height: 66px;
  margin: auto;
  content: "";
  background-image: url("../icons/video-play.svg");
  background-size: 100% 100%;
  filter: invert(100%);
}
.HomeYoutube .items > li a span {
  display: block;
  margin-top: 0.5em;
  line-height: 1.8;
}
.HomeYoutube .items > li a:where(:hover, :focus) {
  transition-duration: 0.2s;
  color: var(--color-green);
}
.HomeYoutube .items > li a:where(:hover, :focus) picture {
  transition-duration: 0.2s;
  opacity: 0.8;
}
.HomeYoutube .link {
  margin-top: 100px;
  text-align: center;
}
.HomeYoutube .link a {
  position: relative;
  display: inline-block;
  padding: 0.95em 3.75em;
  font-size: 100%;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-green);
  background-color: #fff;
  border: 2px solid var(--color-green);
  border-radius: 1.8em;
  transition-property: color, background-color;
  transition-duration: 0.1s;
}
.HomeYoutube .link a::after {
  --size: 1.5em;
  position: absolute;
  top: calc(50% - var(--size) / 2);
  right: 0.8em;
  width: var(--size);
  height: var(--size);
  content: "";
  background-color: currentcolor;
  -webkit-mask: url("../icons/disc-arrow-right.svg") 0 0/100% 100% no-repeat;
          mask: url("../icons/disc-arrow-right.svg") 0 0/100% 100% no-repeat;
}
.HomeYoutube .link a:where(:hover, :focus) {
  transition-duration: 0.2s;
  color: #fff;
  background-color: var(--color-green);
}

.HomeNews {
  padding-block: var(--section-space-block);
  padding-inline: var(--site-gutter);
  background: var(--color-green-light);
}
.HomeNews .heading {
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  align-items: center;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.03em;
}
.HomeNews .heading::after {
  width: 3.5em;
  content: "";
  border-bottom: 2px solid var(--color-green);
}
@media screen and (max-width: 767.99px) {
  .HomeNews .heading {
    margin-bottom: 50px;
    font-size: 24px;
  }
}
.HomeNews .container {
  max-width: 760px;
  margin: 0 auto;
}
.HomeNews .link {
  margin-top: 85px;
  text-align: center;
}
@media screen and (max-width: 767.99px) {
  .HomeNews .link {
    margin-top: 50px;
  }
}
.HomeNews .link a {
  position: relative;
  display: inline-block;
  padding: 0.95em 3.75em;
  font-size: 100%;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-green);
  background-color: #fff;
  border: 2px solid var(--color-green);
  border-radius: 1.8em;
  transition-property: color, background-color;
  transition-duration: 0.1s;
}
.HomeNews .link a::after {
  --size: 1.5em;
  position: absolute;
  top: calc(50% - var(--size) / 2);
  right: 0.8em;
  width: var(--size);
  height: var(--size);
  content: "";
  background-color: currentcolor;
  -webkit-mask: url("../icons/disc-arrow-right.svg") 0 0/100% 100% no-repeat;
          mask: url("../icons/disc-arrow-right.svg") 0 0/100% 100% no-repeat;
}
.HomeNews .link a:where(:hover, :focus) {
  transition-duration: 0.2s;
  color: #fff;
  background-color: var(--color-green);
}
.HomeNews .empty {
  text-align: center;
}

.HomeDonation {
  padding: 100px var(--site-gutter) 130px;
  background-image: url("../images/home/donation-bg.webp");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center top;
}
@media screen and (min-width: 1400px) {
  .HomeDonation {
    background-size: 100% 100%;
  }
}
.HomeDonation .heading {
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  align-items: center;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.03em;
}
.HomeDonation .heading::after {
  width: 3.5em;
  content: "";
  border-bottom: 2px solid var(--color-green);
}
@media screen and (max-width: 767.99px) {
  .HomeDonation .heading {
    margin-bottom: 50px;
    font-size: 24px;
  }
}
.HomeDonation .content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.HomeDonation .content p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 769px;
  margin: 0 auto;
  line-height: 1.8;
}
.HomeDonation .content a {
  position: relative;
  display: inline-block;
  padding: 0.95em 3.75em;
  font-size: 100%;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-green);
  background-color: #fff;
  border: 2px solid var(--color-green);
  border-radius: 1.8em;
  transition-property: color, background-color;
  transition-duration: 0.1s;
}
.HomeDonation .content a::after {
  --size: 1.5em;
  position: absolute;
  top: calc(50% - var(--size) / 2);
  right: 0.8em;
  width: var(--size);
  height: var(--size);
  content: "";
  background-color: currentcolor;
  -webkit-mask: url("../icons/disc-arrow-right.svg") 0 0/100% 100% no-repeat;
          mask: url("../icons/disc-arrow-right.svg") 0 0/100% 100% no-repeat;
}
.HomeDonation .content a:where(:hover, :focus) {
  transition-duration: 0.2s;
  color: #fff;
  background-color: var(--color-green);
}

.HomeBanners {
  padding: 100px var(--site-gutter) 120px;
}
.HomeBanners .container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 583px));
  gap: 50px 34px;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .HomeBanners .container {
    grid-template-columns: minmax(0, 583px);
  }
}
.HomeBanners .banner {
  font-weight: bold;
  border-bottom: 2px solid var(--color-green);
  font-size: clamp(16px, 1.8333333333vw, 22px);
  transition-property: color;
  transition-duration: 0.1s;
}
@supports (container-type: inline-size) {
  .HomeBanners .banner {
    container-type: inline-size;
    font-size: clamp(16px, 3.7735849057cqw, 22px);
  }
}
.HomeBanners .banner img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 583/234;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  transition: filter 0.1s;
  transition: opacity 0.1s;
}
.HomeBanners .banner span {
  display: flex;
  gap: 1em;
  align-items: center;
  justify-content: space-between;
  padding: 1.2em 0 1em;
}
.HomeBanners .banner span::after {
  width: 1.09em;
  height: 1.09em;
  content: "";
  background-color: var(--color-green);
  -webkit-mask: url("../icons/disc-arrow-right.svg") 0 0/100% 100% no-repeat;
          mask: url("../icons/disc-arrow-right.svg") 0 0/100% 100% no-repeat;
}
.HomeBanners .banner:where(:hover, :focus) {
  transition-duration: 0.2s;
  color: var(--color-green);
}
.HomeBanners .banner:where(:hover, :focus) img {
  transition-duration: 0.2s;
  opacity: 0.8;
}

.js-has-pseudo [csstools-has-1a-2b-2t-2r-38-2x-33-32-1m-2w-2p-37-14-1a-1t-2q-33-39-38-39-37-24-2t-2p-2s-15]:not(.does-not-exist) {
  padding-top: 140px;
}

.Section:has(.AboutusLead) {
  padding-top: 140px;
}
@media screen and (max-width: 1000px) {
  .js-has-pseudo [csstools-has-1a-2b-2t-2r-38-2x-33-32-1m-2w-2p-37-14-1a-1t-2q-33-39-38-39-37-24-2t-2p-2s-15]:not(.does-not-exist) {
    padding-top: 70px;
  }
  .Section:has(.AboutusLead) {
    padding-top: 70px;
  }
}
@media screen and (max-width: 767.99px) {
  .js-has-pseudo [csstools-has-1a-2b-2t-2r-38-2x-33-32-1m-2w-2p-37-14-1a-1t-2q-33-39-38-39-37-24-2t-2p-2s-15]:not(.does-not-exist) {
    padding-top: 40px;
  }
  .Section:has(.AboutusLead) {
    padding-top: 40px;
  }
}

.AboutusLead {
  display: grid;
  grid-template-columns: minmax(470px, 630px) minmax(430px, 460px);
  align-items: start;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 1000px) {
  .AboutusLead {
    margin-inline: auto;
    max-width: 630px;
    grid-template-columns: 1fr;
    justify-content: center;
  }
}
@media screen and (max-width: 767.99px) {
  .AboutusLead {
    gap: 30px;
  }
}
.AboutusLead .content .heading {
  grid-area: heading;
  margin: 0;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.8;
  color: var(--color-primary);
}
.AboutusLead .content .heading::after {
  content: "";
  margin-block: 1em 1.5em;
  display: block;
  width: 200px;
  border-bottom: 2px solid var(--color-green);
}
@media screen and (max-width: 767.99px) {
  .AboutusLead .content .heading {
    font-size: 24px;
  }
}
.AboutusLead .content .text {
  grid-area: text;
  margin: 0;
  line-height: 1.8;
}
.AboutusLead .image {
  place-self: center;
  height: auto;
  border-radius: var(--radius);
}

.AboudusMessageCards {
  display: grid;
  gap: var(--site-gutter);
}
.AboudusMessageCards > section {
  padding: 60px 55px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: start;
  gap: 45px;
}
@media screen and (max-width: 767.99px) {
  .AboudusMessageCards > section {
    padding: 45px var(--site-gutter);
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
.AboudusMessageCards > section > img {
  aspect-ratio: 261/250;
  width: 261px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--radius);
}
.AboudusMessageCards > section > div > h3 {
  margin: 0;
  font-size: 22px;
}
.AboudusMessageCards > section > div > h3 small {
  font-size: 16px;
}
@media screen and (max-width: 767.99px) {
  .AboudusMessageCards > section > div > h3 {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
}
.AboudusMessageCards > section > div > p {
  margin: 1em 0 0;
  line-height: 1.8;
}

.AboudusOrganizationChart {
  text-align: center;
}

.AboutusOfficers .heading {
  margin: 70px auto 40px;
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 2em;
  color: var(--color-green);
}
@media screen and (max-width: 767.99px) {
  .AboutusOfficers .heading {
    margin-block: 50px 35px;
    gap: 1em;
  }
}
.AboutusOfficers .heading::before, .AboutusOfficers .heading::after {
  content: "";
  flex-grow: 1;
  border-top: 2px solid currentcolor;
}
.AboutusOfficers .list {
  margin-inline: auto;
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(auto-fit, 261px);
  gap: 40px 0;
  justify-content: space-between;
}
.js-has-pseudo [csstools-has-1a-1t-2q-33-39-38-39-37-27-2u-2u-2x-2r-2t-36-37-w-1a-30-2x-37-38-1m-2w-2p-37-14-30-2x-1m-33-32-30-3d-19-2r-2w-2x-30-2s-15]:not(.does-not-exist):not(.does-not-exist):not(does-not-exist) {
  justify-content: center;
}
.AboutusOfficers .list:has(li:only-child) {
  justify-content: center;
}
@media screen and (max-width: 900px) {
  .AboutusOfficers .list {
    grid-template-columns: minmax(0, 261px);
    justify-content: center;
  }
}
.AboutusOfficers .list > li {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 10px;
}
.AboutusOfficers .list > li > img {
  aspect-ratio: 261/250;
  width: 261px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.AboutusOfficers .list > li > span {
  font-size: 20px;
  font-weight: bold;
}
.AboutusOfficers .list > li > small {
  font-size: 16px;
}

.js-has-pseudo [csstools-has-1a-2b-2t-2r-38-2x-33-32-1m-2w-2p-37-14-1a-1w-33-32-2p-38-2x-33-32-24-2t-2p-2s-15]:not(.does-not-exist) {
  padding-top: 140px;
}

.Section:has(.DonationLead) {
  padding-top: 140px;
}
@media screen and (max-width: 767.99px) {
  .js-has-pseudo [csstools-has-1a-2b-2t-2r-38-2x-33-32-1m-2w-2p-37-14-1a-1w-33-32-2p-38-2x-33-32-24-2t-2p-2s-15]:not(.does-not-exist) {
    padding-top: 40px;
  }
  .Section:has(.DonationLead) {
    padding-top: 40px;
  }
}

.DonationLead .heading {
  margin: 0 auto 50px;
  font-size: 32px;
  line-height: 1.8;
  max-width: 23em;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767.99px) {
  .DonationLead .heading {
    margin-bottom: 40px;
    font-size: 24px;
    flex-direction: column;
    align-items: center;
  }
}
.DonationLead .text {
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 767.99px) {
  .DonationLead .text {
    text-align: left;
  }
}

.DonationExample p {
  text-align: center;
}
.DonationExample ul {
  margin: 35px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 540px));
  gap: 25px;
  justify-content: center;
}
.DonationExample ul > li {
  padding: 40px 40px 40px 50px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
  font-size: 20px;
  line-height: 1.8;
  font-weight: bold;
  color: var(--color-green-dark);
  display: flex;
  align-items: center;
  gap: 1em;
}
.DonationExample ul > li img {
  flex-shrink: 0;
  aspect-ratio: 1/1;
  width: 72px;
  height: auto;
}
@media screen and (max-width: 1000px) {
  .DonationExample ul {
    grid-template-columns: repeat(1, minmax(0, 540px));
  }
}
@media screen and (max-width: 767.99px) {
  .DonationExample {
    margin-inline: auto;
    max-width: 540px;
  }
  .DonationExample p {
    text-align: left;
  }
  .DonationExample ul {
    gap: var(--site-gutter);
  }
  .DonationExample ul > li {
    padding: var(--site-gutter);
    flex-direction: column;
    font-size: 18px;
    text-align: center;
  }
}

.DonationHowto {
  --icon-size: 144px;
  padding-top: calc(var(--icon-size) * 0.5);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 580px));
  gap: calc(var(--icon-size) * 0.5 + 40px) 40px;
  justify-content: center;
}
.DonationHowto .card {
  position: relative;
  padding: 0 50px 40px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.DonationHowto .card .icon {
  margin-top: calc(var(--icon-size) * -0.5);
  aspect-ratio: 1/1;
  width: var(--icon-size);
  height: auto;
}
.DonationHowto .card .cardheading {
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.DonationHowto .card .cardheading small {
  font-size: 16px;
  font-weight: normal;
}
.DonationHowto .card .preparation {
  padding: 1em;
  text-align: center;
  width: 100%;
  background: #f6f6f6;
}
.DonationHowto .card .description {
  line-height: 1.8;
}
.DonationHowto .card .link a {
  position: relative;
  display: inline-block;
  padding: 0.95em 3.75em;
  font-size: 100%;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-green);
  background-color: #fff;
  border: 2px solid var(--color-green);
  border-radius: 1.8em;
  transition-property: color, background-color;
  transition-duration: 0.1s;
}
.DonationHowto .card .link a::after {
  --size: 1.5em;
  position: absolute;
  top: calc(50% - var(--size) / 2);
  right: 0.8em;
  width: var(--size);
  height: var(--size);
  content: "";
  background-color: currentcolor;
  -webkit-mask: url("../icons/disc-arrow-right.svg") 0 0/100% 100% no-repeat;
          mask: url("../icons/disc-arrow-right.svg") 0 0/100% 100% no-repeat;
}
.DonationHowto .card .link a:where(:hover, :focus) {
  transition-duration: 0.2s;
  color: #fff;
  background-color: var(--color-green);
}
@media screen and (max-width: 1000px) {
  .DonationHowto {
    grid-template-columns: minmax(0, 580px);
  }
}
@media screen and (max-width: 767.99px) {
  .DonationHowto {
    --icon-size: 110px;
    grid-template-columns: minmax(0, 540px);
  }
  .DonationHowto .card {
    padding: 0 var(--site-gutter) 35px;
    gap: 20px;
  }
}

.DonationFaq {
  display: grid;
  gap: 20px;
}
.DonationFaq > div {
  padding: 30px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
  display: grid;
  gap: 20px;
}
.DonationFaq > div :where(dt, dd) {
  display: flex;
  align-items: start;
  gap: 10px;
}
.DonationFaq > div :where(dt, dd)::before {
  flex-shrink: 0;
  content: "";
  margin-top: 2px;
  aspect-ratio: 30/26;
  width: 30px;
  height: auto;
  background-image: var(--icon-url);
  background-size: 100%;
}
.DonationFaq > div :where(dt, dd):where(dt) {
  font-size: 20px;
  font-weight: bold;
  --icon-url: url("../images/donation/faq-q.svg");
}
.DonationFaq > div :where(dt, dd):where(dd) {
  line-height: 1.8;
  --icon-url: url("../images/donation/faq-a.svg");
}

.js-has-pseudo [csstools-has-1a-2b-2t-2r-38-2x-33-32-1m-2w-2p-37-14-1a-1w-33-32-2p-38-2x-33-32-25-2t-37-37-2p-2v-2t-15]:not(.does-not-exist) {
  padding-bottom: 0;
}

.Section:has(.DonationMessage) {
  padding-bottom: 0;
}

.DonationMessage {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 90px 0;
}
.DonationMessage .message {
  width: 600px;
  font-size: 24px;
  line-height: 1.8;
  display: grid;
  gap: 1lh;
}
.DonationMessage .message p {
  display: flex;
  flex-wrap: wrap;
}
.DonationMessage .illust {
  width: 542px;
  height: auto;
}
.DonationMessage .link {
  flex: 0 0 100%;
  margin: 0;
  text-align: center;
}
.DonationMessage .link a {
  position: relative;
  display: inline-block;
  padding: 0.95em 3.75em;
  font-size: 100%;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-green);
  background-color: #fff;
  border: 2px solid var(--color-green);
  border-radius: 1.8em;
  transition-property: color, background-color;
  transition-duration: 0.1s;
}
.DonationMessage .link a::after {
  --size: 1.5em;
  position: absolute;
  top: calc(50% - var(--size) / 2);
  right: 0.8em;
  width: var(--size);
  height: var(--size);
  content: "";
  background-color: currentcolor;
  -webkit-mask: url("../icons/disc-arrow-right.svg") 0 0/100% 100% no-repeat;
          mask: url("../icons/disc-arrow-right.svg") 0 0/100% 100% no-repeat;
}
.DonationMessage .link a:where(:hover, :focus) {
  transition-duration: 0.2s;
  color: #fff;
  background-color: var(--color-green);
}
@media screen and (max-width: 767.99px) {
  .DonationMessage {
    gap: 60px 0;
  }
  .DonationMessage .message {
    width: auto;
    font-size: 20px;
  }
  .DonationMessage .message p {
    flex-direction: column;
  }
}

.js-has-pseudo [csstools-has-1a-2b-2t-2r-38-2x-33-32-1m-2w-2p-37-14-1a-2a-2t-2r-36-39-2x-38-24-2t-2p-2s-15]:not(.does-not-exist) {
  padding-top: 140px;
}

.Section:has(.RecruitLead) {
  padding-top: 140px;
}
@media screen and (max-width: 767.99px) {
  .js-has-pseudo [csstools-has-1a-2b-2t-2r-38-2x-33-32-1m-2w-2p-37-14-1a-2a-2t-2r-36-39-2x-38-24-2t-2p-2s-15]:not(.does-not-exist) {
    padding-top: 40px;
  }
  .Section:has(.RecruitLead) {
    padding-top: 40px;
  }
}

.RecruitLead .heading {
  margin: 0 auto 50px;
  font-size: 32px;
  line-height: 1.8;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767.99px) {
  .RecruitLead .heading {
    margin-bottom: 40px;
    font-size: 24px;
    flex-direction: column;
    align-items: center;
  }
}
.RecruitLead .text {
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 767.99px) {
  .RecruitLead .text {
    text-align: left;
  }
}

.RecruitPositions {
  display: grid;
  gap: 50px;
  justify-content: center;
}
@media screen and (max-width: 767.99px) {
  .RecruitPositions {
    gap: 30px;
  }
}
.RecruitPositions .list {
  display: grid;
  grid-template-columns: minmax(0, 730px);
  gap: 20px;
}
.RecruitPositions .list > li {
  padding: 1em 1.4em;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
  font-size: 18px;
  font-weight: bold;
  color: var(--color-green-dark);
  display: flex;
}
.RecruitPositions .list > li::before {
  content: "・";
}
.RecruitPositions p {
  text-align: center;
}
.RecruitPositions .link {
  position: relative;
  display: inline-block;
  padding: 0.95em 3.75em;
  font-size: 100%;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-green);
  background-color: #fff;
  border: 2px solid var(--color-green);
  border-radius: 1.8em;
  transition-property: color, background-color;
  transition-duration: 0.1s;
}
.RecruitPositions .link::after {
  --size: 1.5em;
  position: absolute;
  top: calc(50% - var(--size) / 2);
  right: 0.8em;
  width: var(--size);
  height: var(--size);
  content: "";
  background-color: currentcolor;
  -webkit-mask: url("../icons/disc-arrow-right.svg") 0 0/100% 100% no-repeat;
          mask: url("../icons/disc-arrow-right.svg") 0 0/100% 100% no-repeat;
}
.RecruitPositions .link:where(:hover, :focus) {
  transition-duration: 0.2s;
  color: #fff;
  background-color: var(--color-green);
}

.js-has-pseudo [csstools-has-1a-2b-2t-2r-38-2x-33-32-1m-2w-2p-37-14-1a-2a-2t-2r-36-39-2x-38-1x-32-3a-2x-36-33-32-31-2t-32-38-15]:not(.does-not-exist) {
  padding-top: 160px;
  padding-bottom: 80px;
}

.Section:has(.RecruitEnvironment) {
  padding-top: 160px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767.99px) {
  .js-has-pseudo [csstools-has-1a-2b-2t-2r-38-2x-33-32-1m-2w-2p-37-14-1a-2a-2t-2r-36-39-2x-38-1x-32-3a-2x-36-33-32-31-2t-32-38-15]:not(.does-not-exist) {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .Section:has(.RecruitEnvironment) {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.RecruitEnvironment,
.RecruitConsider {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.RecruitEnvironment:where(.RecruitConsider),
.RecruitConsider:where(.RecruitConsider) {
  margin-top: 100px;
  flex-direction: row-reverse;
}
.RecruitEnvironment .image,
.RecruitConsider .image {
  width: min(47.8632478632%, 560px);
  border-radius: var(--radius);
}
.RecruitEnvironment .content,
.RecruitConsider .content {
  width: min(47.8632478632%, 560px);
  display: grid;
  gap: 25px;
  align-content: start;
}
.RecruitEnvironment .content h2,
.RecruitConsider .content h2 {
  font-size: 28px;
}
.RecruitEnvironment .content p,
.RecruitConsider .content p {
  line-height: 1.8;
}
.RecruitEnvironment .content .button,
.RecruitConsider .content .button {
  position: relative;
  display: inline-block;
  padding: 0.95em 3.75em;
  font-size: 100%;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-green);
  background-color: #fff;
  border: 2px solid var(--color-green);
  border-radius: 1.8em;
  transition-property: color, background-color;
  transition-duration: 0.1s;
  margin-top: 1.5em;
}
.RecruitEnvironment .content .button::after,
.RecruitConsider .content .button::after {
  --size: 1.5em;
  position: absolute;
  top: calc(50% - var(--size) / 2);
  right: 0.8em;
  width: var(--size);
  height: var(--size);
  content: "";
  background-color: currentcolor;
  -webkit-mask: url("../icons/disc-arrow-right.svg") 0 0/100% 100% no-repeat;
          mask: url("../icons/disc-arrow-right.svg") 0 0/100% 100% no-repeat;
}
.RecruitEnvironment .content .button:where(:hover, :focus),
.RecruitConsider .content .button:where(:hover, :focus) {
  transition-duration: 0.2s;
  color: #fff;
  background-color: var(--color-green);
}
@media screen and (max-width: 767.99px) {
  .RecruitEnvironment,
  .RecruitConsider {
    margin-inline: auto;
    max-width: 560px;
    flex-direction: column;
    gap: var(--site-gutter);
  }
  .RecruitEnvironment:where(.RecruitConsider),
  .RecruitConsider:where(.RecruitConsider) {
    margin-top: 50px;
  }
  .RecruitEnvironment .image,
  .RecruitConsider .image {
    width: 100%;
  }
  .RecruitEnvironment .content,
  .RecruitConsider .content {
    width: 100%;
  }
  .RecruitEnvironment .content h2,
  .RecruitConsider .content h2 {
    font-size: 24px;
  }
}

.ContactForm {
  margin-block: 80px 140px;
}
@media screen and (max-width: 767.99px) {
  .ContactForm {
    margin-block: 40px 90px;
  }
}
.ContactForm .red {
  color: #ff5858;
}
.ContactForm :where(input[type=text], input[type=email], input[type=tel], input[type=file], select, textarea) {
  display: block;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 1em;
  font-size: 16px;
  font-family: inherit;
  color: #000;
  background: #f6f6f6;
  transition-property: border-color, background-color;
  transition-duration: 0.1s;
}
.ContactForm :where(input[type=text], input[type=email], input[type=tel], input[type=file], select, textarea):focus {
  transition-duration: 0.2s;
  border-color: var(--color-green);
  background-color: #fff;
}
.ContactForm :where(input[type=text], input[type=email], input[type=tel], input[type=file], select, textarea):where(input[type=file]) {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}
.ContactForm :where(input[type=text], input[type=email], input[type=tel], input[type=file], select, textarea):where(select) {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 10'%3E%3Cpath fill='black' d='M0 0H14L7 10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em top 50%;
  background-size: 14px 10px;
  padding-right: 3em;
}
.ContactForm :where(input[type=text], input[type=email], input[type=tel], input[type=file], select, textarea):where(textarea) {
  resize: vertical;
  min-height: 6lh;
}
@supports (field-sizing: content) {
  .ContactForm :where(input[type=text], input[type=email], input[type=tel], input[type=file], select, textarea):where(textarea) {
    field-sizing: content;
  }
}
.ContactForm :where(input[type=text], input[type=email], input[type=tel], input[type=file], select, textarea).invalid {
  background-color: #fff0f0;
}
.ContactForm :where(input[type=checkbox]) {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 26px;
  height: 26px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #f6f6f6;
}
.ContactForm :where(input[type=checkbox]):checked {
  background-color: #fff;
  background-image: url("../icons/check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
}

.ContactFormFields {
  display: grid;
  grid-template-columns: auto 1fr;
  justify-content: space-between;
}
.ContactFormFields :where(dt, dd) {
  border-bottom: 1px solid #ccc;
  padding: 2em 0;
}
.ContactFormFields :where(dt, dd):where(dt) {
  white-space: nowrap;
  padding-top: 3em;
  padding-right: 2em;
  font-weight: bold;
}
.ContactFormFields :where(dt, dd):where(dd) {
  padding-left: 4em;
  display: grid;
  gap: 0.5em;
}
.ContactFormFields.confirm dt {
  padding-top: 2em;
}
@media (max-width: 768px) {
  .ContactFormFields {
    grid-template-columns: 1fr;
  }
  .ContactFormFields :where(dt, dd):where(dt) {
    padding: 1.5em 0 0;
    border-bottom: none;
  }
  .ContactFormFields :where(dt, dd):where(dd) {
    padding: 1em 0 2em;
  }
}

.ContactFormAgreement {
  margin: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}
.ContactFormAgreement label {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-weight: bold;
}
.ContactFormAgreement label a {
  text-decoration: underline;
  transition-property: color, background-color;
  transition-duration: 0.1s;
}
.ContactFormAgreement label a:where(:hover, :focus) {
  transition-duration: 0.2s;
  color: var(--color-green);
}

.ContactFormButtons {
  margin: 75px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
}
.ContactFormButtons .submit {
  display: grid;
  place-items: center;
  background-color: #193361;
  color: #fff;
  padding: 1em 1.5em;
  min-width: 200px;
  max-width: 100%;
  min-height: 60px;
  font-size: 16px;
  border-radius: 30px;
  transition-property: color, background-color;
  transition-duration: 0.1s;
}
.ContactFormButtons .submit:where(:hover, :focus) {
  transition-duration: 0.2s;
  background-color: var(--color-green);
}
.ContactFormButtons .back {
  padding: 0;
  border: none;
  background: none;
  text-decoration: underline;
}

.ContactFormThanks {
  margin-block: 80px 140px;
  text-align: center;
}
@media screen and (max-width: 767.99px) {
  .ContactFormThanks {
    margin-block: 40px 90px;
  }
}
.ContactFormThanks h2 {
  margin: 1.5em 0;
  font-size: 36px;
}
.ContactFormThanks p {
  margin: 1.5em 0;
  line-height: 1.8;
}
.ContactFormThanks .link {
  margin-top: 2em;
}
.ContactFormThanks .link a {
  position: relative;
  display: inline-block;
  padding: 0.95em 3.75em;
  font-size: 100%;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-green);
  background-color: #fff;
  border: 2px solid var(--color-green);
  border-radius: 1.8em;
  transition-property: color, background-color;
  transition-duration: 0.1s;
}
.ContactFormThanks .link a::after {
  --size: 1.5em;
  position: absolute;
  top: calc(50% - var(--size) / 2);
  right: 0.8em;
  width: var(--size);
  height: var(--size);
  content: "";
  background-color: currentcolor;
  -webkit-mask: url("../icons/disc-arrow-right.svg") 0 0/100% 100% no-repeat;
          mask: url("../icons/disc-arrow-right.svg") 0 0/100% 100% no-repeat;
}
.ContactFormThanks .link a:where(:hover, :focus) {
  transition-duration: 0.2s;
  color: #fff;
  background-color: var(--color-green);
}
@media (max-width: 768px) {
  .ContactFormThanks {
    text-align: left;
  }
  .ContactFormThanks h2 {
    font-size: 24px;
  }
}

.ContactFormErrors {
  margin: 2em 0;
  border: 1px solid #ff5858;
  border-radius: var(--radius);
  background-color: #fff0f0;
  padding: 1em 1.5em;
}
.ContactFormErrors ul {
  margin-top: 0.5em;
  list-style: disc;
  padding-left: 1.5em;
}
.ContactFormErrors ul li {
  margin-top: 0.2em;
}

.ContactFormUploadedFile {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
.ContactFormUploadedFile a {
  text-decoration: underline;
  transition-property: color, background-color;
  transition-duration: 0.1s;
}
.ContactFormUploadedFile a:where(:hover, :focus) {
  transition-duration: 0.2s;
  color: var(--color-green);
}
.ContactFormUploadedFile label {
  display: flex;
  align-items: center;
  gap: 0.3em;
}
.ContactFormUploadedFile label input[type=checkbox] {
  width: 20px;
  height: 20px;
}
.js-has-pseudo [csstools-has-1a-1v-33-32-38-2p-2r-38-1y-33-36-31-2d-34-30-33-2p-2s-2t-2s-1y-2x-30-2t-1m-2w-2p-37-14-2x-32-34-39-38-1m-2r-2w-2t-2r-2z-2t-2s-15-w-2p]:not(.does-not-exist):not(does-not-exist):not(does-not-exist) {
  text-decoration: line-through;
}
.ContactFormUploadedFile:has(input:checked) a {
  text-decoration: line-through;
}

.NewsList {
  list-style: none;
}
.NewsList > li > a {
  padding-block: 1.5em;
  border-bottom: 1px solid #ccc;
  display: flex;
  gap: 0.5em 2em;
}
@media screen and (max-width: 800px) {
  .NewsList > li > a {
    flex-wrap: wrap;
  }
}
.NewsList > li > a > .date {
  flex: 0 0 10ex;
  align-items: start;
  margin-right: -1em;
}
.NewsList > li > a > .category {
  flex: 0 0 11em;
  align-self: start;
  font-size: 14px;
  margin-top: -0.1em;
  padding: 0.3em 2em 0.34em;
  color: #fff;
  white-space: nowrap;
  background: var(--color-green);
  border-radius: 1em;
  text-align: center;
}
.NewsList > li > a > .title {
  flex: 0 1 100%;
  transition: color 0.1s;
}
.NewsList > li > a:where(:hover, :focus) > .title {
  transition-duration: 0.2s;
  color: var(--color-green);
}

.NewsContainer {
  --container-max-width: 1040px;
  margin-inline: auto;
  padding-inline: var(--site-gutter);
  max-width: calc(var(--container-max-width) + var(--site-gutter) * 2);
  margin-block: 80px 140px;
}
@media screen and (max-width: 767.99px) {
  .NewsContainer {
    margin-block: 40px 90px;
  }
}

.NewsCategoryList {
  margin-bottom: 45px;
  padding: calc(var(--site-gutter) * 1.2) var(--site-gutter);
  background-color: var(--color-green-light);
  display: flex;
  align-items: baseline;
  gap: 1em 2em;
}
@media screen and (max-width: 767.99px) {
  .NewsCategoryList {
    flex-direction: column;
  }
}
.NewsCategoryList .heading {
  flex-shrink: 0;
  font-size: 16px;
}
.NewsCategoryList .list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  font-size: 14px;
}
.NewsCategoryList a {
  --bg: #fff;
  --text: #5d7973;
  transition-property: color, background-color;
  transition-duration: 0.1s;
  flex: 0 0 11em;
  font-size: 14px;
  margin-top: -0.1em;
  border: 1px solid var(--color-green);
  padding: 0.16em 2em 0.2em;
  color: var(--text);
  white-space: nowrap;
  background-color: var(--bg);
  border-radius: 1em;
  text-align: center;
}
.NewsCategoryList a[aria-current=page] {
  --bg: var(--color-green);
  --text: #fff;
}
.NewsCategoryList a:where(:hover, :focus) {
  transition-duration: 0.2s;
  --text: var(--color-green);
}
@media screen and (max-width: 767.99px) {
  .NewsCategoryList a {
    padding-inline: 1em;
  }
}

.NewsArticleHeader {
  margin-bottom: 40px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5em 1em;
}
.NewsArticleHeader .date {
  font-size: 14px;
  color: #868686;
}
.NewsArticleHeader .category {
  display: inline-block;
  font-size: 14px;
  padding: 0.16em 2em 0.2em;
  color: #fff;
  white-space: nowrap;
  background: var(--color-green);
  border-radius: 1em;
  text-align: center;
}
.NewsArticleHeader .title {
  flex: 0 0 100%;
  font-size: 28px;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .NewsArticleHeader .title {
    font-size: 24px;
  }
}

.NewsArticleBody::after {
  content: "";
  display: block;
  margin-block: 40px 60px;
  border-bottom: 1px solid #ccc;
}

.NewsArticleBack {
  margin-top: 60px;
  text-align: center;
}
.NewsArticleBack a {
  position: relative;
  display: inline-block;
  padding: 0.95em 3.75em;
  font-size: 100%;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-green);
  background-color: #fff;
  border: 2px solid var(--color-green);
  border-radius: 1.8em;
  transition-property: color, background-color;
  transition-duration: 0.1s;
}
.NewsArticleBack a::after {
  --size: 1.5em;
  position: absolute;
  top: calc(50% - var(--size) / 2);
  right: 0.8em;
  width: var(--size);
  height: var(--size);
  content: "";
  background-color: currentcolor;
  -webkit-mask: url("../icons/disc-arrow-right.svg") 0 0/100% 100% no-repeat;
          mask: url("../icons/disc-arrow-right.svg") 0 0/100% 100% no-repeat;
}
.NewsArticleBack a:where(:hover, :focus) {
  transition-duration: 0.2s;
  color: #fff;
  background-color: var(--color-green);
}

.EditorContent p {
  margin-block: 1em;
  line-height: 1.8;
}
.EditorContent h1,
.EditorContent h2,
.EditorContent h3,
.EditorContent h4,
.EditorContent h5,
.EditorContent h6 {
  margin-block: 2em 1em;
  font-weight: bold;
  line-height: 1.4;
}
.EditorContent ul {
  margin-block: 1em;
  padding-inline: 1.5em;
  list-style: disc;
}
.EditorContent ol {
  margin-block: 1em;
  padding-inline: 1.5em;
  list-style: decimal;
}
.EditorContent li {
  margin-block: 0.5em;
}
.EditorContent a {
  text-decoration: underline;
  transition-property: color, background-color;
  transition-duration: 0.1s;
}
.EditorContent a:where(:hover, :focus) {
  transition-duration: 0.2s;
  color: var(--color-green);
}
.EditorContent a[target=_blank]::after {
  content: "";
  display: inline-block;
  margin-left: 0.25em;
  width: 0.8125em;
  height: 0.8125em;
  background-color: currentcolor;
  -webkit-mask: url("../icons/external-link.svg") 0 0/100% 100% no-repeat;
          mask: url("../icons/external-link.svg") 0 0/100% 100% no-repeat;
}

.pagination {
  margin-block: 60px 0;
}
.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 2em;
}
@media screen and (max-width: 768px) {
  .pagination .nav-links {
    gap: 0 1em;
  }
}
.pagination .nav-links .page-numbers {
  display: grid;
  place-content: center;
}
.pagination .nav-links .page-numbers[aria-current=page] {
  width: 2.8em;
  height: 2.8em;
  border-radius: 50%;
  background: var(--color-green);
  color: #fff;
}
.pagination .nav-links .page-numbers:link {
  transition-property: color, background-color;
  transition-duration: 0.1s;
}
.pagination .nav-links .page-numbers:link:where(:hover, :focus) {
  transition-duration: 0.2s;
  color: var(--color-green);
}

.ContactBannerWrap {
  margin: 100px auto;
  padding-inline: var(--site-gutter);
  max-width: calc(1200px + var(--site-gutter) * 2);
}
@media screen and (max-width: 767.99px) {
  .ContactBannerWrap {
    margin-block: 70px;
  }
}

.ContactBanner {
  position: relative;
  z-index: 0;
  padding: 50px;
  background-color: var(--color-green);
  color: #fff;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 50px;
}
.ContactBanner .illust {
  position: absolute;
  z-index: -1;
  right: 480px;
  bottom: 15px;
  aspect-ratio: 402/148;
  width: 402px;
  height: auto;
}
.ContactBanner > div > h2 {
  margin: 0;
  font-size: 28px;
}
.ContactBanner > div > p {
  margin: 0.5em 0 0;
}
.ContactBanner > a {
  flex-shrink: 0;
  padding-inline: var(--site-gutter);
  width: 400px;
  height: 100px;
  background: #fff;
  color: var(--color-green);
  border-radius: var(--radius);
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  border: 1px solid #fff;
  transition-property: color, background-color;
  transition-duration: 0.1s;
}
.ContactBanner > a::after {
  flex-shrink: 0;
  content: "";
  aspect-ratio: 1/1;
  width: 1.33em;
  height: auto;
  background: currentcolor;
  -webkit-mask: url("../icons/disc-arrow-right.svg") 0 0/100% 100% no-repeat;
          mask: url("../icons/disc-arrow-right.svg") 0 0/100% 100% no-repeat;
}
.ContactBanner > a:where(:hover, :focus) {
  transition-duration: 0.2s;
  background-color: rgba(255, 255, 255, 0);
  color: #fff;
}
@media screen and (max-width: 767.99px) {
  .ContactBanner {
    padding: 30px var(--site-gutter);
    flex-direction: column;
    align-items: start;
  }
  .ContactBanner .illust {
    top: auto;
    bottom: 80px;
    right: calc(50% - 144px);
    width: 288px;
  }
  .ContactBanner > a {
    padding-inline: 1.1em;
    width: 100%;
    height: 70px;
  }
}

.js-has-pseudo [csstools-has-1a-2b-2t-2r-38-2x-33-32-1m-2w-2p-37-14-1a-28-36-2x-3a-2p-2r-3d-1v-33-32-38-2t-32-38-15]:not(.does-not-exist) {
  padding: 0;
  margin-block: 80px var(--section-space-bottom);
}

.Section:has(.PrivacyContent) {
  padding: 0;
  margin-block: 80px var(--section-space-bottom);
}
@media screen and (max-width: 767.99px) {
  .js-has-pseudo [csstools-has-1a-2b-2t-2r-38-2x-33-32-1m-2w-2p-37-14-1a-28-36-2x-3a-2p-2r-3d-1v-33-32-38-2t-32-38-15]:not(.does-not-exist) {
    margin-top: 40px;
  }
  .Section:has(.PrivacyContent) {
    margin-top: 40px;
  }
}

.js-has-pseudo [csstools-has-1a-1v-33-32-38-2p-2x-32-2t-36-1m-2w-2p-37-14-1a-28-36-2x-3a-2p-2r-3d-1v-33-32-38-2t-32-38-15]:not(.does-not-exist) {
  max-width: 1000px;
}

.Container:has(.PrivacyContent) {
  max-width: 1000px;
}

.PrivacyContent {
  line-height: 1.8;
}
.PrivacyContent h2 {
  margin: 2em 0 1em;
  font-size: 20px;
}
@media screen and (max-width: 767.99px) {
  .PrivacyContent h2 {
    font-size: 18px;
  }
}
.PrivacyContent p {
  margin: 1.5em 0;
}
.PrivacyContent ul {
  margin: 1.5em 0;
  padding-left: 1.2em;
  list-style: disc;
}
.PrivacyContent ul li {
  margin: 0.5em 0;
  line-height: 1.4;
}
.PrivacyContent hr {
  margin: 2em 0;
  border: none;
  border-top: 1px solid #ccc;
}

.NotFound .text {
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 767.99px) {
  .NotFound .text {
    margin-inline: auto;
    max-width: 420px;
    text-align: left;
  }
}
.NotFound .link {
  text-align: center;
  margin-top: 80px;
}
.NotFound .link a {
  position: relative;
  display: inline-block;
  padding: 0.95em 3.75em;
  font-size: 100%;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-green);
  background-color: #fff;
  border: 2px solid var(--color-green);
  border-radius: 1.8em;
  transition-property: color, background-color;
  transition-duration: 0.1s;
}
.NotFound .link a::after {
  --size: 1.5em;
  position: absolute;
  top: calc(50% - var(--size) / 2);
  right: 0.8em;
  width: var(--size);
  height: var(--size);
  content: "";
  background-color: currentcolor;
  -webkit-mask: url("../icons/disc-arrow-right.svg") 0 0/100% 100% no-repeat;
          mask: url("../icons/disc-arrow-right.svg") 0 0/100% 100% no-repeat;
}
.NotFound .link a:where(:hover, :focus) {
  transition-duration: 0.2s;
  color: #fff;
  background-color: var(--color-green);
}