/*! kiso.css v1.1.6 | 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`. */
  word-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. */
  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-height: 100dvb;

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

/* ======================================================
// 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-top: 0.67em;
  margin-bottom: 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-top: 0;
  margin-top: initial;
  margin-bottom: 0;
  margin-bottom: initial;
}

: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;
  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-top: 0;
  margin-top: initial;
  margin-bottom: 0;
  margin-bottom: initial;
}

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

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

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

  /*
  * In Safari, using `list-style: none` prevents screen readers from announcing lists.
  * `list-style-type: ""` is used to hide markers without affecting accessibility.
  */
  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-left: 0;
  margin-left: initial;
}

: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) {
    /* Wraps text when printing. */
    white-space: pre-wrap;
  }
}

/* ======================================================
//  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: inherit;
}

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

:where(abbr[title]) {
  /* Display an underline. */
  text-decoration-line: underline;

  /* Set the underline style to dotted. */
  text-decoration-style: dotted;

  /* Display a tooltip on mouse hover. */
  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. */
    background-color: Highlight;
    color: HighlightText;
  }
}

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

:where(a:link), :where(a:visited) {
  /* The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: inherit;

  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `revert`.
  */
  text-decoration-line: none;
  text-decoration-line: initial;

  /* 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: inherit;

  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `revert`.
  */
  text-decoration-line: none;
  text-decoration-line: initial;

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

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

:where(img, svg, picture, video, canvas, model, audio, iframe, embed, object) {
  /* Automatically adjust block size based on content. */
  height: auto;

  /* Prevents overflow by setting the maximum width to `100%`. */
  max-width: 100%;

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

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

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

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

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

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

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

::-webkit-file-upload-button {
  /*
  * These elements are often styled with a border, so a `1px` border is applied by default for consistency.
  * This ensures readability even for unstyled elements.
  * When resetting, it's recommended to use `border-color: transparent` instead of `border: none` to account for forced color modes.
  */
  border-width: 1px;
  border-style: solid;

  /* These styles specified in the UA stylesheet are often unnecessary, so they are reset to allow for inheritance. */
  border-color: currentcolor;
  border-color: initial;
  border-radius: 0;
  border-radius: initial;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-align: inherit;
}

: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: currentcolor;
  border-color: initial;
  border-radius: 0;
  border-radius: initial;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-align: inherit;
}

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

:where([type="file"]) {
  /* The `border` is often unnecessary, so it is reset here. */
  border: medium none currentcolor;
  border: initial;
}

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

@supports (-webkit-touch-callout: none) {
  :where([type="search"]) {
    /* normalize the background color on iOS. */
    background-color: Canvas;
  }
}

:where(
    :is([type="tel"], [type="url"], [type="email"], [type="number"]):not(
        :-ms-input-placeholder
      )
  ) {
  /*
  * Certain input types need to maintain left alignment even in right-to-left (RTL) languages.
  * However, this only applies when the value is not empty, as the placeholder should be right-aligned.
  * @see https://rtlstyling.com/posts/rtl-styling#form-inputs
  */
  direction: ltr;
}

:where(
    :is([type="tel"], [type="url"], [type="email"], [type="number"]):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-top: 0;
  margin-top: initial;
  margin-bottom: 0;
  margin-bottom: initial;

  /* Allows vertical resizing for `<textarea>` elements. */
  resize: vertical;
}

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

::-webkit-file-upload-button {
  /* The `background-color` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  background-color: transparent;
  background-color: initial;

  /*
  * On iOS, double-tapping a button can cause zooming, which harms usability.
  * `touch-action: manipulation` is specified to disable zooming on double-tap.
  */
  touch-action: manipulation;
}

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

  /*
  * On iOS, double-tapping a button can cause zooming, which harms usability.
  * `touch-action: manipulation` is specified to disable zooming on double-tap.
  */
  touch-action: manipulation;
}

::-webkit-file-upload-button {
  /* Indicate clickable elements with a pointer cursor. */
  cursor: pointer;
}

:where(
    button,
    label[for],
    select,
    [type="button"],
    [type="submit"],
    [type="reset"],
    [role="tab"],
    [role="button"],
    [role="option"]
  ),
::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.
  */
  min-width: 0;

  /* The following default styles are often unnecessary, so they are reset. */
  margin-left: 0;
  margin-left: initial;
  margin-right: 0;
  margin-right: initial;
  padding: 0;
  padding: initial;
  border: medium none currentcolor;
  border: initial;
}

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

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

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

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

