@charset "UTF-8";
html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
@media screen and (width < 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

@media screen and (width < 375px) {
  html.sub-page {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width >= 768px) and (width < 1200px) {
  html.sub-page {
    font-size: 1.4285714286vw;
  }
}

a[href^=tel] {
  text-decoration: none;
}

a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  /* 強調をなくす */
}

a:hover {
  text-decoration: none;
}

img,
svg {
  vertical-align: middle;
}

picture,
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

:where(:any-link, button, [type=button], [type=reset], [type=submit], label[for], select, summary, [role=tab], [role=button]) {
  cursor: pointer;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

:focus:not(:focus-visible) {
  outline: none;
}

input[type=text] {
  font-size: 1rem;
  /* = 16px */
}

body {
  font-family: var(--base-font-family);
  font-weight: var(--fw-medium);
  color: var(--black);
}

body.is-hidden {
  overflow: hidden;
}

.grecaptcha-badge {
  visibility: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media print {
  :where(pre) {
    /* Prevent text wrapping in print media. */
    text-wrap-mode: unset;
  }
}
/* ======================================================
//  MARK: Text-level semantics
// ====================================================== */
:where(em:lang(ja)) {
  /* In Japanese, emphasis is commonly represented by bold text, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

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

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

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

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

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

@media (forced-colors: active) {
  :where(mark) {
    /*
    * In forced-colors mode, the color of the mark element may not change, which can be problematic. Use system colors in forced-colors mode.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkWHCM
    */
    background-color: Highlight;
    color: HighlightText;
  }
}
@media print {
  :where(mark) {
    /*
    * Not all printers support color, and users might print in grayscale.
    * It's worth adding a non-disruptive style that scales with the text, as an alternative to relying only on background color.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkPrint
    */
    border-width: 1px;
    border-style: dotted;
  }
}
/* ======================================================
//  MARK: Links
// ====================================================== */
:where(a) {
  /*
  * The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance.
  * In Firefox on iOS, the user agent stylesheet’s text color is applied even when the text is not a link.
  * @see https://github.com/darkreader/darkreader/issues/9836
  */
  color: unset;
}

:where(a:any-link) {
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}

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

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

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

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

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

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

/* ======================================================
//  MARK: Forms
// ====================================================== */
: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(: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;
}

::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 {
  /* inner */
  --inner: min(1080px, 100%);
  --padding-inner: 1.5625rem;
  --rem: 1rem / 16;
  /* z-index */
  --z-index-hamburger: 900;
  --z-index-header: 800;
  --z-index-drawer: 700;
  /* color */
  --white: #fff;
  --black: #000;
  --lightBlue: #2878ff;
  --blue: #2864d2;
  --darkBlue: #0050d2;
  --green: #50b400;
  --lightGreen: #78c800;
  --gray-eb: #ebebeb;
  --gray-d2: #d2d2d2;
  --gray-be: #bebebe;
  --gray-D7: #d7d7d7;
  --gray-CA: #cacaca;
  /* font-weight */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-semi-black: 800;
  --fw-black: 900;
  /* font-family */
  --base-font-family: "Zen Kaku Gothic New", sans-serif;
  /* transition duration */
  --duration: 0.3s;
}
@media screen and (max-width: 1023px) {
  :root {
    --inner: 480px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --inner: min(31.25rem, 100%);
    --padding-inner: 1.25rem;
  }
}

.inner {
  max-width: calc(var(--inner) + var(--padding-inner) * 2);
  padding-inline: var(--padding-inner);
  margin-inline: auto;
}
@media screen and (max-width: 1023px) {
  .inner {
    max-width: calc(62.5vw + var(--padding-inner) * 2);
  }
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: calc(30rem + var(--padding-inner) * 2);
    padding-inline: var(--padding-inner);
  }
}

.button {
  display: inline-block;
  width: 100%;
  max-width: 17.5rem;
  padding: 1.3125rem 1.5rem;
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  color: var(--white);
  text-align: center;
  letter-spacing: 0;
  background-color: var(--blue);
  outline: 1px solid currentcolor;
  outline-offset: -0.3125rem;
  transition: background-color var(--duration), color var(--duration);
}
@media screen and (max-width: 1023px) {
  .button {
    max-width: 15rem;
    padding: 0.75rem;
    font-size: 1rem;
  }
}

.button.button--white {
  color: var(--black);
  background-color: var(--white);
}

@media (any-hover: hover) {
  .button:hover {
    color: var(--white);
    background-color: var(--green);
  }
  .button.button--hover-blue:hover {
    background-color: var(--blue);
  }
}
.cta-button {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  font-weight: var(--fw-black);
  line-height: 1;
  color: var(--white);
  outline: 2px solid currentcolor;
  outline-offset: -0.5rem;
  transition: background-color var(--duration);
}
.cta-button::before {
  content: "";
  background-color: currentcolor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
@media screen and (max-width: 1023px) {
  .cta-button {
    padding: 0.9375rem;
  }
}

.cta-button.cta-button--tel {
  font-size: 2.5rem;
  background-color: var(--blue);
}
.cta-button.cta-button--tel::before {
  width: 2.25rem;
  height: 2.25rem;
  mask-image: url("../images/icon_tel.CnqkeY-O.svg");
}
@media screen and (max-width: 1023px) {
  .cta-button.cta-button--tel {
    font-size: 1.25rem;
  }
  .cta-button.cta-button--tel::before {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.cta-button.cta-button--form {
  font-size: 2rem;
  background-color: var(--green);
}
.cta-button.cta-button--form::before {
  width: 2.25rem;
  height: 1.5rem;
  mask-image: url("../images/icon_mail.Vs4o-N5A.svg");
}
@media screen and (max-width: 1023px) {
  .cta-button.cta-button--form {
    font-size: 1.125rem;
  }
  .cta-button.cta-button--form::before {
    width: 1.4375rem;
    height: 1rem;
  }
}

@media (any-hover: hover) {
  .cta-button--tel:hover {
    background-color: var(--green);
  }
  .cta-button--form:hover {
    background-color: var(--blue);
  }
}
.cta-button.cta-button--drawer {
  padding: 1rem;
}
.cta-button.cta-button--drawer.cta-button--tel {
  font-size: 1.25rem;
}
.cta-button.cta-button--drawer.cta-button--tel::before {
  width: 1.25rem;
  height: 1.25rem;
}
.cta-button.cta-button--drawer.cta-button--form {
  font-size: 1.125rem;
}
.cta-button.cta-button--drawer.cta-button--form::before {
  width: 1.4375rem;
  height: 1rem;
}

.cta-button.cta-button--bottom {
  outline: none;
}
@media screen and (max-width: 767px) {
  .cta-button.cta-button--bottom {
    gap: 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .cta-button.cta-button--bottom.cta-button--tel {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .cta-button.cta-button--bottom.cta-button--form {
    font-size: 1rem;
  }
}

.hamburger {
  display: none;
}
@media screen and (max-width: 1440px) {
  .hamburger {
    position: fixed;
    top: 0;
    right: 0;
    z-index: var(--z-index-hamburger);
    display: grid;
    gap: 0.625rem;
    place-content: center;
    width: 8.75rem;
    height: 8.75rem;
    font-size: 1.125rem;
    font-weight: var(--fw-bold);
    line-height: 1;
    color: var(--white);
    letter-spacing: 0;
    cursor: pointer;
    background-color: var(--green);
    border: none;
    outline: 2px solid currentcolor;
    outline-offset: -0.5rem;
  }
}
@media screen and (max-width: 1023px) {
  .hamburger {
    gap: 0.3125rem;
    width: 3.75rem;
    height: 3.75rem;
    outline: none;
  }
}
.hamburger > span:not(.hamburger__text) {
  display: block;
  width: 3rem;
  height: 0.1875rem;
  margin-inline: auto;
  background-color: var(--white);
  transition: transform var(--duration), opacity var(--duration);
}
@media screen and (max-width: 1023px) {
  .hamburger > span:not(.hamburger__text) {
    width: 1.875rem;
    border-radius: 100vw;
  }
}
.hamburger:focus, .hamburger:focus-visible {
  outline: 2px solid currentcolor;
  outline-offset: -0.5rem;
}
@media screen and (max-width: 1023px) {
  .hamburger:focus, .hamburger:focus-visible {
    outline: none;
  }
}
.hamburger .hamburger__text {
  position: relative;
  display: block;
  width: 5em;
  height: 1em;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 1023px) {
  .hamburger .hamburger__text {
    font-size: 0.75rem;
  }
}
.hamburger .hamburger__menu,
.hamburger .hamburger__close {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  background-color: transparent;
  transition: opacity var(--duration);
}
.hamburger .hamburger__menu {
  opacity: 1;
}
.hamburger .hamburger__close {
  opacity: 0;
}
.hamburger.is-open > span:nth-child(1) {
  transform: translateY(0.8125rem) rotate(45deg);
}
.hamburger.is-open > span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open > span:nth-child(3) {
  transform: translateY(-0.8125rem) rotate(-45deg);
}
.hamburger.is-open .hamburger__menu {
  opacity: 0;
}
.hamburger.is-open .hamburger__close {
  opacity: 1;
}
@media screen and (max-width: 1023px) {
  .hamburger.is-open > span:nth-child(1) {
    transform: translateY(0.5rem) rotate(45deg);
  }
  .hamburger.is-open > span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-open > span:nth-child(3) {
    transform: translateY(-0.5rem) rotate(-45deg);
  }
}

.heading {
  padding-left: 1.5rem;
  font-size: 2.5rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0;
  border-left: 0.5rem solid var(--blue);
}
.heading.--gray {
  padding-left: 1.0625rem;
  font-size: 2rem;
  border-color: var(--gray-be);
}
@media screen and (max-width: 767px) {
  .heading.--gray {
    padding-left: 0.625rem;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .heading {
    padding-left: 0.625rem;
    font-size: 1.5rem;
  }
}

.heading.heading--md {
  padding-inline: min(2.5vw, 2rem);
  font-size: 2rem;
  line-height: 2;
  color: var(--white);
  letter-spacing: 0;
  background-color: var(--blue);
  border: none;
}
@media screen and (max-width: 767px) {
  .heading.heading--md {
    font-size: 1.25rem;
  }
}

.section-title {
  font-size: 2.5rem;
  font-weight: var(--fw-black);
  line-height: 1.5;
  color: var(--white);
}
@media screen and (max-width: 1023px) {
  .section-title {
    font-size: 1.5rem;
  }
}

.section-title.section-title--blue {
  color: var(--blue);
}

.section-title.section-title--gray {
  color: var(--gray-be);
}

.strength-card {
  --padding: 40;
  padding-block: 2.9375rem 5rem;
  margin-right: min(var(--padding) / 1280 * 100vw, var(--padding) * var(--rem));
  margin-left: calc(50% - 50vw);
  background-color: var(--green);
}
@media screen and (max-width: 1023px) {
  .strength-card {
    padding-block: 80px;
    margin-right: 0;
  }
}
.strength-card .inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem min(6.25vw, 5rem);
  max-width: 1120px;
  padding-inline: min(var(--padding) / 1280 * 100vw, var(--padding) * var(--rem)) 3.75rem;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 1023px) {
  .strength-card .inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: calc(78.125vw + var(--padding-inner) * 2);
    padding-inline: 60px;
  }
}
@media screen and (max-width: 767px) {
  .strength-card .inner {
    max-width: calc(30rem + var(--padding-inner) * 2);
    padding-inline: var(--padding-inner);
    margin-inline: auto;
  }
}
.strength-card figure {
  position: relative;
  z-index: 1;
  grid-row: 1/4;
  grid-column: 2/3;
  align-self: center;
  width: min(31.25vw, 25rem);
  height: fit-content;
}
@media screen and (max-width: 1023px) {
  .strength-card figure {
    grid-row: 2/3;
    grid-column: unset;
    justify-self: center;
    width: 100%;
    max-width: 34.375rem;
  }
}
.strength-card figure::before {
  position: absolute;
  top: 1.125rem;
  left: 1rem;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
}
@media screen and (max-width: 767px) {
  .strength-card figure::before {
    top: 0.625rem;
    left: 0.625rem;
  }
}
.strength-card figure img,
.strength-card figure picture {
  width: 100%;
  height: auto;
  aspect-ratio: 400/290;
  object-fit: cover;
  border: 2px solid var(--white);
}
.strength-card h2 {
  display: flex;
  gap: 1.25rem;
  align-items: baseline;
  font-size: 24px;
  font-weight: var(--fw-black);
  line-height: 1.5;
  color: var(--white);
  letter-spacing: 0;
}
.strength-card h2 span {
  flex-shrink: 0;
  font-size: 5rem;
  line-height: 1;
  color: var(--lightGreen);
}
@media screen and (max-width: 767px) {
  .strength-card h2 span {
    font-size: 3.75rem;
  }
}
@media screen and (max-width: 1023px) {
  .strength-card h2 {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .strength-card h2 {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    font-size: 1.25rem;
  }
}
.strength-card p {
  color: var(--white);
}
.strength-card ul {
  padding: 1.25rem min(2.34375vw, 1.875rem);
  background-color: var(--white);
}
.strength-card li {
  display: flex;
  gap: 0.5625rem;
  font-weight: var(--fw-medium);
}
.strength-card li::before {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.5lh;
  content: "";
  background-color: var(--green);
  border-radius: 100vh;
}

.strength-card:nth-child(2n) {
  margin-right: calc(50% - 50vw);
  margin-left: min(var(--padding) / 1280 * 100vw, var(--padding) * var(--rem));
  background-color: var(--blue);
}
@media screen and (max-width: 1023px) {
  .strength-card:nth-child(2n) {
    margin-left: 0;
  }
}
.strength-card:nth-child(2n) .inner {
  grid-template-columns: auto 1fr;
  padding-inline: 3.75rem min(var(--padding) / 1280 * 100vw, var(--padding) * var(--rem));
  margin-right: auto;
  margin-left: 0;
  direction: rtl;
}
@media screen and (max-width: 1023px) {
  .strength-card:nth-child(2n) .inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: calc(78.125vw + var(--padding-inner) * 2);
    padding-inline: 60px;
  }
}
@media screen and (max-width: 1023px) {
  .strength-card:nth-child(2n) .inner {
    max-width: calc(30rem + var(--padding-inner) * 2);
    padding-inline: var(--padding-inner);
    margin-inline: auto;
  }
}
.strength-card:nth-child(2n) h2,
.strength-card:nth-child(2n) p,
.strength-card:nth-child(2n) li {
  direction: ltr;
  text-align: left;
}
.strength-card:nth-child(2n) h2 span {
  color: var(--lightBlue);
}
.strength-card:nth-child(2n) li::before {
  background-color: var(--blue);
}

.text {
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  line-height: 2;
  letter-spacing: 0;
}
@media screen and (max-width: 1023px) {
  .text {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .text {
    font-size: 1rem;
  }
}

.contact-form__label span,
.contact-form__acceptance span span {
  color: var(--green);
}

.contact-form__row {
  display: grid;
  grid-template-columns: min(18.75vw, 15rem) 1fr;
  column-gap: min(3.125vw, 2.5rem);
  align-items: start;
}
@media screen and (max-width: 767px) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }
}

.contact-form__row + .contact-form__row {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .contact-form__row + .contact-form__row {
    margin-top: 2.5rem;
  }
}

.contact-form__label {
  padding-left: 0.625rem;
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  line-height: 1.4;
  letter-spacing: -3%;
}
@media screen and (max-width: 1023px) {
  .contact-form__label {
    padding-top: 1.25rem;
    padding-left: 0;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .contact-form__label {
    padding-top: 0;
    font-size: 1rem;
  }
}

label[for] {
  pointer-events: none;
}

.contact-form__input input,
.contact-form__input textarea {
  width: 100%;
  padding: 18px 16px;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: -3%;
  background: var(--gray-eb);
  border: none;
}
@media screen and (max-width: 1023px) {
  .contact-form__input input,
  .contact-form__input textarea {
    padding: 8px;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .contact-form__input input,
  .contact-form__input textarea {
    margin-top: 0.5rem;
    font-size: 1rem;
  }
}

.contact-form__input textarea {
  min-height: 15rem;
  resize: vertical;
}

.contact-form__privacy {
  margin-top: 3.75rem;
}

.contact-form__privacy-lead {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-form__privacy-lead {
    text-align: left;
  }
}

.contact-form__privacy-box {
  height: 26.6875rem;
  padding: 2.9375rem 2.5rem;
  margin-top: 2.5rem;
  overflow-y: scroll;
  line-height: 2;
  border: 3px solid var(--gray-eb);
}
@media screen and (max-width: 767px) {
  .contact-form__privacy-box {
    padding: 1.25rem;
  }
}
.contact-form__privacy-box dl + dl {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contact-form__privacy-box dl + dl {
    margin-top: 1.875rem;
  }
}
.contact-form__privacy-box dt {
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: -3%;
}
@media screen and (max-width: 767px) {
  .contact-form__privacy-box dt {
    font-size: 1rem;
  }
}
.contact-form__privacy-box dd {
  margin-top: 2rem;
  font-size: 1.125rem;
  font-weight: var(--fw-medium);
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .contact-form__privacy-box dd {
    margin-top: 1rem;
    font-size: 1rem;
  }
}

.contact-form__acceptance {
  display: flex;
  gap: 0.375rem;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .contact-form__acceptance {
    font-size: 1rem;
  }
}

.contact-form__acceptance input {
  position: relative;
  width: 1.125rem;
  height: 1.125rem;
}

.contact-form__acceptance input:checked::before {
  position: absolute;
  top: -0.0625rem;
  left: 0.25rem;
  display: block;
  width: 0.5rem;
  height: 1rem;
  content: "";
  border-right: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(45deg);
}

.contact-form__button {
  margin-top: 3.75rem;
  text-align: center;
}

.contact-form__recaptcha {
  margin-top: 2.5rem;
  opacity: 0.5;
}
.contact-form__recaptcha a {
  text-decoration: underline;
}

.cta-contact {
  padding-block: 4.9375rem 7.5rem;
}
@media screen and (max-width: 1023px) {
  .cta-contact {
    padding-block: 2.5rem 4rem;
  }
}
@media screen and (max-width: 767px) {
  .cta-contact {
    padding-block: 3rem 4rem;
  }
}
.cta-contact .title {
  text-align: center;
}
.cta-contact .title::before {
  display: block;
  margin-bottom: 3.125rem;
  font-size: min(16.40625vw, 13.125rem);
  font-weight: var(--fw-black);
  line-height: 1;
  color: var(--gray-be);
  text-transform: uppercase;
  content: "contact";
}
@media screen and (max-width: 1023px) {
  .cta-contact .title::before {
    margin-bottom: 0.1875rem;
    font-size: 13.5416666667vw;
  }
}
@media screen and (max-width: 767px) {
  .cta-contact .title::before {
    font-size: min(19.2vw, 6.25rem);
  }
}
.cta-contact .link {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3.25rem;
}
@media screen and (max-width: 1023px) {
  .cta-contact .link {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.6875rem;
  }
}
@media screen and (max-width: 767px) {
  .cta-contact .link {
    margin-top: 1.875rem;
  }
}

.cta {
  display: none;
}
@media screen and (max-width: 1023px) {
  .cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: var(--z-index-drawer);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s, transform 0.4s, visibility 0.4s;
    transform: translateY(20px);
  }
  .cta.is-show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: var(--z-index-drawer);
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--duration), visibility var(--duration);
}
.drawer.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.drawer__overlay {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--black) 50%, transparent);
}

.drawer__content {
  position: relative;
  z-index: 1;
  width: 50%;
  max-width: 40rem;
  height: 100%;
  padding: 6.25rem 1.875rem 2.5rem;
  margin-left: auto;
  color: var(--white);
  background: var(--black);
}
@media screen and (max-width: 1023px) {
  .drawer__content {
    padding: 5.375rem 1.25rem 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .drawer__content {
    width: 100%;
  }
}
.drawer__content ul {
  display: flex;
  flex-direction: column;
}
.drawer__content ul a {
  display: block;
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  line-height: 3;
  letter-spacing: 0;
  transition: color var(--duration);
}
@media screen and (max-width: 1023px) {
  .drawer__content ul a {
    font-size: 1rem;
  }
}
@media (any-hover: hover) {
  .drawer__content ul a:hover {
    color: var(--green);
  }
}
.drawer__content a.cta-button {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .drawer__content a.cta-button {
    margin-top: 0.9375rem;
  }
}
.drawer__content .cta-button + .cta-button {
  margin-top: 1.25rem;
}

.footer {
  overflow-x: clip;
}
@media screen and (max-width: 1023px) {
  .footer {
    padding-bottom: 3.125rem;
  }
}
.footer .contents {
  padding-block: 7.5rem;
  background-color: var(--blue);
}
@media screen and (max-width: 1023px) {
  .footer .contents {
    padding-block: 4rem;
  }
}
.footer .info {
  position: relative;
  z-index: 1;
}
.footer .info::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  display: block;
  width: 40rem;
  height: auto;
  aspect-ratio: 640/393;
  content: "";
  background-color: var(--lightBlue);
  mask-image: url("../images/logo_icon.Bqi3n51F.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transform: translate(-50%, -50%);
}
.footer .info > div {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: auto 1fr;
  gap: 0 4rem;
}
@media screen and (max-width: 1023px) {
  .footer .info > div {
    grid-template-columns: 1fr;
  }
}
.footer .info div + div {
  margin-top: 4rem;
}
@media screen and (max-width: 1023px) {
  .footer .info div + div {
    margin-top: 1.875rem;
  }
}
.footer .info p:nth-of-type(1) {
  font-size: 2.5rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  color: var(--white);
}
@media screen and (max-width: 1023px) {
  .footer .info p:nth-of-type(1) {
    font-size: 1.5rem;
  }
}
.footer .info p.text {
  margin-top: 0.75rem;
  color: var(--white);
}
@media screen and (max-width: 1023px) {
  .footer .info p.text {
    margin-top: 0.25rem;
    line-height: 1.5;
  }
}
.footer .info .map {
  grid-row: 1/3;
  grid-column: 2/3;
  width: 100%;
  height: 12.5rem;
}
.footer .info .map iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .footer .info .map {
    grid-row: unset;
    grid-column: unset;
    height: 11.25rem;
    margin-top: 0.8125rem;
  }
}
.footer .copy {
  display: flex;
  flex-direction: column;
  gap: 3.25rem;
  align-items: center;
  margin-top: 6.125rem;
  font-size: min(20.78125vw, 16.625rem);
  font-weight: var(--fw-black);
  line-height: 1;
  color: var(--gray-d2);
}
.footer .copy span {
  font-size: min(11.25vw, 9rem);
  white-space: nowrap;
}
@media screen and (max-width: 1023px) {
  .footer .copy {
    gap: 1.5625rem;
    margin-top: 3.625rem;
    font-size: 15.3645833333vw;
  }
  .footer .copy span {
    font-size: 8.203125vw;
  }
}
@media screen and (max-width: 767px) {
  .footer .copy {
    gap: 1.25rem;
    font-size: min(22.4vw, 7.25rem);
    white-space: nowrap;
  }
  .footer .copy span {
    font-size: min(12vw, 3.875rem);
  }
}
.footer .bottom-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  margin-top: 7.875rem;
}
.footer .bottom-content .logo {
  width: 22.375rem;
  height: auto;
  aspect-ratio: 358/40;
}
.footer .bottom-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem min(2.8125vw, 2.25rem);
  color: var(--white);
}
@media (any-hover: hover) {
  .footer .bottom-content ul a {
    transition: color var(--duration);
  }
  .footer .bottom-content ul a:hover {
    color: var(--green);
  }
}
@media screen and (max-width: 1023px) {
  .footer .bottom-content {
    grid-template-columns: 1fr;
    margin-top: 4.5rem;
  }
  .footer .bottom-content .logo {
    width: 100%;
  }
  .footer .bottom-content ul {
    flex-flow: column nowrap;
    margin-top: 4rem;
  }
}
@media screen and (max-width: 1023px) and (max-width: 1023px) {
  .footer .bottom-content ul {
    gap: 1rem;
    margin-top: 3.625rem;
  }
}
.footer small {
  display: block;
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  line-height: 2.6666666667;
  text-align: center;
}