/* ======================================================
//  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-y: contain;

  /* The following default styles are often unnecessary, so they are reset. */
  padding: 0;
  padding: initial;
  border: medium none currentcolor;
  border: initial;
}

: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-width: none;
  max-width: initial;
  max-height: none;
  max-height: initial;
}

:where(dialog)::-ms-backdrop {
  /* Normalize the background color of the `::backdrop` element. */
  background-color: rgba(0, 0, 0, 0.3);
}

:where(dialog)::backdrop {
  /* Normalize the background color of the `::backdrop` element. */
  background-color: rgba(0, 0, 0, 0.3);
}

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

/* ======================================================
//  MARK: Focus Styles
// ====================================================== */

:where(:focus:not(:focus-visible)) {
  /* Hide the focus outline to reduce visual clutter unless the element is explicitly `:focus-visible`. */
  outline: none;
}

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

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

/* ======================================================
//  MARK: Misc
// ====================================================== */

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

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

:root {
  --color-main: #d71718;
  --color-main-bg: #fff3f3;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray: #f9f9f9;

  --font-md: clamp(1.75rem, 1.53rem + 0.8vw, 2.25rem); /* --font-md: 36px; */
  --font-ms: 30px;
  --font-base: clamp(1.25rem, 0.964rem + 0.6vw, 1.5rem); /* 20-24px; */
  --font-base-fixed: 24px;
  --font-xs-fixed: 18px;
  --font-xxs: 14px;
  --font-nav: 16px;

  --font-heading-base: clamp(1.75rem, 1.185rem + 2.05vw, 2.5rem);
  --font-heading-lg: clamp(3.75rem, 2.808rem + 3.42vw, 5rem);
  --font-heading-hero: clamp(1.875rem, 0.833rem + 4.63vw, 5rem);
  --font-heading-hero-alt: clamp(2.875rem, 1.94rem + 3.4vw, 5rem);

  --font-desc-base: 20px;
  --font-desc-lg: clamp(1.25rem, 0.964rem + 0.6vw, 1.5rem);

  --font-title-base: 24px;
  --font-title-md: 30px;
  --font-title-lg: clamp(2rem, 1.714rem + 0.6vw, 2.25rem);
  --font-title-sm: 18px;

  --font-text-base: 18px;
  --font-text-md: 20px;
  --font-text-lg: clamp(1.25rem, 0.964rem + 0.6vw, 1.5rem);

  --font-label: clamp(1rem, 0.857rem + 0.3vw, 1.125rem);

  --font-button: 20px;

  --radius-pill: 9999px;
  --spacing-section: 80px;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

main {
  flex: 1;

  padding-top: 105px;
}

@media (max-width: 1023px) {

main {
    padding-top: 95px
}
  }

@media (max-width: 767px) {

main {
    padding-top: 81px
}
  }

a {
  transition: all 0.2s;
}

a:hover {
    opacity: 0.7;
  }

.aligncenter {
  text-align: center;
}

section:has(> .l-container):not(:has(> .section__head)) {
  padding: 50px 30px;
}

@media (min-width: 1440px) {

section:has(> .l-container):not(:has(> .section__head)) {
    padding: 100px 100px 80px
}
  }

@media (max-width: 1023px) {

section:has(> .l-container):not(:has(> .section__head)) {
    padding-top: 30px;
    padding-bottom: 30px
}
  }

@media (max-width: 767px) {

section:has(> .l-container):not(:has(> .section__head)) {
    padding-left: 15px;
    padding-right: 15px
}
  }

.section__head {
  position: relative;
  background: #d71718;
  background: var(--color-main);
  width: 100vw;
  margin-bottom: 80px;
  margin-left: calc(50% - 50vw);
  padding: 80px 30px;
}

@media (min-width: 1440px) {

.section__head {
    padding: 100px
}
  }

@media (min-width: 768px) and (max-width: 1023px) {

.section__head {
    margin-bottom: 30px;
    padding-top: 60px;
    padding-bottom: 60px
}
  }

@media (max-width: 767px) {

.section__head {
    margin-bottom: 30px;
    padding: 25px 15px
}
  }

.section__head::after {
    position: absolute;
    top: 0;
    right: 0px;
    content: "";
    background-image: url(../img/service/service_head_bg.svg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: right;
    z-index: 999;
    width: 100%;
    height: 100%;
    opacity: 0.2;
  }

.section__head .section__head-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
  }

@media (min-width: 1440px) {

.section__head .section__head-inner {
      max-width: 1600px
  }
    }

@media (max-width: 1023px) {

.section__head .section__head-inner {
      flex-direction: column;
      align-items: flex-start
  }
    }

.section__head .section__heading {
    color: #ffffff;
    color: var(--color-white);
  }

.section__head .section__lead {
    color: #ffffff;
    color: var(--color-white);
    font-size: 28px;
  }

@media (min-width: 768px) and (max-width: 1023px) {

.section__head .section__lead {
      font-size: 24px
  }
    }

@media (max-width: 767px) {

.section__head .section__lead {
      font-size: 20px
  }
    }

.l-container {
  max-width: 1240px;
  margin: 0 auto;
}

@media (min-width: 1440px) {

.l-container {
    max-width: 1600px
}
  }

[class*="__heading"] {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: clamp(1.75rem, 1.185rem + 2.05vw, 2.5rem);
  font-size: var(--font-heading-base);
  color: #d71718;
  color: var(--color-main);
  line-height: 1.05;
  margin-bottom: 30px;
}

@media (max-width: 768px) {

[class*="__heading"] {
    line-height: 1.5;
    margin-bottom: 10px
}
  }

[class*="__heading"].is-lg {
  font-size: clamp(3.75rem, 2.808rem + 3.42vw, 5rem);
  font-size: var(--font-heading-lg);
  line-height: 1;
}

[class*="__heading"].is-hero {
  font-size: clamp(1.875rem, 0.833rem + 4.63vw, 5rem);
  font-size: var(--font-heading-hero);
  line-height: 1.6;
  margin-bottom: 0;
}

[class*="__heading"].is-hero-alt {
  font-size: clamp(2.875rem, 1.94rem + 3.4vw, 5rem);
  font-size: var(--font-heading-hero-alt);
}

[class*="__heading"].is-loose {
  line-height: 1.5;
}

[class*="__desc"]:not(.lead__desc-wrap) {
  font-size: 20px;
  font-size: var(--font-desc-base);
  line-height: 1.8;
  margin-bottom: 30px;
}

@media (max-width: 1023px) {

[class*="__desc"]:not(.lead__desc-wrap) {
    margin-bottom: 20px
}
  }

@media (min-width: 1440px) {

[class*="__desc"]:not(.lead__desc-wrap) {
    line-height: 2
}
  }

[class*="__desc"].is-lg {
  font-size: clamp(1.25rem, 0.964rem + 0.6vw, 1.5rem);
  font-size: var(--font-desc-lg);
}

[class*="-title"] {
  font-size: 24px;
  font-size: var(--font-title-base);
  font-weight: bold;
  line-height: 1.33;
}

[class*="-title"].is-md {
  font-size: 30px;
  font-size: var(--font-title-md);
  line-height: 1.6;
}

[class*="-title"].is-lg {
  font-size: clamp(2rem, 1.714rem + 0.6vw, 2.25rem);
  font-size: var(--font-title-lg);
  line-height: 1.5;
}

[class*="-title"].is-sm {
  font-size: 18px;
  font-size: var(--font-title-sm);
  line-height: 1.78;
}

[class*="-text"] {
  font-size: 18px;
  font-size: var(--font-text-base);
  line-height: 1.8;
}

[class*="-text"].is-md {
  font-size: 20px;
  font-size: var(--font-text-md);
}

[class*="-text"].is-lg {
  font-size: clamp(1.25rem, 0.964rem + 0.6vw, 1.5rem);
  font-size: var(--font-text-lg);
  line-height: 1;
}

[class$="__label"] {
  font-size: clamp(1rem, 0.857rem + 0.3vw, 1.125rem);
  font-size: var(--font-label);
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 20px;
}

@media (max-width: 1023px) {

[class$="__label"] {
    margin-bottom: 20px
}
  }

[class$="__link"] {
  display: inline-flex;
  align-items: center;
  -webkit-text-decoration: none;
  text-decoration: none;
  line-height: 1;
  color: #000000;
  color: var(--color-black);
}

[class$="__link"] [class$="__link-text"] {
    font-size: 20px;
    font-size: var(--font-text-md);
  }

[class$="__link"] [class$="__link-icon"] {
    width: 30px;
    height: 30px;
    margin-left: 5px;
  }

[class$="__link"]:hover [class$="__link-icon"] {
      transform: translateX(3px) scale(1.2);
      opacity: 1;
    }

/* WordPress */

.wp-block-button {
  all: unset;
}

.wp-block-button__link {
    all: unset;
  }

.error404 h1 {
    font-size: 40px;
    margin-bottom: 50px;
  }

.error404 p {
    font-size: 20px;
    margin-bottom: 50px;
  }

.header {
  position: fixed;
  width: 100%;
  background-color: #fff;
  padding: 30px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  z-index: 9999;
}

@media (min-width: 1440px) {

.header {
    padding-left: 100px;
    padding-right: 100px
}
  }

@media (max-width: 1023px) {

.header {
    padding: 25px 15px
}
  }

.header__inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

@media (max-width: 1023px) {

.header__logo {
      z-index: 9999
  }
    }

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

.header__logo h1 {
      margin: 0;
      width: 260px;
    }

@media (max-width: 767px) {

.header__logo h1 {
        width: 180px
    }
      }

.header__logo h1 a {
        display: grid;
      }

.header__logo .st0,
    .header__logo .st1,
    .header__logo .st2 {
      transition: all 0.3s;
    }

.header__logo .st0 {
      fill: #ffffff;
      fill: var(--color-white);
    }

.header__logo .st0:has(#hamburger:checked) {
        fill: #d71718;
        fill: var(--color-main);
      }

.header__logo .st1 {
      fill: #000000;
      fill: var(--color-black);
    }

.header__logo .st1:has(#hamburger:checked) {
        fill: #ffffff;
        fill: var(--color-white);
      }

.header__logo .st2 {
      fill: #d71718;
      fill: var(--color-main);
    }

.header__logo .st2:has(#hamburger:checked) {
        fill: #ffffff;
        fill: var(--color-white);
      }

@media (max-width: 1023px) {

.header__nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      opacity: 0;
      background: #d71718;
      background: var(--color-main);
      transform: translateY(-100%);
      transition: transform 0.3s ease;
      padding: 100px 20px 20px;
      z-index: 1000
  }
    }

@media (max-width: 767px) {

.header__nav {
      padding-top: 80px
  }
    }

.header__nav-list {
    display: flex;
    gap: 50px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

@media (max-width: 1023px) {

.header__nav-list {
      flex-direction: column;
      gap: 0
  }
    }

.header__nav-list li a {
        -webkit-text-decoration: none;
        text-decoration: none;
        color: #000000;
        color: var(--color-black);
        font-size: 16px;
        font-size: var(--font-nav);
        line-height: 1;
      }

@media (max-width: 1023px) {

.header__nav-list li a {
          display: block;
          color: #ffffff;
          color: var(--color-white);
          padding-top: 20px;
          padding-bottom: 20px
      }
        }

.header__nav-list li.header__cta a {
          background-color: #d71718;
          background-color: var(--color-main);
          color: #ffffff;
          color: var(--color-white);
          padding: 20px 30px;
          border-radius: 9999px;
          border-radius: var(--radius-pill);
          font-weight: bold;
        }

@media (max-width: 1023px) {

.header__nav-list li.header__cta a {
            background-color: #ffffff;
            background-color: var(--color-white);
            color: #d71718;
            color: var(--color-main);
            margin-top: 20px;
            text-align: center;
            font-size: 20px;
            line-height: 1.5
        }
          }

.header__input {
    display: none;
  }

.header__button {
    display: none;
    cursor: pointer;
    z-index: 1000;
  }

@media (max-width: 1023px) {

.header__button {
      display: block;
      z-index: 9999;
      position: relative;
      width: 24px;
      height: 24px;
      border-radius: 5px;
      cursor: pointer
  }
    }

.header__button-mark {
    display: block;
    width: 25px;
    height: 2px;
    background: #a9a9a9;
    margin: 4px 0;
    transition: all 0.4s;
  }

.header__button-mark:nth-of-type(2) {
    top: 7px;
  }

.header__button-mark:nth-of-type(3) {
    top: 14px;
  }

.header__bg {
    display: none;
  }

@media (max-width: 1023px) {

.header__bg {
      display: block;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      z-index: 999
  }
    }

@media (max-width: 1023px) {
  body:has(#hamburger:checked) {
    overflow: hidden;
  }
  .header__nav-list .list-item {
    margin: 10px 0;
  }
  .header__button {
    display: block;
    z-index: 9999;
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 5px;
    cursor: pointer;
  }
  .header__bg {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
  }
  #hamburger:checked ~ .header__nav {
    transform: translateY(0);
    opacity: 1;
    overflow-y: auto;
    max-height: 100vh;
  }
  #hamburger:checked ~ .header__bg {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  #hamburger:checked ~ .header__button .header__button-mark:nth-child(1) {
    transform: translateY(6px) rotate(-45deg);
    top: 1px;
    background: #ffffff;
    background: var(--color-white);
  }
  #hamburger:checked ~ .header__button .header__button-mark:nth-child(2) {
    opacity: 0;
  }
  #hamburger:checked ~ .header__button .header__button-mark:nth-child(3) {
    transform: translateY(-6px) rotate(45deg);
    top: 13px;
    background: #ffffff;
    background: var(--color-white);
  }
  .header__inner:has(#hamburger:checked) .logo {
    background: #d71718;
    background: var(--color-main);
  }
  .header__inner:has(#hamburger:checked) .st0 {
    fill: #d71718;
    fill: var(--color-main);
  }
  .header__inner:has(#hamburger:checked) .st1,
  .header__inner:has(#hamburger:checked) .st2 {
    fill: #ffffff;
    fill: var(--color-white);
  }
}