.header {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: var(--z-index-header);
  height: 5rem;
  background-color: var(--white);
}
@media screen and (max-width: 1023px) {
  .header {
    height: 3.75rem;
  }
}
.header .inner {
  display: flex;
  align-items: center;
  max-width: 100%;
  height: inherit;
  padding-inline: 1.25rem 10.3125rem;
}
.header .logo {
  display: inline-block;
  width: 23.25rem;
  transition: opacity var(--duration);
}
@media screen and (max-width: 1023px) {
  .header .logo {
    width: 13.9375rem;
  }
}
.header .logo picture,
.header .logo img {
  width: 100%;
  height: auto;
  aspect-ratio: 372/40;
  object-fit: contain;
}
@media (any-hover: hover) {
  .header .logo:hover {
    opacity: 0.7;
  }
}
.header ul {
  display: flex;
  gap: 1.5rem;
  height: inherit;
  margin-left: auto;
}
@media screen and (max-width: 1440px) {
  .header ul {
    display: none;
  }
}
.header li {
  height: inherit;
}
.header li a {
  display: flex;
  align-items: center;
  height: inherit;
  font-size: 1rem;
  font-weight: var(--fw-regular);
  line-height: 1;
  letter-spacing: 0;
  transition: color var(--duration);
}
@media (any-hover: hover) {
  .header li a:hover {
    color: var(--green);
  }
}
.header a.tel {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  height: inherit;
  margin-left: 1.75rem;
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0;
  transition: color var(--duration);
}
@media screen and (max-width: 1440px) {
  .header a.tel {
    display: none;
  }
}
.header a.tel::before {
  flex-shrink: 0;
  width: 1.1875rem;
  height: 1.1875rem;
  content: "";
  background-color: var(--green);
  mask-image: url("../images/icon_tel.CnqkeY-O.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
@media (any-hover: hover) {
  .header a.tel:hover {
    color: var(--green);
  }
}
.header a.contact {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  width: 8.75rem;
  height: 8.75rem;
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  color: var(--white);
  letter-spacing: 0;
  background-color: var(--green);
  outline: 2px solid currentcolor;
  outline-offset: -0.5rem;
  transition: background-color var(--duration);
}
.header a.contact::before {
  width: 2rem;
  height: 1.375rem;
  content: "";
  background-color: var(--white);
  mask-image: url("../images/icon_mail.Vs4o-N5A.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
@media screen and (max-width: 1440px) {
  .header a.contact {
    display: none;
  }
}
@media (any-hover: hover) {
  .header a.contact:hover {
    background-color: var(--blue);
  }
}

.loop-content {
  margin-inline: calc(50% - 50vw);
}

.loop {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.loop__track {
  display: flex;
  width: max-content;
  animation: loop 60s linear infinite;
}

.loop__list {
  display: flex;
  flex-shrink: 0;
}

.loop figure {
  flex-shrink: 0;
}

@keyframes loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.loop.loop--materials .loop__track {
  gap: 1.875rem;
}
@media screen and (max-width: 1023px) {
  .loop.loop--materials .loop__track {
    gap: 1.25rem;
  }
}
.loop.loop--materials .loop__list {
  gap: 1.875rem;
}
@media screen and (max-width: 1023px) {
  .loop.loop--materials .loop__list {
    gap: 1.25rem;
  }
}
.loop.loop--materials figure {
  flex-shrink: 0;
  width: 15rem;
  border: 2px solid var(--white);
  border-radius: 100vh;
}
@media screen and (max-width: 1023px) {
  .loop.loop--materials figure {
    width: 120px;
  }
}
@media screen and (max-width: 767px) {
  .loop.loop--materials figure {
    width: 7.5rem;
  }
}
.loop.loop--materials figure picture,
.loop.loop--materials figure img {
  width: 100%;
}

.loop.loop--materials.blue figure {
  border-color: var(--blue);
}

.loop.loop--materials.green figure {
  border-color: var(--green);
}

.materials-item p {
  margin-top: 2.5rem;
}
.materials-item p + p {
  margin-top: 1lh;
}
.materials-item .contents {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .materials-item .contents {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.materials-item figure {
  position: relative;
  z-index: 1;
  width: min(31.25vw, 25rem);
  height: fit-content;
  margin-right: 1rem;
  color: var(--blue);
}
@media screen and (max-width: 767px) {
  .materials-item figure {
    order: -1;
    width: 100%;
  }
}
.materials-item figure::before {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: currentcolor;
}
@media screen and (max-width: 767px) {
  .materials-item figure::before {
    top: 0.625rem;
    left: 0.625rem;
  }
}
.materials-item figure img,
.materials-item figure picture {
  width: 100%;
  height: auto;
  aspect-ratio: 400/290;
  border: 2px solid currentcolor;
}
.materials-item ul {
  display: grid;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .materials-item ul {
    gap: 0;
  }
}
.materials-item li {
  display: flex;
}
@media screen and (max-width: 1023px) {
  .materials-item li {
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
}
.materials-item li::before {
  content: "・";
}

.materials-item:nth-child(2n) .heading.heading--md {
  background-color: var(--green);
}
.materials-item:nth-child(2n) figure {
  color: var(--green);
}

.materials-item + .materials-item {
  margin-top: 6.125rem;
}
@media screen and (max-width: 767px) {
  .materials-item + .materials-item {
    margin-top: 5rem;
  }
}

.materials-item.materials-item--support .contents {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1023px) {
  .materials-item.materials-item--support .contents {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.materials-item.materials-item--support figure {
  justify-self: center;
  width: 100%;
  max-width: 400px;
}

.mv-slider {
  overflow: hidden;
}
.mv-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.mv-slider__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (width <= 1599px) {
  .mv-slider__cols {
    display: none;
  }
}

.mv-slider__col {
  height: 50rem;
}

.mv-slider__single {
  display: none;
}
@media (width <= 1599px) {
  .mv-slider__single {
    display: block;
    height: 50rem;
  }
}
@media screen and (max-width: 1023px) {
  .mv-slider__single {
    height: auto;
  }
}

.mv-slider .swiper-slide {
  height: fit-content;
}
@media screen and (max-width: 1023px) {
  .mv-slider .swiper-slide {
    width: 19.53125vw;
  }
}
@media screen and (max-width: 767px) {
  .mv-slider .swiper-slide {
    width: 9.375rem;
  }
}
.mv-slider .swiper-slide picture,
.mv-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  aspect-ratio: 480/300;
  object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .mv-slider .swiper-slide picture,
  .mv-slider .swiper-slide img {
    height: auto;
    aspect-ratio: 150/100;
  }
}

.page-404 .sub-404 {
  margin-top: 5rem;
}

.page-about {
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page-about {
    padding-bottom: 0;
  }
}
.page-about .sub-about-lead {
  margin-top: -8.25rem;
}

.page-company {
  padding-bottom: 3.3125rem;
}
@media screen and (max-width: 767px) {
  .page-company {
    padding-bottom: 0;
  }
}
.page-company .sub-company-lead {
  margin-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .page-company .sub-company-lead {
    margin-top: 5rem;
  }
}
.page-company .sub-overview {
  margin-top: 7.5rem;
}
.page-company .sub-history {
  margin-top: 8.125rem;
}
@media screen and (max-width: 767px) {
  .page-company .sub-history {
    margin-top: 7.5rem;
  }
}

.page-contact {
  padding-bottom: 7.5rem;
}
.page-contact .sub-contact {
  margin-top: 5rem;
}
.page-contact .sub-form {
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .page-contact .sub-form {
    margin-top: 5rem;
  }
}

.page-materials {
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-materials {
    padding-bottom: 0;
  }
}
.page-materials .sub-materials-lead {
  margin-top: 5rem;
}
.page-materials .sub-materials {
  margin-top: 7.5rem;
}
.page-materials .sub-not-available {
  margin-top: 6.625rem;
}
@media screen and (max-width: 767px) {
  .page-materials .sub-not-available {
    margin-top: 5rem;
  }
}

.page-scrap {
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-scrap {
    padding-bottom: 0;
  }
}
.page-scrap .sub-scrap-lead {
  margin-top: 5rem;
}

.page-support {
  padding-bottom: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .page-support {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-support {
    padding-bottom: 2.5rem;
  }
}
.page-support .sub-materials-lead {
  margin-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .page-support .sub-materials-lead {
    margin-top: 5rem;
  }
}
.page-support .sub-support {
  margin-top: 5rem;
}

.page-thanks {
  padding-bottom: 7.5rem;
}
.page-thanks .sub-thanks {
  margin-top: 5rem;
}

.scrap-item {
  margin-top: 5rem;
}
.scrap-item .head {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: 1fr auto;
  column-gap: min(3.125vw, 2.5rem);
}
@media screen and (max-width: 767px) {
  .scrap-item .head {
    display: block;
  }
}
.scrap-item .head h2 {
  margin-top: 2.875rem;
}
@media screen and (max-width: 1023px) {
  .scrap-item .head h2 {
    margin-top: 0;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
}
.scrap-item .head figure {
  grid-row: 1/3;
  grid-column: 2/3;
  width: clamp(5.625rem, 18.75vw, 15rem);
  height: fit-content;
  border: 2px solid var(--blue);
  border-radius: 100vh;
}
@media screen and (max-width: 767px) {
  .scrap-item .head figure {
    float: right;
    width: min(26.6666666667vw, 7.5rem);
    margin-left: 0.5rem;
  }
}
.scrap-item .head figure img,
.scrap-item .head figure picture {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}
.scrap-item .head p {
  margin-top: 1.875rem;
}
@media screen and (max-width: 1023px) {
  .scrap-item .head p br {
    display: none;
  }
}
.scrap-item .lists {
  display: flex;
  padding-block: 1.875rem;
  padding-inline: min(3.125vw, 2.5rem);
  margin-top: 2.5rem;
  background-color: var(--blue);
}
@media screen and (max-width: 1023px) {
  .scrap-item .lists {
    display: block;
  }
}
.scrap-item .lists h3 {
  font-size: 24px;
  font-weight: var(--fw-bold);
  line-height: 2;
  color: var(--white);
  letter-spacing: 0;
}
@media screen and (max-width: 1023px) {
  .scrap-item .lists h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .scrap-item .lists h3 {
    font-size: 1.5rem;
  }
}
.scrap-item .lists ul {
  display: grid;
  grid-template-columns: repeat(2, 20rem);
  gap: 0.625rem min(3.125vw, 2.5rem);
  margin-left: auto;
}
@media screen and (max-width: 1023px) {
  .scrap-item .lists ul {
    grid-template-columns: 1fr;
    margin-top: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .scrap-item .lists ul {
    margin-top: 0.625rem;
  }
}
.scrap-item .lists li {
  display: flex;
  gap: 0.5625rem;
  color: var(--white);
}
.scrap-item .lists li::before {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.4lh;
  content: "";
  background-color: var(--white);
  border-radius: 100vh;
}
@media screen and (max-width: 767px) {
  .scrap-item .lists li::before {
    width: 0.375rem;
    height: 0.375rem;
  }
}
.scrap-item .points {
  position: relative;
  padding-block: 2.8125rem 1.875rem;
  padding-inline: min(3.125vw, 2.5rem);
  margin-top: 3.9375rem;
  border: 2px solid var(--blue);
}
@media screen and (max-width: 767px) {
  .scrap-item .points {
    padding-block-start: 0;
  }
}
@media screen and (max-width: 767px) {
  .scrap-item .points div {
    position: relative;
    top: -1.25rem;
  }
}
.scrap-item .points h3 {
  position: absolute;
  top: -1.5rem;
  left: min(3.125vw, 2.5rem);
  padding-inline: 1.875rem;
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  line-height: 2;
  color: var(--white);
  background-color: var(--blue);
  border: 2px solid var(--white);
}
@media screen and (max-width: 767px) {
  .scrap-item .points h3 {
    position: static;
    padding-inline: 0.625rem;
    font-size: 1.125rem;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
}
@media screen and (max-width: 767px) {
  .scrap-item .points p {
    margin-top: 1.25rem;
  }
}
.scrap-item .points ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem min(3.125vw, 2.5rem);
  padding-block: 1.25rem;
  padding-inline: min(3.125vw, 2.5rem);
  margin-top: 1.25rem;
  background-color: var(--gray-eb);
}
@media screen and (max-width: 1023px) {
  .scrap-item .points ul {
    grid-template-columns: 1fr;
    margin-top: 1.25rem;
  }
}
.scrap-item .points li {
  display: flex;
  gap: 0.5625rem;
}
.scrap-item .points li::before {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.4lh;
  content: "";
  background-color: var(--blue);
  border-radius: 100vh;
}
@media screen and (max-width: 767px) {
  .scrap-item .points li::before {
    width: 0.375rem;
    height: 0.375rem;
  }
}

.scrap-item:nth-child(2) .head .heading {
  border-color: var(--green);
}
.scrap-item:nth-child(2) .head figure {
  border-color: var(--green);
}
.scrap-item:nth-child(2) .lists {
  background-color: var(--green);
}
.scrap-item:nth-child(2) .points {
  border-color: var(--green);
}
.scrap-item:nth-child(2) .points h3 {
  background-color: var(--green);
}
.scrap-item:nth-child(2) .points li::before {
  background-color: var(--green);
}

.sub-404 .heading {
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.sub-404 p {
  margin-top: 2.5rem;
}
.sub-404 .button {
  margin-top: 2.5rem;
}

.sub-about-lead {
  position: relative;
  z-index: 1;
  padding-block: 12.75rem 5rem;
  overflow-x: clip;
  background-image: image-set(url("../images/lead_bg.BRQs87OA.avif") type("image/avif"), url("../images/lead_bg.BFa0Tijs.jpg") type("image/jpg"));
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.sub-about-lead::after {
  position: absolute;
  right: calc(50% - 33.75rem);
  bottom: 20.75rem;
  z-index: -1;
  display: block;
  width: 32.5rem;
  height: auto;
  aspect-ratio: 520/319;
  content: "";
  background-color: var(--white);
  opacity: 0.3;
  mask-image: url("../images/logo_icon.Bqi3n51F.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
@media screen and (max-width: 767px) {
  .sub-about-lead::after {
    right: calc(50% - 18.75rem);
    width: 25rem;
  }
}
@media screen and (max-width: 767px) {
  .sub-about-lead {
    background-position: left 60% center;
  }
}
.sub-about-lead h2 {
  font-size: 5rem;
  font-weight: var(--fw-bold);
  line-height: 1.24;
  color: var(--white);
  letter-spacing: 0;
}
@media screen and (max-width: 1023px) {
  .sub-about-lead h2 {
    font-size: clamp(52px, 6.25vw, 80px);
  }
}
@media screen and (max-width: 767px) {
  .sub-about-lead h2 {
    font-size: 2.25rem;
  }
}
.sub-about-lead p {
  margin-top: 9.375rem;
  color: var(--white);
}
@media screen and (max-width: 1023px) {
  .sub-about-lead p {
    margin-top: clamp(96px, 12.5vw, 160px);
  }
}
@media screen and (max-width: 767px) {
  .sub-about-lead p {
    margin-top: 2.5rem;
  }
}
.sub-about-lead p + p {
  margin-top: 1lh;
}

@media screen and (max-width: 1023px) {
  .sub-ask {
    margin-top: 120px;
  }
}
.sub-ask .inner {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: min(4.6875vw, 3.75rem);
}
@media screen and (max-width: 1023px) {
  .sub-ask .inner {
    grid-template-columns: 1fr;
  }
}
.sub-ask figure {
  width: min(45.234375vw, 36.1875rem);
  margin-left: max(50% - (50vw - 3.75rem), -6.25rem);
}
@media screen and (max-width: 1023px) {
  .sub-ask figure {
    position: relative;
    z-index: 1;
    grid-row: 2/3;
    width: 100%;
    margin-top: 2.5rem;
    margin-left: 0;
  }
  .sub-ask figure::before {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--blue);
  }
}
.sub-ask figure img,
.sub-ask figure picture {
  width: 100%;
  height: auto;
  aspect-ratio: 579/720;
  object-fit: cover;
  object-position: left center;
}
@media screen and (max-width: 1023px) {
  .sub-ask figure img,
  .sub-ask figure picture {
    aspect-ratio: 1;
    border: 2px solid var(--blue);
  }
}
.sub-ask .text-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .sub-ask .text-area {
    display: contents;
  }
}
.sub-ask h2 {
  font-size: 2.5rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  color: var(--blue);
}
@media screen and (max-width: 1023px) {
  .sub-ask h2 {
    font-size: 32px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .sub-ask h2 {
    font-size: 1.5625rem;
  }
}
.sub-ask p {
  margin-top: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .sub-ask p {
    margin-top: 40px;
  }
}
.sub-ask p + p {
  margin-top: 1lh;
}

.sub-company-lead {
  overflow-x: clip;
}
.sub-company-lead .inner div {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  grid-template-columns: auto 1fr;
  gap: 0 min(10.9375vw, 8.75rem);
  margin-top: 3.125rem;
}
@media screen and (max-width: 1023px) {
  .sub-company-lead .inner div {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .sub-company-lead .inner div {
    margin-top: 2.5rem;
  }
}
.sub-company-lead .inner div::before {
  position: absolute;
  top: 36%;
  left: 22%;
  z-index: -1;
  display: block;
  width: 32.5rem;
  height: auto;
  aspect-ratio: 520/319;
  content: "";
  background-color: var(--gray-D7);
  opacity: 0.3;
  mask-image: url("../images/logo_icon.Bqi3n51F.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
@media screen and (max-width: 767px) {
  .sub-company-lead .inner div::before {
    width: 25rem;
  }
}
.sub-company-lead figure {
  position: relative;
  z-index: 1;
  grid-row: span 4;
  width: min(31.25vw, 25rem);
  height: fit-content;
}
@media screen and (max-width: 1023px) {
  .sub-company-lead figure {
    float: left;
    margin-right: 3.125rem;
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .sub-company-lead figure {
    float: none;
    width: 100%;
    max-width: 25rem;
    margin-inline: auto;
    margin-bottom: 0;
  }
}
.sub-company-lead figure::before {
  position: absolute;
  top: 1.125rem;
  left: 1rem;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--blue);
}
.sub-company-lead figure img,
.sub-company-lead figure picture {
  width: 100%;
  height: auto;
  aspect-ratio: 400/420;
  border: 2px solid var(--blue);
}
@media screen and (max-width: 767px) {
  .sub-company-lead p {
    margin-top: 3.75rem;
  }
}
.sub-company-lead p + p {
  margin-top: 1lh;
}
.sub-company-lead p:last-child {
  margin-top: 3.5rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .sub-company-lead p:last-child {
    margin-top: 2.5rem;
  }
}
.sub-company-lead p:last-child span {
  display: inline-block;
  margin-left: 1.375rem;
  font-size: 1.5rem;
}

.sub-contact .link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.8125rem 1.25rem;
  margin-top: 1.625rem;
  font-size: 2.5rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  color: var(--white);
  letter-spacing: 0;
  background-color: var(--green);
  outline: 1px solid var(--white);
  outline-offset: -0.3125rem;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .sub-contact .link {
    flex-wrap: wrap;
    padding: 1.25rem;
    font-size: 2rem;
  }
}
.sub-contact .link::before {
  flex-shrink: 0;
  width: 2.375rem;
  height: 2.375rem;
  margin-right: min(1.5625vw, 1.25rem);
  content: "";
  background-color: var(--white);
  mask-image: url("../images/icon_tel.CnqkeY-O.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
@media screen and (max-width: 767px) {
  .sub-contact .link::before {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.sub-contact .link span {
  display: inline-block;
  margin-left: min(3.90625vw, 3.125rem);
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .sub-contact .link span {
    margin-top: 0.5rem;
  }
}
@media (any-hover: hover) {
  .sub-contact .link:hover {
    background-color: var(--blue);
  }
}

.sub-facilities {
  padding-block: 5.625rem 5rem;
  overflow-x: clip;
  background: linear-gradient(90deg, #bebebe 0%, #c8c8cd 50%, #96969b 100%);
}
@media screen and (max-width: 767px) {
  .sub-facilities {
    padding-block: 5rem;
  }
}
.sub-facilities .inner {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: auto 1fr;
  column-gap: min(12.65625vw, 10.125rem);
}
@media screen and (max-width: 767px) {
  .sub-facilities .inner {
    grid-template-columns: 1fr;
  }
}
.sub-facilities .heading {
  color: var(--blue);
}
.sub-facilities ul {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .sub-facilities ul {
    margin-top: 2.5rem;
  }
}
.sub-facilities li {
  color: var(--white);
}
.sub-facilities li::before {
  content: "・";
}
.sub-facilities .images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-row: 1/3;
  grid-column: 2/3;
  gap: min(5.078125vw, 4.0625rem);
  margin-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .sub-facilities .images {
    grid-row: unset;
    grid-column: unset;
    margin-top: 2.5rem;
  }
}
.sub-facilities figure {
  position: relative;
  z-index: 1;
  width: 18.75rem;
  height: fit-content;
}
@media screen and (max-width: 767px) {
  .sub-facilities figure {
    width: 100%;
  }
}
.sub-facilities figure::before {
  position: absolute;
  top: 0.875rem;
  left: 0.75rem;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--blue);
}
.sub-facilities figure img,
.sub-facilities figure picture {
  width: 100%;
  height: auto;
  aspect-ratio: 300/360;
  border: 2px solid var(--blue);
}

.sub-form .required {
  margin-top: 3.75rem;
  color: var(--green);
}
@media screen and (max-width: 767px) {
  .sub-form .required {
    margin-top: 2.5rem;
  }
}
.sub-form .contact-form {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .sub-form .contact-form {
    margin-top: 2.5rem;
  }
}

.sub-fv {
  position: relative;
  z-index: 2;
  padding-top: 5rem;
}
.sub-fv::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--blue);
  mask-image: url("../images/fv_bg.BtO25Z0r.svg");
  mask-repeat: no-repeat;
  mask-position: center bottom;
  mask-size: max(120rem, 150vw);
}
@media screen and (max-width: 767px) {
  .sub-fv::before {
    mask-size: cover;
  }
}
.sub-fv .inner {
  max-width: calc(1160px + var(--padding-inner) * 2);
}
@media screen and (max-width: 767px) {
  .sub-fv .inner {
    max-width: calc(30rem + var(--padding-inner) * 2);
  }
}
.sub-fv .contents {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: min(3.125vw, 2.5rem);
}
@media screen and (max-width: 767px) {
  .sub-fv .contents {
    grid-template-columns: 1fr;
  }
}
.sub-fv figure {
  width: min(40.859375vw, 32.6875rem);
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .sub-fv figure {
    gap: 1.25rem;
    justify-self: right;
    width: 80%;
    max-width: 21.875rem;
    margin-top: 0;
  }
}
.sub-fv h1 {
  font-size: clamp(48px, 5vw, 64px);
  font-weight: var(--fw-black);
  line-height: 1.453125;
  color: var(--white);
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .sub-fv h1 {
    font-size: 2rem;
  }
}
.sub-fv p {
  margin-top: 0.125rem;
  font-size: clamp(30px, 3.125vw, 40px);
  font-weight: var(--fw-black);
  line-height: 1.45;
  color: var(--gray-d2);
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .sub-fv p {
    font-size: 1.5rem;
  }
}

.sub-fv.sub-fv--404 h1 {
  font-size: clamp(34px, 3.671875vw, 54px);
}
@media screen and (max-width: 767px) {
  .sub-fv.sub-fv--404 h1 {
    font-size: 1.875rem;
  }
}

.sub-history .heading {
  border-color: var(--green);
}
.sub-history dl {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: min(5vw, 4rem);
  align-items: baseline;
  padding-bottom: 2rem;
  padding-left: 4.0625rem;
  margin-top: 3rem;
  font-size: 1.25rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .sub-history dl {
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
  }
}
.sub-history dl::before {
  position: absolute;
  top: 0.4lh;
  left: 0.875rem;
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  content: "";
  background-color: var(--green);
  border-radius: 100vh;
}
.sub-history dl::after {
  position: absolute;
  top: 0.4lh;
  left: 1.1875rem;
  display: block;
  width: 0.1875rem;
  height: 100%;
  content: "";
  background-color: var(--green);
  transform: translateX(-50%);
}
.sub-history dl + dl {
  margin-top: 0;
}
.sub-history dl:last-child {
  padding-bottom: 0;
}
.sub-history dl:last-child::after {
  height: calc(100% - 0.4lh);
}
.sub-history dt {
  font-size: 1.25rem;
  font-weight: var(--bold);
  line-height: 2;
  color: var(--blue);
  list-style: 0;
}
.sub-history .loop-content {
  margin-top: 5rem;
}

.sub-materials-lead p {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .sub-materials-lead p {
    margin-top: 2.5rem;
  }
}
.sub-materials-lead p + p {
  margin-top: 1lh;
}
.sub-materials-lead .loop-content {
  margin-top: 6.25rem;
}

.sub-not-available p {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .sub-not-available p {
    margin-top: 1.5rem;
  }
}
.sub-not-available ul {
  padding: 1.25rem min(3.125vw, 2.5rem);
  margin-top: 1.5rem;
  background-color: var(--gray-eb);
}
.sub-not-available li {
  display: flex;
}
.sub-not-available li::before {
  content: "・";
}

.sub-overview {
  padding-block: 5.625rem 6.25rem;
  background: linear-gradient(90deg, color-mix(in srgb, var(--black) 40%, transparent) 100%, transparent 100%), image-set(url("../images/overview_bg.C5mbDwT6.avif") type("image/avif"), url("../images/overview_bg.Cx0HDQ6X.jpg") type("image/jpeg"));
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .sub-overview {
    padding-block: 5rem;
  }
}
.sub-overview .heading {
  color: var(--white);
  border-color: var(--green);
}
.sub-overview .list {
  margin-top: 1.75rem;
  background-color: var(--white);
  border-right: 1px solid var(--gray-CA);
  border-bottom: 1px solid var(--gray-CA);
  container-type: inline-size;
}
.sub-overview dl {
  display: grid;
  grid-template-columns: auto 1fr;
}
@container (width < 606px) {
  .sub-overview dl {
    grid-template-columns: 1fr;
  }
}
.sub-overview dt,
.sub-overview dd {
  padding-block: 2rem;
  border-top: 1px solid var(--gray-CA);
  border-left: 1px solid var(--gray-CA);
}
@media screen and (max-width: 1023px) {
  .sub-overview dt,
  .sub-overview dd {
    padding-block: 1.25rem;
  }
}
.sub-overview dt {
  display: flex;
  align-items: center;
  width: min(25.9375vw, 20.75rem);
  height: 100%;
  padding-inline: 1.5rem;
  color: var(--white);
  background-color: var(--green);
}
@media screen and (max-width: 1023px) {
  .sub-overview dt {
    width: 11.25rem;
    padding-inline: 1rem;
  }
}
@container (width < 606px) {
  .sub-overview dt {
    width: 100%;
  }
}
.sub-overview dd {
  padding-inline: 2rem;
}
@media screen and (max-width: 1023px) {
  .sub-overview dd {
    padding-inline: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .sub-overview dd {
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
}

.sub-scrap-lead .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(2.8125vw, 2.25rem);
  margin-top: 5rem;
}
@media screen and (max-width: 1023px) {
  .sub-scrap-lead .items {
    grid-template-columns: 1fr;
  }
}
.sub-scrap-lead .button {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  padding-block: 1.875rem;
  font-size: 1.125rem;
}
@media screen and (max-width: 1023px) {
  .sub-scrap-lead .button {
    max-width: 25rem;
    margin-inline: auto;
  }
}
.sub-scrap-lead .button::after {
  flex-shrink: 0;
  width: 0.875rem;
  height: 0.875rem;
  content: "";
  background-image: url("../images/icon_triangle.bxOpKaOL.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}
.sub-scrap-lead .button:nth-child(2n) {
  background-color: var(--green);
}
@media (any-hover: hover) {
  .sub-scrap-lead .button:nth-child(2n):hover {
    background-color: var(--blue);
  }
}

.sub-strength > .inner {
  max-width: calc(1160px + var(--padding-inner) * 2);
}
@media screen and (max-width: 1023px) {
  .sub-strength > .inner {
    max-width: calc(78.125vw + var(--padding-inner) * 2);
  }
}
@media screen and (max-width: 767px) {
  .sub-strength > .inner {
    display: contents;
  }
}

.sub-thanks h2 {
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.sub-thanks p {
  margin-top: 3.75rem;
}
.sub-thanks p + p {
  margin-top: 1lh;
}
.sub-thanks .button {
  margin-top: 2.5rem;
}

.top-about {
  position: relative;
  padding-block: 6.9375rem 37.25rem;
  overflow-x: clip;
  background-image: image-set(url("../images/about_bg.DU1_PRNC.avif") type("image/avif"), url("../images/about_bg.Bs561ssh.jpg") type("image/jpg"));
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1023px) {
  .top-about {
    padding-block: 6rem 35.9375vw;
    background-image: image-set(url("../images/about_bg-lg.DskOinZM.avif") type("image/avif"), url("../images/about_bg-lg.BJr9-axs.jpg") type("image/jpg"));
  }
}
@media screen and (max-width: 767px) {
  .top-about {
    padding-block: 6rem max(15.8125rem, 67.4666666667vw);
    background-image: image-set(url("../images/about_bg-sp.B6ENmdLX.avif") type("image/avif"), url("../images/about_bg-sp.M39oKuc1.jpg") type("image/jpg"));
    background-position: center bottom;
  }
}
@media screen and (max-width: 1023px) {
  .top-about .inner {
    max-width: calc(65.1041666667vw + var(--padding-inner) * 2);
  }
}
@media screen and (max-width: 767px) {
  .top-about .inner {
    max-width: calc(30rem + var(--padding-inner) * 2);
    padding-inline: 1.125rem;
  }
}
.top-about .title {
  text-align: center;
}
.top-about p {
  width: fit-content;
  margin-inline: auto;
  margin-top: 2.625rem;
  color: var(--white);
}
@media screen and (max-width: 1023px) {
  .top-about p {
    margin-top: 1.25rem;
  }
  .top-about p br {
    display: none;
  }
}
.top-about .link {
  margin-top: 3.5rem;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .top-about .link {
    margin-top: 1.5rem;
  }
}
.top-about::before {
  position: absolute;
  bottom: -1.875vw;
  left: 50%;
  display: block;
  width: 100%;
  font-size: 12.7604166667vw;
  font-weight: var(--fw-black);
  color: var(--white);
  letter-spacing: 0;
  white-space: nowrap;
  content: "NAKAYAMA\a Corp.";
  transform: translateX(-50%);
}
@media screen and (max-width: 1023px) {
  .top-about::before {
    bottom: 1.1875rem;
    font-size: 11.71875vw;
    line-height: 0.8888888889;
    text-align: center;
    white-space: pre;
  }
}
@media screen and (max-width: 767px) {
  .top-about::before {
    bottom: 0.75rem;
    font-size: min(16.8vw, 5.4375rem);
  }
}

.top-company {
  position: relative;
  z-index: 1;
  padding-block: 7.5rem;
  overflow-x: clip;
  background-color: var(--green);
}
.top-company::before {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  font-size: min(16.40625vw, 13.125rem);
  font-weight: var(--fw-black);
  line-height: 0.8571428571;
  color: var(--lightGreen);
  letter-spacing: 0;
  white-space: pre;
  content: "Company\aInformation";
  transform: translateY(-50%);
}
@media screen and (max-width: 1023px) {
  .top-company {
    padding-block: 3.625rem 4rem;
  }
  .top-company::before {
    top: 3.125rem;
    left: 50%;
    width: max-content;
    font-size: 6.5104166667vw;
    white-space: normal;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 767px) {
  .top-company::before {
    font-size: min(9.3333333333vw, 3.0625rem);
  }
}
.top-company .contents {
  display: grid;
  grid-template-rows: auto auto 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 5rem;
}
@media screen and (max-width: 1023px) {
  .top-company .contents {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 1023px) {
  .top-company .title {
    order: -1;
    text-align: center;
  }
}
.top-company figure {
  position: relative;
  z-index: 1;
  grid-row: 1/4;
  grid-column: 1/2;
  width: 100%;
  height: fit-content;
}
.top-company figure::before {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
}
@media screen and (max-width: 1023px) {
  .top-company figure {
    grid-row: unset;
    width: 100%;
    max-width: 30rem;
    margin-inline: auto;
    margin-top: 0.625rem;
  }
}
.top-company figure picture,
.top-company figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 510/370;
}
@media screen and (max-width: 1023px) {
  .top-company figure picture,
  .top-company figure img {
    aspect-ratio: 510/363;
  }
}
.top-company figure img {
  border: 3px solid var(--white);
}
.top-company p {
  margin-top: 2.875rem;
  color: var(--white);
}
@media screen and (max-width: 1023px) {
  .top-company p {
    margin-top: 1rem;
  }
}
.top-company .link {
  margin-top: 3.25rem;
}
@media screen and (max-width: 1023px) {
  .top-company .link {
    margin-top: 1.6875rem;
    text-align: center;
  }
}

.top-materials {
  padding-block: 6.9375rem 7.5rem;
  background: linear-gradient(90deg, #bebebe 0%, #c8c8cd 50%, #96969b 100%);
}
@media screen and (max-width: 1023px) {
  .top-materials {
    padding-block: 3.625rem 4rem;
  }
}
.top-materials .title {
  position: relative;
  z-index: 1;
  text-align: center;
}
.top-materials .title::before {
  position: absolute;
  top: -5rem;
  left: 50%;
  z-index: -1;
  width: 100%;
  font-size: min(12.03125vw, 9.625rem);
  font-weight: var(--fw-black);
  color: var(--gray-d2);
  content: "Scrap Materials";
  transform: translateX(-50%);
}
@media screen and (max-width: 1023px) {
  .top-materials .title::before {
    top: -2.5rem;
    font-size: 8.8541666667vw;
  }
}
@media screen and (max-width: 767px) {
  .top-materials .title::before {
    font-size: min(12.8vw, 4.1875rem);
  }
}
.top-materials .contents {
  display: flex;
  gap: 5.875rem;
  justify-content: center;
  margin-top: 3.25rem;
}
@media screen and (max-width: 1023px) {
  .top-materials .contents {
    flex-direction: column;
    gap: 1.5625rem;
    align-items: center;
    margin-top: 1.125rem;
  }
}
.top-materials .text {
  width: max-content;
}
@media screen and (max-width: 1023px) {
  .top-materials .text {
    width: 100%;
    text-align: left;
  }
  .top-materials .text br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .top-materials .text {
    width: 100%;
  }
}
.top-materials .link {
  flex-shrink: 0;
  width: 17.5rem;
}
@media screen and (max-width: 1023px) {
  .top-materials .link {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .top-materials .link {
    width: 15rem;
  }
}
.top-materials .loop-content {
  margin-top: 3.375rem;
}
@media screen and (max-width: 1023px) {
  .top-materials .loop-content {
    margin-top: 2rem;
  }
}

.top-mv {
  position: relative;
  z-index: 1;
  height: 50rem;
  overflow-x: clip;
  background-color: var(--blue);
}
@media screen and (max-width: 1023px) {
  .top-mv {
    height: auto;
    padding-block-start: 1.375rem;
  }
}
.top-mv::before {
  position: absolute;
  bottom: 0;
  left: calc(50% - 28.125rem);
  z-index: -1;
  display: block;
  width: 40rem;
  height: auto;
  aspect-ratio: 640/393;
  content: "";
  background-color: var(--darkBlue);
  mask-image: url("../images/logo_icon.Bqi3n51F.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
@media screen and (max-width: 1023px) {
  .top-mv::before {
    inset: 2rem calc(50% - 28.125rem) auto auto;
    width: 20rem;
  }
}
@media screen and (max-width: 767px) {
  .top-mv::before {
    right: calc(50% - 15.625rem);
  }
}
.top-mv .inner {
  display: flex;
  align-items: center;
  max-width: 120rem;
  height: 100%;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 1440px) {
  .top-mv .inner {
    padding-inline: min(4.6875vw, 3.75rem);
  }
}
@media screen and (max-width: 1023px) {
  .top-mv .inner {
    display: block;
    max-width: calc(62.5vw + var(--padding-inner) * 2);
    padding-inline: var(--padding-inner);
  }
}
@media screen and (max-width: 767px) {
  .top-mv .inner {
    max-width: calc(30rem + var(--padding-inner) * 2);
  }
}
.top-mv .text-area {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5625rem;
  width: fit-content;
  margin-left: auto;
}
@media screen and (max-width: 1440px) {
  .top-mv .text-area {
    gap: 3.25rem;
    margin-left: 0;
  }
}
@media screen and (max-width: 1023px) {
  .top-mv .text-area {
    gap: 1.375rem;
  }
}
.top-mv .text-area .upper-text {
  font-size: min(10.15625vw, 8.125rem);
  font-weight: var(--fw-black);
  line-height: 1;
  color: var(--gray-d2);
  letter-spacing: 0;
}
.top-mv .text-area .upper-text span {
  display: block;
  margin-top: 2.375rem;
  font-size: min(5.625vw, 4.5rem);
}
@media screen and (max-width: 1023px) {
  .top-mv .text-area .upper-text {
    font-size: 4.0625rem;
  }
  .top-mv .text-area .upper-text span {
    margin-top: 0.9375rem;
    font-size: 2.25rem;
  }
}
.top-mv .text-area .middle-text {
  font-size: min(2.8125vw, 2.25rem);
  font-weight: var(--fw-black);
  line-height: 1.5555555556;
  color: var(--white);
  letter-spacing: 0;
}
@media screen and (max-width: 1023px) {
  .top-mv .text-area .middle-text {
    font-size: 1.25rem;
  }
}
.top-mv .text-area .bottom-text {
  font-size: min(1.875vw, 1.5rem);
  font-weight: var(--fw-medium);
  line-height: 2;
  color: var(--white);
  letter-spacing: 0;
}
@media screen and (max-width: 1023px) {
  .top-mv .text-area .bottom-text {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.top-mv .text-area .company-name {
  padding-left: 1.25rem;
  font-size: 1.125rem;
  font-weight: var(--fw-black);
  line-height: 1;
  color: var(--white);
  letter-spacing: 0;
  border-left: 0.25rem solid var(--lightGreen);
}
@media screen and (max-width: 1023px) {
  .top-mv .text-area .company-name {
    padding-left: 0.75rem;
    font-size: 1rem;
  }
}

.mv__slider {
  width: min(50.625vw, 60.75rem);
  margin-left: min(3.5416666667vw, 4.25rem);
}
@media (width <= 1599px) {
  .mv__slider {
    width: min(37.5vw, 30rem);
    margin-left: auto;
  }
}
@media screen and (max-width: 1023px) {
  .mv__slider {
    width: auto;
    margin-inline: calc(50% - 50vw);
    margin-top: 1.5rem;
  }
}

.top-scrap {
  position: relative;
  z-index: 1;
  padding-block: 7.5rem;
  overflow-x: clip;
}
@media screen and (max-width: 1023px) {
  .top-scrap {
    padding-block: 3.625rem 4rem;
  }
}
.top-scrap::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 41.6666666667vw;
  height: 100%;
  content: "";
  background-image: image-set(url("../images/scrap_bg.D_vGYn-b.avif") type("image/avif"), url("../images/scrap_bg.BJcR9vOD.jpg") type("image/jpg"));
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1440px) {
  .top-scrap::before {
    width: 37.5vw;
    background-image: image-set(url("../images/scrap_bg_xl.B41ORerE.avif") type("image/avif"), url("../images/scrap_bg_xl.BN8Vxqnz.jpg") type("image/jpg"));
    background-position: left center;
  }
}
@media screen and (max-width: 1023px) {
  .top-scrap::before {
    display: none;
  }
}
.top-scrap::after {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: -1;
  display: block;
  font-size: min(16.40625vw, 13.125rem);
  font-weight: var(--fw-black);
  line-height: 0.8095238095;
  color: var(--gray-eb);
  text-align: right;
  letter-spacing: 0;
  white-space: pre;
  content: "Scrap\aMetal\a Business";
  transform: translateY(-50%);
}
@media screen and (max-width: 1023px) {
  .top-scrap::after {
    top: 0.5625rem;
    right: 50%;
    font-size: 11.71875vw;
    text-align: center;
    content: "Scrap Metal\a Business";
    transform: translateX(50%);
  }
}
@media screen and (max-width: 767px) {
  .top-scrap::after {
    font-size: min(16.8vw, 5.4375rem);
  }
}
.top-scrap .contents {
  display: grid;
  grid-template-rows: auto auto 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 5rem;
}
@media screen and (max-width: 1023px) {
  .top-scrap .contents {
    grid-template-rows: unset;
    grid-template-columns: 1fr;
  }
}
.top-scrap .contents figure {
  position: relative;
  z-index: 1;
  grid-row: 1/4;
  grid-column: 1/2;
  width: 100%;
  height: fit-content;
}
@media screen and (max-width: 1023px) {
  .top-scrap .contents figure {
    grid-row: unset;
    grid-column: unset;
    max-width: 30rem;
    margin-inline: auto;
    margin-top: 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .top-scrap .contents figure {
    width: 100%;
  }
}
.top-scrap .contents figure::before {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--blue);
}
.top-scrap .contents figure picture,
.top-scrap .contents figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 500/360;
}
@media screen and (max-width: 1023px) {
  .top-scrap .contents figure picture,
  .top-scrap .contents figure img {
    aspect-ratio: 500/354;
  }
}
.top-scrap .contents figure img {
  border: 3px solid var(--blue);
}
.top-scrap .title {
  height: fit-content;
}
@media screen and (max-width: 1023px) {
  .top-scrap .title {
    order: -1;
  }
}
.top-scrap .section-title {
  text-align: left;
}
@media screen and (max-width: 1023px) {
  .top-scrap .section-title {
    text-align: center;
  }
}
.top-scrap p {
  margin-top: 2.75rem;
}
@media screen and (max-width: 1023px) {
  .top-scrap p {
    margin-top: 1rem;
  }
}
.top-scrap .link {
  margin-top: 3.5625rem;
}
@media screen and (max-width: 1023px) {
  .top-scrap .link {
    margin-top: 1.625rem;
    text-align: center;
  }
}

.top-support {
  position: relative;
  z-index: 1;
  padding-block: 7.5rem;
  overflow-x: clip;
  --width: 95%;
  background: linear-gradient(90deg, var(--blue) var(--width), transparent var(--width) 100%);
}
.top-support::before {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  font-size: min(16.40625vw, 13.125rem);
  font-weight: var(--fw-black);
  line-height: 0.8571428571;
  color: var(--lightBlue);
  letter-spacing: 0;
  white-space: pre;
  content: "Support\aService";
  transform: translateY(-50%);
}
@media screen and (max-width: 1023px) {
  .top-support {
    padding-block: 3.625rem 4rem;
    background: linear-gradient(90deg, var(--blue) 100%);
  }
  .top-support::before {
    top: 2.5rem;
    left: 50%;
    width: max-content;
    font-size: 7.5520833333vw;
    white-space: normal;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 1023px) and (max-width: 767px) {
  .top-support::before {
    font-size: min(10.6666666667vw, 3.4375rem);
  }
}
.top-support .contents {
  display: grid;
  grid-template-rows: auto auto 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 5rem;
}
@media screen and (max-width: 1023px) {
  .top-support .contents {
    grid-template-columns: 1fr;
  }
}
.top-support .title {
  text-align: left;
}
@media screen and (max-width: 1023px) {
  .top-support .title {
    text-align: center;
  }
}
.top-support p {
  margin-top: 2.8125rem;
  color: var(--white);
}
@media screen and (max-width: 1023px) {
  .top-support p {
    margin-top: 0.75rem;
  }
}
.top-support .link {
  margin-top: 3.4375rem;
}
@media screen and (max-width: 1023px) {
  .top-support .link {
    margin-top: 1.5rem;
    text-align: center;
  }
}
.top-support .images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-row: 1/4;
  grid-column: 2/3;
  gap: 2.8125rem;
  margin-right: calc(100% - 50vw);
}
@media screen and (max-width: 1023px) {
  .top-support .images {
    grid-row: 2/3;
    grid-column: unset;
    gap: 1.625rem;
    margin-top: 0.625rem;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .top-support .images {
    gap: 1.125rem;
  }
}
.top-support figure {
  position: relative;
  z-index: 1;
  width: 18.75rem;
  height: fit-content;
}
@media screen and (max-width: 1023px) {
  .top-support figure {
    width: 100%;
  }
}
.top-support figure::before {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
}
@media screen and (max-width: 1023px) {
  .top-support figure::before {
    top: 0.3125rem;
    left: 0.3125rem;
  }
}
.top-support picture,
.top-support img {
  width: 100%;
  height: auto;
  aspect-ratio: 300/360;
}
@media screen and (max-width: 1023px) {
  .top-support picture,
  .top-support img {
    aspect-ratio: 143/200;
  }
}
.top-support img {
  border: 3px solid var(--white);
}

.js-fade,
.js-fade-item {
  opacity: 0;
  transition: none;
  transform: translateY(30px);
}

@media (width <= 767px) {
  [data-only-device=md] {
    display: none;
  }
}

@media (width >= 768px) {
  [data-only-device=sm] {
    display: none;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(100%);
  white-space: nowrap;
  border: 0;
}