.footer {
  background-color: #000000;
  background-color: var(--color-black);
  color: #ffffff;
  color: var(--color-white);
  padding: 50px 30px;
}

@media (max-width: 1023px) {

.footer {
    padding: 50px 0 15px
}
  }

.footer__inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

@media (max-width: 1023px) {

.footer__top {
      display: contents
  }
    }

@media (max-width: 1023px) {

.footer__logo {
      order: 1;
      text-align: center
  }
    }

.footer__logo img {
      width: 244px;
    }

@media (max-width: 1023px) {

.footer__nav {
      order: 3
  }
    }

.footer__nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

@media (max-width: 1023px) {

.footer__nav-list {
      flex-direction: column;
      align-items: center;
      gap: 0
  }
    }

@media (max-width: 1023px) {

.footer__nav-list li {
        width: 100%;
        text-align: center
    }

        .footer__nav-list li:last-of-type a {
          border-bottom: 1px solid #2e2e2e;
        }
      }

.footer__nav-list li a {
        color: #ffffff;
        color: var(--color-white);
        -webkit-text-decoration: none;
        text-decoration: none;
        font-size: 16px;
        font-size: var(--font-nav);
      }

@media (max-width: 1023px) {

.footer__nav-list li a {
          display: block;
          width: 100%;
          height: 100%;
          padding-top: 20px;
          padding-bottom: 20px;
          border-top: 1px solid #2e2e2e
      }
        }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }

@media (max-width: 1023px) {

.footer__bottom {
      display: contents
  }
    }

.footer__company {
    font-size: 16px;
    font-size: var(--font-nav);
    line-height: 1.75;
  }

@media (max-width: 1023px) {

.footer__company {
      order: 2;
      margin-left: 30px
  }
    }

@media (max-width: 767px) {

.footer__company {
      margin-left: 15px
  }
    }

.footer__copy {
    font-size: 16px;
    font-size: var(--font-nav);
  }

@media (max-width: 1023px) {

.footer__copy {
      order: 4;
      text-align: center
  }
    }

.laptop-only {
  display: none;
}

@media (min-width: 1024px) and (max-width: 1919px) {

.laptop-only {
    display: block
}
  }

a {
  transition: all 0.2s ease;
}

@media (max-width: 767px) {
  .sp-none {
    display: none;
  }
}

.btn {
  font-size: 20px;
  font-size: var(--font-button);
  width: 370px;
  text-align: center;
  margin-top: 15px;
  display: inline-block;
  padding: 20px 24px;
  border-radius: 9999px;
  border-radius: var(--radius-pill);
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
  border: 2px solid #d71718;
  border: 2px solid var(--color-main);
}

@media (max-width: 767px) {

.btn {
    margin-top: 10px;
    width: 100%
}
  }

.btn--outline {
  background: #ffffff;
  background: var(--color-white);
  color: #d71718;
  color: var(--color-main);
}

.btn--fill {
  background: #d71718;
  background: var(--color-main);
  color: #ffffff;
  color: var(--color-white);
}
